:root {
    --ink:        oklch(22% 0.025 235);
    --ink-soft:   oklch(37% 0.026 235);
    --brand:      oklch(38% 0.098 231);
    --brand-deep: oklch(27% 0.075 232);
    --steel:      oklch(82% 0.018 230);
    --steel-soft: oklch(94% 0.012 230);
    --paper:      oklch(98% 0.006 230);
    --white:      oklch(99% 0.004 230);
    --line:       oklch(86% 0.014 230);
    --dark:       oklch(20% 0.04 232);
    --signal:     oklch(57% 0.18 29);
    --signal-dark:oklch(52% 0.19 29);
    --amber:      oklch(75% 0.145 74);
    --green:      oklch(52% 0.115 158);
    --focus-ring: oklch(75% 0.145 74 / .45);
    --ease-out:   cubic-bezier(.16, 1, .3, 1);
    --font-d:     Calibri, "Aptos", "Segoe UI", sans-serif;
    --font-b:     Calibri, "Aptos", "Segoe UI", sans-serif;
    --max:        1060px;
    --hmw:        1240px;
    --r:          8px;
}

/* ── RESET & BASE ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-b);
    font-size: 1rem;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
.container { max-width: var(--max); margin: 0 auto; padding: 0 2rem; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* Evita viudas/huérfanas: titulares balanceados, párrafos sin última línea suelta */
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

/* ── SKIP LINK ─────────────────────────────────────── */
.skip-link {
    position: absolute; top: -100%; left: 1rem;
    background: var(--amber); color: var(--ink);
    font-family: var(--font-b); font-size: .9rem; font-weight: 700;
    padding: .5rem 1.1rem; border-radius: 4px;
    text-decoration: none; z-index: 9999;
}
.skip-link:focus { top: 1rem; }

