:root {
  --paper: oklch(96.5% 0.018 82);
  --paper-2: oklch(91.8% 0.036 88);
  --ink: oklch(23% 0.055 333);
  --muted: oklch(43% 0.035 318);
  --green: oklch(50% 0.115 168);
  --blue: oklch(42% 0.108 257);
  --copper: oklch(58% 0.14 48);
  --plum: oklch(36% 0.105 333);
  --line: oklch(81% 0.035 88);
  --white-tint: oklch(98.5% 0.012 88);
  --shadow: 0 24px 70px oklch(23% 0.055 333 / 0.16);
  --radius: 8px;
  font-family: "Anek Latin", ui-sans-serif, system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 12%, oklch(91% 0.08 166 / 0.46), transparent 26rem),
    linear-gradient(135deg, var(--paper) 0%, oklch(94% 0.02 62) 52%, oklch(91% 0.035 212) 100%);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.62;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(115deg, transparent 0 44%, oklch(60% 0.13 48 / 0.12) 44.2% 45.5%, transparent 45.7%),
    linear-gradient(105deg, transparent 0 63%, oklch(47% 0.12 168 / 0.11) 63.2% 64.4%, transparent 64.6%);
  opacity: 0.8;
  z-index: -1;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 50;
  background: var(--ink);
  color: var(--white-tint);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 16px;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}

.lead-panel a:focus-visible,
.lead-panel button:focus-visible,
.lead-panel input:focus-visible,
.lead-panel select:focus-visible,
.lead-panel textarea:focus-visible {
  outline-color: var(--white-tint);
}

.nav-toggle {
  display: none;
  width: 48px;
  min-height: 48px;
  padding: 0;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white-tint);
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.nav-toggle-bar {
  position: relative;
}

.nav-toggle-bar::before {
  position: absolute;
  top: -6px;
}

.nav-toggle-bar::after {
  position: absolute;
  top: 6px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: oklch(96.5% 0.018 82 / 0.92);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Sora", ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: conic-gradient(from 210deg, var(--green), var(--blue), var(--copper), var(--green));
  box-shadow: inset 0 0 0 7px var(--paper);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.96rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--ink);
}

.button,
button {
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white-tint);
  padding: 13px 20px;
  font: 800 0.95rem/1 "Sora", ui-sans-serif, system-ui, sans-serif;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  cursor: pointer;
}

.button:hover,
button:hover {
  transform: translateY(-1px);
}

.button.secondary {
  background: var(--green);
  color: var(--white-tint);
}

.hero {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  min-height: calc(100svh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  padding: clamp(42px, 7vw, 88px) 0 clamp(28px, 5vw, 64px);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--plum);
  font-family: "Sora", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--copper));
}

h1,
h2,
h3 {
  font-family: "Sora", ui-sans-serif, system-ui, sans-serif;
  line-height: 1.02;
  letter-spacing: 0;
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.8rem);
  max-width: 11ch;
  margin-top: 18px;
}

h2 {
  font-size: clamp(2.1rem, 4.8vw, 4.4rem);
  max-width: 13ch;
}

h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
}

.hero-text {
  max-width: 64ch;
  font-size: clamp(1.12rem, 2vw, 1.32rem);
  color: var(--muted);
  margin: 24px 0 26px;
}

.hero-callout {
  margin: 18px 0 0;
  padding: 12px 16px 12px 18px;
  border-left: 4px solid var(--copper);
  background: oklch(98% 0.012 88 / 0.6);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: "Sora", ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  color: var(--ink);
  max-width: 58ch;
}

.next-steps {
  margin-top: 26px;
  padding: 20px 22px;
  border-radius: 18px;
  background: oklch(98% 0.012 88 / 0.72);
  border: 1px solid var(--line);
}

.next-steps h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
}

.next-steps p {
  margin: 8px 0 0;
  color: var(--muted);
}

.next-steps-tic {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-weight: 700;
  color: var(--plum);
}

