/* ==========================================================================
   Noor Shop & Ship — website styles
   Shared by index.html, privacy/index.html, terms/index.html
   Brand colours mirror lib/core/theme/app_colors.dart
   ========================================================================== */

:root {
    --brand: #0BA360;
    --brand-2: #3CBA92;
    --brand-deep: #077C48;
    --brand-tint: rgba(11, 163, 96, 0.10);

    --ink: #0F1417;
    --body: #4C5661;
    --muted: #77828C;
    --line: rgba(15, 20, 23, 0.10);

    --bg: #FFFFFF;
    --bg-soft: #F4F8F5;
    --card: #FFFFFF;
    --card-2: #FFFFFF;

    --r-s: 12px;
    --r-m: 20px;
    --r-l: 30px;

    --shadow-s: 0 1px 2px rgba(15, 20, 23, .05), 0 6px 18px rgba(15, 20, 23, .06);
    --shadow-m: 0 2px 6px rgba(15, 20, 23, .06), 0 18px 44px rgba(15, 20, 23, .10);
    --shadow-brand: 0 12px 30px rgba(11, 163, 96, .28);

    --maxw: 1160px;
    --nav-h: 68px;

    --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-ar: "Tajawal", "Noto Sans Arabic", -apple-system, "Segoe UI", Tahoma, sans-serif;
}

@media (prefers-color-scheme: dark) {
    :root {
        --ink: #F1F5F3;
        --body: #AEB8BF;
        --muted: #8A959D;
        --line: rgba(255, 255, 255, 0.12);
        --bg: #0D1012;
        --bg-soft: #14181A;
        --card: #171C1F;
        --card-2: #1C2225;
        --brand-tint: rgba(60, 186, 146, 0.14);
        --shadow-s: 0 1px 2px rgba(0, 0, 0, .4), 0 6px 18px rgba(0, 0, 0, .35);
        --shadow-m: 0 2px 6px rgba(0, 0, 0, .45), 0 18px 44px rgba(0, 0, 0, .5);
    }
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--body);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body[dir="rtl"] { font-family: var(--font-ar); }

h1, h2, h3, h4 { color: var(--ink); line-height: 1.18; font-weight: 800; letter-spacing: -0.02em; }
body[dir="rtl"] h1, body[dir="rtl"] h2, body[dir="rtl"] h3 { letter-spacing: 0; line-height: 1.35; }

a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-deep); }
img { max-width: 100%; display: block; }
::selection { background: var(--brand); color: #fff; }

:focus-visible { outline: 3px solid var(--brand-2); outline-offset: 3px; border-radius: 6px; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }

.section { padding: clamp(64px, 9vw, 112px) 0; }
.section--soft { background: var(--bg-soft); }

.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .78rem; font-weight: 700; letter-spacing: .10em; text-transform: uppercase;
    color: var(--brand); background: var(--brand-tint);
    padding: 7px 14px; border-radius: 999px; margin-bottom: 18px;
}
body[dir="rtl"] .eyebrow { letter-spacing: 0; }

.section-head { max-width: 660px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.75rem, 3.6vw, 2.6rem); margin-bottom: 14px; }
.section-head p { font-size: clamp(1rem, 1.6vw, 1.1rem); color: var(--body); }

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

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    font-family: inherit; font-size: .96rem; font-weight: 700; cursor: pointer;
    padding: 13px 24px; border-radius: 999px; border: 1px solid transparent;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; box-shadow: var(--shadow-brand); }
.btn--primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 16px 36px rgba(11, 163, 96, .36); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { color: var(--ink); border-color: var(--brand); background: var(--brand-tint); }

/* store badges */
.stores { display: flex; flex-wrap: wrap; gap: 14px; }
.store-btn {
    display: inline-flex; align-items: center; gap: 12px;
    background: var(--ink); color: var(--bg);
    padding: 11px 22px 11px 18px; border-radius: 16px;
    border: 1px solid transparent;
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
    box-shadow: var(--shadow-s);
}
.store-btn:hover { color: var(--bg); transform: translateY(-3px); box-shadow: var(--shadow-m); }
.store-btn svg { width: 26px; height: 26px; flex: none; fill: currentColor; }
.store-btn span { display: block; line-height: 1.25; }
.store-btn .sb-top { font-size: .68rem; opacity: .75; letter-spacing: .04em; text-transform: uppercase; }
.store-btn .sb-main { font-size: 1.05rem; font-weight: 800; letter-spacing: -0.01em; }
.store-btn--light { background: var(--card); color: var(--ink); border-color: var(--line); }
.store-btn--light:hover { color: var(--ink); }

/* ---------- nav -------------------------------------------------------- */