/* ── HEADER (idéntico a final/) ───────────────────── */
.site-header {
    background: oklch(98% 0.006 230 / 0.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: .5rem 1.5rem;
    position: sticky; top: 0; z-index: 200;
}
.site-header .container {
    max-width: var(--hmw);
    display: flex; align-items: center; justify-content: space-between;
    gap: 1.5rem;
}
.header-left { display: flex; align-items: center; gap: 1.5rem; flex-shrink: 0; }
.brand-lockup { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.brand-lockup:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 3px; }
.brand-lockup img { height: 4rem; width: auto; }
.header-web-link {
    font-family: var(--font-b); font-size: .75rem; font-weight: 600;
    color: var(--ink-soft); text-decoration: none;
    letter-spacing: .02em; white-space: nowrap;
    transition: color .15s;
}
.header-web-link:hover { color: var(--brand); }
.header-web-link:focus-visible { outline: 1px solid var(--brand); outline-offset: 3px; border-radius: 2px; }
.header-claim {
    font-family: var(--font-b); font-size: .75rem; font-weight: 600;
    color: var(--ink-soft); letter-spacing: .01em;
    text-align: right; white-space: nowrap; flex-shrink: 0;
    transition: color .15s, font-size .15s;
}
.header-claim:hover { color: var(--brand); }
@media (max-width: 1024px) {
    .header-web-link { display: none; }
}
@media (max-width: 900px) {
    .header-claim { font-size: .66rem; }
}
@media (max-width: 700px) {
    .header-claim { font-size: .58rem; }
}
@media (max-width: 600px) {
    .site-header { padding: .4rem 1rem; }
    .brand-lockup img { height: 2.75rem; }
    .header-claim { display: none; }
}

/* ── HERO ──────────────────────────────────────────── */
.hero {
    background: linear-gradient(130deg, oklch(96% 0.012 230) 0%, oklch(91% 0.02 230) 55%, oklch(97% 0.006 230) 100%);
    border-bottom: 1px solid var(--line);
    padding: 5rem 2rem 6rem;
    position: relative; overflow: hidden;
}
.hero::after {
    content: '';
    position: absolute;
    width: 720px; height: 720px;
    top: -180px; right: -180px;
    background: radial-gradient(circle, oklch(38% 0.098 231 / .07) 0%, transparent 65%);
    pointer-events: none;
}
.hero__grid {
    position: relative; z-index: 1;
    max-width: var(--hmw); margin: 0 auto;
    display: grid; grid-template-columns: 1fr; gap: 3rem;
}
.hero-copy { color: var(--ink); }
.eyebrow {
    display: inline-flex; align-items: center; gap: .5rem;
    font-family: var(--font-b); font-size: .7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .14em; color: var(--brand);
    margin-bottom: 1.5rem;
}
.eyebrow::before {
    content: '';
    width: .32rem; height: .32rem; flex-shrink: 0;
    background: var(--brand); border-radius: 50%;
    animation: dotPulse 2.5s ease-in-out 1.1s infinite;
}
.hero h1 {
    font-family: var(--font-d);
    color: var(--brand-deep);
    font-size: clamp(2.15rem, 6.4vw, 3.6rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.02em;
    margin-bottom: 1.15rem;
    max-width: 680px;
}
.hero-lede {
    font-size: clamp(1.05rem, 2.4vw, 1.25rem);
    color: var(--ink);
    font-weight: 600;
    margin-bottom: .9rem;
    max-width: 560px;
}
.hero-body {
    font-size: .94rem;
    color: var(--ink-soft);
    line-height: 1.85;
    max-width: 540px;
    margin-bottom: 1.5rem;
}
.primary-cta {
    display: inline-flex; align-items: center; gap: .55rem;
    background: var(--signal); color: oklch(98% 0.006 230);
    font-family: var(--font-b); font-size: .98rem; font-weight: 700;
    padding: .95rem 1.6rem; border-radius: 6px;
    text-decoration: none; letter-spacing: .01em;
    box-shadow: 0 14px 28px oklch(57% 0.18 29 / .3);
    transition: background .15s, transform .15s, box-shadow .15s;
}
.primary-cta:hover { background: var(--signal-dark); transform: translateY(-2px); box-shadow: 0 18px 34px oklch(57% 0.18 29 / .36); }
.primary-cta:active { transform: translateY(0); }
.primary-cta:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }
.microcopy { margin-top: .9rem; font-size: .84rem; color: var(--ink-soft); }

.trust-strip {
    display: flex; flex-wrap: wrap; gap: .55rem;
    margin-top: 1.6rem;
}
.trust-strip span {
    display: inline-flex; align-items: center; gap: .4rem;
    background: var(--steel-soft); border: 1px solid var(--line);
    border-radius: 20px; padding: .4rem .9rem;
    font-size: .78rem; font-weight: 700; color: var(--brand-deep);
}
.trust-strip span::before { content: '✓'; color: var(--green); font-weight: 800; }

/* ── FORM CARD (hero) / MAIN FORM (cta final) ─────── */
.form-card {
    background: var(--white);
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,.32), 0 4px 12px rgba(0,0,0,.12);
    border: 2px solid var(--amber);
    animation: borderPulse 2.8s ease-in-out 2.4s infinite;
}
.form-card__hd { background: var(--dark); padding: 1.35rem 1.65rem 1.2rem; }
.form-card__title { font-family: var(--font-d); font-size: 1.05rem; font-weight: 700; color: oklch(94% 0.01 230); margin-bottom: .25rem; }
.form-card__sub { font-size: .82rem; color: oklch(83% 0.012 230); line-height: 1.55; }
.form-card__bd { padding: 1.65rem 1.65rem 1.5rem; }

.panel-topline { display: flex; gap: .55rem; flex-wrap: wrap; margin-bottom: 1.3rem; }
.panel-topline span {
    display: inline-flex; align-items: center; gap: .4rem;
    background: var(--steel-soft); border: 1px solid var(--line);
    border-radius: 20px; padding: .3rem .85rem;
    font-size: .73rem; font-weight: 700; color: var(--brand-deep);
}

