/* ============================================================
   iRevegas — Ontario landing page
   Palette mirrors the main site (G141): midnight indigo, casino
   gold CTAs, neon magenta / electric cyan / violet accents.
   All animations are transform/opacity only and fully gated
   behind prefers-reduced-motion.
   ============================================================ */

:root {
    --bg:        #08051a;
    --bg-2:      #100a2b;
    --surface:   #181034;
    --surface-2: #221745;
    --border:    #352a5e;
    --text:      #f2efff;
    --muted:     #b9b3d6;
    --dim:       #7d77a3;
    --gold:      #ffc83d;
    --gold-2:    #ffe08a;
    --gold-ink:  #221700;
    --magenta:   #ff3da6;
    --cyan:      #2de2ff;
    --violet:    #8f7cff;
    --red:       #ff4d6d;
    --maxw:      1180px;
    --gap:       clamp(1rem, 2.4vw, 1.6rem);
    --font: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0; font-family: var(--font); background: var(--bg); color: var(--text);
    line-height: 1.65; font-size: 16px; -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; }
a { color: var(--gold-2); }
a:hover { color: #fff; }
h1, h2, h3 { line-height: 1.12; color: #fff; margin: 0 0 .6rem; font-weight: 800; }
p { margin: 0 0 1rem; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gap); }
.wrap--narrow { max-width: 800px; }

.skip-link {
    position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}
.skip-link:focus {
    width: auto; height: auto; clip: auto; z-index: 1000; position: fixed; top: 10px; left: 10px;
    padding: .6rem 1rem; background: var(--gold); color: var(--gold-ink); border-radius: 999px;
    font-weight: 700; text-decoration: none;
}
:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 3px; }

