:root {
  color-scheme: light;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
}

.hero-pattern {
  background:
    radial-gradient(circle at top left, rgba(2, 132, 199, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(34, 180, 110, 0.12), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
}

.nav-link {
  color: #334155;
  font-weight: 700;
  transition: color 150ms ease;
}

.nav-link:hover,
.nav-link:focus {
  color: #0a6ea6;
  outline: none;
}

.section-kicker {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0a6ea6;
}

.action-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 1.5rem;
  background: #ffffff;
  padding: 1.25rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03), 0 10px 30px rgba(15, 23, 42, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  border: 1px solid rgba(148, 163, 184, 0.22);
}

.action-card:hover,
.action-card:focus {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(2, 132, 199, 0.12);
  border-color: rgba(2, 132, 199, 0.22);
  outline: none;
}

.action-icon {
  display: grid;
  place-items: center;
  height: 3.25rem;
  width: 3.25rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, #0284c7, #22b46e);
  color: white;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.specialty-card {
  text-align: left;
  border-radius: 1.75rem;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
  padding: 1.25rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.specialty-card:hover,
.specialty-card:focus {
  transform: translateY(-2px);
  border-color: rgba(2, 132, 199, 0.24);
  box-shadow: 0 16px 40px rgba(2, 132, 199, 0.08);
  outline: none;
}

.specialty-card.is-open .expand-indicator {
  transform: rotate(45deg);
}

.specialty-icon {
  display: grid;
  place-items: center;
  height: 3rem;
  width: 3rem;
  border-radius: 1rem;
  background: #eff8ff;
  color: #0a6ea6;
  font-size: 1.25rem;
  font-weight: 800;
}

.expand-indicator {
  display: grid;
  place-items: center;
  height: 2rem;
  width: 2rem;
  border-radius: 9999px;
  background: #eff8ff;
  color: #0a6ea6;
  font-size: 1.25rem;
  font-weight: 800;
  transition: transform 180ms ease;
}

.specialty-copy {
  margin-top: 1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  padding-top: 1rem;
  color: #475569;
  line-height: 1.75;
}

.field {
  display: grid;
  gap: 0.5rem;
}

.field span {
  font-size: 0.875rem;
  font-weight: 800;
  color: #334155;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid #cbd5e1;
  background: white;
  padding: 0.9rem 1rem;
  font: inherit;
  color: #0f172a;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #0284c7;
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.15);
  outline: none;
}

.step-dot {
  height: 0.75rem;
  width: 0.75rem;
  border-radius: 9999px;
  background: #cbd5e1;
}

.step-dot-active {
  background: #0284c7;
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.14);
}

.contact-card {
  border-radius: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: white;
  padding: 1.25rem;
}

.map-node {
  display: grid;
  place-items: center;
  border-radius: 9999px;
  font-weight: 800;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.08);
}

.map-node-main {
  height: 7rem;
  width: 7rem;
  background: linear-gradient(135deg, #0284c7, #22b46e);
  color: white;
  font-size: 1.5rem;
}

.map-node-secondary {
  height: 4rem;
  width: 4rem;
  margin-top: 1rem;
  background: white;
  color: #0a6ea6;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