form label {
    display: flex; flex-direction: column; gap: .35rem;
    font-size: .8rem; font-weight: 700; color: var(--ink);
    margin-top: 1rem;
}
form label:first-of-type { margin-top: 0; }
form input {
    font-family: var(--font-b); font-size: .95rem;
    padding: .74rem .95rem;
    border: 1.5px solid var(--line);
    border-radius: 6px;
    color: var(--ink); background: var(--paper);
    transition: border-color .15s, box-shadow .15s;
    outline: none;
}
form input:hover:not(:focus) { border-color: var(--steel); }
form input:focus { border-color: var(--brand); outline: 3px solid var(--focus-ring); }
form input.error { border-color: var(--signal); box-shadow: 0 0 0 2px oklch(57% 0.18 29 / .14); }
form input::placeholder { color: var(--steel); }

form label.consent {
    flex-direction: row; align-items: flex-start; gap: .65rem;
    font-size: .78rem; font-weight: 600; color: var(--ink-soft); line-height: 1.5;
}
form label.consent input[type="checkbox"] {
    width: 1.05rem; height: 1.05rem; flex-shrink: 0; margin-top: .15rem;
    accent-color: var(--brand); cursor: pointer;
}
form label.consent input.error { outline: 2px solid var(--signal); outline-offset: 2px; border-radius: 3px; }

form button {
    width: 100%; margin-top: 1.15rem;
    background: var(--signal); color: oklch(98% 0.006 230);
    font-family: var(--font-b); font-size: 1rem; font-weight: 700;
    padding: .95rem; border: 2px solid var(--signal);
    border-radius: 6px; cursor: pointer; letter-spacing: .02em;
    transition: background .15s, border-color .15s, transform .1s;
    position: relative; overflow: hidden;
}
form button:hover { background: var(--signal-dark); border-color: var(--signal-dark); }
form button:active { transform: scale(.99); }
form button:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }
form button:disabled { opacity: .7; cursor: default; }
form button::after {
    content: '';
    position: absolute; top: 0; bottom: 0; left: -100%; width: 55%;
    background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,.32) 50%, transparent 80%);
    animation: shimmer 2.2s ease-in-out 2s infinite;
    pointer-events: none;
}
output { display: block; min-height: 1.4em; margin-top: .85rem; font-size: .85rem; font-weight: 700; }
.microcopy.strong { color: var(--ink); font-weight: 700; }

.hero .form-card { animation: fadeUp .75s var(--ease-out) .4s both, borderPulse 2.8s ease-in-out 2.4s infinite; }
.hero-copy .eyebrow    { opacity: 0; animation: fadeUp .55s var(--ease-out) .1s  forwards; }
.hero-copy h1          { opacity: 0; animation: fadeUp .65s var(--ease-out) .26s forwards; }
.hero-copy .hero-lede  { opacity: 0; animation: fadeUp .65s var(--ease-out) .4s  forwards; }
.hero-copy .hero-body  { opacity: 0; animation: fadeUp .65s var(--ease-out) .54s forwards; }
.hero-copy .primary-cta,
.hero-copy .microcopy,
.hero-copy .trust-strip { opacity: 0; animation: fadeUp .65s var(--ease-out) .66s forwards; }

/* ── SECTION BASE / TITLES ────────────────────────── */
section { padding: 4.5rem 2rem; }
.kicker {
    display: inline-flex; align-items: center; gap: .55rem;
    font-size: .68rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: .14em;
    color: var(--brand); margin-bottom: .9rem;
}
.section-heading, .authority-copy, .final-copy { max-width: var(--max); margin-inline: auto; }
.section-heading { margin-bottom: 2.5rem; }
.section-heading h2, .authority-copy h2, .final-copy h2 {
    font-family: var(--font-d);
    font-size: clamp(1.5rem, 3.6vw, 2.35rem);
    font-weight: 800; color: var(--brand-deep);
    line-height: 1.15; letter-spacing: -.015em;
    margin-bottom: 1.15rem;
}
.section-heading > p { margin-top: 0; max-width: 720px; color: var(--ink-soft); font-size: 1rem; line-height: 1.7; }
.section-heading.wide h2 { max-width: 880px; }

