/* ============================================================
   OLHEIRO DO AVIATOR — landing page
   Aesthetic: tactical / cockpit briefing
   ============================================================ */

@font-face {
    font-family: "Sora";
    src: url("Sora-Regular.woff2") format("woff2"),
         url("Sora-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Sora";
    src: url("Sora-ExtraBold.woff2") format("woff2"),
         url("Sora-ExtraBold.woff") format("woff");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg:#060606;
    --bg-1:#0a0a0c;
    --surface:#101013;
    --surface-2:#15151a;
    --surface-3:#1c1c22;
    --line:rgba(255,255,255,0.07);
    --line-2:rgba(255,255,255,0.13);
    --line-3:rgba(255,255,255,0.22);

    --text:#fafafa;
    --text-dim:rgba(250,250,250,0.65);
    --text-mute:rgba(250,250,250,0.42);

    --red:#E4033B;
    --red-bright:#FF1744;
    --pink:#FF2E80;
    --green:#21D26A;
    --green-d:#16A053;
    --amber:#FFB627;

    --display:"Sora", system-ui, -apple-system, sans-serif;
    --body:"Sora", system-ui, -apple-system, sans-serif;
    --mono:"JetBrains Mono", ui-monospace, "SF Mono", Consolas, monospace;

    --section-y: clamp(56px, 9vw, 110px);
    --gutter: 22px;
    --container: 1100px;
    --radius: 14px;
    --radius-sm: 10px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    background-image:
        radial-gradient(900px 600px at 18% -10%, rgba(228,3,59,0.10), transparent 60%),
        radial-gradient(800px 600px at 95% 100%, rgba(255,46,128,0.07), transparent 60%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: radial-gradient(rgba(255,255,255,0.045) 1px, transparent 1px);
    background-size: 26px 26px;
    -webkit-mask-image: linear-gradient(to bottom, transparent, #000 6%, #000 94%, transparent);
            mask-image: linear-gradient(to bottom, transparent, #000 6%, #000 94%, transparent);
    opacity: 0.7;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
ul, ol { list-style: none; padding: 0; margin: 0; }

.page > section { position: relative; z-index: 1; }

/* ============================================================
   TOPBAR — faixa de urgência
   ============================================================ */
.topbar {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px 16px;
    background:
        linear-gradient(180deg, #FF1744 0%, #E4033B 60%, #C9032F 100%);
    color: #fff;
    font-family: var(--display);
    font-weight: 800;
    font-size: 13.5px;
    line-height: 1.25;
    text-align: center;
    letter-spacing: -0.005em;
    box-shadow:
        0 2px 14px rgba(228,3,59,0.40),
        inset 0 -1px 0 rgba(0,0,0,0.18),
        inset 0 1px 0 rgba(255,255,255,0.18);
}
.topbar__text { display: inline-block; }
.topbar__pulse {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 0 0 0 rgba(255,255,255,0.75);
    animation: pingWhite 1.6s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes pingWhite {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.75); }
    50%      { box-shadow: 0 0 0 6px rgba(255,255,255,0); }
}
@media (min-width: 768px) {
    .topbar { font-size: 15.5px; padding: 13px 20px; gap: 12px; }
    .topbar__pulse { width: 8px; height: 8px; }
}

/* ============================================================
   SECTION HEAD — anatomia padronizada
   ============================================================ */
.section-head {
    text-align: center;
    margin: 0 auto clamp(22px, 4vw, 36px);
    padding: 0 var(--gutter);
    max-width: 720px;
}
.section-head__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 14px;
}
.section-head__label::before {
    content: "";
    width: 32px;
    height: 1px;
    background: var(--red);
}
.section-head__title {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(22px, 5.4vw, 36px);
    line-height: 1.08;
    letter-spacing: -0.012em;
    text-transform: uppercase;
    margin: 0 0 10px;
    color: var(--text);
}
.section-head__sub {
    color: var(--text-dim);
    font-size: clamp(13px, 3.4vw, 15px);
    line-height: 1.55;
    margin: 8px auto 0;
    max-width: 540px;
}

/* ============================================================
   PILL (badge live)
   ============================================================ */
.pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px;
    border: 1px solid var(--line-2);
    border-radius: 999px;
    background: rgba(15,15,18,0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    font-family: var(--mono);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.82);
    text-transform: uppercase;
}
.pill__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 0 rgba(33,210,106,0.7);
    animation: ping 1.6s ease-in-out infinite;
}
@keyframes ping {
    0%, 100% { box-shadow: 0 0 0 0 rgba(33,210,106,0.7); }
    50%      { box-shadow: 0 0 0 7px rgba(33,210,106,0); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 720px;
    min-height: calc(100vh - 44px);
    min-height: calc(100svh - 44px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px var(--gutter) 56px;
    overflow: hidden;
}
@media (min-width: 768px) {
    .hero { min-height: calc(100svh - 50px); }
}
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url("MOBILE-PEDRO.webp") center top / cover no-repeat;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg,
            rgba(6,6,6,0.30) 0%,
            rgba(6,6,6,0) 10%,
            rgba(6,6,6,0) 20%,
            rgba(6,6,6,0.96) 34%,
            rgba(6,6,6,1) 46%,
            rgba(6,6,6,1) 100%),
        radial-gradient(ellipse at 50% 5%, transparent 20%, rgba(6,6,6,0.50) 75%);
}
.hero__inner {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}
.hero__title {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(17px, 5vw, 46px);
    line-height: 1.1;
    letter-spacing: -0.012em;
    text-transform: uppercase;
    margin: 0;
    color: var(--text);
    max-width: 22ch;
    text-wrap: balance;
}
.hero__title-accent {
    display: block;
    color: var(--pink);
    white-space: nowrap;
    letter-spacing: -0.018em;
}
.hero__title-accent em {
    font-style: normal;
    color: var(--pink);
}
.hero__sub {
    color: var(--text-dim);
    font-size: clamp(12px, 3.1vw, 15px);
    line-height: 1.5;
    max-width: 460px;
    margin: 0;
}
.hero__sub strong {
    color: var(--text);
    font-weight: 600;
}
.hero__sub strong.hero__sub-accent {
    color: var(--pink);
    font-weight: 700;
}

/* checklist de benefícios — painel tático com cantos angulares */
.hero__highlights {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 4px auto;
    padding: 4px 0;
    border: 1px solid var(--line-2);
    border-radius: 12px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0)),
        rgba(15,15,18,0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    list-style: none;
    font-family: var(--display);
    color: var(--text);
    text-align: left;
    width: 100%;
    max-width: 380px;
    overflow: hidden;
}

/* cantos angulares decorativos (top-left e bottom-right) */
.hero__highlights::before,
.hero__highlights::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    pointer-events: none;
}
.hero__highlights::before {
    top: -1px;
    left: -1px;
    border-top: 1px solid var(--red);
    border-left: 1px solid var(--red);
    border-top-left-radius: 12px;
}
.hero__highlights::after {
    bottom: -1px;
    right: -1px;
    border-bottom: 1px solid var(--red);
    border-right: 1px solid var(--red);
    border-bottom-right-radius: 12px;
}

