/* ============================================================
   Snibblo — games studio site
   Visual system lifted from the Snibblo Blocks app: Dusk Glass
   palette, self-hosted Fredoka, aurora canvas, springy motion.
   ============================================================ */

@font-face {
  font-family: 'Fredoka';
  font-style: normal;
  font-display: swap;
  font-weight: 300 700;
  src: url('fonts/fredoka.woff2') format('woff2-variations');
}

:root {
  /* Dusk Glass canvas */
  --bg:        #0b0d11;
  --bg-1:      #0e1116;
  --board-bg:  #171c24;
  --empty:     #222a35;

  /* Piece palette (the seven dealt colours + power-block teal) */
  --c-cyan:    #4dabf7;
  --c-green:   #51cf66;
  --c-amber:   #ffd43b;
  --c-orange:  #ff922b;
  --c-pink:    #f06595;
  --c-violet:  #9775fa;
  --c-red:     #ff6b6b;
  --c-teal:    #2dd4bf;

  --accent:    #ffd43b;
  --ink:       #eef2f6;
  --ink-soft:  #c3ccd8;
  --muted:     #868e96;
  --muted-2:   #6c7686;

  --spring:    cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease:      cubic-bezier(0.22, 0.61, 0.36, 1);

  --maxw:      1160px;
  --radius:    26px;

  /* glass tints */
  --glass-bg:     rgba(255, 255, 255, 0.055);
  --glass-border: rgba(255, 255, 255, 0.13);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Fredoka', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ---- Living aurora canvas (the colourful glow the glass amplifies) ---- */
.aurora {
  position: fixed;
  inset: -20vmax;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(42% 38% at 16% 8%,  rgba(77,171,247,0.26), transparent 70%),
    radial-gradient(40% 34% at 88% 14%, rgba(151,117,250,0.24), transparent 70%),
    radial-gradient(46% 40% at 72% 96%, rgba(240,101,149,0.20), transparent 72%),
    radial-gradient(38% 36% at 8% 88%,  rgba(81,207,102,0.16), transparent 72%),
    linear-gradient(180deg, var(--bg-1) 0%, var(--bg) 100%);
  animation: drift 32s ease-in-out infinite alternate;
}
@keyframes drift {
  0%   { transform: translate3d(0,0,0)        scale(1); }
  50%  { transform: translate3d(2.5%, -2%, 0) scale(1.06); }
  100% { transform: translate3d(-2%, 2.5%, 0) scale(1.03); }
}
/* fine grain so the dark never reads as flat plastic */
.grain {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}

/* ---- Glass primitive ---- */
.glass {
  position: relative;
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(22px) saturate(170%);
  backdrop-filter: blur(22px) saturate(170%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow:
    0 18px 50px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.40),
    inset 0 -1px 0 rgba(0,0,0,0.22);
  isolation: isolate;
}
.glass::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.03) 30%, transparent 58%);
  pointer-events: none;
}

/* ---- Layout ---- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

section { position: relative; }

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow .dot { color: var(--accent); }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  padding: 14px 0;
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), -webkit-backdrop-filter .35s var(--ease),
              backdrop-filter .35s var(--ease), border-color .35s var(--ease),
              box-shadow .35s var(--ease), padding .35s var(--ease);
}
/* Frosted bar once the page scrolls (toggled in app.js) */
.nav.scrolled {
  padding: 10px 0;
  background: rgba(11, 13, 17, 0.6);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  backdrop-filter: blur(16px) saturate(160%);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.36);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; text-decoration: none; }
.brand .logo { height: 27px; width: auto; display: block; filter: drop-shadow(0 3px 10px rgba(0,0,0,0.45)); }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  color: var(--ink-soft); text-decoration: none; font-weight: 500; font-size: 16px;
  padding: 9px 15px; border-radius: 999px; transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--ink); background: rgba(255,255,255,0.06); }