.nav {
    position: sticky; top: 0; z-index: 60;
    height: var(--nav-h);
    background: color-mix(in srgb, var(--bg) 82%, transparent);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .25s ease, background .25s ease;
}
.nav.is-stuck { border-bottom-color: var(--line); }
.nav .wrap { height: 100%; display: flex; align-items: center; gap: 18px; }

.brand { display: flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 800; letter-spacing: -0.02em; }
.brand:hover { color: var(--ink); }
.brand img { width: 34px; height: 34px; border-radius: 9px; }
.brand span { font-size: 1.02rem; white-space: nowrap; }

.nav-links { display: flex; align-items: center; gap: 6px; margin-inline-start: auto; }
.nav-links a {
    color: var(--body); font-size: .92rem; font-weight: 600;
    padding: 8px 12px; border-radius: 10px; transition: background .18s ease, color .18s ease;
}
.nav-links a:hover { color: var(--ink); background: var(--brand-tint); }

.nav-actions { display: flex; align-items: center; gap: 10px; margin-inline-start: 8px; }

.lang-toggle {
    display: inline-flex; align-items: center; gap: 6px;
    background: transparent; border: 1px solid var(--line); color: var(--ink);
    font-family: inherit; font-size: .86rem; font-weight: 700; cursor: pointer;
    padding: 8px 14px; border-radius: 999px; transition: border-color .18s ease, background .18s ease;
}
.lang-toggle:hover { border-color: var(--brand); background: var(--brand-tint); }
.lang-toggle svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; color: var(--ink); margin-inline-start: auto; }
.nav-toggle svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }

@media (max-width: 900px) {
    .nav-toggle { display: block; order: 3; margin-inline-start: 4px; }
    .nav-actions { order: 2; margin-inline-start: auto; }
    .nav-links {
        position: fixed; inset: var(--nav-h) 0 auto 0;
        flex-direction: column; align-items: stretch; gap: 2px;
        background: var(--bg); border-bottom: 1px solid var(--line);
        padding: 14px 22px 22px; margin: 0;
        box-shadow: var(--shadow-m);
        display: none;
    }
    .nav-links.is-open { display: flex; }
    .nav-links a { padding: 12px 10px; font-size: 1rem; }
    .nav-actions .btn--hide-sm { display: none; }
}

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

.hero { position: relative; padding: clamp(48px, 7vw, 88px) 0 clamp(56px, 8vw, 96px); overflow: hidden; }
.hero::before {
    content: ""; position: absolute; inset-block-start: -280px; inset-inline-end: -180px;
    width: 720px; height: 720px; border-radius: 50%;
    background: radial-gradient(circle, rgba(60, 186, 146, .28), transparent 62%);
    filter: blur(20px); pointer-events: none;
}
.hero .wrap { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 64px); align-items: center; }

.hero h1 { font-size: clamp(2.15rem, 5.2vw, 3.5rem); margin-bottom: 18px; }
.hero h1 em { font-style: normal; background: linear-gradient(120deg, var(--brand), var(--brand-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lede { font-size: clamp(1.02rem, 1.7vw, 1.18rem); max-width: 540px; margin-bottom: 28px; }
.hero .stores { margin-bottom: 22px; }

.hero-note { display: flex; align-items: center; gap: 10px; font-size: .88rem; color: var(--muted); }
.hero-note svg { width: 17px; height: 17px; flex: none; stroke: var(--brand); fill: none; stroke-width: 2; }

.hero-visual { position: relative; }
.hero-visual .shot {
    border-radius: var(--r-l); overflow: hidden; box-shadow: var(--shadow-m);
    border: 1px solid var(--line); aspect-ratio: 4 / 4.4; background: var(--bg-soft);
}
.hero-visual .shot img { width: 100%; height: 100%; object-fit: cover; }

.float-card {
    position: absolute; background: color-mix(in srgb, var(--card) 90%, transparent);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--line); border-radius: 18px; padding: 14px 18px;
    box-shadow: var(--shadow-m); font-size: .84rem;
}
.float-card .fc-label { display: block; color: var(--muted); font-size: .74rem; font-weight: 600; }
.float-card .fc-value { display: block; color: var(--ink); font-size: 1.05rem; font-weight: 800; letter-spacing: -0.02em; line-height: 1.3; }
.float-card--price { inset-block-end: 8%; inset-inline-start: -22px; }
.float-card--track { inset-block-start: 9%; inset-inline-end: -18px; display: flex; align-items: center; gap: 12px; }
.dot-live { width: 10px; height: 10px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 0 rgba(11, 163, 96, .6); animation: pulse 2.2s infinite; flex: none; }
@keyframes pulse {
    70% { box-shadow: 0 0 0 12px rgba(11, 163, 96, 0); }
    100% { box-shadow: 0 0 0 0 rgba(11, 163, 96, 0); }
}

@media (max-width: 900px) {
    .hero .wrap { grid-template-columns: 1fr; }
    .hero-visual { order: -1; max-width: 460px; margin-inline: auto; }
    .hero-visual .shot { aspect-ratio: 4 / 3.4; }
    .float-card--price { inset-inline-start: 8px; }
    .float-card--track { inset-inline-end: 8px; }
    .hero p.lede { margin-inline: 0; }
}

/* ---------- stats ------------------------------------------------------ */

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-m); padding: 22px 20px; box-shadow: var(--shadow-s); }
.stat b { display: block; color: var(--ink); font-size: clamp(1.4rem, 2.6vw, 1.85rem); font-weight: 800; letter-spacing: -0.03em; }
.stat span { font-size: .88rem; color: var(--muted); }
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------- store marquee ---------------------------------------------- */