.hero__highlights li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 11px 18px;
    border-bottom: 1px dashed rgba(255,255,255,0.10);
    transition: background-color .25s ease, padding-left .25s ease;
}
.hero__highlights li:last-child { border-bottom: 0; }

/* barra vermelha à esquerda que cresce no hover */
.hero__highlights li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14%;
    bottom: 14%;
    width: 2px;
    background: var(--red);
    transform: scaleY(0);
    transform-origin: center;
    transition: transform .25s cubic-bezier(.2,.7,.2,1);
}
.hero__highlights li:hover {
    background-color: rgba(228,3,59,0.05);
    padding-left: 22px;
}
.hero__highlights li:hover::before { transform: scaleY(1); }

/* numeração 01–04 com separador vertical vermelho */
.hi__no {
    flex-shrink: 0;
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 600;
    color: var(--red);
    letter-spacing: 0.18em;
    width: auto;
    padding-right: 12px;
    position: relative;
}
.hi__no::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px;
    height: 14px;
    background: var(--red);
    opacity: 0.42;
    transform: translateY(-50%);
}

/* check medalhão: gradient + halo + inset highlights */
.hi__check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background:
        radial-gradient(120% 120% at 30% 20%, rgba(255,255,255,0.35), transparent 55%),
        linear-gradient(180deg, #2EE07A 0%, #16A053 100%);
    box-shadow:
        0 0 0 1px rgba(33,210,106,0.50),
        0 0 0 4px rgba(33,210,106,0.10),
        0 4px 10px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.32),
        inset 0 -1px 1px rgba(0,0,0,0.22);
}
.hi__check svg {
    width: 12px;
    height: 12px;
    display: block;
    filter: drop-shadow(0 1px 0 rgba(0,0,0,0.18));
}

