/* Crazay Games — shared design system */
:root {
  color-scheme: dark;
  --bg: #141417;
  --surface: #19191d;
  --card: #1e1e23;
  --surface-2: #26262c;
  --surface-3: #303037;
  --line: rgba(255, 255, 255, 0.07);
  --line-2: rgba(255, 255, 255, 0.13);
  --text: #ececf1;
  --muted: #a3a3b0;
  --dim: #71717e;
  --dark: #141417;
  --accent: #7c5cff;
  --accent-2: #8d70ff;
  --accent-text: #a893ff;
  --accent-soft: rgba(124, 92, 255, 0.16);
  --danger: #e5566c;
  --display: "Schibsted Grotesk", "Helvetica Neue", Arial, sans-serif;
  --body: "Onest", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --spring: cubic-bezier(0.34, 1.4, 0.64, 1);
  --s1: 8px; --s2: 16px; --s3: 24px; --s4: 40px; --s5: 64px; --s6: 120px;
  --wrap: 1200px;
  --r: 16px;
  --lift: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 1px 2px rgba(0, 0, 0, 0.3), 0 12px 28px -14px rgba(0, 0, 0, 0.6);
  --float: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 2px 4px rgba(0, 0, 0, 0.3), 0 22px 44px -18px rgba(0, 0, 0, 0.7);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; color: inherit; }