.hero-bullets {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.hero-bullets li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.hero-bullets li::before {
  content: "";
  flex: 0 0 22px;
  height: 12px;
  margin-top: 9px;
  border-radius: 999px;
  background: var(--copper);
}

.visual-wrap {
  position: relative;
  min-height: 320px;
}

.hero-visual {
  width: min(100%, 760px);
  border-radius: 28px;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.lead-panel {
  background: var(--ink);
  color: var(--white-tint);
  padding: clamp(22px, 4vw, 34px);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.lead-panel h2,
.lead-panel h3 {
  color: var(--white-tint);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  max-width: none;
}

.lead-panel p {
  color: oklch(90% 0.018 82);
  margin: 10px 0 20px;
}

.lead-form {
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  font-size: 0.92rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: var(--radius);
  background: oklch(98% 0.012 88);
  color: var(--ink);
  padding: 12px 13px;
  font: inherit;
}

textarea {
  min-height: 126px;
  resize: vertical;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: oklch(88% 0.018 82);
  font-size: 0.9rem;
  font-weight: 500;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 5px;
}

.form-error {
  color: oklch(82% 0.14 48);
  font-weight: 800;
  margin: 0;
}

.hp {
  position: absolute;
  left: -9999px;
}

.section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(56px, 9vw, 108px) 0;
}

.section-wide {
  width: 100%;
  margin: 0;
  padding: clamp(58px, 9vw, 118px) max(16px, calc((100vw - 1160px) / 2));
  background: var(--ink);
  color: var(--white-tint);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.58fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  margin-bottom: clamp(30px, 5vw, 56px);
}

.section-intro p {
  color: var(--muted);
  max-width: 58ch;
  margin: 0;
}

.section-wide .section-intro p {
  color: oklch(88% 0.018 82);
}

.pilot-road {
  display: grid;
  gap: 18px;
}

.road-step {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: clamp(18px, 4vw, 44px);
  align-items: center;
  padding: 18px 22px 18px 0;
  border-radius: 999px 8px 8px 999px;
  background: linear-gradient(90deg, oklch(98% 0.012 88 / 0.82), oklch(98% 0.012 88 / 0.22));
}

.step-mark {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white-tint);
  font-family: "Sora", ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
}

.road-step:nth-child(2) .step-mark {
  background: var(--blue);
}

.road-step:nth-child(3) .step-mark {
  background: var(--copper);
}

.road-step:nth-child(4) .step-mark {
  background: var(--plum);
}

.road-step p {
  max-width: 72ch;
  margin: 8px 0 0;
  color: var(--muted);
}

.ribbon-lanes {
  display: grid;
  gap: 14px;
}

.lane {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) minmax(170px, 0.36fr);
  gap: 20px;
  align-items: center;
  padding: 16px 18px 16px 0;
  border-radius: 999px 8px 8px 999px;
  background: linear-gradient(90deg, oklch(32% 0.07 333), oklch(32% 0.07 333 / 0.08));
}

.lane-code {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--copper);
  color: var(--ink);
  font-family: "Sora", ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
}

.lane h3 {
  color: var(--white-tint);
}

.lane p {
  margin: 6px 0 0;
  color: oklch(87% 0.018 82);
}

.lane-output {
  justify-self: end;
  min-width: 0;
  border-radius: 999px;
  padding: 9px 14px;
  background: oklch(96% 0.025 88);
  color: var(--ink);
  font-weight: 800;
  font-size: 0.92rem;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
}

.offer-block {
  padding: 24px 0;
}

.offer-block p {
  margin: 12px 0 0;
  color: var(--muted);
}

.offer-line {
  height: 14px;
  width: 96px;
  border-radius: 999px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--green), var(--blue), var(--copper));
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 880px;
}

details {
  background: oklch(98% 0.012 88);
  border-radius: 18px;
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-family: "Sora", ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
}