.hi__label {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.2;
    letter-spacing: 0.005em;
}

/* ============================================================
   COUNTER (vagas restantes)
   ============================================================ */
.counter {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    border: 1px solid rgba(255,182,39,0.38);
    background: linear-gradient(180deg, rgba(255,182,39,0.10), rgba(255,182,39,0));
    border-radius: 999px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin: 4px 0 0;
    transition: border-color .3s ease, background .3s ease, transform .3s ease;
}
.counter__pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--amber);
    box-shadow: 0 0 0 0 rgba(255,182,39,0.7);
    animation: pingAmber 1.6s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes pingAmber {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,182,39,0.7); }
    50%      { box-shadow: 0 0 0 7px rgba(255,182,39,0); }
}
.counter__body { display: inline-flex; align-items: baseline; gap: 6px; }
.counter__num {
    color: var(--amber);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.04em;
    display: inline-block;
    min-width: 1.2em;
    text-align: center;
}
.counter__label { color: rgba(250,250,250,0.72); }

.counter--tick .counter__num {
    animation: counterTick .45s cubic-bezier(.2,.7,.2,1);
}
@keyframes counterTick {
    0%   { transform: translateY(-6px) scale(1.2); opacity: 0; color: var(--red); }
    60%  { transform: translateY(0) scale(1.05); opacity: 1; color: var(--red); }
    100% { transform: translateY(0) scale(1); color: var(--amber); }
}

.counter--final {
    border-color: rgba(228,3,59,0.55);
    background: linear-gradient(180deg, rgba(228,3,59,0.20), rgba(228,3,59,0.04));
    animation: counterShake .55s ease-in-out, counterGlow 1.6s ease-in-out infinite alternate;
    color: var(--text);
}
.counter__pulse--final {
    background: var(--red);
    box-shadow: 0 0 0 0 rgba(228,3,59,0.7);
    animation: pingRed 1.2s ease-in-out infinite;
}
@keyframes pingRed {
    0%, 100% { box-shadow: 0 0 0 0 rgba(228,3,59,0.7); }
    50%      { box-shadow: 0 0 0 9px rgba(228,3,59,0); }
}
.counter__final-text {
    color: var(--text);
    font-weight: 700;
    font-size: 11.5px;
    letter-spacing: 0.16em;
}
@keyframes counterShake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-3px); }
    40% { transform: translateX(3px); }
    60% { transform: translateX(-2px); }
    80% { transform: translateX(2px); }
}
@keyframes counterGlow {
    from { box-shadow: 0 0 0 0 rgba(228,3,59,0); }
    to   { box-shadow: 0 6px 24px rgba(228,3,59,0.28); }
}