::selection { background: var(--accent); color: #fff; }
h1, h2, h3 { font-family: var(--display); font-weight: 700; letter-spacing: -0.03em; }

.wrap { width: min(var(--wrap), 100% - 2 * var(--s3)); margin-inline: auto; }
.mono { font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; }
.num { font-family: var(--mono); font-variant-numeric: tabular-nums; }
.eyebrow-label { display: block; font-size: 14px; font-weight: 600; color: var(--accent-text); margin-bottom: 12px; letter-spacing: 0; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 25;
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  background: rgba(20, 20, 23, 0.82);
  border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: var(--s3); }
.brand { display: inline-flex; align-items: center; gap: 12px; border-radius: 10px; }
.brand img { width: 46px; height: auto; transition: transform 0.4s var(--spring); filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.35)); }
.brand:hover img { transform: rotate(-6deg); }
.brand-word { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 800; font-size: 21px; letter-spacing: -0.02em; line-height: 1; color: var(--text); }
.brand-word small { font-family: var(--body); font-weight: 500; font-size: 13px; letter-spacing: 0.02em; color: var(--muted); padding-left: 10px; border-left: 1px solid var(--line-2); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a:not(.btn) { padding: 8px 14px; border-radius: 8px; font-size: 15px; font-weight: 500; color: var(--muted); transition: color 0.2s, background-color 0.2s; }
.nav-links a:not(.btn):hover { color: var(--text); background: var(--surface-2); }
.nav-links a:not(.btn):active { background: var(--surface-3); }
.nav-links a[aria-current="page"] { color: var(--text); }
.nav-links .btn { margin-left: 8px; }
.nav-toggle { display: none; }

/* ---------- buttons ---------- */
.btn {
  --bg: var(--accent); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; padding: 0 22px;
  border-radius: 10px;
  border: 0; cursor: pointer;
  background: var(--bg); color: var(--fg);
  font-weight: 600; font-size: 15.5px; white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 1px 2px rgba(0, 0, 0, 0.4), 0 8px 20px -10px rgba(124, 92, 255, 0.6);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.2s;
}
.btn:hover { background: var(--accent-2); transform: translateY(-1px); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn:disabled { opacity: 0.6; cursor: default; transform: none; }
.btn svg { width: 17px; height: 17px; transition: transform 0.25s var(--ease); }
.btn:hover svg { transform: translateX(2px); }
.btn.ghost { --bg: transparent; --fg: var(--text); box-shadow: inset 0 0 0 1px var(--line-2); }
.btn.ghost:hover { background: var(--surface-2); }
.btn.dark { --bg: #ececf1; --fg: #141417; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4); }
.btn.dark:hover { background: #ffffff; }
.btn.sm { height: 40px; padding: 0 16px; font-size: 14.5px; border-radius: 9px; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding: 88px 0 var(--s6); isolation: isolate; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(45% 60% at 80% 40%, rgba(124, 92, 255, 0.12), transparent 70%);
}
.hero .wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: center; gap: var(--s5); }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: 999px; background: var(--surface); box-shadow: inset 0 0 0 1px var(--line); color: var(--muted); font-size: 14px; font-weight: 500; }
.pill i { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.3); }
.hero h1 { font-size: clamp(46px, 6.2vw, 84px); line-height: 1.02; letter-spacing: -0.045em; margin: var(--s3) 0 20px; font-weight: 800; }
.hero h1 .accent { color: var(--accent-text); }
.hero p.lede { font-size: 19px; color: var(--muted); max-width: 580px; margin: 0 0 var(--s4); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-art { position: relative; aspect-ratio: 1.1; max-width: 520px; justify-self: end; width: 100%; }
.disc { position: absolute; inset: 6% 8%; border-radius: 50%; background: radial-gradient(circle at 50% 40%, #2a2442, #1c1a28 72%); box-shadow: inset 0 0 0 1px rgba(124, 92, 255, 0.18), 0 40px 100px -40px rgba(124, 92, 255, 0.35); }
.disc::after { content: ""; position: absolute; inset: 12%; border-radius: 50%; border: 1px dashed rgba(168, 147, 255, 0.2); }
.pad-float { position: absolute; left: 4%; right: 4%; top: 26%; animation: bob 6s ease-in-out infinite; will-change: transform; }
.pad-float img { width: 100%; filter: drop-shadow(0 26px 24px rgba(0, 0, 0, 0.55)); transition: transform 0.6s var(--ease); }
@keyframes bob { 50% { transform: translateY(-8px); } }
.chip {
  position: absolute; z-index: 2;
  padding: 14px 18px; border-radius: 14px;
  background: var(--card);
  box-shadow: inset 0 0 0 1px var(--line-2), var(--float);
}
.chip .k { color: var(--muted); font-size: 13px; font-weight: 500; }
.chip .v { font-family: var(--mono); font-weight: 600; font-size: 22px; line-height: 1.2; letter-spacing: -0.02em; }
.chip.a { top: 4%; left: 0; }
.chip.b { bottom: 6%; right: 0; }
.chip.a .v { color: var(--accent-text); }

/* ---------- scoreboard ---------- */
.scoreboard { margin-top: calc(var(--s5) * -1); position: relative; z-index: 3; }
.scoreboard .board { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--card); border-radius: var(--r); overflow: hidden; box-shadow: inset 0 0 0 1px var(--line), var(--lift); }
.score { padding: 22px var(--s3); }
.score + .score { border-left: 1px solid var(--line); }
.score .k { color: var(--muted); font-size: 14px; font-weight: 500; }
.score .v { font-family: var(--mono); font-weight: 600; font-size: clamp(24px, 2.8vw, 34px); letter-spacing: -0.03em; line-height: 1.2; margin-top: 6px; }
.score:first-child .v { color: var(--accent-text); }

/* ---------- section heads ---------- */
section { position: relative; }
.section { padding: var(--s6) 0 0; }
.head { display: flex; align-items: end; justify-content: space-between; gap: var(--s3); margin-bottom: var(--s4); flex-wrap: wrap; }
.head h2 { font-size: clamp(34px, 4.2vw, 52px); line-height: 1.05; margin: 0; }
.head p { color: var(--muted); max-width: 380px; margin: 0; }
.live-note { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: 14px; font-weight: 500; }
.live-note::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: 0.35; } }

/* ---------- spotlight ---------- */
.spotlight { display: grid; grid-template-columns: 1.35fr 1fr; border-radius: 20px; overflow: hidden; background: var(--card); box-shadow: inset 0 0 0 1px var(--line), var(--lift); }
.spot-media { position: relative; min-height: 400px; overflow: hidden; background: var(--surface-2); }
.spot-media img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease), opacity 0.6s var(--ease); }
.spotlight:hover .spot-media img.bg { transform: scale(1.03); }
.spot-media::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent 40%); }
.spot-media .live { position: absolute; z-index: 2; top: 18px; left: 18px; }
.spot-thumbs { position: absolute; z-index: 2; bottom: 18px; left: 18px; display: flex; gap: 8px; }
.spot-thumbs button { width: 64px; aspect-ratio: 16/9; border-radius: 6px; overflow: hidden; border: 0; padding: 0; cursor: pointer; opacity: 0.65; box-shadow: 0 0 0 2px transparent; transition: opacity 0.2s, box-shadow 0.2s, transform 0.2s var(--ease); }
.spot-thumbs button img { width: 100%; height: 100%; object-fit: cover; }
.spot-thumbs button:hover { opacity: 0.95; }
.spot-thumbs button:active { transform: scale(0.96); }
.spot-thumbs button[aria-pressed="true"] { opacity: 1; box-shadow: 0 0 0 2px #fff; }
.spot-body { padding: var(--s4); display: flex; flex-direction: column; gap: var(--s3); }
.spot-title { display: flex; gap: 16px; align-items: center; }
.spot-title img { width: 72px; height: 72px; border-radius: 16px; box-shadow: 0 0 0 1px var(--line); }
.spot-title h3 { font-size: 28px; line-height: 1.1; margin: 0 0 8px; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { padding: 3px 10px; border-radius: 6px; background: var(--surface-2); color: var(--muted); font-size: 12.5px; font-weight: 500; }
.live { display: inline-flex; align-items: center; gap: 7px; padding: 5px 11px; border-radius: 8px; background: rgba(20, 20, 23, 0.85); color: var(--text); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); font-size: 12.5px; font-weight: 600; box-shadow: inset 0 0 0 1px var(--line-2), 0 2px 10px -4px rgba(0, 0, 0, 0.5); }
.live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: pulse 1.8s ease-in-out infinite; }
.live .n { font-family: var(--mono); }
.statgrid { display: grid; grid-template-columns: repeat(3, 1fr); border-radius: 12px; overflow: hidden; box-shadow: inset 0 0 0 1px var(--line); margin: 0; }
.statgrid div { padding: 14px 16px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.statgrid div:nth-child(3n) { border-right: 0; }
.statgrid div:nth-last-child(-n + 3) { border-bottom: 0; }
.statgrid dt { color: var(--dim); font-size: 12.5px; font-weight: 500; }
.statgrid dd { margin: 2px 0 0; font-family: var(--mono); font-weight: 600; font-size: 18px; letter-spacing: -0.02em; }
.statgrid .hot dd { color: var(--accent-text); }
.spot-ctas { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; }

/* ---------- game cards ---------- */
.rail { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: var(--s3); margin-top: var(--s3); }
.cart { position: relative; display: flex; flex-direction: column; background: var(--card); border-radius: var(--r); overflow: hidden; box-shadow: inset 0 0 0 1px var(--line), var(--lift); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.cart:hover { transform: translateY(-4px); box-shadow: inset 0 0 0 1px var(--line-2), var(--float); }
.cart:active { transform: translateY(-1px); }
.cart-media { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--surface-2); }
.cart-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.cart:hover .cart-media img { transform: scale(1.04); }
.cart-media::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent 50%); }
.cart-media .live { position: absolute; z-index: 2; left: 12px; bottom: 12px; font-size: 12px; padding: 4px 10px; }
.cart-body { padding: 18px; display: flex; flex-direction: column; gap: 16px; flex: 1; }
.cart-head { display: flex; gap: 12px; align-items: center; }
.cart-head img { width: 44px; height: 44px; border-radius: 10px; box-shadow: 0 0 0 1px var(--line); }
.cart-head h3 { margin: 0; font-family: var(--body); font-size: 16.5px; line-height: 1.3; font-weight: 600; letter-spacing: -0.01em; }
.cart-head .tag { margin-top: 4px; display: inline-block; }
.cart-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 0; }
.cart-stats div { background: var(--surface-2); border-radius: 8px; padding: 8px 10px; }
.cart-stats dt { font-size: 11.5px; color: var(--dim); font-weight: 500; }
.cart-stats dd { margin: 1px 0 0; font-family: var(--mono); font-weight: 600; font-size: 14px; }
.cart .btn { margin-top: auto; width: 100%; }
.cart a.stretch::after { content: ""; position: absolute; inset: 0; z-index: 3; }