/* ── FADE-IN ───────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
.fade-in.visible { opacity: 1; transform: none; }

/* ── SÍNTOMAS (attention) ────────────────────────── */
.attention { background: var(--paper); }
.symptom-grid {
    max-width: var(--max); margin: 0 auto;
    counter-reset: symptom;
    display: grid; grid-template-columns: 1fr; gap: 1rem;
}
.symptom-grid article {
    position: relative; overflow: hidden;
    counter-increment: symptom;
    min-height: 172px;
    background: var(--white); border: 1px solid var(--line);
    border-radius: var(--r); padding: 1.6rem 1.75rem;
    opacity: 0; transform: translateY(14px);
    transition: opacity .5s var(--ease-out), transform .5s var(--ease-out), border-color .2s, box-shadow .2s;
}
.fade-in.visible .symptom-grid article { opacity: 1; transform: none; }
.fade-in.visible .symptom-grid article:nth-child(2) { transition-delay: .07s; }
.fade-in.visible .symptom-grid article:nth-child(3) { transition-delay: .14s; }
.fade-in.visible .symptom-grid article:nth-child(4) { transition-delay: .21s; }
.symptom-grid article:hover {
    border-color: oklch(70% 0.04 230); transform: translateY(-4px);
    box-shadow: 0 16px 34px oklch(22% 0.025 235 / .1);
}
.symptom-grid article::after {
    content: counter(symptom, decimal-leading-zero);
    position: absolute; right: 1.1rem; bottom: .85rem;
    color: oklch(27% 0.075 232 / .1);
    font-family: var(--font-d); font-size: 2.5rem; font-weight: 800; line-height: 1;
}
.symptom-grid article > span {
    display: block; width: 36px; height: 6px; margin-bottom: 1.6rem;
    background: var(--signal); border-radius: 999px;
    box-shadow: 0 0 0 6px oklch(57% 0.18 29 / .08);
}
.symptom-grid p { position: relative; z-index: 1; font-size: .95rem; font-weight: 700; color: var(--ink); line-height: 1.55; max-width: 34ch; }
@media (min-width: 640px) {
    .symptom-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .symptom-grid { grid-template-columns: repeat(4, 1fr); }
}
.section-note {
    max-width: 700px; margin: 2.75rem auto 0;
    background: var(--steel-soft); border: 1px solid var(--line); border-radius: var(--r);
    padding: 1.85rem 2rem;
}
.section-note .tag {
    display: inline-flex; align-items: center; gap: .5rem;
    font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .13em;
    color: var(--brand); margin-bottom: .9rem;
}
.section-note p { color: var(--ink-soft); font-size: 1rem; line-height: 1.7; margin-bottom: .8rem; }
.section-note p:last-child { margin-bottom: 0; font-weight: 700; color: var(--ink); }

/* ── QUÉ RECIBES (resource-card) ──────────────────── */
.receive { background: var(--steel-soft); border-block: 1px solid var(--line); }
.resource-layout { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.resource-card {
    display: flex; flex-direction: column; gap: .8rem;
    background: linear-gradient(150deg, oklch(94% 0.03 231) 0%, var(--white) 46%);
    border: 1px solid var(--line); border-radius: var(--r);
    padding: 1.85rem 1.75rem 2rem;
    box-shadow: 0 14px 32px oklch(22% 0.025 235 / .06);
    opacity: 0; transform: translateY(16px);
    transition: opacity .4s ease, transform .4s ease, box-shadow .25s var(--ease-out), transform .25s var(--ease-out), border-color .2s;
}
.resource-card:hover { box-shadow: 0 20px 42px oklch(38% 0.098 231 / .16); transform: translateY(-3px); border-color: var(--brand); }
.fade-in.visible .resource-card { opacity: 1; transform: none; }
.fade-in.visible .resource-card:nth-child(2) { transition-delay: .07s; }
.fade-in.visible .resource-card:nth-child(3) { transition-delay: .14s; }
.fade-in.visible .resource-card:nth-child(4) { transition-delay: .21s; }
.resource-head {
    display: flex; align-items: center; gap: 1rem;
}
.resource-number {
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    width: 2.75rem; height: 2.75rem; border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--brand-deep)); color: var(--white);
    box-shadow: 0 8px 18px oklch(38% 0.098 231 / .35), 0 0 0 5px oklch(38% 0.098 231 / .1);
    font-family: var(--font-d); font-weight: 800; font-size: 1.05rem;
}
.resource-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--brand-deep); line-height: 1.28; }
.resource-card p { font-size: .89rem; color: var(--ink-soft); line-height: 1.7; }