.hero__scroll {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 14px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: 9.5px;
    letter-spacing: 0.22em;
    color: var(--text-mute);
}
.hero__scroll-line {
    width: 1px;
    height: 26px;
    background: linear-gradient(to bottom, transparent, var(--text-mute));
    animation: scrollHint 2s ease-in-out infinite;
}
@keyframes scrollHint {
    0%, 100% { transform: scaleY(0.6); transform-origin: top; opacity: 0.4; }
    50%      { transform: scaleY(1); transform-origin: top; opacity: 1; }
}

/* ============================================================
   CTA — sistema único, modificadores p/ tamanho
   ============================================================ */
.cta {
    --cta-bg: var(--green);
    --cta-bg-d: var(--green-d);
    --cta-shadow: rgba(33,210,106,0.30);

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
    font-family: var(--display);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 16px 28px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(180deg, var(--cta-bg) 0%, var(--cta-bg-d) 100%);
    box-shadow:
        0 8px 22px var(--cta-shadow),
        inset 0 1px 0 rgba(255,255,255,0.18),
        inset 0 -2px 0 rgba(0,0,0,0.18);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .25s ease;
    isolation: isolate;
}
.cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: -40%;
    width: 35%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.32), transparent);
    transform: skewX(-22deg);
    animation: shine 3.4s linear infinite;
    z-index: -1;
}
@keyframes shine {
    0%        { left: -40%; }
    60%, 100% { left: 130%; }
}
.cta:hover {
    transform: translateY(-1px);
    box-shadow:
        0 12px 30px var(--cta-shadow),
        inset 0 1px 0 rgba(255,255,255,0.22),
        inset 0 -2px 0 rgba(0,0,0,0.22);
}
.cta:active { transform: translateY(0); }

.cta__icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}
.cta__stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
}
.cta__main { font-size: 17px; }
.cta__sub {
    font-family: var(--mono);
    font-weight: 500;
    font-size: 9.5px;
    letter-spacing: 0.22em;
    opacity: 0.92;
    margin-top: 4px;
    text-transform: uppercase;
}
.cta__arrow {
    font-family: var(--mono);
    font-weight: 600;
    font-size: 18px;
    transition: transform .2s ease;
}
.cta:hover .cta__arrow { transform: translateX(3px); }

.cta--lg { padding: 18px 32px; }
.cta--lg .cta__main { font-size: 17px; }
.cta--block {
    display: flex;
    width: 100%;
    max-width: 420px;
}

/* ============================================================
   STRIP — diferencial técnico
   ============================================================ */
.strip {
    padding: 26px var(--gutter);
    border-top: 1px dashed var(--line-2);
    border-bottom: 1px dashed var(--line-2);
    background: var(--bg-1);
}
.strip__inner {
    display: flex;
    gap: 16px;
    align-items: center;
    max-width: 760px;
    margin: 0 auto;
}
.strip__icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    color: var(--red);
}
.strip__text {
    margin: 0;
    font-size: clamp(14px, 3.4vw, 16px);
    line-height: 1.55;
    color: var(--text-dim);
}
.strip__text strong {
    color: var(--text);
    font-weight: 700;
    display: block;
    margin-top: 4px;
    letter-spacing: 0.01em;
}

/* ============================================================
   PROOFS — depoimentos empilhados
   ============================================================ */
.proofs {
    padding: 0 var(--gutter) var(--section-y);
}

.proofs__stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 720px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.proof { width: 100%; }

.proof {
    display: flex;
    flex-direction: column;
}
.proof__title {
    margin: 0 0 14px;
    text-align: center;
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(24px, 6.4vw, 38px);
    line-height: 1.05;
    letter-spacing: -0.018em;
    color: var(--text);
    text-transform: none;
    text-wrap: balance;
}
.proof__title-accent {
    display: block;
    color: var(--red);
    margin-top: 2px;
}

