:root {
  --ink: #111820;
  --muted: #5f6e76;
  --line: #dce6e8;
  --paper: #f6f9f8;
  --white: #ffffff;
  --teal: #005f64;
  --teal-dark: #004a4f;
  --steel: #2c5f7c;
  --blue: #2c5f7c;
  --coral: #c96a4a;
  --shadow: 0 24px 60px rgba(14, 33, 43, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, "Helvetica Neue", Helvetica, Arial, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(20px, 4vw, 64px);
  background: rgba(246, 249, 248, 0.92);
  border-bottom: 1px solid rgba(220, 230, 232, 0.8);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--blue));
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #31444f;
  font-size: 0.94rem;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 999px;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: #e8efef;
  color: var(--teal);
}

.nav-cta {
  color: var(--white) !important;
  background: var(--ink) !important;
}

.nav-toggle {
  display: none;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(246, 249, 248, 0.98) 0%, rgba(246, 249, 248, 0.94) 44%, rgba(246, 249, 248, 0.68) 66%, rgba(246, 249, 248, 0.28) 84%, rgba(17, 24, 32, 0.08) 100%),
    linear-gradient(0deg, rgba(246, 249, 248, 0.92) 0%, rgba(246, 249, 248, 0) 28%);
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 40px));
  margin-left: clamp(20px, 6vw, 92px);
  padding: 76px 0 118px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.96;
  letter-spacing: -0.02em;
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  font-weight: 800;
}

h3 {
  font-size: 1.15rem;
}

.hero-copy {
  max-width: 650px;
  color: #46565f;
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
}

.button.primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(0, 95, 100, 0.22);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
}

.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.strip div {
  padding: 28px clamp(20px, 3vw, 44px);
  border-right: 1px solid var(--line);
}

.strip div:last-child {
  border-right: 0;
}

.strip strong,
.strip span {
  display: block;
}

.strip span {
  margin-top: 6px;
  color: var(--muted);
}

.section,
.page-hero {
  padding: clamp(64px, 9vw, 120px) clamp(20px, 6vw, 92px);
}

.page-hero {
  background: linear-gradient(135deg, #ffffff 0%, #eef3f3 52%, #dce6e8 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero h1,
.page-hero p {
  max-width: 860px;
}

.page-hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.2rem;
}

.page-hero.has-image {
  position: relative;
  display: grid;
  align-content: center;
  min-height: clamp(420px, 40vw, 620px);
  overflow: hidden;
  background: var(--paper);
}

.page-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
}

.page-hero-content {
  position: relative;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1fr);
  gap: clamp(36px, 7vw, 100px);
  align-items: start;
}

.lead-block {
  color: #46565f;
  font-size: 1.18rem;
}

.condition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  padding: 0 clamp(20px, 6vw, 92px) clamp(64px, 8vw, 112px);
}

.condition-grid a {
  min-height: 300px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.condition-grid a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.condition-grid span,
.detail-list span,
.pathway span {
  color: var(--coral);
  font-weight: 900;
}

.condition-grid strong {
  display: block;
  margin: 36px 0 12px;
  font-size: 1.45rem;
  line-height: 1.1;
}

.condition-grid p,
.feature-row p,
.service-grid p,
.prep-grid p,
.detail-list p,
.pathway p,
.faq-list p {
  color: var(--muted);
}

.dark {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  color: var(--white);
  background: radial-gradient(circle at 15% 20%, rgba(44, 95, 124, 0.35), transparent 40%), var(--ink);
}

.dark .eyebrow {
  color: #9fc3c4;
}

.dark-panel {
  align-self: center;
  padding: 34px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.dark-panel p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.feature-row,
.service-grid,
.prep-grid,
.team-grid,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-row article,
.service-grid article,
.prep-grid article,
.team-card,
.contact-card,
.inquiry-form,
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 10px 26px rgba(14, 33, 43, 0.05);
}

.service-grid {
  padding: clamp(64px, 8vw, 110px) clamp(20px, 6vw, 92px);
}

.prep-grid {
  padding: clamp(56px, 8vw, 104px) clamp(20px, 6vw, 92px);
}

.prep-grid span {
  color: var(--coral);
  font-weight: 900;
}

.prep-grid h2 {
  margin-top: 24px;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.12;
}

.detail-list,
.faq-list,
.pathway {
  display: grid;
  gap: 16px;
  padding: clamp(56px, 8vw, 104px) clamp(20px, 6vw, 92px);
}

.detail-list article {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 860px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.detail-list h2,
.pathway h2,
.service-grid h2 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.12;
}

.detail-list h2 a {
  text-decoration: underline;
  text-decoration-color: rgba(0, 95, 100, 0.32);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.detail-list h2 a:hover {
  color: var(--teal);
  text-decoration-color: var(--teal);
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  color: var(--teal);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.condition-content {
  display: grid;
  grid-template-columns: minmax(320px, 1.2fr) minmax(260px, 0.8fr);
  gap: 22px;
  padding: clamp(56px, 8vw, 104px) clamp(20px, 6vw, 92px) 24px;
}

.article-body,
.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(28px, 5vw, 48px);
  box-shadow: 0 10px 26px rgba(14, 33, 43, 0.05);
}

.article-body p,
.info-card li {
  color: var(--muted);
  font-size: 1.08rem;
}

.info-card ul {
  display: grid;
  gap: 12px;
  padding-left: 20px;
  margin-bottom: 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0 clamp(20px, 6vw, 92px) clamp(28px, 5vw, 56px);
}

.info-grid article {
  padding: 26px;
  border-left: 3px solid var(--teal);
  background: var(--white);
}

.info-grid p {
  color: var(--muted);
}

.next-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 clamp(20px, 6vw, 92px) clamp(64px, 8vw, 112px);
}

.pathway {
  grid-template-columns: repeat(4, 1fr);
}

.pathway article {
  padding: 28px;
  min-height: 280px;
  border-left: 3px solid var(--teal);
  background: var(--white);
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 clamp(20px, 6vw, 92px) clamp(72px, 8vw, 110px);
  gap: 14px;
}

.stats-band div {
  padding: 28px;
  color: var(--white);
  background: var(--steel);
  border-radius: 8px;
}

.stats-band strong,
.stats-band span {
  display: block;
}

.stats-band strong {
  font-size: 2rem;
}

.stats-band span {
  color: rgba(255, 255, 255, 0.72);
}

.team-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(56px, 8vw, 104px) clamp(20px, 6vw, 92px);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.team-preview div {
  max-width: 760px;
}

.team-preview h2,
.team-callout h2 {
  margin-bottom: 0;
}

.team-callout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
}