/* ── POR QUÉ AR (authority, sección oscura) ───────── */
.authority { background: var(--dark); color: oklch(94% 0.01 230); }
.authority .kicker { color: oklch(96% 0.018 80); }
.authority-copy h2 { color: oklch(96% 0.018 80); }
.authority-copy p { color: oklch(85% 0.012 230); font-size: .95rem; line-height: 1.85; max-width: 720px; }
.stat-grid {
    max-width: var(--max); margin: 2.75rem auto 0;
    display: grid; grid-template-columns: 1fr; gap: 1.25rem;
}
@media (min-width: 700px) {
    .stat-grid { grid-template-columns: repeat(3, 1fr); }
}
.stat-grid div {
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--r); padding: 1.85rem 1.75rem;
    opacity: 0; transform: translateY(14px);
    transition: opacity .5s var(--ease-out), transform .5s var(--ease-out), background .2s, border-color .2s;
}
.fade-in.visible .stat-grid div { opacity: 1; transform: none; }
.fade-in.visible .stat-grid div:nth-child(2) { transition-delay: .1s; }
.fade-in.visible .stat-grid div:nth-child(3) { transition-delay: .2s; }
.stat-grid div:hover { background: rgba(255,255,255,.065); border-color: oklch(75% 0.145 74 / .3); }
.stat-grid strong { display: block; font-family: var(--font-d); color: var(--amber); font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800; line-height: 1; }
.stat-grid span { display: block; margin-top: .65rem; color: oklch(85% 0.012 230); font-weight: 700; font-size: .87rem; line-height: 1.4; }

/* ── CÓMO FUNCIONA (step-grid) ────────────────────── */
.steps { background: var(--paper); }
.step-grid {
    max-width: var(--max); margin: 0 auto;
    display: grid; grid-template-columns: 1fr; gap: 1.25rem; list-style: none;
}
@media (min-width: 700px) {
    .step-grid { grid-template-columns: repeat(3, 1fr); }
}
.step-grid li {
    background: linear-gradient(150deg, oklch(96% 0.03 74) 0%, var(--white) 46%);
    border: 1px solid var(--line); border-radius: var(--r);
    padding: 1.85rem 1.75rem 2rem;
    opacity: 0; transform: translateY(16px);
    transition: opacity .4s ease, transform .4s ease, border-color .2s, box-shadow .2s;
}
.fade-in.visible .step-grid li { opacity: 1; transform: none; }
.fade-in.visible .step-grid li:nth-child(2) { transition-delay: .1s; }
.fade-in.visible .step-grid li:nth-child(3) { transition-delay: .2s; }
.step-grid li:hover { border-color: var(--amber); box-shadow: 0 16px 34px oklch(75% 0.145 74 / .18); }
.step-number {
    display: flex; align-items: center; justify-content: center;
    width: 2.75rem; height: 2.75rem; border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-deep), var(--dark)); color: var(--amber);
    box-shadow: 0 8px 18px oklch(27% 0.075 232 / .3), 0 0 0 5px oklch(75% 0.145 74 / .12);
    font-family: var(--font-d); font-weight: 800; font-size: 1.05rem;
    margin-bottom: 1.1rem;
}
.step-grid strong { display: block; color: var(--brand-deep); font-size: 1.05rem; font-weight: 700; margin-bottom: .4rem; }
.step-desc { display: block; color: var(--ink-soft); font-size: .89rem; line-height: 1.65; }