.proof figure {
    margin: 0;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    width: 100%;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.proof figure:hover {
    transform: translateY(-2px);
    border-color: var(--line-2);
    box-shadow: 0 12px 28px rgba(0,0,0,0.45);
}
.proof__media {
    position: relative;
    background: #000;
    overflow: hidden;
    aspect-ratio: 9 / 16;
}
.proof__media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 80%, rgba(0,0,0,0.35) 100%);
}
.proof__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final {
    padding: var(--section-y) var(--gutter) clamp(40px, 7vw, 70px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background:
        linear-gradient(180deg, transparent, rgba(228,3,59,0.05) 60%, rgba(255,46,128,0.04));
    border-top: 1px dashed var(--line-2);
}
.final .section-head { margin-bottom: 4px; }

.alert {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    width: 100%;
    max-width: 560px;
    padding: 16px 18px;
    border: 1px solid rgba(255,182,39,0.32);
    background: linear-gradient(180deg, rgba(255,182,39,0.06), rgba(255,182,39,0.0));
    border-radius: var(--radius);
}
.alert__icon {
    flex: 0 0 22px;
    color: var(--amber);
    margin-top: 1px;
}
.alert__icon svg { width: 22px; height: 22px; display: block; }
.alert__body { flex: 1; }
.alert__label {
    display: block;
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.18em;
    color: var(--amber);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 4px;
}
.alert__text {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--text-dim);
}

.final__footnote {
    margin: 4px 0 0;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    color: var(--text-mute);
    text-transform: uppercase;
    text-align: center;
}

/* ============================================================
   REVEAL on load
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(14px);
    animation: reveal .9s cubic-bezier(.2,.7,.2,1) forwards;
}
.reveal[data-delay="1"] { animation-delay: .12s; }
.reveal[data-delay="2"] { animation-delay: .26s; }
.reveal[data-delay="3"] { animation-delay: .42s; }
.reveal[data-delay="4"] { animation-delay: .58s; }
.reveal[data-delay="5"] { animation-delay: .72s; }
@keyframes reveal {
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE — Tablet/Desktop
   ============================================================ */
@media (min-width: 768px) {
    :root { --gutter: 32px; }

    .hero {
        min-height: 760px;
        padding: 44px 32px 70px;
    }
    .hero__bg {
        background-image: url("DESKTOP-PEDRO.webp");
        background-position: center;
    }
    .hero__inner { gap: 20px; max-width: 760px; }
    .hero__title { max-width: 24ch; }
    .counter { font-size: 12px; padding: 10px 18px; }
    .counter__num { font-size: 15px; }

    .strip__inner { gap: 22px; }
    .strip__icon { flex-basis: 64px; width: 64px; height: 64px; }
    .strip__text { font-size: 17px; }
    .strip__text strong { display: inline; margin-top: 0; margin-left: 8px; }

    .hero__highlights { max-width: 440px; padding: 6px 0; }
    .hero__highlights li { padding: 13px 22px; gap: 16px; }
    .hi__label { font-size: 16px; }
    .hi__check { width: 24px; height: 24px; }
    .hi__check svg { width: 13px; height: 13px; }
    .hi__no { font-size: 11px; padding-right: 14px; }
    .hero__highlights::before,
    .hero__highlights::after { width: 14px; height: 14px; }

    .proofs__stack { gap: 28px; max-width: 760px; }
    .proof__title { font-size: clamp(30px, 4vw, 44px); margin-bottom: 18px; }
    .proof__media { max-height: 540px; }

    .alert { max-width: 640px; padding: 18px 22px; }
    .alert__text { font-size: 14px; }

    .cta--lg { padding: 22px 40px; }
    .cta--lg .cta__main { font-size: 18px; }
}

@media (min-width: 1100px) {
    .hero__title { font-size: 52px; }
    .section-head__title { font-size: 38px; }
    .proof__media { max-height: 580px; }
}

/* ============================================================
   Reduce motion respect
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    .reveal, .pill__dot, .cta::before, .hero__scroll-line,
    .counter__pulse, .counter__pulse--final,
    .counter--final, .counter--tick .counter__num {
        animation: none !important;
    }
    .reveal { opacity: 1; transform: none; }
}
