:root {
  --navy: #132C49;
  --navy-2: #1B3C5C;
  --magenta: #CC1D8A;
  --mint: #DFF3EF;
  --cream: #F7F5F0;
  --ink: #132C49;
  --muted: #53677A;
  --line: rgba(19, 44, 73, .15);
  --surface: #fff;
  --shadow: 0 20px 50px -38px rgba(19, 44, 73, .56);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  color-scheme: light;
}

:root[data-theme="dark"] {
  --ink: #F2F7F5;
  --muted: #C4D2DF;
  --line: rgba(223, 243, 239, .16);
  --surface: rgba(255, 255, 255, .06);
  --shadow: none;
  --cream: #132C49;
  --mint: #173856;
  color-scheme: dark;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --ink: #F2F7F5;
    --muted: #C4D2DF;
    --line: rgba(223, 243, 239, .16);
    --surface: rgba(255, 255, 255, .06);
    --shadow: none;
    --cream: #132C49;
    --mint: #173856;
    color-scheme: dark;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--ink); font: 16px/1.6 var(--sans); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, p { margin: 0; }
h1, h2, h3 { font-family: var(--serif); line-height: 1.06; letter-spacing: -.025em; text-wrap: balance; }
h1 { font-size: clamp(2.75rem, 6vw, 5.25rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 600; }
h3 { font-size: 1.35rem; }
:focus-visible { outline: 3px solid var(--magenta); outline-offset: 3px; }

.shell { width: min(1120px, calc(100% - 2.5rem)); margin-inline: auto; }
.site-header { position: sticky; top: 0; z-index: 20; backdrop-filter: blur(18px); background: color-mix(in srgb, var(--mint) 88%, transparent); border-bottom: 1px solid var(--line); }
:root[data-theme="dark"] .site-header { background: color-mix(in srgb, #132C49 88%, transparent); }
@media (prefers-color-scheme: dark) { :root:not([data-theme]) .site-header { background: color-mix(in srgb, #132C49 88%, transparent); } }
.nav { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; }
.brand { display: block; width: 132px; height: 58px; overflow: hidden; flex: 0 0 auto; }
.brand img { width: 100%; height: 100%; object-fit: contain; }
.brand__dark { display: none; }
:root[data-theme="dark"] .brand__light { display: none; }
:root[data-theme="dark"] .brand__dark { display: block; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .brand__light { display: none; }
  :root:not([data-theme]) .brand__dark { display: block; }
}
.nav__links { display: flex; gap: 1.3rem; align-items: center; margin-left: auto; }
.nav__links a { color: var(--ink); font-size: .9rem; font-weight: 650; text-decoration: none; opacity: .82; }
.nav__links a:hover, .footer__links a:hover { color: var(--magenta); opacity: 1; }
.theme-toggle { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); background: transparent; color: var(--ink); font: inherit; cursor: pointer; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; min-height: 48px; padding: .8rem 1.1rem; border: 1px solid transparent; border-radius: 7px; background: var(--navy); color: #fff; font: 700 .91rem var(--sans); text-decoration: none; cursor: pointer; transition: transform .18s ease, background .18s ease, border-color .18s ease; }
.button:hover { transform: translateY(-2px); background: var(--navy-2); }
.button--soft { background: transparent; color: var(--ink); border-color: var(--line); }
.button--soft:hover { background: color-mix(in srgb, var(--mint) 40%, transparent); }
.button--magenta { background: var(--magenta); }
.button--magenta:hover { background: #AD1875; }

.hero { padding: clamp(4.5rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 6.8rem); background: radial-gradient(68rem 30rem at 78% -10%, rgba(204,29,138,.14), transparent 67%), linear-gradient(150deg, var(--navy), #173856); color: #F7F5F0; }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(240px, .75fr); gap: clamp(2rem, 7vw, 6.5rem); align-items: end; }
.eyebrow { display: inline-flex; align-items: center; gap: .65rem; color: #DFF3EF; font-size: .73rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--magenta); }
.hero p { color: #D7E4EC; max-width: 58ch; margin-top: 1.45rem; font-size: clamp(1.08rem, 1.6vw, 1.28rem); }
.hero__actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 2rem; }
.hero .button { background: var(--cream); color: var(--navy); }
.hero .button--soft { color: #fff; border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.04); }
.hero__aside { padding: 1.5rem; border: 1px solid rgba(223,243,239,.2); background: rgba(255,255,255,.055); border-radius: 15px; }
.hero__aside strong { display: block; color: #fff; font: 600 1.8rem/1 var(--serif); }
.hero__aside p { margin-top: .7rem; font-size: .96rem; }

.surface { padding: clamp(4rem, 9vw, 7rem) 0; position: relative; }
.surface--paper { background: linear-gradient(160deg, var(--cream), color-mix(in srgb, var(--cream) 87%, var(--mint))); }
.surface--mint { background: linear-gradient(150deg, color-mix(in srgb, var(--mint) 88%, var(--cream)), var(--mint)); }
.surface--navy { background: linear-gradient(145deg, var(--navy), #173856); color: #F7F5F0; }
.surface--navy .lead, .surface--navy .eyebrow { color: #D7E4EC; }
.surface--navy .eyebrow::before { background: var(--magenta); }
.section-head { max-width: 730px; }
.section-head .eyebrow { color: var(--magenta); }
.section-head .eyebrow::before { background: var(--magenta); }
.section-head h2 { margin-top: .65rem; }
.lead { max-width: 62ch; margin-top: 1rem; color: var(--muted); font-size: 1.08rem; }

.grid { display: grid; gap: 1.1rem; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card { padding: 1.5rem; border: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow); border-radius: 14px; }
.card h3 { margin-top: .65rem; }
.card p { color: var(--muted); margin-top: .7rem; }
.card__number { color: var(--magenta); font: 700 .73rem var(--sans); letter-spacing: .16em; text-transform: uppercase; }
.card--emphasis { border-top: 3px solid var(--magenta); }

.steps { margin-top: 2.3rem; }
.offer-stack { margin-top: 2rem; display: grid; gap: 1px; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: var(--line); }
.offer { display: grid; grid-template-columns: auto 1fr; gap: 1rem; padding: 1.3rem; background: var(--surface); }
.offer__index { color: var(--magenta); font: 700 .78rem var(--sans); letter-spacing: .14em; padding-top: .2rem; }
.offer h3 { font-family: var(--sans); font-size: 1.08rem; letter-spacing: 0; }
.offer p { color: var(--muted); margin-top: .3rem; }

.pill-list { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1.6rem; }
.pill { padding: .55rem .72rem; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); font-size: .9rem; }
.pill::before { content: ""; display: inline-block; width: 6px; height: 6px; margin: 0 .45rem 1px 0; border-radius: 50%; background: var(--magenta); }

.trazomo { display: grid; grid-template-columns: auto 1fr auto; gap: 1.2rem; align-items: center; margin-top: 2.5rem; padding: 1.35rem; border: 1px solid color-mix(in srgb, var(--magenta) 45%, var(--line)); border-radius: 14px; background: color-mix(in srgb, var(--mint) 70%, var(--surface)); }
.trazomo__mark { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--navy); color: #fff; font-weight: 800; }
.trazomo strong { display: block; font-size: 1.05rem; }
.trazomo p { color: var(--muted); margin-top: .15rem; }
.text-link { color: var(--magenta); font-weight: 750; text-decoration-thickness: 1px; text-underline-offset: 3px; }

.boundary { margin-top: 2.5rem; padding: clamp(1.35rem, 3vw, 2rem); border-left: 4px solid var(--magenta); background: color-mix(in srgb, var(--surface) 86%, var(--mint)); }
.boundary h2 { font-size: clamp(1.55rem, 3vw, 2.15rem); }
.boundary p { max-width: 77ch; color: var(--muted); margin-top: .8rem; }
.boundary strong { color: var(--ink); }

.metric { padding: 1.15rem; border: 1px solid rgba(223,243,239,.22); border-radius: 12px; background: rgba(255,255,255,.05); }
.metric strong { display: block; font: 600 clamp(1.65rem, 3vw, 2.5rem)/1 var(--serif); color: #fff; }
.metric span { color: #D7E4EC; font-size: .92rem; }

.terms { margin-top: 2rem; display: grid; gap: .85rem; }
.terms details { border: 1px solid var(--line); border-radius: 10px; background: var(--surface); padding: 1rem 1.15rem; }
.terms summary { cursor: pointer; font-weight: 750; }
.terms p, .terms li { color: var(--muted); }
.terms p { margin-top: .8rem; }
.terms ul { margin: .7rem 0 0; padding-left: 1.1rem; }

.forms { margin-top: 2.5rem; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; align-items: start; }
.form-card { padding: clamp(1.25rem, 3vw, 2rem); border: 1px solid var(--line); border-radius: 14px; background: var(--surface); box-shadow: var(--shadow); }
.form-card > p { color: var(--muted); margin-top: .6rem; }
.field { display: grid; gap: .35rem; margin-top: .9rem; }
.field label { font-size: .9rem; font-weight: 700; }
.field input, .field textarea { width: 100%; padding: .75rem .85rem; border: 1px solid var(--line); border-radius: 7px; background: transparent; color: var(--ink); font: inherit; }
.field textarea { min-height: 108px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: 2px solid var(--magenta); outline-offset: 1px; border-color: transparent; }
.check { display: flex; align-items: flex-start; gap: .55rem; margin-top: 1rem; color: var(--muted); font-size: .88rem; }
.check input { margin-top: .25rem; accent-color: var(--magenta); }
.form-status { min-height: 1.5rem; margin-top: .8rem; color: var(--muted); font-size: .9rem; }
.form-status[data-state="error"] { color: #A91842; }
.form-status[data-state="success"] { color: #287053; }
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(1px, 1px, 1px, 1px) !important; white-space: nowrap !important; }

.legal-copy { max-width: 780px; }
.legal-copy h2 { margin-top: 2.6rem; font-size: clamp(1.55rem, 3vw, 2.3rem); }
.legal-copy p, .legal-copy li { color: var(--muted); margin-top: .9rem; }
.legal-copy ul { padding-left: 1.25rem; }
.legal-copy strong { color: var(--ink); }

.site-footer { padding: 3rem 0; background: #102C49; color: #C4D2DF; }
.footer__top { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 2rem; align-items: start; }
.footer__legal { max-width: 65ch; margin-top: .9rem; font-size: .87rem; }
.footer__links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .8rem 1.15rem; font-size: .9rem; }
.footer__links a { color: #EAF1F6; text-decoration: none; }

@media (max-width: 840px) {
  .nav__links { display: none; }
  .hero__grid, .grid--2, .grid--3, .forms { grid-template-columns: 1fr; }
  .hero__aside { max-width: 430px; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__links { justify-content: flex-start; }
}

@media (max-width: 580px) {
  .shell { width: min(100% - 1.5rem, 1120px); }
  .brand { width: 116px; height: 51px; }
  .nav { min-height: 65px; }
  .trazomo { grid-template-columns: auto 1fr; }
  .trazomo .text-link { grid-column: 2; }
}