.empty { padding: var(--s5) var(--s3); text-align: center; color: var(--muted); border-radius: var(--r); border: 1px dashed var(--line-2); background: var(--surface); }
.skeleton { background: linear-gradient(90deg, var(--surface), var(--surface-2), var(--surface)); background-size: 200% 100%; animation: shimmer 1.4s linear infinite; border-radius: 20px; min-height: 400px; }
@keyframes shimmer { to { background-position: -200% 0; } }
.more { display: flex; justify-content: center; margin-top: var(--s4); }

/* ---------- about ---------- */
.about .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s5); align-items: center; }
.about .statement { font-family: var(--display); font-weight: 700; font-size: clamp(34px, 4.2vw, 52px); line-height: 1.05; letter-spacing: -0.035em; margin: 0; }
.about .body { color: var(--muted); margin: 20px 0 0; max-width: 420px; }
.features { padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.features li { list-style: none; padding: 22px; border-radius: var(--r); background: var(--surface); box-shadow: inset 0 0 0 1px var(--line); transition: background-color 0.2s, box-shadow 0.25s; }
.features li:hover { background: var(--card); box-shadow: inset 0 0 0 1px var(--line), var(--lift); }
.ico { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent-text); margin-bottom: 16px; }
.ico svg { width: 20px; height: 20px; }
.features h3, .pcard h3 { margin: 0; font-family: var(--body); font-size: 16.5px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.35; }
.features p, .pcard p { margin: 4px 0 0; color: var(--muted); font-size: 15px; line-height: 1.5; }

