:root {
  --ink: #10212b;
  --ink-soft: #3d5662;
  --paper: #f7f3ea;
  --surface: #ffffff;
  --navy: #0b2533;
  --navy-soft: #123849;
  --accent: #08b9d4;
  --accent-strong: #007f98;
  --border: #cad8dc;
  --focus: #f5a623;
  --positive: #15745a;
  --caution: #9b5713;
  --radius-sm: .75rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --shadow: 0 20px 60px rgba(11, 37, 51, .12);
  --shell: 1180px;
  --reading: 820px;
  --font-display: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", sans-serif;
  --font-body: "Aptos", "Segoe UI Variable Text", "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-underline-offset: .18em; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

h1, h2, h3, p, figure, dl { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -.035em;
  text-wrap: balance;
}
h1 { max-width: 13ch; margin-bottom: 1.35rem; font-size: clamp(2.75rem, 6vw, 5.9rem); font-weight: 750; }
h2 { margin-bottom: 1rem; font-size: clamp(2.05rem, 4vw, 3.8rem); font-weight: 730; }
h3 { margin-bottom: .7rem; font-size: 1.3rem; letter-spacing: -.02em; }
p { text-wrap: pretty; }

.shell { width: min(calc(100% - 2.5rem), var(--shell)); margin-inline: auto; }
.narrow { width: min(calc(100% - 2.5rem), var(--reading)); }
.section-pad { padding-block: clamp(4.5rem, 9vw, 8.5rem); }
.section-paper { background: var(--paper); }
.section-navy { overflow: hidden; background: var(--navy); color: #fff; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: .75rem 1rem;
  transform: translateY(-160%);
  border-radius: .5rem;
  background: var(--focus);
  color: #1b160b;
  font-weight: 750;
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(202, 216, 220, .7);
  background: rgba(255, 255, 255, .93);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -.02em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border-radius: .7rem;
  background: var(--navy);
  color: var(--accent);
}
.brand-mark svg { width: 1.5rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }

.site-nav { display: flex; align-items: center; gap: 1.65rem; }
.site-nav a {
  position: relative;
  padding-block: .85rem;
  color: var(--ink-soft);
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
}
.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: .55rem;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--accent-strong);
  content: "";
  transition: transform .2s ease;
}
.site-nav a:hover::after { transform: scaleX(1); }
.nav-toggle { display: none; }

.hero { position: relative; overflow: hidden; padding-top: clamp(3.5rem, 8vw, 7.5rem); }
.hero::before {
  position: absolute;
  z-index: -1;
  top: -30rem;
  right: -25rem;
  width: 60rem;
  height: 60rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 185, 212, .17), rgba(8, 185, 212, 0) 67%);
  content: "";
}

.hero-grid { display: grid; align-items: center; gap: clamp(2.5rem, 6vw, 6rem); grid-template-columns: minmax(0, 1.03fr) minmax(360px, .97fr); }
.eyebrow, .section-label, .column-kicker {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1rem;
  color: var(--accent-strong);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.status-dot { width: .55rem; height: .55rem; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px rgba(8, 185, 212, .13); }

.disclosure-inline {
  display: grid;
  margin-bottom: 1.5rem;
  padding: 1rem 1.1rem;
  grid-template-columns: 1.25rem 1fr;
  gap: .75rem;
  border: 1px solid #b8dce3;
  border-radius: var(--radius-sm);
  background: #eefbfc;
  color: #173d48;
  font-size: .88rem;
  line-height: 1.45;
}
.disclosure-inline svg { width: 1.25rem; fill: none; stroke: var(--accent-strong); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.9; }
.disclosure-inline p { margin: 0; }
.hero-lede { max-width: 57ch; margin-bottom: 1.8rem; color: var(--ink-soft); font-size: clamp(1.1rem, 2vw, 1.3rem); }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.2rem; }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .86rem 1.2rem;
  border: 1px solid transparent;
  border-radius: .75rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 1.1rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2.2; }
