:root {
  --bg: #070708;
  --surface: #0f0f11;
  --surface-2: #151518;
  --text: #f4f2f0;
  --muted: #b7b3b0;
  --line: rgba(255,255,255,.12);
  --red: #ef2029;
  --red-bright: #ff3841;
  --yellow: #ffe11b;
  --purple: #c35cff;
  --teg-line: #7f2026;
  --junior-line: #7c6b1b;
  --bbs-line: #9445bd;
  --radius: 4px;
  --shell: min(1180px, calc(100vw - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body { margin: 0; color: var(--text); background: var(--bg); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 1.0625rem; line-height: 1.65; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #fff; outline-offset: 4px; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding: clamp(5rem, 10vw, 9rem) 0; position: relative; }
.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; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 999; background: #fff; color: #000; padding: .75rem 1rem; transform: translateY(-150%); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; background: linear-gradient(#070708e8, #07070800); transition: background .3s, border-color .3s; border-bottom: 1px solid transparent; }
.site-header.scrolled { background: rgba(7,7,8,.92); backdrop-filter: blur(14px); border-color: var(--line); }
.nav { height: 76px; display: flex; align-items: center; justify-content: space-between; }
.brand { width: 122px; display: block; }
.brand img, .footer-brand img { width: 100%; height: auto; }
.nav-links { display: flex; align-items: center; gap: 1.7rem; }
.nav-links > a { text-decoration: none; text-transform: uppercase; font-size: .84rem; font-weight: 700; letter-spacing: .12em; color: #ddd; transition: color .2s; }
.nav-links > a:hover { color: #fff; }
.nav-links .nav-cta { border: 1px solid var(--red); padding: .65rem .9rem; color: #fff; box-shadow: inset 0 0 0 0 var(--red); transition: box-shadow .25s; }
.nav-links .nav-cta:hover { box-shadow: inset 180px 0 0 0 var(--red); }
.language { display: flex; align-items: center; gap: .3rem; color: #666; }
.lang { border: 0; padding: .4rem .2rem; background: transparent; color: #777; font-size: .84rem; font-weight: 800; cursor: pointer; }
.lang.active { color: #fff; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: #0b0b0d; padding: 11px; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; background: #fff; margin: 5px 0; transition: transform .25s, opacity .25s; }

.hero { min-height: clamp(360px, 72svh, 760px); position: relative; overflow: hidden; background: #050506 url('/assets/concrete.webp') center/cover; }
.hero-image { position: absolute; inset: 0; background-image: url('/assets/hero-flouk.webp'); background-size: contain; background-repeat: no-repeat; background-position: center; animation: heroIn 1.2s ease-out both; }
.mobile-hero-mark { display: none; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4,4,5,.02) 55%, rgba(4,4,5,.45) 100%), linear-gradient(90deg, rgba(0,0,0,.24), transparent 35%, transparent 65%, rgba(0,0,0,.24)); }
.hero-message { position: relative; overflow: hidden; border-block: 1px solid rgba(239,32,41,.22); background: radial-gradient(circle at 50% -40%, rgba(239,32,41,.2), transparent 48%), linear-gradient(rgba(8,8,10,.91), rgba(8,8,10,.98)), url('/assets/concrete.webp') center/cover; }
.hero-message::before { content: ""; position: absolute; width: min(680px, 72vw); height: 1px; left: 50%; top: 0; transform: translateX(-50%); background: linear-gradient(90deg, transparent, var(--red-bright), transparent); box-shadow: 0 0 24px rgba(239,32,41,.8); }
.hero-content { position: relative; z-index: 2; padding-block: clamp(2.5rem, 5vw, 4rem); text-align: center; display: flex; align-items: center; flex-direction: column; }
.payoff { margin: 0 0 .6rem; font-size: clamp(1.35rem, 3.3vw, 2.4rem); line-height: 1.1; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; text-shadow: 0 0 24px rgba(239,32,41,.5); }
.hero-intro { max-width: 680px; margin: 0 0 1.8rem; color: #d0ccca; font-size: clamp(1.08rem, 1.7vw, 1.28rem); }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: .55rem; padding: .85rem 1.2rem; border: 1px solid transparent; text-decoration: none; text-transform: uppercase; letter-spacing: .08em; font-size: .82rem; font-weight: 800; cursor: pointer; transition: transform .2s, background .2s, color .2s, border-color .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--red); color: #fff; box-shadow: 0 0 26px rgba(239,32,41,.26); }
.button-primary:hover { background: var(--red-bright); box-shadow: 0 0 32px rgba(239,32,41,.44); }
.button-outline { border-color: rgba(255,255,255,.36); }
.button-outline:hover { border-color: var(--red); color: #fff; background: var(--red); }
.scroll-cue { position: absolute; z-index: 3; left: 50%; bottom: 18px; width: 34px; height: 34px; transform: translateX(-50%); display: grid; place-items: center; }
.scroll-cue span { width: 9px; height: 9px; border-right: 2px solid #aaa; border-bottom: 2px solid #aaa; transform: rotate(45deg); animation: nudge 1.8s infinite; }

.eyebrow { color: var(--red-bright); text-transform: uppercase; font-size: .88rem; letter-spacing: .17em; font-weight: 800; }
h2, h3, p { overflow-wrap: anywhere; }
h2 { margin: .5rem 0 1rem; font-size: clamp(2rem, 4.7vw, 4.4rem); line-height: 1.03; letter-spacing: -.04em; }
h3 { margin: .4rem 0 1rem; font-size: clamp(1.8rem, 3.5vw, 3.2rem); line-height: 1.05; letter-spacing: -.035em; }
.lead { margin: 0; max-width: 820px; color: #d2cfcc; font-size: clamp(1.2rem, 2vw, 1.52rem); }
.intro { background: linear-gradient(rgba(7,7,8,.9), rgba(7,7,8,.95)), url('/assets/concrete.webp') center/cover; border-bottom: 1px solid var(--line); }
.intro-grid { display: grid; grid-template-columns: minmax(160px, .45fr) 1.55fr; gap: clamp(2rem, 8vw, 8rem); align-items: start; }
.intro h2 { max-width: 860px; }
.section-heading { max-width: 900px; margin-bottom: clamp(3rem, 7vw, 6rem); }
.games { overflow: hidden; background: radial-gradient(circle at 8% 17%, rgba(239,32,41,.12), transparent 24%), radial-gradient(circle at 92% 52%, rgba(255,217,26,.08), transparent 22%), linear-gradient(rgba(7,7,8,.95), rgba(7,7,8,.985)), url('/assets/concrete.webp') center top/cover; }
.game { position: relative; display: grid; grid-template-columns: minmax(260px, .78fr) 1.22fr; gap: clamp(2.5rem, 8vw, 7rem); align-items: center; margin-bottom: clamp(4rem, 8vw, 7rem); padding: clamp(1.4rem, 4vw, 4rem); border: 1px solid var(--line); box-shadow: 0 28px 80px rgba(0,0,0,.3); }
.game-teg { background: linear-gradient(125deg, rgba(239,32,41,.1), transparent 38%), rgba(12,12,14,.8); border-color: var(--teg-line); }
.game-junior { grid-template-columns: 1.22fr minmax(260px, .78fr); background: radial-gradient(circle at 90% 12%, rgba(45,114,255,.14), transparent 34%), linear-gradient(125deg, rgba(255,217,26,.07), transparent 44%), rgba(11,12,16,.86); border-color: var(--junior-line); }
.game-visual { position: relative; }
.portrait-frame { width: 100%; max-width: 430px; aspect-ratio: 3 / 4; justify-self: center; overflow: hidden; background: #111; box-shadow: 0 22px 60px rgba(0,0,0,.52); }
.portrait-frame::before { content: ""; position: absolute; inset: -10px; border: 1px solid rgba(239,32,41,.38); z-index: -1; transform: translate(16px, 16px); }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; }
.game-copy { position: relative; }
.game-number { position: absolute; right: 0; top: -3.3rem; color: rgba(255,255,255,.06); font-size: clamp(5rem, 13vw, 10rem); line-height: 1; font-weight: 900; }
.game-junior .game-number { right: auto; left: 0; }
.game-kicker { margin: 0; color: var(--red-bright); text-transform: uppercase; letter-spacing: .16em; font-size: .88rem; font-weight: 800; }
.game-copy > p:not(.game-kicker), .game-description p { color: var(--muted); max-width: 700px; font-size: 1.12rem; }
.game-description p { margin: 0 0 .85rem; }
.game-description p:last-child { color: #e8e4e1; font-weight: 650; margin-bottom: 0; }
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 10px; margin: 2rem 0; }
.stats.compact { grid-template-columns: repeat(2, minmax(0,1fr)); max-width: 520px; }
.stat { min-height: 78px; display: flex; align-items: center; gap: .7rem; padding: .95rem; border: 1px solid var(--line); background: linear-gradient(135deg, rgba(255,255,255,.05), rgba(255,255,255,.015)); font-size: .96rem; font-weight: 650; }
.stat svg { width: 23px; height: 23px; flex: 0 0 auto; fill: none; stroke: var(--red-bright); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.text-link { display: inline-flex; align-items: center; gap: .65rem; color: #fff; text-decoration: none; text-transform: uppercase; letter-spacing: .09em; font-size: .9rem; font-weight: 800; border-bottom: 1px solid var(--red); padding: .4rem 0; }
.text-link span:last-child { color: var(--red-bright); transition: transform .2s; }
a.text-link:hover span:last-child { transform: translateX(4px); }
.photo-carousel { --carousel-accent: var(--red-bright); --carousel-line: var(--teg-line); position: relative; width: 100%; max-width: 430px; justify-self: center; padding: 0; border: 1px solid var(--carousel-line); background: #0b0b0d; box-shadow: 0 24px 58px rgba(0,0,0,.46); }
.carousel-junior { --carousel-accent: #ffd91a; --carousel-line: var(--junior-line); }
.carousel-viewport { overflow: hidden; aspect-ratio: 16 / 9; background: #0b0b0d; touch-action: pan-y; }
.game-carousel .carousel-viewport { aspect-ratio: 3 / 4; }
.carousel-track { height: 100%; display: flex; transform: translateX(calc(var(--slide, 0) * -100%)); transition: transform .55s cubic-bezier(.22,.61,.36,1); }
.carousel-slide { flex: 0 0 100%; height: 100%; margin: 0; overflow: hidden; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.carousel-button { position: absolute; z-index: 2; top: 50%; width: 52px; height: 52px; display: grid; place-items: center; transform: translateY(-50%); border: 1px solid var(--carousel-line); background: rgba(5,5,7,.82); color: #fff; font-size: 1.35rem; cursor: pointer; backdrop-filter: blur(8px); transition: background .2s, border-color .2s, transform .2s; }
.carousel-button:hover { background: var(--carousel-accent); border-color: var(--carousel-accent); color: #080809; transform: translateY(-50%) scale(1.05); }
.carousel-prev { left: 26px; }
.carousel-next { right: 26px; }
.game-junior .game-kicker, .game-junior .stat svg { color: #ffd91a; stroke: #ffd91a; }
.game-teg .stat { border-color: var(--teg-line); }
.game-junior .stat { border-color: var(--junior-line); }
.game-junior .text-link { border-color: var(--junior-line); }
.game-junior .text-link span:last-child { color: var(--junior-line); }
.game-bbs { padding: clamp(2rem, 5vw, 5rem); background: radial-gradient(circle at 30% 20%, rgba(195,92,255,.18), transparent 36%), radial-gradient(circle at 90% 80%, rgba(38,92,255,.16), transparent 38%), #0d0b16; border: 1px solid var(--bbs-line); margin-bottom: 0; }
.bbs-frame { border: 1px solid var(--bbs-line); }
.bbs-frame::before { display: none; }
.coming-soon { position: absolute; top: 18px; right: -10px; padding: .6rem 1rem; color: #fff; background: #7d2ca8; text-transform: uppercase; letter-spacing: .11em; font-size: .84rem; font-weight: 900; box-shadow: 0 8px 24px rgba(0,0,0,.35); }
.game-bbs .game-kicker, .game-bbs .stat svg { color: var(--purple); stroke: var(--purple); }
.game-bbs .text-link { color: #fff; }
.game-bbs .text-link span:last-child { color: var(--purple); }
.game-bbs .stat { color: #e8cefa; border-color: var(--bbs-line); }
.bbs-stats { grid-template-columns: repeat(2, minmax(0,1fr)); }
.text-link.muted { border-color: var(--bbs-line); }

.video-section { background: radial-gradient(circle at 80% 20%, rgba(32,87,191,.1), transparent 28%), linear-gradient(rgba(8,9,12,.94), rgba(8,8,10,.98)), url('/assets/concrete.webp') center/cover; border-block: 1px solid var(--line); }
.video-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(2rem, 7vw, 6rem); align-items: center; }
.video-player { overflow: hidden; border: 1px solid rgba(239,32,41,.42); background: #000; box-shadow: 0 25px 70px #000; }
.video-player video { display: block; width: 100%; aspect-ratio: 16/9; object-fit: contain; background: #000; }
.video-copy p { color: var(--muted); font-size: 1.1rem; }
.audiences { background: linear-gradient(rgba(7,7,8,.93), rgba(7,7,8,.98)), url('/assets/concrete.webp') center/cover; }
.audience-grid { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--line); }
.audience-card { min-height: 260px; padding: 2rem; border-right: 1px solid var(--line); transition: background .25s, transform .25s; }
.audience-card:last-child { border-right: 0; }
.audience-card:hover { background: rgba(239,32,41,.08); transform: translateY(-3px); }
.audience-card svg { width: 36px; height: 36px; fill: none; stroke: var(--red-bright); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.audience-card h3 { margin-top: 2.3rem; font-size: 1.42rem; letter-spacing: -.02em; }
.audience-card p { color: var(--muted); margin: 0; font-size: 1.06rem; }
.location { overflow: hidden; background: radial-gradient(circle at 78% 42%, rgba(239,32,41,.14), transparent 28%), linear-gradient(rgba(10,10,12,.91), rgba(10,10,12,.97)), url('/assets/concrete.webp') center/cover; }
.location::after { content: ""; position: absolute; width: 44vw; height: 44vw; right: -24vw; top: 50%; transform: translateY(-50%); border: 1px solid rgba(239,32,41,.12); border-radius: 50%; box-shadow: 0 0 90px rgba(239,32,41,.08); }
.location-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 8vw, 8rem); align-items: center; }
.location-copy h2 { max-width: 650px; }
.location-intro { max-width: 560px; margin: 1rem 0 0; color: var(--muted); font-size: 1.12rem; }
address { font-style: normal; color: #d1cdca; font-size: 1.32rem; margin: 1.5rem 0; }
.venue-link { color: #fff; font-weight: 750; text-decoration-color: var(--red); text-underline-offset: .25rem; }
.venue-link:hover { color: var(--red-bright); }
.location-card { position: relative; padding: clamp(2rem, 5vw, 4rem); border: 1px solid rgba(239,32,41,.26); background: linear-gradient(135deg, rgba(239,32,41,.08), transparent 45%), rgba(17,17,20,.9); box-shadow: 0 25px 70px rgba(0,0,0,.35); }
.location-card svg { width: 38px; height: 38px; fill: none; stroke: var(--red-bright); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.contact { background: radial-gradient(circle at 15% 35%, rgba(239,32,41,.12), transparent 30%), #080809; }
.contact-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.contact-copy { position: sticky; top: 120px; }
.contact-copy p { color: var(--muted); font-size: 1.08rem; }
.request-note { border-left: 2px solid var(--red); padding-left: 1rem; font-size: 1rem; }
.contact-form { padding: clamp(1.4rem, 4vw, 3rem); background: #111114; border: 1px solid var(--line); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 1.2rem; }
.field label { display: block; margin-bottom: .4rem; font-size: .95rem; font-weight: 700; }
.field input, .field select, .field textarea { width: 100%; color: #fff; background: #09090b; border: 1px solid #39393f; border-radius: 0; min-height: 50px; padding: .75rem; transition: border-color .2s, box-shadow .2s; }
.field textarea { resize: vertical; min-height: 132px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red-bright); box-shadow: 0 0 0 3px rgba(239,32,41,.18); }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #ff6269; }
.field-error { display: none; margin-top: .35rem; color: #ff8c91; font-size: .8rem; }
.field.invalid .field-error { display: block; }
.human-check { max-width: 320px; }
.human-check label strong { color: #fff; font-weight: 850; }
.privacy, .form-security { color: #aaa5a2; font-size: .9rem; }
.form-security { margin: -.35rem 0 1rem; padding-left: 1.35rem; position: relative; }
.form-security::before { content: "✓"; position: absolute; left: 0; color: #85e0a3; font-weight: 900; }
.submit-button { position: relative; min-width: 180px; border: 0; }
.submit-button.loading { pointer-events: none; }
.submit-button.loading span:first-child { opacity: .15; }
.button-loader { display: none; position: absolute; width: 20px; height: 20px; border: 2px solid #fff6; border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; }
.submit-button.loading .button-loader { display: block; }
.form-message { min-height: 1.5rem; margin-top: 1rem; font-weight: 650; }
.form-message.success { color: #85e0a3; }
.form-message.error { color: #ff8c91; }
.honeypot { position: absolute !important; left: -9999px !important; }
.footer { border-top: 1px solid var(--line); padding: 2.5rem 0; background: #050506; }
.footer-grid { display: grid; grid-template-columns: 145px 1fr auto; align-items: center; gap: 2rem; }
.footer p { color: #928e8c; margin: 0; }
.footer a { text-decoration: none; }
.footer .copyright { grid-column: 2 / -1; font-size: .8rem; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@keyframes heroIn { from { opacity: 0; transform: scale(1.025); } to { opacity: 1; transform: scale(1); } }
@keyframes nudge { 0%,100% { transform: translateY(-2px) rotate(45deg); opacity: .35; } 50% { transform: translateY(4px) rotate(45deg); opacity: 1; } }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .nav-links { position: absolute; inset: 76px 0 auto; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 1rem 20px 1.4rem; background: rgba(7,7,8,.98); border-bottom: 1px solid var(--line); }
  .nav-links.open { display: flex; }
  .nav-links > a { padding: .9rem 0; }
  .nav-links .nav-cta { margin-top: .5rem; padding: .85rem 1rem; text-align: center; }
  .language { margin-top: .8rem; justify-content: center; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .intro-grid, .video-grid, .contact-grid { grid-template-columns: 1fr; }
  .contact-copy { position: static; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .audience-card:nth-child(2) { border-right: 0; }
  .audience-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 700px) {
  :root { --shell: min(100% - 32px, 1180px); }
  .nav { height: 68px; }
  .nav-links { top: 68px; }
  .brand { width: 108px; }
  .hero { min-height: clamp(420px, 60svh, 560px); }
  .hero { background: #080809 url('/assets/concrete.webp') center/cover; }
  .hero-image { display: none; }
  .mobile-hero-mark { display: block; position: absolute; z-index: 1; width: 145vw; max-width: none; aspect-ratio: 16/9; left: 50%; top: 13vh; transform: translateX(-50%); }
  .mobile-hero-mark img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
  .mobile-flouk { z-index: 2; }
  .mobile-neon { z-index: 3; }
  .mobile-escape { z-index: 4; }
  .hero-shade { background: linear-gradient(180deg, rgba(4,4,5,.04) 45%, rgba(4,4,5,.6) 100%); }
  .payoff { letter-spacing: .08em; }
  .hero-intro { max-width: 340px; }
  .intro-grid { gap: 1.2rem; }
  .game, .game:nth-of-type(3) { grid-template-columns: 1fr; gap: 3rem; }
  .game-junior .game-copy { order: 2; }
  .game-junior .game-visual, .game-junior .game-carousel { order: 1; }
  .game-copy > p:not(.game-kicker), .game-description p { font-size: 1rem; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stats .stat:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .stat { min-height: 68px; }
  .photo-carousel { padding: 0; }
  .carousel-button { width: 46px; height: 46px; }
  .carousel-prev { left: 16px; }
  .carousel-next { right: 16px; }
  .game-bbs { margin-inline: -8px; padding: 2rem 1.2rem 3rem; }
  .bbs-stats { grid-template-columns: 1fr 1fr; }
  .location-grid, .field-row { grid-template-columns: 1fr; }
  .audience-card { min-height: 220px; padding: 1.35rem; }
  .audience-card h3 { margin-top: 1.4rem; font-size: 1.3rem; }
  .audience-card p { font-size: 1rem; }
  .footer-grid { grid-template-columns: 120px 1fr; gap: 1.2rem; }
  .footer-grid > a:nth-of-type(2) { grid-column: 1 / -1; }
  .footer .copyright { grid-column: 1 / -1; }
}

@media (max-width: 420px) {
  .hero { min-height: clamp(400px, 58svh, 520px); }
  .game-carousel .carousel-viewport { aspect-ratio: 3 / 4; }
  .stats, .stats.compact, .bbs-stats { grid-template-columns: 1fr; }
  .stats .stat:last-child:nth-child(odd) { grid-column: auto; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .audience-card:last-child { border-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