.team-grid {
  grid-template-columns: repeat(2, 1fr);
  padding: clamp(56px, 8vw, 104px) clamp(20px, 6vw, 92px);
}

.team-card {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 24px;
  align-items: start;
}

.team-photo {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--teal));
  font-weight: 900;
  font-size: 1.35rem;
}

.team-card h2 {
  margin-bottom: 8px;
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  line-height: 1.05;
}

.team-card p {
  color: var(--muted);
}

.team-role {
  color: var(--ink) !important;
  font-weight: 850;
}

.faq-list {
  max-width: 980px;
}

summary {
  cursor: pointer;
  font-weight: 850;
  font-size: 1.18rem;
}

.contact-layout {
  grid-template-columns: 0.8fr 1.2fr;
  padding: clamp(56px, 8vw, 104px) clamp(20px, 6vw, 92px);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0 clamp(20px, 6vw, 92px) clamp(56px, 7vw, 88px);
}

.contact-info-grid article,
.disclaimer-section {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 10px 26px rgba(14, 33, 43, 0.05);
}

.contact-info-grid h2 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.12;
}

.contact-info-grid p:not(.eyebrow),
.disclaimer-section p:not(.eyebrow) {
  color: var(--muted);
}

.contact-info-grid a,
.contact-card a,
.map-link {
  color: var(--teal);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.map-link {
  display: inline-flex;
  margin-top: 12px;
}

.disclaimer-section {
  margin: 0 clamp(20px, 6vw, 92px) clamp(64px, 8vw, 112px);
}

dl {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
  margin: 0;
}

dt {
  color: var(--muted);
}

dd {
  margin: 0;
  font-weight: 800;
}

.inquiry-form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfdfd;
  font: inherit;
}

.form-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.robotic-band {
  position: relative;
  min-height: clamp(380px, 56vw, 780px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.robotic-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 36px clamp(20px, 6vw, 92px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
}

.site-footer strong,
.site-footer a {
  color: var(--white);
}

.site-footer div:last-child {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 18px;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero {
    min-height: 760px;
  }

  .hero-image {
    object-position: 68% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(246, 249, 248, 0.98) 0%, rgba(246, 249, 248, 0.9) 46%, rgba(246, 249, 248, 0.38) 100%);
  }

  .strip,
  .condition-grid,
  .feature-row,
  .service-grid,
  .prep-grid,
  .team-grid,
  .condition-content,
  .info-grid,
  .contact-info-grid,
  .pathway,
  .stats-band,
  .dark,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .team-preview,
  .team-callout,
  .team-card {
    grid-template-columns: 1fr;
  }

  .team-preview {
    align-items: flex-start;
    flex-direction: column;
  }

  .strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .split,
  .detail-list article {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 68px;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .site-nav {
    top: 68px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-left: 16px;
    padding-top: 44px;
  }

  h1 {
    font-size: 3rem;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}