/* ── FORMULARIO FINAL ──────────────────────────────── */
.final-cta {
    background: linear-gradient(135deg, var(--dark), var(--brand-deep));
    padding: 4.5rem 2rem 5.5rem; color: oklch(94% 0.01 230);
    display: grid; grid-template-columns: 1fr; gap: 2.5rem;
}
.final-cta > * { max-width: var(--hmw); margin-inline: auto; }
.final-copy h2, .final-copy .kicker { color: oklch(98% 0.012 80); }
.final-copy p { color: oklch(87% 0.012 230); line-height: 1.75; font-size: .98rem; }
.final-copy .trust-badge {
    display: inline-block; margin-top: 1.3rem;
    font-size: .65rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .1em;
    color: var(--amber); border: 1px solid oklch(75% 0.145 74 / .35);
    padding: .25rem .7rem; border-radius: 3px;
}
.final-cta .main-form {
    max-width: var(--max); margin-inline: auto;
    background: var(--white); border-radius: var(--r); padding: 2rem 1.85rem;
    box-shadow: 0 4px 24px rgba(0,0,0,.12), 0 1px 4px rgba(0,0,0,.06);
    border: 2px solid var(--amber);
    animation: borderPulseSoft 2.8s ease-in-out 1s infinite;
}

/* ── STICKY CTA ────────────────────────────────────── */
.sticky-cta {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
    background: var(--dark); padding: .75rem 1.5rem;
    box-shadow: 0 -2px 20px rgba(0,0,0,.3);
    transform: translateY(110%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta__link {
    display: block; background: var(--signal); color: oklch(98% 0.006 230);
    font-family: var(--font-b); font-size: .95rem; font-weight: 700;
    text-align: center; text-decoration: none;
    padding: .85rem; border-radius: 6px; letter-spacing: .02em;
    transition: background .15s;
}
.sticky-cta__link:hover { background: var(--signal-dark); }
.sticky-cta__link:focus-visible { outline: 2px solid var(--amber); outline-offset: 2px; }

/* ── FOOTER (idéntico a final/) ───────────────────── */
.site-footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,.06); }
.footer-main {
    max-width: var(--hmw); margin: 0 auto; padding: 3.5rem 2rem 2.5rem;
    display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem 3rem;
}
.footer-logo { height: 3.5rem; width: auto; filter: brightness(0) invert(1); opacity: .85; margin-bottom: 1rem; }
.footer-tagline { font-size: .85rem; color: oklch(83% 0.012 230); line-height: 1.7; max-width: 340px; }
.footer-badge {
    display: inline-block; margin-top: .85rem;
    font-size: .65rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .1em;
    color: var(--amber); border: 1px solid oklch(75% 0.145 74 / .35);
    padding: .25rem .7rem; border-radius: 3px;
}
.footer-contact-col { text-align: right; }
.footer-col-label { font-size: .67rem; font-weight: 800; text-transform: uppercase; letter-spacing: .13em; color: var(--amber); margin-bottom: .75rem; }
.footer-contact { display: flex; flex-direction: column; gap: .5rem; align-items: flex-end; }
.footer-contact a {
    font-size: .83rem; color: oklch(83% 0.012 230);
    text-decoration: none; display: flex; align-items: center; gap: .5rem;
    transition: color .15s;
}
.footer-contact a:hover { color: oklch(98% 0.006 230); }
.footer-contact a:focus-visible { outline: 1px solid oklch(83% 0.012 230 / .6); outline-offset: 2px; border-radius: 2px; }
.footer-contact svg { width: 1rem; height: 1rem; flex-shrink: 0; opacity: .45; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.05); padding: 1.1rem 1.5rem; }
.footer-bottom__inner {
    max-width: var(--hmw); margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: .6rem 1.5rem;
}
.footer-copy { font-size: .75rem; color: oklch(83% 0.012 230 / .65); flex-shrink: 0; }
.footer-note { font-size: .75rem; color: oklch(83% 0.012 230 / .65); line-height: 1.6; text-align: right; }