.button-primary { background: var(--accent-strong); box-shadow: 0 10px 24px rgba(0, 127, 152, .22); color: #fff; }
.button-primary:hover { background: #006b80; box-shadow: 0 14px 32px rgba(0, 127, 152, .28); }
.button-light { background: #fff; color: var(--navy); }
.button-light:hover { background: #daf7fb; }
.text-link { color: var(--navy); font-weight: 800; }
.microcopy { margin: .85rem 0 0; color: #5d737d; font-size: .78rem; }

.hero-media { position: relative; margin: 0; }
.hero-media::before {
  position: absolute;
  z-index: -1;
  top: -1rem;
  right: -1rem;
  width: 42%;
  height: 42%;
  border-radius: var(--radius-lg);
  background: var(--accent);
  content: "";
}
.hero-media img { width: 100%; border: 1px solid #d9e2e4; border-radius: var(--radius-lg); box-shadow: var(--shadow); object-fit: cover; aspect-ratio: 16 / 10; }
.hero-media figcaption { max-width: 42ch; margin: .9rem 0 0 auto; color: var(--ink-soft); font-size: .78rem; text-align: right; }

.verdict-panel { overflow: hidden; margin-top: 2rem; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow); }
.verdict-lead { display: grid; padding: clamp(1.6rem, 4vw, 2.75rem); grid-template-columns: auto 1fr; gap: 1.4rem; border-bottom: 1px solid var(--border); }
.verdict-lead p { margin: 0; font-family: var(--font-display); font-size: clamp(1.25rem, 2.2vw, 1.7rem); font-weight: 650; line-height: 1.4; }
.verdict-number { color: var(--accent-strong); font-size: .8rem; font-weight: 850; letter-spacing: .1em; }
.verdict-facts { display: grid; margin: 0; grid-template-columns: repeat(3, 1fr); }
.verdict-facts div { padding: 1.6rem; }
.verdict-facts div + div { border-left: 1px solid var(--border); }
.verdict-facts dt { margin-bottom: .5rem; color: var(--accent-strong); font-size: .75rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.verdict-facts dd { margin: 0; color: var(--ink-soft); font-size: .92rem; }

.content-split { display: grid; align-items: start; gap: clamp(2.5rem, 8vw, 7rem); grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr); }
.section-intro { position: sticky; top: 7rem; }
.section-intro p:not(.section-label) { max-width: 42ch; color: var(--ink-soft); }
.prose { max-width: 65ch; color: var(--ink-soft); font-size: 1.08rem; }
.prose > p:first-child { color: var(--ink); font-size: 1.25rem; }
.evidence-note { display: grid; margin-top: 2rem; padding: 1.2rem; grid-template-columns: 1.65rem 1fr; gap: .8rem; border-left: 4px solid var(--accent); background: #f0fafb; font-size: .9rem; line-height: 1.55; }
.evidence-note p { margin: 0; }
.evidence-icon { display: grid; width: 1.6rem; height: 1.6rem; place-items: center; border-radius: 50%; background: var(--navy); color: #fff; font-family: Georgia, serif; font-weight: 800; }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 3rem; margin-bottom: 3.2rem; }
.section-heading > div { max-width: 670px; }
.section-heading > p { max-width: 42ch; margin-bottom: .3rem; color: var(--ink-soft); }
.light-heading .section-label { color: #5ee5f2; }
.light-heading > p { color: #bfd0d7; }
.workflow-list { display: grid; margin: 0 0 3rem; padding: 0; grid-template-columns: repeat(4, 1fr); list-style: none; counter-reset: none; }
.workflow-list li { position: relative; padding: 2rem 1.7rem 2rem 0; border-top: 1px solid rgba(255, 255, 255, .25); }
.workflow-list li:not(:last-child) { margin-right: 1.7rem; }
.workflow-list li:not(:last-child)::after { position: absolute; top: -.33rem; right: -1rem; width: .65rem; height: .65rem; transform: rotate(45deg); border-top: 1px solid #5ee5f2; border-right: 1px solid #5ee5f2; content: ""; }
.step-number { display: block; margin-bottom: 2rem; color: #5ee5f2; font-size: .8rem; font-weight: 850; letter-spacing: .1em; }
.workflow-list p { margin: 0; color: #bfd0d7; font-size: .93rem; }
.center-action { text-align: center; }

.balance-grid { display: grid; overflow: hidden; grid-template-columns: 1fr 1fr; border: 1px solid var(--border); border-radius: var(--radius-lg); }
.balance-column { padding: clamp(1.6rem, 4vw, 3.2rem); }
.balance-column + .balance-column { border-left: 1px solid var(--border); }
.strengths { background: #f1faf7; }
.limitations { background: #fff8ef; }
.strengths .column-kicker { color: var(--positive); }
.limitations .column-kicker { color: var(--caution); }
.check-list { margin: 0; padding: 0; list-style: none; }
.check-list li { display: grid; padding-block: 1.25rem; grid-template-columns: 2rem 1fr; gap: .8rem; border-top: 1px solid rgba(16, 33, 43, .12); }
.check-list li > span { display: grid; width: 1.65rem; height: 1.65rem; place-items: center; border: 1px solid currentColor; border-radius: 50%; color: inherit; font-weight: 850; }
.strengths .check-list li > span { color: var(--positive); }
.limitations .check-list li > span { color: var(--caution); }
.check-list p { margin: .3rem 0 0; color: var(--ink-soft); font-size: .92rem; }

.section-lede { max-width: 65ch; margin-bottom: 2rem; color: var(--ink-soft); font-size: 1.08rem; }
.price-table { overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--surface); box-shadow: 0 12px 36px rgba(11, 37, 51, .08); }
.price-row { display: grid; align-items: center; padding: 1.15rem 1.3rem; grid-template-columns: .8fr .55fr 1.65fr; gap: 1rem; }
.price-row + .price-row { border-top: 1px solid var(--border); }
.price-head { background: var(--navy); color: #fff; font-size: .76rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.price { color: var(--accent-strong); font-family: var(--font-display); font-size: 1.45rem; font-weight: 800; }
.price-row span:last-child { color: var(--ink-soft); font-size: .88rem; }
.price-head span:last-child { color: #fff; }
.price-caveat { margin: 1.2rem 0 0; color: var(--ink-soft); font-size: .9rem; }

.fit-list { border-top: 1px solid var(--border); }
.fit-list article { display: grid; padding-block: 1.6rem; grid-template-columns: 2.5rem 1fr; gap: 1rem; border-bottom: 1px solid var(--border); }
.fit-list h3 { margin-bottom: .25rem; }
.fit-list p { margin: 0; color: var(--ink-soft); }
.fit-index { color: var(--accent-strong); font-size: .78rem; font-weight: 850; }

.faq-layout { display: grid; gap: 2.5rem; grid-template-columns: .78fr 1.22fr; }
.faq-layout > div:first-child { position: sticky; top: 7rem; align-self: start; }
.faq-item { border-top: 1px solid #b9c9ce; }
.faq-item:last-child { border-bottom: 1px solid #b9c9ce; }
.faq-item h3 { margin: 0; }
.faq-button {
  display: flex;
  width: 100%;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-weight: 780;
  text-align: left;
}
.faq-button svg { width: 1.2rem; flex: 0 0 auto; fill: none; stroke: var(--accent-strong); stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; transition: transform .2s ease; }
.faq-button[aria-expanded="true"] svg { transform: rotate(180deg); }
.faq-panel { padding: 0 2.7rem 1.35rem 0; color: var(--ink-soft); }
.faq-panel p { margin: 0; }

.final-verdict { background: linear-gradient(135deg, #eafafb, #fff 65%); }
.final-grid { display: grid; align-items: start; gap: clamp(2.5rem, 8vw, 7rem); grid-template-columns: 1fr .78fr; }
.final-grid > div:last-child > p:first-child { color: var(--ink-soft); font-size: 1.08rem; }
.final-grid .button { margin-top: .7rem; }

.mobile-cta { display: none; }
.site-footer { padding-block: 3.5rem; background: #071a24; color: #c7d7de; }
.footer-grid { display: grid; align-items: start; grid-template-columns: 1fr auto 1fr; gap: 3rem; }
.footer-brand { margin-bottom: 1rem; color: #fff; }
.site-footer nav { display: grid; gap: .65rem; }
.site-footer nav a { color: #fff; font-size: .9rem; font-weight: 700; }
.footer-note { max-width: 44ch; justify-self: end; font-size: .78rem; }
.footer-note p:last-child { margin-bottom: 0; }

.legal-main { min-height: 70vh; background: linear-gradient(180deg, var(--paper), #fff 38%); }
.legal-article { padding-block: clamp(4rem, 9vw, 8rem); }
.legal-article h1 { max-width: 16ch; font-size: clamp(2.8rem, 7vw, 5.4rem); }
.legal-article h2 { margin-top: 2.5rem; font-size: clamp(1.45rem, 3vw, 2rem); }
.legal-article p { max-width: 68ch; color: var(--ink-soft); }
.legal-article .legal-lede { color: var(--ink); font-size: clamp(1.15rem, 2vw, 1.35rem); font-weight: 620; }
.legal-article .button { margin-top: 1.5rem; color: #fff; }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-media { max-width: 760px; }
  .verdict-facts { grid-template-columns: 1fr; }
  .verdict-facts div + div { border-top: 1px solid var(--border); border-left: 0; }
  .workflow-list { grid-template-columns: 1fr 1fr; }
  .workflow-list li:nth-child(2)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-note { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 5rem; }
  body { padding-bottom: 68px; }
  .shell, .narrow { width: min(calc(100% - 1.5rem), var(--shell)); }
  .header-inner { min-height: 68px; }
  .nav-toggle {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: .7rem;
    background: #fff;
    color: var(--navy);
    cursor: pointer;
  }
  .nav-toggle svg { width: 1.35rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-width: 2; }
  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    padding: .65rem 1rem 1rem;
    border-bottom: 1px solid var(--border);
    background: #fff;
    box-shadow: 0 16px 30px rgba(11, 37, 51, .1);
  }
  .site-nav[data-open="true"] { display: grid; }
  .site-nav a { min-height: 44px; padding: .7rem .25rem; }
  .site-nav a::after { display: none; }
  .hero { padding-top: 2.5rem; }
  h1 { font-size: clamp(2.55rem, 13vw, 4.2rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { align-self: flex-start; }
  .hero-media::before { top: -.6rem; right: -.4rem; }
  .hero-media figcaption { text-align: left; }
  .content-split, .faq-layout, .final-grid { grid-template-columns: 1fr; }
  .section-intro, .faq-layout > div:first-child { position: static; }
  .section-heading { align-items: start; flex-direction: column; gap: .5rem; }
  .balance-grid { grid-template-columns: 1fr; }
  .balance-column + .balance-column { border-top: 1px solid var(--border); border-left: 0; }
  .price-table { overflow-x: auto; }
  .price-row { min-width: 680px; }
  .mobile-cta {
    position: fixed;
    z-index: 45;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: 68px;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .65rem 1rem;
    border-top: 1px solid #1a4658;
    background: var(--navy);
    color: #fff;
    font-size: .78rem;
    box-shadow: 0 -10px 24px rgba(11, 37, 51, .18);
  }
  .mobile-cta a { min-height: 44px; padding: .72rem .9rem; border-radius: .6rem; background: var(--accent); color: #071a24; font-weight: 850; text-decoration: none; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .section-pad { padding-block: 4.5rem; }
  .brand > span:last-child { max-width: 11ch; line-height: 1.05; }
  .disclosure-inline { grid-template-columns: 1fr; }
  .verdict-lead { grid-template-columns: 1fr; }
  .workflow-list { grid-template-columns: 1fr; }
  .workflow-list li { margin-right: 0 !important; padding-right: 0; }
  .workflow-list li::after { display: none; }
  .mobile-cta span { max-width: 16ch; line-height: 1.25; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