.nav-links a.nav-cta {
  color: #0e1116; background: var(--accent); font-weight: 600;
  box-shadow: 0 6px 18px rgba(255,212,59,0.28);
}
.nav-links a.nav-cta:hover { transform: translateY(-1px); background: #ffdd5e; }
@media (max-width: 640px){ .nav-links a.ghost-link { display: none; } }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border: none; border-radius: 999px; cursor: pointer;
  font-family: inherit; font-weight: 600; font-size: 18px;
  padding: 16px 28px; text-decoration: none; overflow: hidden;
  transition: transform .18s var(--spring), box-shadow .25s var(--ease), background .25s;
}
.btn:active { transform: scale(0.965); }
.btn-primary { background: var(--accent); color: #0e1116; box-shadow: 0 10px 26px rgba(255,212,59,0.30); }
.btn-primary::after {
  content: ''; position: absolute; left: 7px; right: 7px; top: 5px; height: 42%;
  border-radius: 999px 999px 12px 12px; background: rgba(255,255,255,0.28); pointer-events: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(255,212,59,0.38); }
.btn-ghost {
  background: rgba(255,255,255,0.05); color: var(--ink);
  border: 1px solid rgba(255,255,255,0.18);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn svg { width: 20px; height: 20px; }

/* ============================================================
   Hero
   ============================================================ */
.hero { padding: 56px 0 84px; }
.hero .wrap { display: block; }
.hero-copy { max-width: 760px; margin: 0 auto; text-align: center; }
/* Signature bobbing blocks as the hero accent (the live board lives in #game now) */
.hero-blocks { display: flex; gap: 13px; justify-content: center; margin: 0 0 30px; }
.hero-blocks i {
  width: 34px; height: 34px; border-radius: 22%;
  background: linear-gradient(180deg, color-mix(in srgb, var(--c) 84%, white), var(--c) 50%, color-mix(in srgb, var(--c) 90%, black));
  box-shadow: inset 0 1.5px 0 rgba(255,255,255,0.45), 0 10px 22px rgba(0,0,0,0.32);
  animation: bob 1.5s var(--ease) infinite;
}
.hero-blocks i:nth-child(1){ --c: var(--c-cyan);   animation-delay: 0s; }
.hero-blocks i:nth-child(2){ --c: var(--c-violet); animation-delay: .12s; }
.hero-blocks i:nth-child(3){ --c: var(--c-amber);  animation-delay: .24s; }
.hero-blocks i:nth-child(4){ --c: var(--c-pink);   animation-delay: .36s; }
.hero h1 {
  font-size: clamp(44px, 6.4vw, 80px);
  font-weight: 600; line-height: 0.98; letter-spacing: -0.025em;
  margin: 22px 0 22px;
}
.hero h1 .accent { color: var(--accent); }
.hero h1 .gradient {
  background: linear-gradient(96deg, var(--c-cyan), var(--c-violet) 55%, var(--c-pink));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lede {
  font-size: clamp(18px, 2.1vw, 21px); color: var(--ink-soft); font-weight: 400;
  max-width: 620px; margin: 0 auto 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: center; }
.trust {
  margin-top: 28px; display: flex; flex-wrap: wrap; gap: 16px 26px; justify-content: center;
  font-size: 15px; color: var(--muted); font-weight: 500;
}
.trust span { display: inline-flex; align-items: center; gap: 8px; }
.trust svg { width: 17px; height: 17px; color: var(--c-green); flex: none; }

/* ---- The living board device (now featured in #game) ---- */
.device {
  width: 100%; max-width: 420px; padding: 16px;
  border-radius: 40px;
}
.device .screen {
  border-radius: 26px; overflow: hidden;
  background: radial-gradient(120% 90% at 50% -10%, #1b2230 0%, #12161d 60%, #0d1015 100%);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.game-hud {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 20px 0 14px;
}
.game-hud .mode { font-size: 12px; letter-spacing: 0.28em; color: var(--muted); font-weight: 600; }
.game-hud .score { font-size: 40px; font-weight: 600; color: var(--ink); line-height: 1; transition: transform .24s var(--spring); }
.game-hud .score.bump { animation: scorebump .26s var(--spring); }
@keyframes scorebump { 0%{transform:scale(1)} 45%{transform:scale(1.18)} 100%{transform:scale(1)} }
.game-hud .best { font-size: 13px; color: var(--muted); font-weight: 500; }

.board-frame { padding: 0 22px 26px; }
.board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(8, 1fr);
  gap: 4px;
  aspect-ratio: 1;
  padding: 8px;
  border-radius: 18px;
  background: linear-gradient(180deg, #1b2230, #12161d);
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06);
}
.cell {
  position: relative;
  border-radius: 22%;
  background: var(--empty);
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.35);
}
.mino {
  position: absolute; inset: 0;
  border-radius: 22%;
  background:
    linear-gradient(180deg,
      color-mix(in srgb, var(--c) 84%, white) 0%,
      var(--c) 50%,
      color-mix(in srgb, var(--c) 90%, black) 100%);
  box-shadow: inset 0 1.5px 0 rgba(255,255,255,0.45), inset 0 -2px 4px rgba(0,0,0,0.22);
  transform: scale(0); opacity: 0;
  will-change: transform, opacity;
}
.cell.filled .mino { transform: scale(1); opacity: 1; transition: transform .16s var(--spring), opacity .12s ease; }
.cell.clearing .mino {
  animation: clearpop .34s var(--ease) forwards;
}
@keyframes clearpop {
  0%   { transform: scale(1);    filter: brightness(1); }
  35%  { transform: scale(1.22); filter: brightness(2.1); }
  100% { transform: scale(0.2);  filter: brightness(2.6); opacity: 0; }
}
/* line-clear flash overlay */
.flash {
  position: absolute; border-radius: 6px; pointer-events: none;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 0 24px 6px rgba(255,255,255,0.7);
  opacity: 0; mix-blend-mode: screen;
  animation: flashfade .42s var(--ease) forwards;
}
@keyframes flashfade { 0%{opacity:.9} 100%{opacity:0} }
.mote {
  position: absolute; width: 7px; height: 7px; border-radius: 2px; pointer-events: none;
  background: var(--c, #fff);
  box-shadow: 0 0 10px 2px var(--c, #fff);
  will-change: transform, opacity;
  animation: moteup .7s var(--ease) forwards;
}
@keyframes moteup {
  0%   { transform: translate(0,0) scale(1); opacity: 1; }
  100% { transform: translate(var(--dx), var(--dy)) scale(0.3); opacity: 0; }
}
/* combo pill */
.combo {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%) scale(0.6);
  padding: 6px 16px; border-radius: 999px; font-weight: 600; font-size: 15px;
  color: #0e1116; opacity: 0; pointer-events: none; white-space: nowrap;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.5);
}
.combo.show { animation: comboshow 1.1s var(--spring) forwards; }
@keyframes comboshow {
  0%   { opacity: 0; transform: translateX(-50%) scale(0.5) translateY(6px); }
  18%  { opacity: 1; transform: translateX(-50%) scale(1.12) translateY(0); }
  30%  { transform: translateX(-50%) scale(1); }
  80%  { opacity: 1; }
  100% { opacity: 0; transform: translateX(-50%) scale(0.94) translateY(-8px); }
}

/* ============================================================
   Section heading
   ============================================================ */
.sec-head { max-width: 640px; margin-bottom: 48px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 {
  font-size: clamp(32px, 4.4vw, 50px); font-weight: 600; letter-spacing: -0.02em;
  line-height: 1.04; margin: 16px 0 14px;
}
.sec-head p { font-size: 19px; color: var(--ink-soft); font-weight: 400; }

/* ============================================================
   Manifesto — pillars
   ============================================================ */
.manifesto { padding: 70px 0; }
.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.pillar { padding: 30px 28px 32px; border-radius: 28px; }
.pillar .ic {
  width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center;
  margin-bottom: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), 0 8px 20px rgba(0,0,0,0.35);
}
.pillar .ic svg { width: 26px; height: 26px; color: #0e1116; }
.pillar h3 { font-size: 23px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.01em; }
.pillar p { color: var(--ink-soft); font-size: 16.5px; font-weight: 400; }
.ic.cyan   { background: var(--c-cyan); }
.ic.amber  { background: var(--c-amber); }
.ic.green  { background: var(--c-green); }
.ic.pink   { background: var(--c-pink); }

/* the contrast strip: a single bold honest line */
.creed { padding: 30px 0 10px; }
.creed-card {
  padding: clamp(34px, 5vw, 60px); border-radius: 34px; text-align: center;
  overflow: hidden;
}
.creed-card .strike {
  display: inline-flex; flex-wrap: wrap; gap: 6px 14px; justify-content: center;
  margin-bottom: 22px; font-size: clamp(15px, 2vw, 18px); font-weight: 600; color: var(--muted);
}
.creed-card .strike s { text-decoration-thickness: 2px; text-decoration-color: var(--c-red); opacity: 0.8; }
.creed-card h2 {
  font-size: clamp(28px, 4.6vw, 52px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.05;
}
.creed-card h2 .g {
  background: linear-gradient(96deg, var(--c-cyan), var(--c-green) 50%, var(--c-amber));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.creed-sub {
  margin: 22px auto 0; max-width: 620px;
  font-size: clamp(15px, 2vw, 18px); line-height: 1.6; color: var(--ink-soft); font-weight: 400;
}

/* ============================================================
   Featured game — Snibblo Blocks
   ============================================================ */
.game { padding: 80px 0; }
.game-card { padding: clamp(28px, 4vw, 52px); border-radius: 36px; }
.game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.game-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px;
  background: rgba(255,212,59,0.12); border: 1px solid rgba(255,212,59,0.3);
  color: var(--accent); font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
}
.game-title { display: flex; align-items: baseline; gap: 12px; margin: 18px 0 8px; }
.game-title h2 { font-size: clamp(34px, 4.6vw, 52px); font-weight: 600; letter-spacing: -0.02em; line-height: 1; }
.game-sub { color: var(--ink-soft); font-size: 18.5px; max-width: 440px; margin-bottom: 26px; }

.modes { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.mode-row {
  display: flex; align-items: center; gap: 14px; padding: 14px 16px;
  border-radius: 18px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
}
.mode-row .bar { width: 6px; align-self: stretch; border-radius: 3px; flex: none; }
.mode-row .m-name { font-weight: 600; font-size: 17px; }
.mode-row .m-tag { color: var(--muted); font-size: 15px; }
.mode-row .lock { margin-left: auto; color: var(--muted-2); font-size: 12px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 5px; }
.mode-row .lock svg { width: 13px; height: 13px; }
.mode-row .free { margin-left: auto; color: var(--c-green); font-size: 12px; font-weight: 600; letter-spacing: 0.04em; }

.platforms { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.appstore {
  display: inline-flex; align-items: center; gap: 12px; padding: 12px 20px; border-radius: 16px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16); color: var(--ink);
  text-decoration: none; transition: background .2s, transform .2s;
}
.appstore:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.appstore svg { width: 26px; height: 26px; flex: none; }
.appstore .s { display: block; font-size: 11px; color: var(--muted); letter-spacing: 0.05em; line-height: 1.2; }
.appstore .l { display: block; font-size: 17px; font-weight: 600; line-height: 1.2; }

/* the in-card mini screen reuses the board styles at a smaller scale */
.game-shot { display: flex; justify-content: center; }

/* ============================================================
   What's next
   ============================================================ */
.next { padding: 60px 0 80px; }
.next-card {
  padding: clamp(30px, 4vw, 56px); border-radius: 34px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.next-blocks { display: flex; gap: 10px; }
.next-blocks i {
  width: 30px; height: 30px; border-radius: 22%;
  background: linear-gradient(180deg, color-mix(in srgb, var(--c) 84%, white), var(--c) 50%, color-mix(in srgb, var(--c) 90%, black));
  box-shadow: inset 0 1.5px 0 rgba(255,255,255,0.45);
  animation: bob 1.4s var(--ease) infinite;
}
.next-blocks i:nth-child(1){ --c: var(--c-cyan);   animation-delay: 0s; }
.next-blocks i:nth-child(2){ --c: var(--c-violet); animation-delay: .12s; }
.next-blocks i:nth-child(3){ --c: var(--c-green);  animation-delay: .24s; }
.next-blocks i:nth-child(4){ --c: var(--c-amber);  animation-delay: .36s; }
@keyframes bob { 0%,100%{transform:translateY(0)} 40%{transform:translateY(-9px)} }
.next-card h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 600; letter-spacing: -0.02em; }
.next-card p { color: var(--ink-soft); font-size: 18px; max-width: 520px; }

/* ============================================================
   Notify form
   ============================================================ */
.notify { padding: 10px 0 90px; }
.notify-card { padding: clamp(34px, 5vw, 60px); border-radius: 36px; text-align: center; }
.notify-card h2 { font-size: clamp(30px, 4.4vw, 46px); font-weight: 600; letter-spacing: -0.02em; margin-bottom: 12px; }
.notify-card p { color: var(--ink-soft); font-size: 18px; margin-bottom: 30px; }
.notify-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.notify-form input {
  flex: 1; min-width: 0; font-family: inherit; font-size: 17px; color: var(--ink);
  padding: 16px 20px; border-radius: 999px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.18);
  transition: border-color .2s, background .2s;
}
.notify-form input::placeholder { color: var(--muted); }
.notify-form input:focus { outline: none; border-color: var(--accent); background: rgba(255,255,255,0.1); }
.notify-note { margin-top: 16px; font-size: 14px; color: var(--muted); }
/* off-screen honeypot — bots fill it, humans never see it */
.hp-field {
  position: absolute !important; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none;
}
.notify-error { display: none; margin-top: 16px; font-size: 15px; font-weight: 600; color: var(--c-red); }
.notify-error.show { display: block; }
.notify-success {
  display: none; align-items: center; justify-content: center; gap: 12px;
  font-size: 20px; font-weight: 600; color: var(--c-green);
}
.notify-success svg { width: 26px; height: 26px; }
.notify.done .notify-form,
.notify.done .notify-error { display: none; }
.notify.done .notify-success { display: flex; animation: scorebump .4s var(--spring); }

/* ============================================================
   Footer
   ============================================================ */
.footer { padding: 50px 0 60px; border-top: 1px solid rgba(255,255,255,0.07); }
.footer .wrap { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; }
.footer .brand .logo { height: 24px; }
.foot-meta { color: var(--muted); font-size: 14.5px; display: flex; flex-wrap: wrap; gap: 6px 18px; align-items: center; }
.foot-meta a { color: var(--ink-soft); text-decoration: none; }
.foot-meta a:hover { color: var(--ink); }
.foot-tag { color: var(--muted-2); font-weight: 500; }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 920px) {
  .game-grid { grid-template-columns: 1fr; gap: 36px; }
  .game-shot { order: -1; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 18px; }
  .pillars { grid-template-columns: 1fr; }
  .hero { padding: 24px 0 56px; }
  .notify-form { flex-direction: column; }
  .notify-form .btn { width: 100%; }
}

/* ============================================================
   Accessibility
   ============================================================ */
@media (prefers-reduced-transparency: reduce) {
  .glass { background: rgba(20,24,32,0.94); -webkit-backdrop-filter: none; backdrop-filter: none; }
  .nav.scrolled { background: rgba(11,13,17,0.96); -webkit-backdrop-filter: none; backdrop-filter: none; }
}
@media (prefers-reduced-motion: reduce) {
  .aurora { animation: none; }
  .next-blocks i { animation: none; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .12s !important; }
  .reveal { opacity: 1; transform: none; }
}