/* ── RESPONSIVE ────────────────────────────────────── */
@media (min-width: 900px) {
    .hero__grid { grid-template-columns: 1.15fr .85fr; align-items: start; gap: 4.5rem; }
    .final-cta { grid-template-columns: .95fr .8fr; align-items: center; }
    .final-copy { justify-self: end; max-width: 560px; }
    .final-cta .main-form { justify-self: start; max-width: 460px; }
    .sticky-cta { display: none !important; }
    section { padding: 6rem 2rem; }
    .attention, .steps { padding-top: 4.5rem; padding-bottom: 4.5rem; }
    .receive, .authority { padding-top: 6rem; padding-bottom: 6rem; }
}
@media (min-width: 1280px) {
    section { padding: 6.5rem 2.5rem; }
    .container { padding: 0 2.5rem; }
    .hero { padding: 6.5rem 2.5rem 7.5rem; }
}
@media (max-width: 899px) {
    section { padding: 3.25rem 1.25rem; }
    .container { padding: 0 1.25rem; }
    .hero { padding: 3.25rem 1.25rem 4rem; }
    .hero__grid { gap: 2.25rem; }
    .section-note { padding: 1.75rem 1.5rem; }
    .footer-main { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 1.25rem 2rem; }
    .footer-contact-col { text-align: left; }
    .footer-contact { align-items: flex-start; }
    .footer-bottom { padding: 1rem 1.25rem; }
    .footer-bottom__inner { flex-direction: column; align-items: flex-start; gap: .5rem; }
    .footer-note { text-align: left; }
    .final-cta { padding: 3.25rem 1.25rem 4rem; }
}
@media (max-width: 639px) {
    .resource-layout { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 1.95rem; }
}

/* ── KEYFRAMES ─────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes dotPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 oklch(38% 0.098 231 / .5); }
    50%      { transform: scale(1.4); box-shadow: 0 0 0 5px oklch(38% 0.098 231 / 0); }
}
@keyframes borderPulse {
    0%, 55%, 100% { box-shadow: 0 24px 64px rgba(0,0,0,.32), 0 4px 12px rgba(0,0,0,.12), 0 0 0 0 oklch(75% 0.145 74 / 0); }
    28% { box-shadow: 0 24px 64px rgba(0,0,0,.32), 0 4px 12px rgba(0,0,0,.12), 0 0 0 10px oklch(75% 0.145 74 / .35), 0 0 40px oklch(75% 0.145 74 / .2); }
}
@keyframes borderPulseSoft {
    0%, 55%, 100% { box-shadow: 0 4px 24px rgba(0,0,0,.1), 0 0 0 0 oklch(75% 0.145 74 / 0); }
    28% { box-shadow: 0 4px 24px rgba(0,0,0,.1), 0 0 0 9px oklch(75% 0.145 74 / .3), 0 0 32px oklch(75% 0.145 74 / .14); }
}
@keyframes shimmer { 0% { left: -100%; opacity: 1; } 45% { left: 150%; opacity: 1; } 46% { opacity: 0; } 100% { left: 150%; opacity: 0; } }

/* ── REDUCED MOTION ────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-delay: 0ms !important;
        transition-duration: .01ms !important;
    }
    html { scroll-behavior: auto; }
    .fade-in, .hero-copy .eyebrow, .hero-copy h1, .hero-copy .hero-lede,
    .hero-copy .hero-body, .hero-copy .primary-cta, .hero-copy .microcopy, .hero-copy .trust-strip,
    .hero .form-card { opacity: 1; animation: none; transform: none; }
    .symptom-grid article, .resource-card, .stat-grid div, .step-grid li { opacity: 1; transform: none; }
    form button::after { animation: none; }
    .sticky-cta { transition: none; }
}
