/* Bejaa Digital landing page — hand-written, no framework, no CDN compiler.
   Palette: Warm Ink. Other pages still use the Tailwind Play CDN via header.php. */

:root {
    --ink: #0B0F14;
    --ink-2: #14181E;
    --ink-3: #1C2127;
    --ink-line: #262B33;
    --paper: #FAFAF7;
    --card: #FFFFFF;
    --wash: #F5F3EF;
    --line: #E8E5DF;
    --line-2: #DDD9D2;
    --teal: #00A896;
    --teal-ink: #00786C;
    --teal-wash: #E8F6F3;
    --teal-soft: #D6F5F0;
    --body: #57534E;
    --muted: #78716C;
    --faint: #A8A29E;
    --dim: #8A847C;
    --shell: 1280px;
    --pad: 80px;
    --font-d: 'Space Grotesk', 'Manrope', system-ui, sans-serif;
    --font-s: 'Manrope', system-ui, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
    margin: 0;
    font-family: var(--font-s);
    background: var(--paper);
    color: var(--body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
img { max-width: 100%; display: block; }
a { color: var(--teal-ink); text-decoration: none; }
a:hover { color: var(--ink); }
button { font: inherit; }

.d { font-family: var(--font-d); letter-spacing: -0.028em; font-weight: 700; }
.shell { max-width: var(--shell); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.section { padding: 92px 0; }
.section--paper { background: var(--paper); }
.section--card { background: var(--card); }
.section--ink { background: var(--ink); }

.eyebrow {
    font-size: 12px;
    font-weight: 700;
    color: var(--teal-ink);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.eyebrow--faint { color: var(--faint); }
.eyebrow--teal { color: var(--teal); }

.h2 { font-family: var(--font-d); font-size: 44px; line-height: 1.12; font-weight: 700; color: var(--ink); letter-spacing: -0.028em; }
.h3 { font-family: var(--font-d); font-size: 22px; line-height: 1.25; font-weight: 700; color: var(--ink); letter-spacing: -0.015em; }
.lede { font-size: 18px; line-height: 1.6; color: var(--muted); }
.body-sm { font-size: 15px; line-height: 1.6; color: var(--muted); }

.head { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.head .h2 { max-width: 820px; }
.head .lede { max-width: 660px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 68px; align-items: center; }
.mt-56 { margin-top: 56px; }

/* ---------- buttons ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 600;
    padding: 17px 32px;
    border-radius: 12px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { flex-shrink: 0; }

.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: var(--ink-2); color: #fff; box-shadow: 0 10px 24px rgba(11, 15, 20, 0.18); }
.btn--teal { background: var(--teal); color: #fff; }
.btn--teal:hover { background: #009585; color: #fff; box-shadow: 0 10px 24px rgba(0, 168, 150, 0.28); }
.btn--ghost { background: var(--card); color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { color: var(--ink); border-color: var(--ink); }
.btn--ghost-dark { background: transparent; color: #fff; border-color: var(--ink-line); }
.btn--ghost-dark:hover { color: #fff; border-color: var(--teal); }
.btn--sm { font-size: 15px; padding: 12px 22px; border-radius: 10px; }
.btn--block { width: 100%; font-size: 16px; padding: 15px; border-radius: 11px; }

/* ---------- navbar ---------- */

.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(250, 250, 247, 0.86);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}
.nav.is-stuck { border-bottom-color: var(--line); box-shadow: 0 4px 20px rgba(11, 15, 20, 0.05); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; transition: padding 0.25s ease; }
.nav.is-stuck .nav__inner { padding: 13px 0; }

.brand { display: flex; align-items: center; gap: 11px; }
.brand__mark { width: 30px; height: 30px; border-radius: 9px; background: var(--ink); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.brand__mark i { width: 11px; height: 11px; border-radius: 3px; background: var(--teal); display: block; }
.brand__name { font-family: var(--font-d); font-size: 19px; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }

.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__link { font-size: 15px; font-weight: 500; color: var(--body); position: relative; }
.nav__link::after {
    content: '';
    position: absolute;
    left: 0; bottom: -5px;
    width: 0; height: 2px;
    background: var(--teal);
    transition: width 0.22s ease;
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after { width: 100%; }

.nav__toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; background: none; border: none; color: var(--ink); cursor: pointer; }

.nav__drawer {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 12px 0 24px;
    border-top: 1px solid var(--line);
}
.nav__drawer a { font-size: 17px; font-weight: 500; color: var(--ink); padding: 13px 2px; }
.nav__drawer .btn { margin-top: 10px; }

/* ---------- hero ---------- */

.hero { padding: 104px 0 84px; background: var(--paper); text-align: center; }
.hero__inner { display: flex; flex-direction: column; align-items: center; gap: 26px; }
.pill {
    display: inline-flex; align-items: center; gap: 9px;
    background: var(--card); border: 1px solid var(--line);
    border-radius: 999px; padding: 8px 18px;
}
.pill i { width: 7px; height: 7px; border-radius: 999px; background: var(--teal); display: block; }
.pill span { font-size: 12px; font-weight: 700; color: var(--body); letter-spacing: 0.1em; text-transform: uppercase; }

.hero h1 {
    font-family: var(--font-d);
    font-size: clamp(38px, 4.7vw, 68px);
    line-height: 1.04;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.035em;
    max-width: 940px;
}
.hero h1 em { font-style: normal; color: var(--teal); }
.hero__sub { font-size: 20px; line-height: 1.6; color: var(--body); max-width: 680px; }
.hero__actions { display: flex; align-items: center; gap: 13px; margin-top: 10px; flex-wrap: wrap; justify-content: center; }
.hero__trust { font-size: 14px; color: var(--faint); font-weight: 500; }

/* ---------- logo strip ---------- */

.logos { padding: 44px 0 52px; background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.logos__inner { display: flex; flex-direction: column; align-items: center; gap: 26px; }
.logos__row { display: flex; align-items: center; justify-content: center; gap: 56px; flex-wrap: wrap; }
.logos__img { height: 26px; width: auto; object-fit: contain; filter: brightness(0); opacity: 0.72; transition: opacity 0.2s ease; }
.logos__img:hover { opacity: 1; }
.logos__sep { width: 1px; height: 22px; background: var(--line); }
.wordmark { font-family: var(--font-d); display: flex; align-items: baseline; gap: 6px; opacity: 0.78; transition: opacity 0.2s ease; }
.wordmark:hover { opacity: 1; }
.wordmark b { font-size: 19px; font-weight: 700; color: var(--ink); }
.wordmark span { font-size: 15px; font-weight: 500; color: var(--muted); }

/* ---------- cards ---------- */

.card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 34px;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.card--flat { background: var(--paper); }
.card--lift:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(11, 15, 20, 0.07); border-color: var(--line-2); }
.card--feature { border: 1.5px solid var(--teal); position: relative; }

.tag {
    position: absolute; top: -12px; left: 36px;
    background: var(--teal); color: #fff;
    font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 6px 13px; border-radius: 999px;
}

.icon-box { width: 46px; height: 46px; border-radius: 12px; background: var(--wash); display: flex; align-items: center; justify-content: center; }
.icon-box--teal { background: var(--teal-wash); }

.ticks { display: flex; flex-direction: column; gap: 10px; }
.tick { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--body); }
.tick svg { flex-shrink: 0; margin-top: 4px; }

.quote__text { font-size: 17px; line-height: 1.6; font-weight: 500; color: var(--ink); margin-top: 18px; }
.quote__who { font-size: 13px; margin-top: 16px; color: var(--faint); font-weight: 600; }

.ph { color: var(--faint); font-weight: 600; }

/* ---------- compare (why the usual fix fails) ---------- */

.compare { display: flex; flex-direction: column; gap: 13px; }
.compare__row { display: flex; align-items: flex-start; gap: 15px; background: var(--ink-2); border: 1px solid var(--ink-line); border-radius: 14px; padding: 24px; }
.compare__row--win { background: var(--teal); border-color: var(--teal); }
.compare__row svg { flex-shrink: 0; margin-top: 2px; }
.compare__row p { font-size: 17px; font-weight: 600; color: #fff; }
.compare__row small { display: block; font-size: 15px; line-height: 1.6; color: var(--faint); margin-top: 5px; }
.compare__row--win small { color: var(--teal-soft); }

/* ---------- steps ---------- */

.step__meta { display: flex; align-items: center; gap: 13px; }
.step__num { font-family: var(--font-d); width: 34px; height: 34px; border-radius: 999px; background: var(--ink); color: #fff; font-size: 15px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.step__when { font-size: 12px; font-weight: 700; color: var(--teal-ink); letter-spacing: 0.1em; text-transform: uppercase; }

/* ---------- plans ---------- */

.plan__price { display: flex; align-items: baseline; gap: 7px; }
.plan__price b { font-family: var(--font-d); font-size: 34px; font-weight: 700; color: var(--ink); }
.plan__price b.ph { color: var(--faint); }
.plan__price span { font-size: 16px; color: var(--faint); font-weight: 500; }
.rule { height: 1px; background: var(--line); }

/* ---------- work ---------- */

.work { border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: var(--card); }
.work__media { height: 190px; background: var(--wash); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.work__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.work:hover .work__media img { transform: scale(1.04); }
.work__body { padding: 28px; }

/* ---------- faq ---------- */

.faq { display: grid; grid-template-columns: 380px minmax(0, 1fr); gap: 68px; }
.faq__item { background: var(--card); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: border-color 0.2s ease; }
.faq__item:hover { border-color: var(--line-2); }
.faq__q {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
    background: none; border: none; text-align: left; cursor: pointer;
    padding: 24px 30px;
    font-family: var(--font-d); font-size: 18px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em;
}
.faq__sign { flex-shrink: 0; color: var(--teal); transition: transform 0.25s ease; }
.faq__item.is-open .faq__sign { transform: rotate(45deg); }
.faq__a { padding: 0 30px 26px; font-size: 16px; line-height: 1.6; color: var(--muted); }

/* ---------- form ---------- */

.form { display: flex; flex-direction: column; gap: 16px; }
.field label { display: block; font-size: 13px; font-weight: 700; color: var(--body); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 8px; }
.field input, .field select, .field textarea {
    width: 100%;
    font: inherit;
    font-size: 16px;
    color: var(--ink);
    background: var(--card);
    border: 1px solid var(--line-2);
    border-radius: 12px;
    padding: 15px 16px;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(0, 168, 150, 0.14);
}
.field textarea { resize: vertical; min-height: 110px; }

/* ---------- final cta + footer ---------- */

.cta { padding: 104px 0; background: var(--ink); text-align: center; }
.cta__inner { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.cta h2 { font-family: var(--font-d); font-size: clamp(32px, 3.5vw, 50px); line-height: 1.1; font-weight: 700; color: #fff; letter-spacing: -0.032em; max-width: 860px; }
.cta p { font-size: 19px; line-height: 1.6; color: var(--faint); max-width: 680px; }
.cta small { font-size: 14px; color: var(--dim); font-weight: 500; }

.foot { background: var(--ink); border-top: 1px solid var(--ink-3); padding: 34px 0; }
.foot__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.foot__meta { font-size: 14px; color: var(--dim); }
.foot .brand__mark { background: var(--ink-3); width: 26px; height: 26px; border-radius: 7px; }
.foot .brand__name { color: #fff; font-size: 16px; }

/* ---------- floating whatsapp ---------- */

.wa-float {
    position: fixed; right: 22px; bottom: 22px; z-index: 60;
    display: flex; align-items: center; gap: 10px;
    background: var(--teal); color: #fff;
    font-size: 15px; font-weight: 600;
    padding: 14px 20px; border-radius: 999px;
    box-shadow: 0 10px 30px rgba(0, 168, 150, 0.32);
    transition: transform 0.2s ease;
}
.wa-float:hover { transform: translateY(-3px); color: #fff; }

/* ---------- scroll reveal ---------- */

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .btn:hover, .card--lift:hover, .wa-float:hover { transform: none; }
    .work:hover .work__media img { transform: none; }
}

/* ---------- responsive ---------- */

@media (max-width: 1080px) {
    :root { --pad: 40px; }
    .grid-2 { gap: 44px; }
    .faq { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 900px) {
    .nav__links { display: none; }
    .nav__toggle { display: flex; }
    .nav__drawer.is-open { display: flex; }
    .grid-3, .grid-2 { grid-template-columns: 1fr; gap: 16px; }
    .section { padding: 64px 0; }
    .hero { padding: 56px 0 52px; }
    .hero__inner { align-items: flex-start; text-align: left; }
    .hero { text-align: left; }
    .hero__actions { width: 100%; flex-direction: column; align-items: stretch; }
    .hero__actions .btn { width: 100%; }
    .head { align-items: flex-start; text-align: left; }
    .h2 { font-size: 31px; }
    .cta { padding: 64px 0; text-align: left; }
    .cta__inner { align-items: flex-start; }
    .cta__actions { width: 100%; display: flex; flex-direction: column; gap: 10px; }
    .cta__actions .btn { width: 100%; }
    .mt-56 { margin-top: 32px; }
    .logos__row { gap: 24px; }
    .logos__sep { display: none; }
    .tag { left: 26px; }
    .card { padding: 26px; }
    .foot__inner { flex-direction: column; align-items: flex-start; gap: 10px; }
    /* .wa-float mobile rules live with the rest of its styles further down —
       this block is above them and would be overridden by source order. */
}

@media (max-width: 560px) {
    :root { --pad: 20px; }
    .hero__sub { font-size: 17px; }
    .cta p { font-size: 16px; }
    .faq__q { font-size: 16px; padding: 20px 22px; }
    .faq__a { padding: 0 22px 22px; font-size: 15px; }
}

/* headline emphasis shared by hero and stance */
.h2 em, .hero h1 em { font-style: normal; color: var(--teal); }

/* ================================================================
   Experience layer — ambient motion, staged reveals, scroll state.
   Everything here is decoration: the page reads correctly with all
   of it disabled, and the reduced-motion block at the bottom does
   exactly that.
   ================================================================ */

/* ---------- ambient aurora behind the hero ---------- */

.hero { position: relative; isolation: isolate; overflow: hidden; }
.hero__inner { position: relative; z-index: 1; }

.aurora { position: absolute; inset: -20% -10% auto -10%; height: 150%; z-index: 0; pointer-events: none; }
.aurora span {
    position: absolute; display: block; border-radius: 50%;
    filter: blur(70px);
    will-change: transform;
}
.aurora__a {
    width: 46vw; height: 46vw; max-width: 620px; max-height: 620px;
    top: -8%; left: 4%;
    background: radial-gradient(circle, rgba(0, 168, 150, 0.20), rgba(0, 168, 150, 0) 68%);
    animation: drift-a 26s ease-in-out infinite;
}
.aurora__b {
    width: 40vw; height: 40vw; max-width: 540px; max-height: 540px;
    top: 12%; right: 2%;
    background: radial-gradient(circle, rgba(214, 245, 240, 0.85), rgba(214, 245, 240, 0) 70%);
    animation: drift-b 32s ease-in-out infinite;
}
.aurora__c {
    width: 34vw; height: 34vw; max-width: 460px; max-height: 460px;
    bottom: 4%; left: 34%;
    background: radial-gradient(circle, rgba(245, 243, 239, 0.95), rgba(245, 243, 239, 0) 72%);
    animation: drift-c 38s ease-in-out infinite;
}

@keyframes drift-a {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50%      { transform: translate3d(6%, 8%, 0) scale(1.12); }
}
@keyframes drift-b {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1.06); }
    50%      { transform: translate3d(-7%, 6%, 0) scale(0.94); }
}
@keyframes drift-c {
    0%, 100% { transform: translate3d(0, 0, 0) scale(0.96); }
    50%      { transform: translate3d(4%, -7%, 0) scale(1.1); }
}

/* ---------- rotating hero phrase ---------- */

.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;
}

/* The live phrase stays in normal flow, so it sets the width and the baseline
   and the full stop after it tracks correctly. Only outgoing phrases float. */
.rot { position: relative; display: inline-block; }
.rot em { font-style: normal; color: var(--teal); white-space: nowrap; }

/* Before JS runs only the first phrase exists and must read normally. */
.rot.is-ready em {
    position: absolute; left: 0; top: 0;
    opacity: 0; transform: translateY(0.34em);
    transition: opacity 0.42s ease, transform 0.42s cubic-bezier(0.22, 0.9, 0.3, 1);
}
.rot.is-ready em.is-live { position: static; opacity: 1; transform: none; }
.rot.is-ready em.is-out { opacity: 0; transform: translateY(-0.34em); }

/* ---------- scroll progress + section-aware nav ---------- */

.nav__progress { position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: transparent; }
.nav__progress span {
    display: block; height: 100%; width: 0;
    background: linear-gradient(90deg, var(--teal), var(--teal-ink));
    transform-origin: left center;
    transition: width 0.1s linear;
}
.nav { position: sticky; }
.nav__link.is-active { color: var(--ink); }
.nav__link.is-active::after { width: 100%; }

/* ---------- scroll cue ---------- */

.hero__scroll {
    width: 26px; height: 42px; border: 1.5px solid var(--line-2); border-radius: 999px;
    display: flex; justify-content: center; padding-top: 8px; margin-top: 6px;
    transition: border-color 0.2s ease;
}
.hero__scroll:hover { border-color: var(--teal); }
.hero__scroll span { width: 4px; height: 7px; border-radius: 999px; background: var(--teal); animation: cue 1.8s ease-in-out infinite; }
@keyframes cue {
    0%   { opacity: 0; transform: translateY(-3px); }
    35%  { opacity: 1; }
    100% { opacity: 0; transform: translateY(13px); }
}

/* ---------- staged reveals ---------- */

.reveal.d4 { transition-delay: 0.32s; }
.reveal.d5 { transition-delay: 0.40s; }
.reveal.d6 { transition-delay: 0.48s; }
/* Auto-staggered children get their delay from JS via --rd. */
.reveal[style*="--rd"] { transition-delay: var(--rd); }

/* ---------- richer interaction feedback ---------- */

.card--lift:hover { box-shadow: 0 18px 44px rgba(11, 15, 20, 0.09), 0 0 0 1px var(--teal-soft); }
.btn:active { transform: translateY(1px); transition-duration: 0.08s; }

/* Every card is also a .reveal, and `.reveal.is-in { transform: none }` has the
   same specificity as `.card--lift:hover` but sits later in the file, so it was
   cancelling the lift outright. These win it back. */
.card--lift.reveal.is-in:hover { transform: translateY(-4px); }
.card--lift.reveal.is-in:active { transform: translateY(-1px); transition-duration: 0.08s; }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: 3px;
    border-radius: 6px;
}

/* ---------- whatsapp presence ---------- */

.wa-float { padding: 11px 20px 11px 13px; align-items: center; }
.wa-float__mark { position: relative; display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 999px; background: rgba(255, 255, 255, 0.16); flex-shrink: 0; }
.wa-float__dot { position: absolute; right: -1px; bottom: -1px; width: 10px; height: 10px; border-radius: 999px; background: #4ADE80; border: 2px solid var(--teal); }
.wa-float__text { display: flex; flex-direction: column; line-height: 1.25; text-align: left; }
.wa-float__text b { font-size: 15px; font-weight: 700; }
.wa-float__text small { font-size: 12px; font-weight: 500; opacity: 0.86; }

/* Collapses to a round icon button on phones. Must sit after the rules above:
   media queries carry no extra specificity, so an earlier @media block loses
   to a later plain rule on the same selector. The label is hidden by class —
   the old `.wa-float span` rule matched .wa-float__mark too and emptied the
   whole button once this markup gained a second span. */
@media (max-width: 900px) {
    .wa-float { padding: 15px; }
    .wa-float__text { display: none; }
    .wa-float__mark { width: 24px; height: 24px; background: none; }
    .wa-float__dot { right: -3px; bottom: -3px; }
}

/* On a phone the blobs shrink with the viewport but the blur does not, so a
   70px radius on a ~180px blob washes it out completely. Scale them up
   relative to the viewport and tighten the blur so the wash still reads. */
@media (max-width: 900px) {
    .aurora { inset: -14% -18% auto -18%; height: 130%; }
    .aurora span { filter: blur(44px); }
    .aurora__a { width: 86vw; height: 86vw; top: -6%; left: -12%; }
    .aurora__b { width: 78vw; height: 78vw; top: 16%; right: -14%; }
    .aurora__c { width: 70vw; height: 70vw; bottom: 2%; left: 18%; }
}

/* ---------- motion opt-out ---------- */

@media (prefers-reduced-motion: reduce) {
    .aurora span,
    .hero__scroll span { animation: none; }
    .rot em { transition: none; }
    .nav__progress span { transition: none; }
    .card--lift:active, .btn:active { transform: none; }
    .card--lift.reveal.is-in:hover, .card--lift.reveal.is-in:active { transform: none; }
}