/* ---------- partner ---------- */
.partner-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s2); }
.pcard { padding: var(--s3); border-radius: var(--r); background: var(--card); box-shadow: inset 0 0 0 1px var(--line), var(--lift); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.pcard:hover { transform: translateY(-3px); box-shadow: inset 0 0 0 1px var(--line), var(--float); }
.pcard .ico { margin-bottom: 28px; }

/* ---------- contact ---------- */
.contact-panel {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--s5);
  padding: var(--s5);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line);
}
.contact-panel h2 { font-size: clamp(34px, 4.2vw, 52px); line-height: 1.05; margin: 0 0 16px; }
.contact-panel .intro p { margin: 0; font-size: 17px; max-width: 340px; color: var(--muted); }
form.cform { display: grid; gap: 14px; }
.field { display: grid; gap: 6px; }
.field label { font-size: 14px; font-weight: 500; color: var(--text); }
.field input, .field textarea {
  width: 100%; border: 0; border-radius: 10px; padding: 12px 14px;
  background: var(--bg); color: var(--text);
  box-shadow: inset 0 0 0 1px var(--line-2);
  transition: box-shadow 0.2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--dim); }
.field input:hover, .field textarea:hover { box-shadow: inset 0 0 0 1px var(--dim); }
.field input:focus, .field textarea:focus { outline: none; box-shadow: inset 0 0 0 1.5px var(--accent), 0 0 0 4px rgba(124, 92, 255, 0.22); }
.field textarea { min-height: 120px; resize: vertical; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.check { display: flex; gap: 10px; align-items: center; font-size: 15px; color: var(--muted); cursor: pointer; }
.check input { width: 18px; height: 18px; accent-color: var(--accent-text); cursor: pointer; }
.form-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.form-status { font-size: 14.5px; font-weight: 500; min-height: 1.5em; margin: 0; color: var(--accent-text); }
.form-status.err { color: var(--danger); }

/* ---------- footer ---------- */
footer { margin-top: var(--s6); border-top: 1px solid var(--line); }
.foot-top { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: var(--s4); padding: var(--s5) 0 var(--s4); }
.foot-top h4 { font-size: 14px; font-weight: 600; color: var(--text); margin: 0 0 12px; }
.foot-top ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.foot-top a:not(.brand) { color: var(--muted); font-size: 15px; transition: color 0.2s; border-radius: 4px; }
.foot-top a:not(.brand):hover { color: var(--text); }
.foot-bot { display: flex; justify-content: space-between; gap: var(--s2); flex-wrap: wrap; padding: var(--s3) 0; border-top: 1px solid var(--line); color: var(--dim); font-size: 14px; }

/* ---------- games page ---------- */
.page-hero { padding: 88px 0 var(--s4); position: relative; isolation: isolate; }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(40% 80% at 85% 0%, rgba(124, 92, 255, 0.1), transparent 70%); }
.page-hero h1 { font-size: clamp(46px, 6.2vw, 80px); line-height: 1.02; letter-spacing: -0.045em; font-weight: 800; margin: 20px 0 var(--s4); }
.toolbar { display: flex; justify-content: space-between; align-items: center; gap: var(--s2); flex-wrap: wrap; margin-bottom: var(--s3); }
.seg { display: inline-flex; padding: 4px; border-radius: 10px; background: var(--surface); box-shadow: inset 0 0 0 1px var(--line); }
.seg button { border: 0; background: transparent; padding: 7px 14px; border-radius: 7px; cursor: pointer; color: var(--muted); font-size: 14px; font-weight: 500; transition: color 0.2s, background-color 0.2s, box-shadow 0.2s; }
.seg button:hover { color: var(--text); }
.seg button:active { transform: scale(0.98); }
.seg button[aria-pressed="true"] { background: var(--surface-3); color: var(--text); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4); }
.updated { color: var(--dim); font-size: 14px; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.load > * { opacity: 0; transform: translateY(16px); animation: rise 0.8s var(--ease) forwards; }
.load > *:nth-child(2) { animation-delay: 0.06s; }
.load > *:nth-child(3) { animation-delay: 0.12s; }
.load > *:nth-child(4) { animation-delay: 0.18s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero .wrap, .about .wrap, .contact-panel, .spotlight { grid-template-columns: 1fr; }
  .hero { padding-top: var(--s4); }
  .hero-art { justify-self: center; max-width: 440px; order: -1; }
  .scoreboard { margin-top: 0; }
  .scoreboard .board { grid-template-columns: repeat(2, 1fr); }
  .score:nth-child(3) { border-left: 0; }
  .score:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-top { grid-template-columns: 1fr 1fr; }
  .spot-media { min-height: 240px; aspect-ratio: 16/9; }
  .contact-panel { padding: var(--s4) var(--s3); gap: var(--s4); }
}
@media (max-width: 760px) {
  :root { --s6: 80px; }
  .nav-links { position: fixed; top: 80px; left: 12px; right: 12px; flex-direction: column; align-items: stretch; padding: 10px; border-radius: 14px; background: var(--card); box-shadow: inset 0 0 0 1px var(--line-2), var(--float); opacity: 0; transform: translateY(-8px); pointer-events: none; transition: opacity 0.2s var(--ease), transform 0.3s var(--ease); }
  .nav-links.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links a:not(.btn) { padding: 12px 14px; font-size: 16px; }
  .nav-links .btn { margin: 6px 0 0; }
  .nav-toggle { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 10px; border: 0; background: var(--card); cursor: pointer; box-shadow: inset 0 0 0 1px var(--line-2); transition: background-color 0.2s; }
  .nav-toggle:hover { background: var(--surface-2); }
  .nav-toggle:active { background: var(--surface-3); }
  .nav-toggle svg { width: 22px; height: 22px; }
  .spot-body { padding: var(--s3); }
  .spot-title h3 { font-size: 24px; }
  .spot-title img { width: 60px; height: 60px; }
  .statgrid dd { font-size: 16px; }
  .row2 { grid-template-columns: 1fr; }
  .features li { padding: 18px; }
  .chip { padding: 10px 14px; }
  .chip .v { font-size: 17px; }
}
@media (max-width: 520px) {
  .partner-grid, .foot-top, .features { grid-template-columns: 1fr; }
  .brand-word small { display: none; }
  .hero-ctas .btn { flex: 1; padding: 0 14px; }
  .statgrid { grid-template-columns: repeat(2, 1fr); }
  .statgrid div:nth-child(3n) { border-right: 1px solid var(--line); }
  .statgrid div:nth-child(2n) { border-right: 0; }
  .statgrid div:nth-last-child(-n + 3) { border-bottom: 1px solid var(--line); }
  .statgrid div:nth-last-child(-n + 2) { border-bottom: 0; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
  .reveal, .load > * { opacity: 1; transform: none; }
}