details p {
  color: var(--muted);
  margin: 12px 0 0;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.58fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.plain-list {
  padding-left: 1.1em;
  color: var(--muted);
}

.legal {
  max-width: 820px;
}

.legal h1 {
  max-width: 14ch;
  font-size: clamp(2.5rem, 6vw, 5rem);
}

.legal h2 {
  max-width: none;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  margin-top: 34px;
}

.footer {
  padding: 34px 0 48px;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 920px) {
  .hero,
  .section-intro,
  .two-col {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    max-width: 10ch;
  }

  .offer-grid {
    grid-template-columns: 1fr;
  }

  .lead-panel {
    border-radius: 22px;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    padding: 14px 0;
    gap: 12px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    font-size: 0.95rem;
  }

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

  .nav-links a {
    padding: 10px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .nav-links a.button {
    justify-content: center;
  }

  .hero-visual {
    transform: none;
    border-radius: 18px;
  }

  .road-step,
  .lane {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .lane-output {
    justify-self: start;
  }

  .footer {
    flex-direction: column;
  }
}

/* ── Hero answer + trust + freshness ── */
.hero-answer {
  max-width: 62ch;
  margin: 22px 0 18px;
  padding: 16px 18px;
  border-radius: 16px;
  background: oklch(98% 0.012 88 / 0.78);
  border: 1px solid var(--line);
  font-size: clamp(1.02rem, 1.7vw, 1.15rem);
  color: var(--ink);
}

.trust-strip {
  max-width: 60ch;
  margin: 22px 0 0;
  font-size: 0.96rem;
  color: var(--muted);
}

.trust-method {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-method strong {
  color: var(--plum);
}

.updated-note {
  margin: 14px 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

.optional {
  font-weight: 500;
  color: oklch(78% 0.018 82);
}

.lead-form .optional {
  color: oklch(80% 0.018 82);
}

.form-reassurance {
  margin: 8px 0 0;
  font-size: 0.86rem;
  font-weight: 600;
  color: oklch(86% 0.05 168);
}

.inline-cta .form-reassurance,
.cta-band .form-reassurance {
  color: var(--green);
}

/* ── Guide grid (home → content pages) ── */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2.4vw, 22px);
}

.guide-card {
  display: block;
  padding: 22px 24px;
  border-radius: 18px;
  background: oklch(98% 0.012 88 / 0.78);
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.guide-card:hover {
  transform: translateY(-2px);
  border-color: var(--green);
}

.guide-card p {
  margin: 10px 0 14px;
  color: var(--muted);
}

.guide-link {
  font-family: "Sora", ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--plum);
}

.cta-band {
  text-align: left;
}

.cta-band .button {
  margin-top: 18px;
}

/* ── Article / content pages ── */
.article {
  width: min(820px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(36px, 6vw, 72px) 0 clamp(48px, 8vw, 96px);
}

.breadcrumb {
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 22px;
}

.breadcrumb a {
  color: var(--plum);
  text-decoration: none;
  font-weight: 700;
}

.breadcrumb span[aria-hidden] {
  margin: 0 6px;
}

.article-head h1 {
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  max-width: 18ch;
  margin-top: 16px;
}

.article-lede {
  font-size: clamp(1.1rem, 2vw, 1.28rem);
  color: var(--muted);
  max-width: 64ch;
  margin: 22px 0 14px;
}

.article-section {
  margin-top: clamp(36px, 5vw, 56px);
}

.article-section h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  max-width: 22ch;
  margin-bottom: 16px;
}

.article-section h3 {
  margin-bottom: 6px;
}

.article-section p {
  margin: 0 0 16px;
  max-width: 70ch;
}

.article-section a {
  color: var(--plum);
  font-weight: 700;
}

.step-list,
.article-section ol {
  padding-left: 1.3em;
  max-width: 70ch;
}

.step-list li {
  margin-bottom: 12px;
}

.pillar-table,
.milestone-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 22px;
}

.pillar-row {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) minmax(120px, 0.32fr);
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 16px;
  background: oklch(98% 0.012 88 / 0.78);
  border: 1px solid var(--line);
}

.pillar-code,
.milestone-code {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white-tint);
  font-family: "Sora", ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
  font-size: 0.92rem;
}

.pillar-row:nth-child(2) .pillar-code { background: var(--blue); }
.pillar-row:nth-child(3) .pillar-code { background: var(--copper); }
.pillar-row:nth-child(4) .pillar-code { background: var(--plum); }
.pillar-row:nth-child(5) .pillar-code { background: oklch(45% 0.09 257); }

.pillar-row p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.pillar-output {
  justify-self: end;
  border-radius: 999px;
  padding: 7px 13px;
  background: oklch(96% 0.025 88);
  color: var(--ink);
  font-weight: 800;
  font-size: 0.82rem;
  text-align: center;
}

.milestone {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 16px;
  background: oklch(98% 0.012 88 / 0.78);
  border: 1px solid var(--line);
}

.milestone-code {
  background: var(--blue);
}

.milestone p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.inline-cta {
  margin-top: clamp(40px, 6vw, 60px);
  padding: 28px clamp(22px, 4vw, 36px);
  border-radius: 22px;
  background: var(--ink);
  color: var(--white-tint);
}

.inline-cta p {
  color: oklch(90% 0.018 82);
  max-width: 60ch;
}

.inline-cta .button {
  margin: 14px 0 0;
}

.related {
  margin-top: clamp(40px, 6vw, 60px);
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.related h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  max-width: none;
  margin-bottom: 14px;
}

.related ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.related a {
  color: var(--plum);
  font-weight: 700;
  text-decoration: none;
}

.related a:hover {
  text-decoration: underline;
}

@media (max-width: 680px) {
  .guide-grid {
    grid-template-columns: 1fr;
  }

  .pillar-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .pillar-output {
    justify-self: start;
  }

  .milestone {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* ── Consent banner ── */
.consent-banner {
  position: fixed; bottom: 0; left: 0; right: 0; background: var(--ink); color: #fff;
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; padding: 1rem clamp(1rem, 4vw, 2rem); z-index: 50;
}
.consent-banner p { margin: 0; margin-right: auto; }
.consent-banner .button.ghost {
  background: transparent; color: #fff; border: 1px solid rgba(255, 255, 255, 0.5);
}