.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; width: max-content; gap: 14px; animation: slide 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }
.chip {
    display: inline-flex; align-items: center; gap: 9px; white-space: nowrap;
    background: var(--card); border: 1px solid var(--line); border-radius: 999px;
    padding: 11px 22px; color: var(--ink); font-weight: 700; font-size: .95rem;
    box-shadow: var(--shadow-s);
}
.chip i { width: 7px; height: 7px; border-radius: 50%; background: var(--brand-2); }
@media (prefers-reduced-motion: reduce) {
    .marquee-track { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; }
}

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

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-m); padding: 28px 24px; box-shadow: var(--shadow-s); transition: transform .2s ease, box-shadow .2s ease; }
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); }
.step .num {
    counter-increment: step; display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 13px; margin-bottom: 16px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; font-weight: 800;
}
.step .num::before { content: counter(step); }
.step h3 { font-size: 1.08rem; margin-bottom: 8px; }
.step p { font-size: .92rem; }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ---------- features --------------------------------------------------- */

.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-m); padding: 28px 24px; box-shadow: var(--shadow-s); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); border-color: color-mix(in srgb, var(--brand) 35%, var(--line)); }
.feature .ico {
    width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
    background: var(--brand-tint); margin-bottom: 16px;
}
.feature .ico svg { width: 23px; height: 23px; stroke: var(--brand); fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.feature h3 { font-size: 1.06rem; margin-bottom: 8px; }
.feature p { font-size: .93rem; }
@media (max-width: 980px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .features { grid-template-columns: 1fr; } }

/* ---------- split (image + copy) --------------------------------------- */

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { border-radius: var(--r-l); overflow: hidden; box-shadow: var(--shadow-m); border: 1px solid var(--line); aspect-ratio: 5 / 4; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
/* media column matches the height of a tall content column instead of floating in the middle */
.split--stretch { align-items: stretch; }
.split--stretch .split-media { aspect-ratio: auto; min-height: 340px; }
.checklist { list-style: none; display: grid; gap: 14px; margin-top: 22px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: .97rem; }
.checklist svg { width: 21px; height: 21px; flex: none; margin-top: 2px; stroke: var(--brand); fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.checklist b { color: var(--ink); }
@media (max-width: 860px) {
    .split { grid-template-columns: 1fr; }
    .split.reverse .split-media { order: 0; }
}

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

.ship-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ship {
    position: relative; overflow: hidden;
    background: var(--card); border: 1px solid var(--line); border-radius: var(--r-m);
    padding: 28px 24px; box-shadow: var(--shadow-s);
}
.ship::after { content: ""; position: absolute; inset-block-start: 0; inset-inline: 0; height: 4px; background: linear-gradient(90deg, var(--brand), var(--brand-2)); }
.ship .ico { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: var(--brand-tint); margin-bottom: 16px; }
.ship .ico svg { width: 24px; height: 24px; stroke: var(--brand); fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.ship h3 { font-size: 1.1rem; margin-bottom: 6px; }
.ship .eta { display: inline-block; font-size: .82rem; font-weight: 700; color: var(--brand); background: var(--brand-tint); padding: 5px 12px; border-radius: 999px; margin-bottom: 12px; }
.ship p { font-size: .93rem; }
@media (max-width: 860px) { .ship-grid { grid-template-columns: 1fr; } }

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

.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq details { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-s); box-shadow: var(--shadow-s); overflow: hidden; }
.faq summary {
    cursor: pointer; list-style: none; padding: 18px 22px;
    font-weight: 700; color: var(--ink); font-size: 1rem;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--brand); font-size: 1.4rem; font-weight: 700; line-height: 1; flex: none; transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .answer { padding: 0 22px 20px; font-size: .95rem; }

/* ---------- cta band --------------------------------------------------- */

.cta {
    position: relative; overflow: hidden; border-radius: var(--r-l);
    background: linear-gradient(135deg, var(--brand-deep), var(--brand) 45%, var(--brand-2));
    color: #fff; padding: clamp(40px, 6vw, 68px) clamp(24px, 5vw, 60px);
    display: grid; grid-template-columns: 1.2fr .8fr; gap: 32px; align-items: center;
    box-shadow: var(--shadow-brand);
}
.cta::before { content: ""; position: absolute; inset-block-start: -120px; inset-inline-end: -80px; width: 380px; height: 380px; border-radius: 50%; background: rgba(255, 255, 255, .12); }
.cta > * { position: relative; }
.cta h2 { color: #fff; font-size: clamp(1.6rem, 3.4vw, 2.35rem); margin-bottom: 12px; }
.cta p { color: rgba(255, 255, 255, .9); font-size: 1.02rem; }
.cta .stores { justify-content: flex-end; }
@media (max-width: 860px) {
    .cta { grid-template-columns: 1fr; text-align: center; }
    .cta .stores { justify-content: center; }
}

/* ---------- footer ----------------------------------------------------- */

.footer { background: var(--bg-soft); border-top: 1px solid var(--line); padding: clamp(48px, 6vw, 72px) 0 32px; margin-top: clamp(56px, 8vw, 96px); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 32px; }
.footer h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 14px; font-weight: 700; }
body[dir="rtl"] .footer h4 { letter-spacing: 0; }
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer ul a, .footer ul li { color: var(--body); font-size: .93rem; }
.footer ul a:hover { color: var(--brand); }
.footer .about p { font-size: .93rem; margin: 14px 0 18px; max-width: 320px; }

.socials { display: flex; gap: 10px; flex-wrap: wrap; }
.socials a {
    width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
    background: var(--card); border: 1px solid var(--line); color: var(--ink);
    transition: transform .18s ease, border-color .18s ease, color .18s ease;
}
.socials a:hover { transform: translateY(-3px); border-color: var(--brand); color: var(--brand); }
.socials svg { width: 19px; height: 19px; fill: currentColor; }

.footer-bottom {
    margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line);
    display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: space-between;
    font-size: .85rem; color: var(--muted);
}
.footer-bottom nav { display: flex; gap: 18px; flex-wrap: wrap; }
.disclaimer { font-size: .8rem; color: var(--muted); margin-top: 18px; max-width: 720px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- legal pages ------------------------------------------------ */

.legal-hero {
    background: linear-gradient(135deg, var(--brand-deep), var(--brand) 50%, var(--brand-2));
    color: #fff; padding: clamp(48px, 7vw, 80px) 0;
}
.legal-hero h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 10px; }
.legal-hero p { color: rgba(255, 255, 255, .92); }
.legal-hero .back { display: inline-flex; align-items: center; gap: 8px; color: rgba(255, 255, 255, .9); font-size: .9rem; font-weight: 600; margin-bottom: 20px; }
.legal-hero .back:hover { color: #fff; }
.legal-hero .back svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
body[dir="rtl"] .legal-hero .back svg { transform: scaleX(-1); }

.legal { max-width: 820px; margin-inline: auto; padding: clamp(36px, 5vw, 60px) 22px clamp(40px, 6vw, 72px); }
.legal .meta {
    display: inline-block; font-size: .85rem; font-weight: 600; color: var(--brand);
    background: var(--brand-tint); padding: 6px 14px; border-radius: 999px; margin-bottom: 26px;
}
.legal h2 {
    font-size: 1.22rem; margin: 38px 0 12px; padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
}
.legal h2:first-of-type { margin-top: 8px; }
.legal p, .legal li { font-size: .97rem; color: var(--body); margin-bottom: 10px; }
.legal ul, .legal ol { padding-inline-start: 22px; margin-bottom: 16px; }
.legal li { margin-bottom: 8px; }
.legal li::marker { color: var(--brand); }
.legal strong { color: var(--ink); }
.callout {
    background: var(--card); border: 1px solid var(--line);
    border-inline-start: 4px solid var(--brand);
    padding: 18px 22px; margin: 18px 0; border-radius: var(--r-s);
    box-shadow: var(--shadow-s);
}
.callout p:last-child { margin-bottom: 0; }
.legal .contact-card {
    background: var(--card); border: 1px solid var(--line); border-radius: var(--r-m);
    padding: 24px; box-shadow: var(--shadow-s); margin-top: 18px;
}
.legal .contact-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }

/* `revert` keeps spans inline and divs block when a language block is shown */
.lang-ar { display: none; }
body[dir="rtl"] .lang-ar { display: revert; }
body[dir="rtl"] .lang-en { display: none; }

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

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .dot-live { animation: none; }
}