/* ---------- Buttons ---------- */
.btn {
    position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    font: inherit; font-weight: 800; cursor: pointer; white-space: nowrap; text-decoration: none;
    padding: .74rem 1.5rem; border-radius: 999px; border: 1px solid transparent;
    transition: transform .14s ease, border-color .14s ease, filter .14s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold {
    background: linear-gradient(180deg, var(--gold-2), var(--gold)); color: var(--gold-ink);
    box-shadow: 0 0 18px rgba(255, 200, 61, .35), 0 4px 14px rgba(0, 0, 0, .45);
}
.btn--gold:hover { filter: brightness(1.06); color: var(--gold-ink); }
.btn--ghost {
    background: rgba(16, 10, 43, .45); color: var(--text); border-color: var(--border);
    backdrop-filter: blur(6px);
}
.btn--ghost:hover { border-color: var(--cyan); color: #fff; }
.btn--cyan {
    background: linear-gradient(180deg, #9bf2ff, var(--cyan)); color: #032030;
    box-shadow: 0 0 18px rgba(45, 226, 255, .35);
}
.btn--cyan:hover { color: #032030; filter: brightness(1.05); }
.btn--lg { padding: .95rem 2rem; font-size: 1.06rem; }

/* pulsing halo on the primary CTA (opacity/scale only) */
.btn--pulse::after {
    content: ""; position: absolute; inset: -5px; border-radius: inherit; pointer-events: none;
    box-shadow: 0 0 26px 8px rgba(255, 200, 61, .45); opacity: 0;
}
.motion .btn--pulse::after { animation: haloPulse 2.4s ease-in-out infinite; }
@keyframes haloPulse {
    0%, 100% { opacity: 0; transform: scale(.96); }
    50%      { opacity: 1; transform: scale(1); }
}

.kicker {
    font-weight: 800; letter-spacing: .22em; text-transform: uppercase; font-size: .78rem;
    margin: 0 0 .7rem; display: flex; align-items: center; gap: .55rem;
}
.kicker--magenta { color: var(--magenta); }
.kicker--cyan { color: var(--cyan); }
.kicker--violet { color: var(--violet); }
.kicker--calm { color: var(--gold-2); justify-content: center; }
.section-title { font-size: clamp(1.7rem, 4vw, 2.6rem); }
.section-lead { color: var(--muted); font-size: 1.05rem; max-width: 56ch; }
.grad-text {
    background: linear-gradient(90deg, var(--magenta), var(--violet), var(--cyan));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ============================================================
   1. Header — sticky glass
   ============================================================ */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(8, 5, 26, .72); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(143, 124, 255, .22);
}
.site-header__inner {
    max-width: var(--maxw); margin: 0 auto; padding: .6rem var(--gap);
    display: flex; align-items: center; gap: 1rem;
}
.brand { display: inline-flex; align-items: center; }
.brand__logo { height: 34px; width: auto; display: block; }
.header-tag {
    color: var(--dim); font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
    border-left: 1px solid var(--border); padding-left: 1rem;
}
.site-header__cta { margin-left: auto; display: inline-flex; align-items: center; gap: .8rem; }
.age-badge { display: block; }
.age-badge--lg { margin-top: .4rem; }

/* ============================================================
   2. Hero — full-viewport neon billboard
   ============================================================ */
.hero {
    position: relative; min-height: 100svh;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; overflow: hidden; padding: clamp(4rem, 8vh, 6rem) var(--gap);
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__skyline {
    position: absolute; inset: 0; width: 112%; left: -6%;
    background: url("../img/hero-main.jpg") center 32% / cover no-repeat;
    will-change: transform;
}
.motion .hero__skyline { animation: skylineDrift 70s ease-in-out infinite alternate; }
@keyframes skylineDrift {
    from { transform: translateX(0) scale(1.02); }
    to   { transform: translateX(-3.4%) scale(1.06); }
}
.hero__scrim {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 75% 62% at 50% 46%, rgba(8, 5, 26, .42) 0%, rgba(8, 5, 26, .82) 70%, rgba(8, 5, 26, .96) 100%),
        linear-gradient(180deg, rgba(8, 5, 26, .55), rgba(8, 5, 26, .35) 40%, var(--bg) 99%);
}

/* floating bokeh orbs */
.orb {
    position: absolute; border-radius: 50%; pointer-events: none; will-change: transform;
    filter: blur(2px);
}
.orb--1 { width: 140px; height: 140px; left: 8%;  top: 18%; background: radial-gradient(circle, rgba(255, 61, 166, .30), transparent 70%); }
.orb--2 { width: 90px;  height: 90px;  left: 78%; top: 14%; background: radial-gradient(circle, rgba(45, 226, 255, .30), transparent 70%); }
.orb--3 { width: 180px; height: 180px; left: 66%; top: 62%; background: radial-gradient(circle, rgba(143, 124, 255, .26), transparent 70%); }
.orb--4 { width: 70px;  height: 70px;  left: 16%; top: 66%; background: radial-gradient(circle, rgba(255, 200, 61, .30), transparent 70%); }
.orb--5 { width: 110px; height: 110px; left: 42%; top: 8%;  background: radial-gradient(circle, rgba(255, 61, 166, .20), transparent 70%); }
.motion .orb { animation: orbFloat 11s ease-in-out infinite alternate; }
.motion .orb--2 { animation-duration: 9s;  animation-delay: -3s; }
.motion .orb--3 { animation-duration: 13s; animation-delay: -6s; }
.motion .orb--4 { animation-duration: 8s;  animation-delay: -2s; }
.motion .orb--5 { animation-duration: 12s; animation-delay: -5s; }
@keyframes orbFloat {
    from { transform: translate3d(0, 0, 0) scale(1); opacity: .75; }
    to   { transform: translate3d(26px, -34px, 0) scale(1.18); opacity: 1; }
}

/* animated magenta→cyan gradient tube around the hero:
   an oversized rotating conic-gradient square, hole-punched to a
   2px ring with a mask (rotation = transform only, jank-free) */
.hero__frame {
    position: absolute; inset: clamp(10px, 1.8vw, 22px); z-index: 1; pointer-events: none;
    border-radius: 26px; overflow: hidden; padding: 2px;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box exclude, linear-gradient(#000 0 0);
}
.hero__tube {
    position: absolute; left: 50%; top: 50%; width: 250vmax; height: 250vmax;
    margin: -125vmax 0 0 -125vmax; will-change: transform;
    background: conic-gradient(var(--magenta), var(--violet), var(--cyan), var(--violet), var(--magenta));
    opacity: .95;
}
.motion .hero__tube { animation: tubeSpin 9s linear infinite; }
@keyframes tubeSpin { to { transform: rotate(1turn); } }

.hero__content { position: relative; z-index: 2; max-width: 880px; }
.hero__eyebrow { display: flex; justify-content: center; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.3rem; }
.eyebrow-chip {
    display: inline-block; padding: .3rem .85rem; border-radius: 999px; font-size: .78rem;
    font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
    color: var(--cyan); border: 1px solid rgba(45, 226, 255, .4); background: rgba(8, 5, 26, .55);
    backdrop-filter: blur(4px);
}
.eyebrow-chip--red { color: #fff; background: var(--red); border-color: rgba(255, 255, 255, .35); }

.hero__title {
    font-size: clamp(2.5rem, 7.6vw, 5.2rem); letter-spacing: .01em; text-transform: uppercase;
    margin-bottom: 1.1rem;
}
.neon-line { display: block; }
.neon-line--white { color: #fff; text-shadow: 0 0 18px rgba(45, 226, 255, .65), 0 0 46px rgba(255, 61, 166, .45); }
.neon-line--gold  { color: var(--gold); text-shadow: 0 0 18px rgba(255, 200, 61, .65), 0 0 52px rgba(255, 200, 61, .35); }
/* per-letter flicker-on (added by JS, opacity only, runs once) */
.neon-line .ch { display: inline-block; }
.motion .neon-line .ch {
    opacity: 0; animation: neonFlickerOn .85s steps(1, end) forwards;
    animation-delay: calc(var(--i) * 55ms + 150ms);
}
@keyframes neonFlickerOn {
    0%   { opacity: 0; }
    8%   { opacity: 1; }
    14%  { opacity: .25; }
    26%  { opacity: 1; }
    34%  { opacity: .4; }
    44%  { opacity: 1; }
    58%  { opacity: .7; }
    70%  { opacity: 1; }
    100% { opacity: 1; }
}

.hero__lead { color: var(--text); font-size: clamp(1rem, 1.6vw, 1.18rem); max-width: 62ch; margin-inline: auto; }
.hero__lead strong { color: var(--gold-2); }
.hero__actions { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; margin: 1.6rem 0 1.2rem; }
.hero__note { color: var(--muted); font-size: .88rem; margin: 0; }

.hero__scrollcue {
    position: absolute; bottom: clamp(22px, 4vh, 40px); left: 50%; transform: translateX(-50%); z-index: 2;
    width: 26px; height: 42px; border: 2px solid rgba(185, 179, 214, .5); border-radius: 14px;
}
.hero__scrollcue span {
    position: absolute; left: 50%; top: 7px; width: 4px; height: 9px; margin-left: -2px;
    border-radius: 2px; background: var(--cyan);
}
.motion .hero__scrollcue span { animation: cueDrop 1.8s ease-in-out infinite; }
@keyframes cueDrop {
    0%, 100% { transform: translateY(0); opacity: 1; }
    70%      { transform: translateY(14px); opacity: 0; }
}

/* ============================================================
   3. Slot-reel divider (pure decoration — mixed stop, no win)
   ============================================================ */
.reel-strip {
    background: linear-gradient(180deg, var(--bg), var(--bg-2));
    border-block: 1px solid var(--border);
    padding: clamp(1.4rem, 3vw, 2.2rem) var(--gap);
    display: flex; justify-content: center;
}
.reel-strip__inner {
    display: flex; gap: clamp(.6rem, 1.6vw, 1rem); padding: clamp(.6rem, 1.4vw, .9rem);
    background: var(--surface); border: 1px solid var(--border); border-radius: 18px;
    box-shadow: 0 0 0 1px rgba(143, 124, 255, .12), 0 0 38px rgba(255, 61, 166, .14), inset 0 2px 12px rgba(0, 0, 0, .5);
}
.reel {
    width: clamp(76px, 14vw, 104px); height: clamp(76px, 14vw, 104px);
    overflow: hidden; border-radius: 12px; position: relative;
    background: linear-gradient(180deg, #0c0822, var(--bg-2) 50%, #0c0822);
    border: 1px solid var(--border);
}
.reel::after { /* glass shading over the symbols */
    content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
    background: linear-gradient(180deg, rgba(8, 5, 26, .65), transparent 30%, transparent 70%, rgba(8, 5, 26, .65));
}
.reel__tape { display: block; will-change: transform; }
.cell {
    display: flex; align-items: center; justify-content: center;
    width: 100%; height: clamp(76px, 14vw, 104px);
}
.cell svg { width: 56%; height: 56%; fill: currentColor; }
.cell--gold    { color: var(--gold);    filter: drop-shadow(0 0 8px rgba(255, 200, 61, .55)); }
.cell--magenta { color: var(--magenta); filter: drop-shadow(0 0 8px rgba(255, 61, 166, .55)); }
.cell--cyan    { color: var(--cyan);    filter: drop-shadow(0 0 8px rgba(45, 226, 255, .55)); }
.cell--violet  { color: var(--violet);  filter: drop-shadow(0 0 8px rgba(143, 124, 255, .55)); }

/* static (default / reduced-motion / no-JS) stop positions — three DIFFERENT symbols */
.reel__tape--a { transform: translateY(-66.6667%); } /* seven  */
.reel__tape--b { transform: translateY(-83.3333%); } /* diamond */
.reel__tape--c { transform: translateY(-91.6667%); } /* bell   */

.motion .reel__tape.is-spinning { animation: reelSpin .42s linear infinite; }
@keyframes reelSpin { from { transform: translateY(0); } to { transform: translateY(-50%); } }
.motion .reel__tape--a.is-settling { animation: settleA 1s cubic-bezier(.22, 1.18, .4, 1) forwards; }
.motion .reel__tape--b.is-settling { animation: settleB 1s cubic-bezier(.22, 1.18, .4, 1) forwards; }
.motion .reel__tape--c.is-settling { animation: settleC 1s cubic-bezier(.22, 1.18, .4, 1) forwards; }
@keyframes settleA { from { transform: translateY(-50%); } to { transform: translateY(-66.6667%); } }
@keyframes settleB { from { transform: translateY(-50%); } to { transform: translateY(-83.3333%); } }
@keyframes settleC { from { transform: translateY(-50%); } to { transform: translateY(-91.6667%); } }

/* ============================================================
   4. Game wall — dense mosaic
   ============================================================ */
.wall { padding: clamp(3rem, 7vw, 5.5rem) 0; background: var(--bg); }
.wall__head { margin-bottom: 2rem; }
.wall__grid {
    display: grid; gap: clamp(.6rem, 1.4vw, 1rem);
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
.tile {
    margin: 0; position: relative; border-radius: 14px; overflow: hidden;
    border: 1px solid var(--border); background: var(--surface);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.tile img { display: block; width: 100%; aspect-ratio: 1; object-fit: cover; }
.tile figcaption {
    position: absolute; inset: auto 0 0 0; padding: 1.6rem .7rem .55rem;
    font-weight: 700; font-size: .86rem; line-height: 1.25; color: #fff;
    background: linear-gradient(180deg, transparent, rgba(8, 5, 26, .92) 60%);
}
.tile figcaption span { display: block; font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--cyan); }
.tile:hover {
    transform: translateY(-5px); border-color: var(--magenta);
    box-shadow: 0 0 0 1px rgba(255, 61, 166, .55), 0 0 26px rgba(255, 61, 166, .4), 0 12px 28px rgba(0, 0, 0, .5);
}
.tile:nth-child(3n):hover { border-color: var(--cyan); box-shadow: 0 0 0 1px rgba(45, 226, 255, .55), 0 0 26px rgba(45, 226, 255, .4), 0 12px 28px rgba(0, 0, 0, .5); }
.tile:nth-child(3n+1):hover { border-color: var(--gold); box-shadow: 0 0 0 1px rgba(255, 200, 61, .55), 0 0 26px rgba(255, 200, 61, .35), 0 12px 28px rgba(0, 0, 0, .5); }
/* staggered float-in (motion only; delays set by JS) */
.motion .wall__grid.is-armed .tile { opacity: 0; transform: translateY(26px); }
.motion .wall__grid.is-armed.is-in .tile {
    opacity: 1; transform: translateY(0);
    transition: opacity .55s ease, transform .55s cubic-bezier(.21, .8, .36, 1);
    transition-delay: var(--d, 0s);
}
.wall__cta { text-align: center; margin: 2.2rem 0 0; }

/* ---------- marquee divider ---------- */
.marquee {
    overflow: hidden; border-block: 1px solid var(--border);
    background: linear-gradient(90deg, rgba(255, 61, 166, .10), rgba(143, 124, 255, .10), rgba(45, 226, 255, .10));
    padding: .65rem 0; white-space: nowrap;
}
.marquee__track { display: inline-flex; align-items: center; gap: 2.2rem; padding-right: 2.2rem; will-change: transform; }
.motion .marquee__track { animation: marqueeScroll 26s linear infinite; }
@keyframes marqueeScroll { to { transform: translateX(-50%); } }
.marquee span {
    font-weight: 800; letter-spacing: .26em; text-transform: uppercase; font-size: .82rem;
    color: var(--muted);
}
.marquee i { color: var(--magenta); font-style: normal; font-size: .7rem; }

/* ============================================================
   5. Live casino — diagonal section
   ============================================================ */
.live {
    position: relative; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center;
    background: var(--bg-2); overflow: hidden;
}
.live__media { position: relative; align-self: stretch; min-height: 380px; }
.live__media img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    clip-path: polygon(0 0, 100% 0, 78% 100%, 0 100%);
}
.live__media::after {
    content: ""; position: absolute; inset: 0;
    clip-path: polygon(0 0, 100% 0, 78% 100%, 0 100%);
    background: linear-gradient(115deg, rgba(8, 5, 26, .25), rgba(16, 10, 43, .78) 86%);
}
.live__pulse {
    position: absolute; right: 8%; top: 12%; width: 14px; height: 14px; border-radius: 50%;
    background: var(--cyan); box-shadow: 0 0 14px var(--cyan); z-index: 1;
}
.motion .live__pulse { animation: livePing 2.2s ease-out infinite; }
@keyframes livePing {
    0%   { transform: scale(.8); opacity: 1; }
    70%  { transform: scale(1.9); opacity: .15; }
    100% { transform: scale(.8); opacity: 1; }
}
.live__panel { padding: clamp(2.5rem, 6vw, 5rem) var(--gap) clamp(2.5rem, 6vw, 5rem) clamp(1rem, 3vw, 2rem); max-width: 560px; }
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); display: inline-block; }
.live__points { list-style: none; margin: 0 0 1.6rem; padding: 0; color: var(--muted); }
.live__points li { padding: .42rem 0 .42rem 1.5rem; position: relative; }
.live__points li::before {
    content: ""; position: absolute; left: 0; top: .88em; width: 9px; height: 9px;
    background: var(--cyan); transform: rotate(45deg); box-shadow: 0 0 8px rgba(45, 226, 255, .6);
}

/* ============================================================
   6. Stats band — animated counters
   ============================================================ */
.stats {
    background:
        radial-gradient(620px 200px at 18% 0%, rgba(255, 61, 166, .14), transparent 70%),
        radial-gradient(620px 200px at 82% 100%, rgba(45, 226, 255, .12), transparent 70%),
        var(--bg);
    border-block: 1px solid var(--border);
}
.stats__grid {
    max-width: var(--maxw); margin: 0 auto; padding: clamp(2.2rem, 5vw, 3.6rem) var(--gap);
    display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); text-align: center;
}
.stat__num {
    display: block; font-size: clamp(2rem, 4.6vw, 3.2rem); font-weight: 800; color: var(--gold);
    text-shadow: 0 0 22px rgba(255, 200, 61, .4); line-height: 1.1;
}
.stat__label { color: var(--muted); font-size: .92rem; }

/* ============================================================
   7. Responsible gaming — calm, readable
   ============================================================ */
.rg { padding: clamp(3rem, 7vw, 5.5rem) 0; background: var(--bg-2); }
.rg__head { text-align: center; max-width: 720px; margin: 0 auto 2.4rem; }
.rg__head img { margin-bottom: .8rem; }
.rg__head .section-lead { margin-inline: auto; }
.rg__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--gap); }
.rg-card {
    background: var(--surface); border: 1px solid var(--border); border-radius: 14px;
    padding: 1.5rem 1.4rem;
}
.rg-card h3 { font-size: 1.08rem; }
.rg-card p { color: var(--muted); font-size: .95rem; margin: 0 0 .5rem; }
.rg-card--help { border-color: rgba(255, 200, 61, .5); background: linear-gradient(180deg, rgba(255, 200, 61, .08), var(--surface)); }
.rg-card__phone a { font-size: 1.35rem; font-weight: 800; color: var(--gold); text-decoration: none; }
.rg-card__phone a:hover { text-decoration: underline; color: var(--gold-2); }
.rg__more { text-align: center; margin: 2rem 0 0; }

/* ============================================================
   8. FAQ
   ============================================================ */
.faq { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.faq .section-title { margin-bottom: 1.6rem; }
.faq__item {
    border: 1px solid var(--border); border-radius: 14px; background: var(--surface);
    margin-bottom: .8rem; overflow: hidden;
}
.faq__item summary {
    cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; padding: 1.05rem 1.3rem; font-weight: 700; color: #fff;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--gold-2); }
.faq__chev {
    flex: 0 0 auto; width: 11px; height: 11px; border-right: 2px solid var(--violet); border-bottom: 2px solid var(--violet);
    transform: rotate(45deg); transition: transform .25s ease; margin-top: -4px;
}
.faq__item[open] .faq__chev { transform: rotate(225deg); margin-top: 4px; }
.faq__item[open] { border-color: var(--violet); box-shadow: 0 0 18px rgba(143, 124, 255, .18); }
.faq__body { padding: 0 1.3rem 1.1rem; color: var(--muted); }
.faq__body p { margin: 0; }
.faq__cta { text-align: center; margin: 2.2rem 0 0; }

/* ============================================================
   9. Footer
   ============================================================ */
.site-footer { background: #060414; border-top: 1px solid var(--border); padding: clamp(2.4rem, 5vw, 3.6rem) 0 2rem; }
.footer-top {
    display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: clamp(1.4rem, 4vw, 3rem);
    padding-bottom: 1.8rem; border-bottom: 1px solid var(--border);
}
.footer-brand img { margin-bottom: .8rem; }
.footer-brand p { color: var(--muted); font-size: .92rem; }
.footer-brand__note { color: var(--dim); }
.footer-nav h3, .footer-help h3 {
    font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: var(--dim); margin-bottom: .8rem;
}
.footer-nav ul { list-style: none; margin: 0; padding: 0; }
.footer-nav li { margin-bottom: .45rem; }
.footer-nav a { color: var(--muted); text-decoration: none; }
.footer-nav a:hover { color: var(--gold-2); text-decoration: underline; }
.footer-help p { color: var(--muted); font-size: .92rem; }
.footer-help a { color: var(--gold-2); }
.footer-legal { padding-top: 1.6rem; }
.footer-legal p { color: var(--dim); font-size: .82rem; }
.footer-legal strong { color: var(--muted); }

/* ---------- scroll reveals (generic) ---------- */
.motion .reveal { opacity: 0; transform: translateY(22px); }
.motion .reveal.is-in { opacity: 1; transform: translateY(0); transition: opacity .6s ease, transform .6s cubic-bezier(.21, .8, .36, 1); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 920px) {
    .live { grid-template-columns: 1fr; }
    .live__media { min-height: 240px; }
    .live__media img, .live__media::after { clip-path: polygon(0 0, 100% 0, 100% 78%, 0 100%); }
    .live__panel { padding: 2.2rem var(--gap) 3rem; max-width: none; }
    .stats__grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
    .header-tag { display: none; }
    .site-header__cta .btn { padding: .55rem 1rem; font-size: .92rem; }
    .hero__actions .btn { width: 100%; max-width: 320px; }
    .wall__grid { grid-template-columns: repeat(2, 1fr); }
    .stats__grid { gap: 1.4rem; }
}

/* ============================================================
   Reduced motion — everything static, still complete
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation: none !important; transition: none !important; }
}
