/* Yasser Elkady / Auction Room (media buyer identity) */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #07080a;
  --bg2: #0e1014;
  --ink: #f2f0ea;
  --mute: #8b8f9a;
  --line: rgba(242, 240, 234, 0.12);
  --meta: #1877F2;
  --tiktok: #FE2C55;
  --google: #FBBC05;
  --ggreen: #34A853;
  --yt: #FF0033;
  --font-display: "Anton", Impact, sans-serif;
  --font: "Sora", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --pad: clamp(1.1rem, 4vw, 3.5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: auto; scrollbar-width: thin; scrollbar-color: var(--meta) #0a0a0c; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.5;
  overflow-x: hidden;
  cursor: none;
}
body.is-loading { overflow: hidden; }
a { color: inherit; text-decoration: none; cursor: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--meta); color: #fff; }

.noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 90; opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

#progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 100;
  background: rgba(255,255,255,0.06);
}
#progress i {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--meta), var(--tiktok), var(--google));
}

#cursor {
  position: fixed; top: 0; left: 0; width: 18px; height: 18px;
  border: 1.5px solid var(--ink); border-radius: 50%;
  pointer-events: none; z-index: 200; mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  display: grid; place-items: center;
  transition: width .25s var(--ease), height .25s var(--ease), background .25s;
}
#cursor b {
  width: 4px; height: 4px; border-radius: 50%; background: var(--ink);
}
#cursor span {
  position: absolute; font: 600 0.55rem/1 var(--mono); letter-spacing: 0.12em;
  opacity: 0; transform: translateY(18px);
}
#cursor.is-hot { width: 64px; height: 64px; background: var(--meta); border-color: transparent; mix-blend-mode: normal; }
#cursor.is-hot b { opacity: 0; }
#cursor.is-hot span { opacity: 1; color: #fff; transform: none; }
@media (pointer: coarse) { #cursor { display: none; } body, a, button { cursor: auto; } }

#loader {
  position: fixed; inset: 0; z-index: 300; background: #050607;
  display: grid; place-items: center; overflow: hidden;
}
.loader-scan {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(24,119,242,0.03) 2px, rgba(24,119,242,0.03) 4px);
  animation: scanMove 8s linear infinite;
}
@keyframes scanMove { to { background-position: 0 200px; } }
.loader-grid {
  position: absolute; inset: 12% 8%;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
  opacity: 0.35;
}
.slot {
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font: 600 0.65rem/1 var(--mono); letter-spacing: 0.14em;
  color: var(--mute); transform: scaleY(0); transform-origin: bottom;
}
.slot[data-plat="META"] { border-color: rgba(24,119,242,.4); color: var(--meta); }
.slot[data-plat="GOOGLE"] { border-color: rgba(251,188,5,.4); color: var(--google); }
.slot[data-plat="TIKTOK"] { border-color: rgba(254,44,85,.4); color: var(--tiktok); }
.slot[data-plat="YT"] { border-color: rgba(255,0,51,.4); color: var(--yt); }
.loader-hud { position: relative; z-index: 2; width: min(420px, 86vw); text-align: center; }
.loader-kicker {
  font: 500 0.65rem/1 var(--mono); letter-spacing: 0.22em; color: var(--meta);
  margin-bottom: 1rem;
}
.loader-brand {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 14vw, 6rem);
  letter-spacing: 0.02em; line-height: 0.9;
}
.loader-bar {
  margin: 1.4rem 0 0.8rem; height: 3px; background: rgba(255,255,255,0.08);
  overflow: hidden;
}
.loader-bar i {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--meta), var(--tiktok));
}
.loader-meta {
  display: flex; justify-content: space-between;
  font: 500 0.65rem/1 var(--mono); letter-spacing: 0.08em; color: var(--mute);
}
#loader-pct { color: var(--meta); font-variant-numeric: tabular-nums; }

.top {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1rem var(--pad);
  background: linear-gradient(180deg, rgba(7,8,10,0.92), transparent);
}
.logo {
  font-family: var(--font-display); font-size: 1.35rem; letter-spacing: 0.04em;
}
.logo span { color: var(--meta); }
.nav { display: none; gap: 1.4rem; margin-left: auto; }
.nav a {
  font: 500 0.72rem/1 var(--mono); letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mute); transition: color .25s;
}
.nav a:hover { color: var(--ink); }
.top-cta {
  margin-left: auto;
  font: 600 0.68rem/1 var(--mono); letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.7rem 1rem; background: var(--meta); color: #fff;
}
.burger {
  width: 42px; height: 42px; border: 1px solid var(--line);
  display: grid; place-content: center; gap: 5px;
}
.burger i { display: block; width: 18px; height: 1.5px; background: var(--ink); }
.drawer {
  position: fixed; inset: 0; z-index: 75; background: rgba(7,8,10,0.96);
  display: grid; place-content: center; gap: 1.4rem; text-align: center;
}
.drawer[hidden] { display: none; }
.drawer a {
  font-family: var(--font-display); font-size: clamp(2rem, 8vw, 3.5rem);
  letter-spacing: 0.02em;
}
@media (min-width: 900px) {
  .nav { display: flex; }
  .burger { display: none; }
  .top-cta { margin-left: 0; }
}

.hero {
  position: relative; min-height: 100svh;
  display: grid; align-items: end;
  padding: 6.5rem var(--pad) 2.5rem;
  overflow: hidden;
}
.feed-cols {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  padding: 5rem 2% 2rem; opacity: 0.28; pointer-events: none;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 70%, transparent);
}
.feed-col {
  display: flex; flex-direction: column; gap: 1rem;
  will-change: transform;
}
.ad-card {
  border: 1px solid var(--line); background: rgba(14,16,20,0.85);
  padding: 1rem 1.1rem; min-height: 110px;
  display: flex; flex-direction: column; gap: 0.35rem;
}
.ad-card span { font: 500 0.58rem/1 var(--mono); letter-spacing: 0.14em; text-transform: uppercase; color: var(--mute); }
.ad-card b { font-size: 0.95rem; font-weight: 600; }
.ad-card em { font-style: normal; font: 500 0.7rem/1 var(--mono); color: var(--meta); }
.ac-meta { box-shadow: inset 3px 0 0 var(--meta); }
.ac-google { box-shadow: inset 3px 0 0 var(--google); }
.ac-google em { color: var(--google); }
.ac-tiktok { box-shadow: inset 3px 0 0 var(--tiktok); }
.ac-tiktok em { color: var(--tiktok); }
.ac-yt { box-shadow: inset 3px 0 0 var(--yt); }
.ac-yt em { color: var(--yt); }
.hero-veil {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 50% 45% at 20% 80%, rgba(24,119,242,0.22), transparent 60%),
    radial-gradient(ellipse 40% 35% at 85% 30%, rgba(254,44,85,0.14), transparent 55%),
    linear-gradient(180deg, rgba(7,8,10,0.2), rgba(7,8,10,0.92));
}
.hero-copy { position: relative; z-index: 2; max-width: 820px; }
.eyebrow {
  font: 500 0.68rem/1 var(--mono); letter-spacing: 0.18em; color: var(--meta);
  margin-bottom: 1.1rem; overflow: hidden;
}
.eyebrow span { display: inline-block; }
.hero-name {
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 16vw, 9.5rem);
  line-height: 0.86; letter-spacing: 0.01em;
  text-transform: uppercase;
}
.hn-line { display: block; overflow: hidden; }
.hn-line i { display: block; font-style: normal; transform: translateY(110%); }
.hero-lead {
  margin-top: 1.4rem; max-width: 38ch;
  color: var(--mute); font-size: clamp(0.95rem, 2vw, 1.1rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.6rem; }
.btn-solid {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.95rem 1.25rem; background: var(--meta); color: #fff;
  font: 600 0.75rem/1 var(--mono); letter-spacing: 0.08em; text-transform: uppercase;
  transition: transform .3s var(--ease), background .25s;
}
.btn-solid:hover { transform: translateY(-2px); background: #0b5fcc; }
.btn-solid.dark { background: #12141a; }
.btn-line {
  display: inline-flex; align-items: center;
  padding: 0.95rem 1.25rem; border: 1px solid var(--line);
  font: 600 0.75rem/1 var(--mono); letter-spacing: 0.08em; text-transform: uppercase;
  transition: border-color .25s, color .25s;
}
.btn-line:hover { border-color: var(--ink); }

.bid-hud {
  position: absolute; right: var(--pad); top: 50%; transform: translateY(-40%);
  z-index: 3; width: min(220px, 40vw);
  border: 1px solid var(--line); background: rgba(7,8,10,0.72);
  backdrop-filter: blur(12px); padding: 1rem;
}
.hud-head {
  display: flex; justify-content: space-between; align-items: center;
  font: 500 0.58rem/1 var(--mono); letter-spacing: 0.1em; margin-bottom: 0.9rem; color: var(--mute);
}
.hud-live { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--tiktok); }
.hud-live i {
  width: 7px; height: 7px; border-radius: 50%; background: var(--tiktok);
  box-shadow: 0 0 0 0 rgba(254,44,85,0.5);
  animation: livePulse 1.4s infinite;
}
@keyframes livePulse {
  70% { box-shadow: 0 0 0 8px rgba(254,44,85,0); }
  100% { box-shadow: 0 0 0 0 rgba(254,44,85,0); }
}
.hud-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 0.45rem 0; border-top: 1px solid var(--line);
  font: 500 0.65rem/1 var(--mono); letter-spacing: 0.08em; color: var(--mute);
}
.hud-row strong {
  font: 600 0.95rem/1 var(--mono); color: var(--ink); font-variant-numeric: tabular-nums;
}
.hud-bar {
  margin-top: 0.8rem; height: 2px; background: rgba(255,255,255,0.08); overflow: hidden;
}
.hud-bar i {
  display: block; height: 100%; width: 35%;
  background: linear-gradient(90deg, var(--meta), var(--tiktok));
  animation: hudSweep 2.4s ease-in-out infinite;
}
@keyframes hudSweep {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(320%); }
}
.scroll-cue {
  position: absolute; left: var(--pad); bottom: 1.4rem; z-index: 3;
  font: 500 0.62rem/1 var(--mono); letter-spacing: 0.16em; color: var(--mute);
}
.scroll-cue b { color: var(--meta); margin-left: 0.4rem; }
@media (max-width: 900px) {
  .bid-hud { display: none; }
  .feed-col-hide { display: none; }
  .feed-cols { grid-template-columns: 1fr 1fr; opacity: 0.2; }
}

.ticker {
  position: relative;
  border-block: 1px solid var(--line);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(24,119,242,0.08), transparent 40%),
    #0a0c11;
  padding: 0.85rem 0 1rem;
}
.ticker-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg, var(--bg) 0%, transparent 12%, transparent 88%, var(--bg) 100%),
    radial-gradient(ellipse 40% 80% at 50% 0%, rgba(24,119,242,0.18), transparent 70%);
  z-index: 2;
}
.ticker-head {
  position: relative; z-index: 3;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 var(--pad) 0.65rem;
  font: 500 0.58rem/1 var(--mono); letter-spacing: 0.16em;
}
.ticker-live {
  display: inline-flex; align-items: center; gap: 0.45rem;
  color: var(--tiktok);
}
.ticker-live i {
  width: 7px; height: 7px; border-radius: 50%; background: var(--tiktok);
  box-shadow: 0 0 0 0 rgba(254,44,85,0.55);
  animation: livePulse 1.3s infinite;
}
.ticker-sub { color: var(--mute); }
.ticker-lane {
  position: relative; z-index: 1;
  overflow: hidden; padding: 0.35rem 0;
}
.ticker-lane-b {
  margin-top: 0.35rem;
  padding-top: 0.55rem;
  border-top: 1px dashed rgba(255,255,255,0.08);
}
.ticker-track {
  display: flex; align-items: center; gap: 0.75rem;
  width: max-content; will-change: transform;
}
.ticker-track.t-fast { animation: tick 28s linear infinite; }
.ticker-track.t-slow { animation: tick 38s linear infinite; }
.ticker-track.reverse { animation-direction: reverse; }
.ticker:hover .ticker-track { animation-play-state: paused; }

.chip {
  flex: 0 0 auto;
  display: inline-flex; align-items: center;
  padding: 0.55rem 0.95rem;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  font: 700 0.78rem/1 var(--font-display);
  letter-spacing: 0.06em; text-transform: uppercase;
  white-space: nowrap;
  transition: transform .25s var(--ease), border-color .25s, background .25s;
}
.chip:hover {
  transform: translateY(-2px) scale(1.04);
  background: rgba(255,255,255,0.07);
}
.chip.c-meta {
  border-color: rgba(24,119,242,0.55);
  color: #7eb6ff;
  box-shadow: inset 0 0 0 1px rgba(24,119,242,0.15), 0 0 20px rgba(24,119,242,0.08);
}
.chip.c-google {
  border-color: rgba(251,188,5,0.5);
  color: #ffd666;
  box-shadow: inset 0 0 0 1px rgba(251,188,5,0.12);
}
.chip.c-tiktok {
  border-color: rgba(254,44,85,0.55);
  color: #ff7a9a;
  box-shadow: inset 0 0 0 1px rgba(254,44,85,0.15), 0 0 18px rgba(254,44,85,0.08);
}
.chip.c-yt {
  border-color: rgba(255,0,51,0.5);
  color: #ff6b84;
}
.chip.c-hot {
  background: linear-gradient(90deg, rgba(24,119,242,0.25), rgba(254,44,85,0.2));
  border-color: rgba(255,255,255,0.2);
  color: #fff;
  animation: chipPulse 2.2s ease-in-out infinite;
}
.chip.c-kill { color: var(--tiktok); border-color: rgba(254,44,85,0.35); }
.chip.c-win { color: #3DDC97; border-color: rgba(61,220,151,0.35); }

.metric {
  flex: 0 0 auto;
  display: inline-flex; align-items: baseline; gap: 0.55rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: #11141b;
  font: 600 0.85rem/1 var(--mono);
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  white-space: nowrap;
}
.metric b {
  font: 600 0.55rem/1 var(--mono);
  letter-spacing: 0.14em; color: var(--mute);
}
.metric.hot {
  border-color: rgba(24,119,242,0.45);
  color: #9ec5ff;
  background: rgba(24,119,242,0.12);
}

@keyframes tick { to { transform: translateX(-50%); } }
@keyframes chipPulse {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.25); }
}

.sec-tag {
  font: 500 0.65rem/1 var(--mono); letter-spacing: 0.18em; color: var(--meta);
  margin-bottom: 1rem;
}
section { position: relative; z-index: 2; }

.pitch {
  padding: clamp(4rem, 10vw, 8rem) var(--pad);
  border-bottom: 1px solid var(--line);
}
.pitch-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8vw, 6.2rem);
  line-height: 0.92; letter-spacing: 0.01em;
  text-transform: uppercase; max-width: 14ch;
}
.pt-word { display: inline-block; margin-right: 0.28em; }
.pt-burn { color: var(--tiktok); }
.pt-win { color: var(--meta); }
.pitch-grid {
  margin-top: 2.5rem; display: grid; gap: 1.2rem;
  grid-template-columns: 1fr; max-width: 900px;
}
.pitch-grid p { color: var(--mute); font-size: 1.05rem; max-width: 42ch; }
@media (min-width: 800px) { .pitch-grid { grid-template-columns: 1fr 1fr; } }

.auction {
  padding: clamp(4rem, 9vw, 7rem) var(--pad);
  background:
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(24,119,242,0.12), transparent 60%),
    var(--bg);
}
.auction-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 0.95; text-transform: uppercase; max-width: 16ch;
}
.auction-board {
  margin-top: 2.5rem;
  display: grid; grid-template-columns: 1fr;
  border: 1px solid var(--line); background: var(--bg2);
}
@media (min-width: 900px) {
  .auction-board { grid-template-columns: 1.1fr 1fr 1.3fr; }
}
.ab-col { border-bottom: 1px solid var(--line); }
@media (min-width: 900px) {
  .ab-col { border-bottom: 0; border-right: 1px solid var(--line); }
  .ab-col:last-child { border-right: 0; }
}
.ab-col header {
  padding: 0.85rem 1.1rem;
  font: 500 0.6rem/1 var(--mono); letter-spacing: 0.16em; color: var(--mute);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 0.5rem;
}
.blink {
  width: 7px; height: 7px; border-radius: 50%; background: var(--ggreen);
  animation: livePulse 1.2s infinite;
}
.ab-row, .signal, .ab-move {
  min-height: 64px; padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 0.8rem;
}
.ab-row:last-child, .signal:last-child, .ab-move:last-child { border-bottom: 0; }
.ab-row b { font-weight: 600; }
.ab-meta { box-shadow: inset 3px 0 0 var(--meta); }
.ab-google { box-shadow: inset 3px 0 0 var(--google); }
.ab-tiktok { box-shadow: inset 3px 0 0 var(--tiktok); }
.ab-yt { box-shadow: inset 3px 0 0 var(--yt); }
.pill {
  font: 500 0.55rem/1 var(--mono); letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.35rem 0.5rem; border: 1px solid var(--line); color: var(--mute);
}
.signal em { font-style: normal; font: 500 0.65rem/1 var(--mono); color: var(--mute); }
.signal strong {
  font: 600 1rem/1 var(--mono); font-variant-numeric: tabular-nums; color: var(--ink);
}
.ab-move {
  font-size: 0.92rem; color: var(--mute); justify-content: flex-start;
}
.auction-note {
  margin-top: 1rem; font: 400 0.7rem/1.5 var(--mono); color: var(--mute);
}

.platforms {
  padding: clamp(4rem, 9vw, 7rem) var(--pad);
  border-top: 1px solid var(--line);
}
.plat-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  line-height: 0.95; text-transform: uppercase; max-width: 14ch;
}
.story-rail {
  display: flex; gap: 1.4rem; margin: 2.2rem 0 1.8rem; overflow-x: auto;
  scrollbar-width: none; padding: 0.6rem 0.2rem 0.8rem;
}
.story {
  flex: 0 0 auto; display: grid; justify-items: center; gap: 0.65rem;
  color: var(--mute); transition: color .25s, transform .35s var(--ease);
}
.story:hover { transform: translateY(-3px); color: var(--ink); }
.story b { font: 500 0.65rem/1 var(--mono); letter-spacing: 0.08em; }
.ring {
  width: 78px; height: 78px; border-radius: 50%;
  border: 2.5px solid var(--line);
  background: linear-gradient(160deg, #161922, #0a0c10);
  position: relative;
  display: grid; place-items: center;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
}
.ring::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.12), transparent 55%);
  pointer-events: none;
}
.plat-logo {
  width: 34px; height: 34px; position: relative; z-index: 1;
  transition: transform .4s var(--ease);
}
.r-meta .plat-logo { width: 40px; height: 26px; }
.r-meta { border-color: var(--meta); }
.r-google { border-color: var(--google); }
.r-tiktok { border-color: var(--tiktok); }
.r-yt { border-color: var(--yt); }
.story.is-on { color: var(--ink); }
.story.is-on .ring {
  transform: scale(1.08);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.04), 0 12px 30px rgba(0,0,0,0.45);
}
.story.is-on .plat-logo { transform: scale(1.08); }
.story.is-on .r-meta { animation: ringPulseMeta 1.6s infinite; }
.story.is-on .r-google { animation: ringPulseGoogle 1.6s infinite; }
.story.is-on .r-tiktok { animation: ringPulseTiktok 1.6s infinite; }
.story.is-on .r-yt { animation: ringPulseYt 1.6s infinite; }
@keyframes ringPulseMeta {
  0%, 100% { box-shadow: 0 0 0 0 rgba(24,119,242,0.45); }
  50% { box-shadow: 0 0 0 12px rgba(24,119,242,0); }
}
@keyframes ringPulseGoogle {
  0%, 100% { box-shadow: 0 0 0 0 rgba(251,188,5,0.45); }
  50% { box-shadow: 0 0 0 12px rgba(251,188,5,0); }
}
@keyframes ringPulseTiktok {
  0%, 100% { box-shadow: 0 0 0 0 rgba(254,44,85,0.45); }
  50% { box-shadow: 0 0 0 12px rgba(254,44,85,0); }
}
@keyframes ringPulseYt {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,0,51,0.45); }
  50% { box-shadow: 0 0 0 12px rgba(255,0,51,0); }
}
.plat-stage { position: relative; min-height: 420px; }
.plat-panel {
  position: absolute; inset: 0;
  border: 1px solid var(--line); background: var(--bg2);
  padding: clamp(1.4rem, 3vw, 2.4rem);
  display: grid; gap: 1rem;
  opacity: 0; visibility: hidden; transform: translateY(18px);
  transition: opacity .45s var(--ease), transform .45s var(--ease), visibility .45s;
}
.plat-panel.is-on { opacity: 1; visibility: visible; transform: none; position: relative; }
@media (min-width: 900px) {
  .plat-panel {
    grid-template-columns: 1.2fr 0.9fr;
    grid-template-rows: auto auto auto 1fr;
  }
  .plat-panel .pp-viz { grid-column: 2; grid-row: 1 / -1; }
}
.pp-badge {
  font: 600 0.6rem/1 var(--mono); letter-spacing: 0.16em; color: var(--meta);
}
.plat-panel h3 {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.95; text-transform: uppercase;
}
.plat-panel p { color: var(--mute); max-width: 42ch; }
.plat-panel ul {
  list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; align-content: start;
}
.plat-panel li {
  font: 500 0.6rem/1 var(--mono); letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.45rem 0.6rem; border: 1px solid var(--line); color: #c5c7ce;
}
.pp-viz {
  border: 1px solid var(--line); background: #0a0c10;
  min-height: 220px; display: grid; place-items: center; position: relative; overflow: hidden;
}
.meta-chip {
  position: absolute; bottom: 1rem; left: 1rem;
  font: 500 0.58rem/1 var(--mono); letter-spacing: 0.1em;
  padding: 0.4rem 0.55rem; background: rgba(0,0,0,0.7); border: 1px solid var(--line);
}
.meta-bars {
  display: flex; align-items: flex-end; gap: 8px; height: 120px;
}
.meta-bars i {
  width: 14px; background: var(--meta); opacity: 0.85;
  animation: barDance 1.4s ease-in-out infinite alternate;
}
.meta-bars i:nth-child(1) { height: 40%; }
.meta-bars i:nth-child(2) { height: 70%; animation-delay: .1s; }
.meta-bars i:nth-child(3) { height: 55%; animation-delay: .2s; }
.meta-bars i:nth-child(4) { height: 90%; animation-delay: .3s; }
.meta-bars i:nth-child(5) { height: 45%; animation-delay: .15s; }
.meta-bars i:nth-child(6) { height: 75%; animation-delay: .25s; }
.meta-bars i:nth-child(7) { height: 60%; animation-delay: .05s; }
@keyframes barDance { to { transform: scaleY(0.55); opacity: 0.5; } }
.g-dots { display: flex; gap: 14px; }
.g-dots i { width: 22px; height: 22px; border-radius: 50%; }
.g-dots i:nth-child(1) { background: #4285F4; }
.g-dots i:nth-child(2) { background: #EA4335; }
.g-dots i:nth-child(3) { background: #FBBC05; }
.g-dots i:nth-child(4) { background: #34A853; }
.tt-phone {
  width: 90px; height: 160px; border: 2px solid var(--tiktok); border-radius: 16px;
  position: relative; overflow: hidden;
}
.tt-phone span {
  position: absolute; left: 50%; top: 20%; width: 40px; height: 70%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--tiktok), transparent);
  animation: sparkFill 1.8s ease-in-out infinite;
}
@keyframes sparkFill {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(10%); }
  50% { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.yt-play {
  width: 0; height: 0;
  border-left: 36px solid var(--yt);
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  animation: playPulse 1.5s ease-in-out infinite;
}
@keyframes playPulse {
  50% { transform: scale(1.12); filter: drop-shadow(0 0 12px rgba(255,0,51,0.5)); }
}

.lab {
  padding: clamp(4rem, 9vw, 7rem) var(--pad);
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(254,44,85,0.06), transparent 40%);
}
.lab-head {
  display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1rem;
}
.lab-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 0.95; text-transform: uppercase; max-width: 12ch;
}
.lab-toggle {
  padding: 0.9rem 1.2rem; border: 1px solid var(--tiktok); color: var(--tiktok);
  font: 600 0.7rem/1 var(--mono); letter-spacing: 0.12em;
  transition: background .25s, color .25s;
}
.lab-toggle:hover, .lab-toggle.is-on { background: var(--tiktok); color: #fff; }
.ab-stage {
  margin-top: 2rem; position: relative; min-height: 320px;
  perspective: 1200px;
}
.ab-face {
  position: absolute; inset: 0;
  border: 1px solid var(--line); background: var(--bg2);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  backface-visibility: hidden;
  transition: transform .7s var(--ease), opacity .7s;
}
.ab-a.is-front { transform: rotateY(0deg); opacity: 1; z-index: 2; }
.ab-b { transform: rotateY(90deg); opacity: 0; z-index: 1; }
.ab-stage.is-b .ab-a { transform: rotateY(-90deg); opacity: 0; z-index: 1; }
.ab-stage.is-b .ab-b { transform: rotateY(0deg); opacity: 1; z-index: 2; }
.ab-tag {
  font: 600 0.6rem/1 var(--mono); letter-spacing: 0.16em; color: var(--tiktok);
}
.ab-face h3 {
  margin-top: 1rem;
  font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-transform: uppercase; line-height: 0.95;
}
.ab-face p { margin-top: 0.8rem; color: var(--mute); max-width: 40ch; }
.ab-meters {
  margin-top: 2rem; display: grid; gap: 0.9rem; max-width: 420px;
}
.ab-meters > div {
  display: grid; grid-template-columns: 60px 1fr auto; gap: 0.8rem; align-items: center;
  font: 500 0.65rem/1 var(--mono); color: var(--mute);
}
.ab-meters i {
  display: block; height: 6px; background: rgba(255,255,255,0.08);
  font-style: normal; position: relative; overflow: hidden;
}
.ab-meters i::after {
  content: ""; position: absolute; inset: 0; width: var(--v);
  background: linear-gradient(90deg, var(--meta), var(--tiktok));
}
.ab-meters em { font-style: normal; color: var(--ink); }
.lab-note { margin-top: 1.2rem; color: var(--mute); font-size: 0.95rem; }

.funnel {
  padding: clamp(4rem, 9vw, 7rem) var(--pad);
  border-top: 1px solid var(--line);
}
.funnel h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.6rem);
  text-transform: uppercase; line-height: 0.95; max-width: 14ch;
}
.funnel-track {
  margin-top: 2.5rem;
  display: flex; flex-wrap: wrap; align-items: stretch; gap: 0.5rem;
}
.fn-step {
  flex: 1 1 160px;
  border: 1px solid var(--line); background: var(--bg2);
  padding: 1.3rem 1.1rem; min-height: 160px;
  transform: translateY(24px); opacity: 0;
}
.fn-step b {
  font: 600 0.6rem/1 var(--mono); letter-spacing: 0.14em; color: var(--meta);
}
.fn-step h3 {
  margin-top: 0.8rem;
  font-family: var(--font-display); font-size: 1.8rem; text-transform: uppercase;
}
.fn-step p { margin-top: 0.4rem; color: var(--mute); font-size: 0.88rem; }
.fn-pipe {
  display: none; width: 36px; align-items: center; justify-content: center; gap: 4px;
}
.fn-pipe i {
  width: 6px; height: 6px; border-radius: 50%; background: var(--meta);
  animation: drip 1s ease-in-out infinite;
}
.fn-pipe i:nth-child(2) { animation-delay: .15s; }
.fn-pipe i:nth-child(3) { animation-delay: .3s; }
@keyframes drip {
  0%, 100% { opacity: 0.2; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(4px); }
}
@media (min-width: 900px) {
  .fn-pipe { display: flex; }
  .funnel-track { flex-wrap: nowrap; }
}

.systems {
  padding: clamp(4rem, 9vw, 7rem) var(--pad);
  border-top: 1px solid var(--line);
}
.systems h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.6rem);
  text-transform: uppercase; line-height: 0.95;
}
.sys-list {
  margin-top: 2rem;
  display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line);
  border: 1px solid var(--line);
}
@media (min-width: 800px) {
  .sys-list { grid-template-columns: 1fr 1fr; }
}
.sys-unit {
  background: var(--bg); padding: clamp(1.4rem, 3vw, 2.2rem);
  display: flex; flex-direction: column; gap: 0.7rem;
  transition: background .35s;
}
.sys-unit:hover { background: var(--bg2); }
.su-top {
  display: flex; justify-content: space-between;
  font: 500 0.58rem/1 var(--mono); letter-spacing: 0.12em; color: var(--mute);
}
.su-top span:first-child { color: var(--meta); }
.sys-unit h3 {
  font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-transform: uppercase; line-height: 0.95;
}
.sys-unit p { color: var(--mute); flex: 1; }
.su-cta {
  font: 600 0.68rem/1 var(--mono); letter-spacing: 0.1em; color: var(--meta);
  margin-top: 0.6rem;
}

.method {
  padding: clamp(4rem, 9vw, 7rem) var(--pad);
  border-top: 1px solid var(--line);
}
.method h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.6rem);
  text-transform: uppercase; line-height: 0.95;
}
.method-ol { list-style: none; margin-top: 2rem; }
.method-ol li {
  display: grid; grid-template-columns: 64px 1fr; gap: 1rem;
  padding: 1.3rem 0; border-top: 1px solid var(--line);
  align-items: start;
}
.method-ol b {
  font: 600 0.85rem/1 var(--mono); color: var(--meta);
}
.method-ol h3 {
  font-family: var(--font-display); font-size: 1.6rem; text-transform: uppercase;
}
.method-ol p { color: var(--mute); margin-top: 0.25rem; }

.proof {
  padding: clamp(4rem, 9vw, 7rem) var(--pad);
  background:
    radial-gradient(ellipse 45% 60% at 85% 40%, rgba(24,119,242,0.12), transparent 55%),
    linear-gradient(135deg, #dbe7ff 0%, #e9f1ff 42%, #ffeade 100%);
  color: #10141f;
}
.proof-grid {
  display: grid; gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: 1fr;
  align-items: stretch;
  max-width: 1400px; margin: 0 auto;
}
@media (min-width: 960px) {
  .proof-grid { grid-template-columns: 1.05fr 0.95fr; }
}
.proof .sec-tag { color: var(--meta); }
.proof h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  text-transform: uppercase; line-height: 0.95; max-width: 16ch;
}
.proof-lead { margin-top: 1.4rem; max-width: 52ch; color: #3d465c; }
.proof-bullets {
  list-style: none; margin: 1.5rem 0;
  font: 500 0.78rem/2 var(--mono); color: #2f384c;
}
.proof-bullets li::before { content: "-> "; color: var(--meta); }
.proof-fine { margin-top: 1rem; font: 400 0.68rem/1.4 var(--mono); color: #6a7388; }
.proof .btn-solid { margin-top: 0.5rem; }

.proof-visual { display: flex; }
.dossier {
  width: 100%;
  background: #0c0e14;
  color: var(--ink);
  border: 1px solid rgba(16,20,31,0.12);
  padding: clamp(1.3rem, 3vw, 2rem);
  box-shadow: 18px 24px 60px rgba(16,20,31,0.18);
  display: flex; flex-direction: column; gap: 0.55rem;
  position: relative; overflow: hidden;
}
.dossier::before {
  content: ""; position: absolute; inset: auto -30% -40% 40%; height: 70%;
  background: radial-gradient(circle, rgba(24,119,242,0.35), transparent 60%);
  pointer-events: none;
}
.dossier-top {
  display: flex; justify-content: space-between; gap: 0.8rem; flex-wrap: wrap;
  font: 500 0.58rem/1 var(--mono); letter-spacing: 0.12em; color: var(--mute);
  position: relative; z-index: 1;
}
.dos-live { color: #3DDC97; display: inline-flex; align-items: center; gap: 0.4rem; }
.dos-live i {
  width: 7px; height: 7px; border-radius: 50%; background: #3DDC97;
  box-shadow: 0 0 0 0 rgba(61,220,151,0.5);
  animation: livePulse 1.4s infinite;
}
.dossier h3 {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem);
  text-transform: uppercase; line-height: 0.95; position: relative; z-index: 1;
}
.dos-meta {
  font: 500 0.72rem/1.4 var(--mono); color: var(--meta); margin-bottom: 0.6rem;
  position: relative; z-index: 1;
}
.dos-row {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 0.55rem 0; border-top: 1px solid rgba(255,255,255,0.08);
  font: 500 0.65rem/1.3 var(--mono); color: var(--mute);
  position: relative; z-index: 1;
}
.dos-row b { color: var(--ink); text-align: right; font-weight: 600; }
.dos-bridge {
  margin-top: 1rem; padding: 1rem 0;
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 0.6rem; align-items: center;
  position: relative; z-index: 1;
}
.dos-pin {
  border: 1px solid rgba(255,255,255,0.12); padding: 0.7rem;
  display: grid; gap: 0.25rem; text-align: center; background: rgba(255,255,255,0.03);
}
.dos-pin em {
  font: 700 1rem/1 var(--font-display); font-style: normal; letter-spacing: 0.06em;
}
.dos-eg em { color: #C8102E; }
.dos-uk em { color: var(--meta); }
.dos-pin span { font: 400 0.55rem/1 var(--mono); letter-spacing: 0.1em; color: var(--mute); }
.dos-line { display: flex; gap: 5px; justify-content: center; }
.dos-line i {
  width: 7px; height: 7px; border-radius: 50%; background: var(--meta);
  animation: drip 1s ease-in-out infinite;
}
.dos-line i:nth-child(2) { animation-delay: .15s; }
.dos-line i:nth-child(3) { animation-delay: .3s; }
.dos-link {
  margin-top: auto; padding-top: 1rem;
  font: 600 0.68rem/1 var(--mono); letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--meta); border-top: 1px solid rgba(255,255,255,0.08);
  position: relative; z-index: 1;
}

.footprint {
  padding: clamp(4rem, 9vw, 7rem) var(--pad);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse 50% 40% at 20% 0%, rgba(24,119,242,0.1), transparent 55%),
    var(--bg);
}
.fp-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  text-transform: uppercase; line-height: 0.95; max-width: 12ch;
}
.fp-lead { margin-top: 0.9rem; color: var(--mute); max-width: 48ch; }
.fp-split {
  margin-top: 2.4rem;
  display: grid; gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .fp-split { grid-template-columns: 1fr 1.1fr; gap: 2.5rem; }
}
.fp-block h3 {
  font: 600 0.65rem/1 var(--mono); letter-spacing: 0.16em; color: var(--meta);
  margin-bottom: 1rem; text-transform: uppercase;
}
.fp-markets { display: grid; gap: 0.8rem; }
.fp-card {
  display: grid; grid-template-columns: 48px 1fr auto; gap: 0.9rem; align-items: center;
  border: 1px solid var(--line); background: var(--bg2);
  padding: 1rem 1.1rem;
  transition: transform .35s var(--ease), border-color .35s;
}
.fp-card:hover { transform: translateX(4px); border-color: rgba(24,119,242,0.4); }
.fp-card b {
  font-family: var(--font-display); font-size: 1.35rem; text-transform: uppercase;
  display: block; line-height: 1;
}
.fp-card p { color: var(--mute); font-size: 0.82rem; margin-top: 0.25rem; }
.fp-card em {
  font: 600 0.7rem/1 var(--mono); font-style: normal; color: var(--mute);
}
.fp-flag {
  width: 42px; height: 28px; display: grid; overflow: hidden; border: 1px solid rgba(255,255,255,0.15);
}
.fp-flag .f-red { background: #C8102E; }
.fp-flag .f-white { background: #fff; }
.fp-flag .f-black { background: #111; }
.fp-flag.uk {
  background:
    linear-gradient(45deg, transparent 46%, #fff 46%, #fff 54%, transparent 54%),
    linear-gradient(-45deg, transparent 46%, #fff 46%, #fff 54%, transparent 54%),
    linear-gradient(90deg, transparent 44%, #fff 44%, #fff 56%, transparent 56%),
    linear-gradient(#012169, #012169);
  background-size: 100% 100%;
  position: relative;
}
.fp-flag.uk::after {
  content: ""; position: absolute; inset: 40% 0; background: #C8102E;
}
.fp-flag.uk::before {
  content: ""; position: absolute; inset: 0 42%; background: #C8102E;
}
.fp-orgs { display: grid; gap: 0.8rem; }
.fp-org {
  border: 1px solid var(--line); background: var(--bg2);
  padding: 1.1rem 1.2rem; position: relative;
  transition: background .3s;
}
.fp-org:hover { background: #141821; }
.fp-org.is-client {
  border-color: rgba(24,119,242,0.45);
  background: linear-gradient(135deg, rgba(24,119,242,0.16), rgba(14,16,20,0.9));
}
.fp-org span {
  font: 600 0.55rem/1 var(--mono); letter-spacing: 0.14em; color: var(--meta);
}
.fp-org strong {
  display: block; margin-top: 0.45rem;
  font-family: var(--font-display); font-size: 1.45rem; text-transform: uppercase;
  line-height: 1;
}
.fp-org p { margin-top: 0.45rem; color: var(--mute); font-size: 0.86rem; }
.fp-org b {
  display: inline-block; margin-top: 0.7rem;
  font: 500 0.65rem/1 var(--mono); color: var(--google);
}
.fp-orbit {
  margin-top: 3rem; position: relative; height: 220px;
  border: 1px solid var(--line); overflow: hidden;
  background: radial-gradient(circle at 50% 50%, rgba(24,119,242,0.12), transparent 55%);
}
.fp-orbit-core {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 110px; height: 110px; border-radius: 50%;
  border: 1px solid rgba(24,119,242,0.5);
  display: grid; place-items: center; text-align: center;
  font: 600 0.62rem/1.2 var(--mono); letter-spacing: 0.12em;
  background: rgba(7,8,10,0.85);
}
.fp-node {
  position: absolute;
  font: 600 0.58rem/1 var(--mono); letter-spacing: 0.12em;
  padding: 0.45rem 0.6rem; border: 1px solid var(--line); background: var(--bg2);
  animation: nodeFloat 5s ease-in-out infinite;
}
.fp-node.n1 { left: 8%; top: 28%; color: #C8102E; }
.fp-node.n2 { right: 10%; top: 22%; color: var(--meta); animation-delay: .4s; }
.fp-node.n3 { left: 18%; bottom: 18%; color: var(--meta); animation-delay: .8s; }
.fp-node.n4 { right: 16%; bottom: 20%; color: var(--google); animation-delay: 1.1s; }
.fp-node.n5 { left: 42%; top: 12%; color: var(--tiktok); animation-delay: .2s; }
.fp-node.n6 { left: 48%; bottom: 12%; color: var(--yt); animation-delay: 1.4s; }
@keyframes nodeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@media (max-width: 700px) {
  .fp-orbit { height: 180px; }
  .fp-orbit-core { width: 88px; height: 88px; font-size: 0.52rem; }
}

.certs {
  padding: clamp(4rem, 9vw, 7rem) var(--pad);
  border-top: 1px solid var(--line);
}
.certs-head {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; align-items: end;
}
.certs h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  text-transform: uppercase; line-height: 0.95;
}
.certs-nav {
  display: flex; align-items: center; gap: 0.7rem;
  font: 500 0.65rem/1 var(--mono); color: var(--mute);
}
.certs-nav button {
  width: 42px; height: 42px; border: 1px solid var(--line);
  transition: border-color .25s, color .25s;
}
.certs-nav button:hover { border-color: var(--meta); color: var(--meta); }
.certs-nav b { color: var(--ink); }
.certs-nav i { font-style: normal; }
.cert-feature {
  margin-top: 2rem;
  display: grid; grid-template-columns: 1fr; border: 1px solid var(--line);
}
@media (min-width: 800px) {
  .cert-feature { grid-template-columns: 1fr 1.15fr; }
}
.cf-copy { padding: clamp(1.4rem, 3vw, 2.4rem); }
.cf-copy span {
  font: 500 0.58rem/1 var(--mono); letter-spacing: 0.14em; color: var(--meta);
}
.cf-copy h3 {
  margin-top: 0.9rem;
  font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.4rem);
  text-transform: uppercase; line-height: 0.95;
}
.cf-copy p { margin-top: 0.8rem; color: var(--mute); max-width: 36ch; }
.cf-thumb {
  position: relative; background: #101218; padding: 1rem;
  border-top: 1px solid var(--line);
}
@media (min-width: 800px) {
  .cf-thumb { border-top: 0; border-left: 1px solid var(--line); }
}
.cf-thumb img {
  width: 100%; height: min(360px, 48vh); object-fit: contain;
}
.cf-thumb span {
  position: absolute; right: 1rem; bottom: 1rem;
  background: var(--meta); color: #fff;
  font: 600 0.58rem/1 var(--mono); letter-spacing: 0.1em;
  padding: 0.55rem 0.7rem;
}

.cert-stage { margin-top: 2rem; position: relative; }
.cert-hero {
  position: relative; width: 100%;
  border: 1px solid var(--line); background: #0c0e14;
  min-height: clamp(260px, 42vw, 420px);
  overflow: hidden; display: grid; place-items: center;
  isolation: isolate;
}
.cert-hero img {
  width: 100%; height: clamp(260px, 42vw, 420px);
  object-fit: contain; padding: 1.2rem 1.2rem 4.5rem;
  filter: saturate(1.05); transition: transform .7s var(--ease), opacity .4s;
}
.cert-hero.is-swap img { opacity: 0; transform: scale(1.04); }
.cert-hero-meta {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.1rem 1.2rem;
  background: linear-gradient(180deg, transparent, rgba(5,6,8,0.95) 40%);
  display: grid; gap: 0.25rem; text-align: left; z-index: 2;
}
.cert-hero-meta span {
  font: 500 0.55rem/1 var(--mono); letter-spacing: 0.16em; color: var(--meta);
}
.cert-hero-meta strong {
  font-family: var(--font-display); font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  text-transform: uppercase; letter-spacing: 0.02em;
}
.cert-hero-meta em {
  font: 400 0.68rem/1.3 var(--mono); font-style: normal; color: var(--mute);
}
.cert-hero-glow {
  position: absolute; inset: auto -20% -40% -20%; height: 60%;
  background: radial-gradient(ellipse at center, rgba(24,119,242,0.28), transparent 65%);
  pointer-events: none; z-index: 1;
  animation: certGlow 4s ease-in-out infinite alternate;
}
@keyframes certGlow {
  from { opacity: 0.5; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.cert-progress {
  margin-top: 0.7rem; height: 2px; background: rgba(255,255,255,0.08); overflow: hidden;
}
.cert-progress i {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--meta), var(--tiktok), var(--google));
  transition: width .45s var(--ease);
}

.cert-slider {
  margin-top: 1.4rem;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  cursor: grab;
  touch-action: pan-y;
}
.cert-slider.is-dragging { cursor: grabbing; }
.cert-track {
  display: flex; gap: 1rem; width: max-content;
  will-change: transform;
  padding: 0.6rem 0 1.2rem;
}
.cert-card {
  flex: 0 0 min(220px, 62vw); aspect-ratio: 1.35;
  border: 1px solid var(--line); background: #101218;
  padding: 0.4rem; position: relative; overflow: hidden;
  transform: scale(0.92); opacity: 0.55;
  transition: transform .45s var(--ease), opacity .45s, border-color .35s, box-shadow .45s;
  filter: grayscale(0.7);
}
.cert-card.is-active {
  transform: scale(1.05); opacity: 1; filter: none;
  border-color: rgba(24,119,242,0.55);
  box-shadow: 0 18px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(24,119,242,0.2);
  z-index: 2;
}
.cert-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s var(--ease);
}
.cert-card.is-active img, .cert-card:hover img { transform: scale(1.06); }
.cert-card em {
  position: absolute; left: 0.5rem; bottom: 0.5rem;
  font: 500 0.5rem/1 var(--mono); font-style: normal; color: #fff;
  background: rgba(7,8,10,0.88); padding: 0.35rem 0.45rem;
  border: 1px solid rgba(24,119,242,0.35);
}
.cert-card::after {
  content: "OPEN";
  position: absolute; right: 0.5rem; top: 0.5rem;
  font: 600 0.48rem/1 var(--mono); letter-spacing: 0.1em;
  padding: 0.35rem 0.45rem; background: var(--meta); color: #fff;
  opacity: 0; transform: translateY(-6px);
  transition: opacity .3s, transform .3s;
}
.cert-card.is-active::after, .cert-card:hover::after {
  opacity: 1; transform: none;
}
.cert-hint {
  margin-top: 0.4rem;
  font: 400 0.62rem/1 var(--mono); letter-spacing: 0.12em; color: var(--mute);
  text-transform: uppercase;
}

.decide {
  padding: clamp(4rem, 9vw, 7rem) var(--pad);
  border-top: 1px solid var(--line);
}
.decide h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.6rem);
  text-transform: uppercase; line-height: 0.95; max-width: 14ch;
}
.decide-split {
  margin-top: 2rem; display: grid; grid-template-columns: 1fr; gap: 1px;
  background: var(--line); border: 1px solid var(--line);
}
@media (min-width: 800px) {
  .decide-split { grid-template-columns: 1fr 1fr; }
}
.dec-no, .dec-yes { background: var(--bg); padding: clamp(1.4rem, 3vw, 2.2rem); }
.dec-yes { background: rgba(24,119,242,0.08); }
.dec-no h3, .dec-yes h3 {
  font-family: var(--font-display); font-size: 1.6rem; text-transform: uppercase;
  margin-bottom: 1rem;
}
.dec-no h3 { color: var(--mute); }
.dec-yes h3 { color: var(--meta); }
.decide ul { list-style: none; display: grid; gap: 0.7rem; color: var(--mute); }
.dec-yes ul { color: var(--ink); }
.decide li::before { content: "- "; }

.brief {
  padding: clamp(4rem, 10vw, 8rem) var(--pad) 2rem;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(24,119,242,0.18), transparent 60%),
    var(--bg);
}
.brief-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 12vw, 8rem);
  line-height: 0.88; text-transform: uppercase;
}
.brief-title span { display: block; }
.bt-accent { color: var(--meta); }
.brief-lead { margin-top: 1.2rem; color: var(--mute); }
.brief-mail {
  display: inline-block; margin-top: 1.4rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  letter-spacing: 0.02em;
  border-bottom: 2px solid var(--meta);
  transition: color .25s;
}
.brief-mail:hover { color: var(--meta); }
.brief-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.8rem; }
.site-foot {
  margin-top: 4rem; padding-top: 1.2rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 0.8rem 1.5rem;
  font: 400 0.62rem/1.4 var(--mono); letter-spacing: 0.08em; color: var(--mute);
}

#lightbox {
  border: 0; padding: 2rem; background: rgba(5,6,7,0.95);
  width: 100vw; height: 100vh; max-width: none; max-height: none;
}
#lightbox[open] { display: grid; place-items: center; }
#lightbox-img { max-width: min(1000px, 100%); max-height: 88vh; object-fit: contain; }
#lightbox-close {
  position: fixed; top: 1rem; right: 1rem; width: 48px; height: 48px;
  border: 1px solid #333; border-radius: 50%; background: #111; color: #fff; font-size: 1.4rem;
}

.reveal-up { opacity: 0; transform: translateY(28px); }

/* ========== VISUAL EXPLOSION LAYER ========== */
.grid-floor {
  position: fixed; inset: 0; pointer-events: none; z-index: 1; opacity: 0.22;
  background-image:
    linear-gradient(rgba(24,119,242,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24,119,242,0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
}
.spotlight {
  position: fixed; width: 42vw; height: 42vw; max-width: 560px; max-height: 560px;
  border-radius: 50%; pointer-events: none; z-index: 2;
  background: radial-gradient(circle, rgba(24,119,242,0.16), transparent 68%);
  transform: translate(-50%, -50%);
  mix-blend-mode: screen; opacity: 0.9;
}
#fx-canvas {
  position: fixed; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 3; opacity: 0.55;
}
.orb {
  position: fixed; border-radius: 50%; filter: blur(80px); pointer-events: none; z-index: 0;
  opacity: 0.45; mix-blend-mode: screen;
}
.orb-a {
  width: 42vw; height: 42vw; top: -10%; left: -8%;
  background: rgba(24,119,242,0.35);
  animation: orbDrift 14s ease-in-out infinite alternate;
}
.orb-b {
  width: 34vw; height: 34vw; bottom: 5%; right: -10%;
  background: rgba(254,44,85,0.28);
  animation: orbDrift 18s ease-in-out infinite alternate-reverse;
}
.orb-c {
  width: 28vw; height: 28vw; top: 40%; left: 45%;
  background: rgba(251,188,5,0.12);
  animation: orbDrift 22s ease-in-out infinite alternate;
}
@keyframes orbDrift {
  from { transform: translate(0,0) scale(1); }
  to { transform: translate(8%, -6%) scale(1.15); }
}
.noise { opacity: 0.07; animation: noiseShift 0.35s steps(2) infinite; }
@keyframes noiseShift {
  0% { transform: translate(0,0); }
  25% { transform: translate(-1%, 1%); }
  50% { transform: translate(1%, -1%); }
  75% { transform: translate(-1%, -1%); }
  100% { transform: translate(1%, 1%); }
}

.hero { isolation: isolate; }
.hero-giant {
  position: absolute; right: -4%; top: 8%;
  font-family: var(--font-display);
  font-size: clamp(8rem, 28vw, 22rem);
  line-height: 0.8; letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.07);
  pointer-events: none; z-index: 0;
  transform: rotate(-8deg);
  animation: giantPulse 6s ease-in-out infinite;
}
@keyframes giantPulse {
  0%,100% { opacity: 0.55; transform: rotate(-8deg) scale(1); }
  50% { opacity: 0.9; transform: rotate(-6deg) scale(1.03); }
}
.hero-scan {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(24,119,242,0.025) 3px,
    rgba(24,119,242,0.025) 4px
  );
  mix-blend-mode: soft-light;
}
.hero-veil {
  background:
    radial-gradient(ellipse 55% 50% at 18% 78%, rgba(24,119,242,0.32), transparent 60%),
    radial-gradient(ellipse 45% 40% at 88% 22%, rgba(254,44,85,0.22), transparent 55%),
    radial-gradient(ellipse 40% 35% at 60% 50%, rgba(251,188,5,0.08), transparent 50%),
    linear-gradient(180deg, rgba(7,8,10,0.15), rgba(7,8,10,0.94)) !important;
}
.feed-cols { opacity: 0.38 !important; }
.ad-card {
  backdrop-filter: blur(8px);
  transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
  animation: cardFloat 7s ease-in-out infinite;
}
.ad-card:nth-child(odd) { animation-delay: -2s; }
.ad-card:nth-child(3n) { animation-delay: -4s; }
@keyframes cardFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.ac-meta { box-shadow: inset 3px 0 0 var(--meta), 0 0 30px rgba(24,119,242,0.08) !important; }
.ac-tiktok { box-shadow: inset 3px 0 0 var(--tiktok), 0 0 30px rgba(254,44,85,0.08) !important; }
.ac-google { box-shadow: inset 3px 0 0 var(--google), 0 0 24px rgba(251,188,5,0.06) !important; }

.gradient-text {
  background: linear-gradient(105deg, #ffffff 8%, #4da3ff 34%, #1877F2 52%, #FBBC05 78%, #FE2C55 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  color: transparent !important;
  animation: gradShift 5s linear infinite;
}
@keyframes gradShift { to { background-position: 200% center; } }

.hero-name {
  text-shadow: 0 0 80px rgba(24,119,242,0.25);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.45));
}
.hn-accent i:not(.gradient-text) { color: var(--meta); }

.hero-stats {
  display: flex; flex-wrap: wrap; gap: 1.4rem 2.2rem;
  margin-top: 1.8rem;
}
.h-stat { display: grid; gap: 0.25rem; }
.h-stat strong {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1; letter-spacing: 0.02em;
  background: linear-gradient(180deg, #fff, #7eb6ff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.h-stat span {
  font: 500 0.58rem/1 var(--mono); letter-spacing: 0.14em; color: var(--mute); text-transform: uppercase;
}

.btn-solid {
  position: relative; overflow: hidden;
  box-shadow: none;
  animation: none;
}
.btn-shine { display: none; }
.btn-line:hover {
  border-color: var(--meta); color: #9ec5ff;
  box-shadow: none;
}
.bid-hud {
  box-shadow: 0 20px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(24,119,242,0.15), inset 0 0 40px rgba(24,119,242,0.05) !important;
  animation: hudFloat 5s ease-in-out infinite;
}
@keyframes hudFloat {
  0%,100% { transform: translateY(-40%); }
  50% { transform: translateY(calc(-40% - 8px)); }
}

.mega-blow {
  overflow: hidden; border-block: 1px solid var(--line);
  background: #050607; padding: 0.4rem 0;
  position: relative;
}
.mega-blow::before, .mega-blow::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.mega-blow::before { left: 0; background: linear-gradient(90deg, #050607, transparent); }
.mega-blow::after { right: 0; background: linear-gradient(270deg, #050607, transparent); }
.mega-blow-track {
  display: flex; align-items: center; gap: 1.2rem; width: max-content;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 9vw, 6.5rem);
  line-height: 0.9; letter-spacing: 0.02em; text-transform: uppercase;
  color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,0.35);
  animation: megaTick 22s linear infinite;
}
.mega-blow-alt .mega-blow-track {
  -webkit-text-stroke: 1.5px rgba(24,119,242,0.45);
  animation-duration: 28s;
}
.mega-blow-track.reverse { animation-direction: reverse; }
.mega-blow-track .mb-x {
  -webkit-text-stroke: 0; color: var(--tiktok);
  font-size: 0.45em; opacity: 0.9;
}
.mega-blow:hover .mega-blow-track { animation-play-state: paused; }
@keyframes megaTick { to { transform: translateX(-50%); } }

.blast-line {
  padding: 1.4rem var(--pad);
  text-align: center;
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, transparent, rgba(24,119,242,0.12), rgba(254,44,85,0.1), transparent);
  overflow: hidden;
}
.blast-line span {
  display: inline-block;
  font: 600 0.72rem/1 var(--mono); letter-spacing: 0.28em;
  color: var(--ink);
  animation: blastSlide 8s ease-in-out infinite;
}
@keyframes blastSlide {
  0%,100% { letter-spacing: 0.28em; opacity: 0.7; }
  50% { letter-spacing: 0.45em; opacity: 1; }
}

.pitch-title .pt-burn {
  text-shadow: 0 0 40px rgba(254,44,85,0.45);
}
.pitch-title .pt-win {
  text-shadow: 0 0 40px rgba(24,119,242,0.4);
}

.auction-board, .plat-panel, .sys-unit, .ab-face, .fn-step, .dossier, .fp-card, .fp-org, .cert-hero {
  transition: transform .45s var(--ease), box-shadow .45s, border-color .45s;
}
.auction-board:hover, .plat-panel.is-on, .sys-unit:hover, .fn-step:hover, .fp-card:hover, .fp-org:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.35), 0 0 0 1px rgba(24,119,242,0.2);
}

.section-tag, .sec-tag {
  position: relative;
}
.sec-tag::before {
  content: "";
  display: inline-block; width: 18px; height: 2px;
  background: var(--meta); margin-right: 0.55rem;
  vertical-align: middle;
  box-shadow: 0 0 12px var(--meta);
}

.brief {
  position: relative; overflow: hidden;
}
.brief::before {
  content: "";
  position: absolute; inset: auto 0 -20% 0; height: 60%;
  background: radial-gradient(ellipse at center, rgba(24,119,242,0.35), transparent 60%);
  animation: briefGlow 4s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes briefGlow {
  from { opacity: 0.5; transform: scale(1); }
  to { opacity: 1; transform: scale(1.15); }
}
.brief-title span {
  filter: drop-shadow(0 0 30px rgba(24,119,242,0.25));
}
.bt-accent {
  background: linear-gradient(90deg, #1877F2, #4da3ff, #FBBC05, #FE2C55, #1877F2);
  background-size: 300% auto;
  -webkit-background-clip: text; background-clip: text;
  color: transparent !important;
  animation: gradShift 4s linear infinite;
}

@media (max-width: 900px) {
  .hero-giant { opacity: 0.35; right: -20%; }
  .spotlight, #fx-canvas { opacity: 0.35; }
  .orb { opacity: 0.25; }
  .hudFloat { animation: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ========== NEW SECTIONS + CLEAN BUTTONS ========== */
.btn-solid, .btn-solid:hover, .btn-line:hover, a.btn-solid, a.btn-line {
  box-shadow: none !important;
  filter: none !important;
}
.btn-solid { animation: none !important; }

.signals {
  padding: clamp(4rem, 9vw, 7rem) var(--pad);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(24,119,242,0.14), transparent 60%),
    var(--bg);
}
.sig-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  text-transform: uppercase; line-height: 0.92; max-width: 12ch;
}
.sig-lead { margin-top: 0.9rem; color: var(--mute); max-width: 48ch; }
.sig-grid {
  margin-top: 2.2rem;
  display: grid; gap: 0.8rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 900px) {
  .sig-grid { grid-template-columns: repeat(3, 1fr); }
}
.sig-tile {
  position: relative; overflow: hidden;
  border: 1px solid var(--line); background: var(--bg2);
  padding: 1.3rem 1.2rem 1.4rem; min-height: 150px;
  display: grid; align-content: start; gap: 0.45rem;
  transition: transform .35s var(--ease), border-color .35s;
}
.sig-tile:hover { transform: translateY(-6px); }
.sig-tile span {
  font: 600 0.58rem/1 var(--mono); letter-spacing: 0.16em; color: var(--mute);
}
.sig-tile strong {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 0.9; letter-spacing: 0.02em;
}
.sig-tile em { font-style: normal; color: var(--mute); font-size: 0.82rem; }
.sig-tile i {
  position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: linear-gradient(90deg, var(--meta), transparent);
  transform-origin: left; animation: sigBar 2.4s ease-in-out infinite;
}
.t-meta { box-shadow: inset 3px 0 0 var(--meta); }
.t-meta strong { color: #7eb6ff; }
.t-google { box-shadow: inset 3px 0 0 var(--google); }
.t-google strong { color: #ffd666; }
.t-tiktok { box-shadow: inset 3px 0 0 var(--tiktok); }
.t-tiktok strong { color: #ff7a9a; }
.t-yt { box-shadow: inset 3px 0 0 var(--yt); }
.t-yt strong { color: #ff6b84; }
.t-hot { box-shadow: inset 3px 0 0 #fff; }
.t-win { box-shadow: inset 3px 0 0 #3DDC97; }
.t-win strong { color: #3DDC97; }
@keyframes sigBar {
  0% { transform: scaleX(0.2); opacity: 0.4; }
  50% { transform: scaleX(1); opacity: 1; }
  100% { transform: scaleX(0.35); opacity: 0.6; }
}

.angles {
  padding: clamp(4rem, 9vw, 7rem) var(--pad);
  border-top: 1px solid var(--line);
  display: grid; gap: 2rem;
}
@media (min-width: 1000px) {
  .angles {
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-rows: auto auto 1fr;
  }
  .angles .sec-tag, .angles .ang-title { grid-column: 1 / -1; }
  .ang-stage { grid-column: 1; }
  .ang-preview { grid-column: 2; grid-row: 3; }
}
.ang-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  text-transform: uppercase; line-height: 0.94; max-width: 14ch;
}
.ang-stage { display: grid; gap: 0.7rem; }
.ang-card {
  text-align: left; border: 1px solid var(--line); background: var(--bg2);
  padding: 1.1rem 1.2rem; display: grid; gap: 0.35rem;
  transition: transform .35s var(--ease), border-color .35s, background .35s;
}
.ang-card span { font: 600 0.55rem/1 var(--mono); letter-spacing: 0.14em; color: var(--mute); }
.ang-card h3 {
  font-family: var(--font-display); font-size: 1.45rem; text-transform: uppercase; line-height: 1;
}
.ang-card p { color: var(--mute); font-size: 0.88rem; }
.ang-card b { font: 600 0.65rem/1 var(--mono); color: var(--tiktok); margin-top: 0.3rem; }
.ang-card.is-on, .ang-card:hover {
  border-color: rgba(254,44,85,0.45);
  background: linear-gradient(135deg, rgba(254,44,85,0.12), rgba(14,16,20,0.95));
  transform: translateX(6px);
}
.ang-preview {
  border: 1px solid var(--line); background: #0a0c11;
  min-height: 360px; display: grid; place-items: center; padding: 1.4rem;
  position: relative; overflow: hidden;
}
.ang-preview::before {
  content: ""; position: absolute; inset: -20%;
  background: radial-gradient(circle at 50% 30%, rgba(254,44,85,0.18), transparent 55%);
  animation: briefGlow 4s ease-in-out infinite alternate;
}
.ang-preview-frame {
  position: relative; z-index: 1; width: min(320px, 100%);
  border: 1px solid rgba(255,255,255,0.12); background: #11141b;
  padding: 1rem 1rem 1.2rem; border-radius: 18px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
}
.ap-bar {
  display: flex; align-items: center; gap: 0.35rem; margin-bottom: 1.2rem;
}
.ap-bar i { width: 8px; height: 8px; border-radius: 50%; background: #333; }
.ap-bar i:nth-child(1) { background: #FE2C55; }
.ap-bar i:nth-child(2) { background: #FBBC05; }
.ap-bar i:nth-child(3) { background: #34A853; }
.ap-bar em { margin-left: auto; font: 500 0.55rem/1 var(--mono); font-style: normal; color: var(--mute); letter-spacing: 0.1em; }
#ang-copy {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  text-transform: uppercase; line-height: 0.95;
  min-height: 3.2em;
}
.ap-meters { margin-top: 1.4rem; display: grid; gap: 0.7rem; }
.ap-meters > div {
  display: grid; grid-template-columns: 48px 1fr; gap: 0.6rem; align-items: center;
  font: 500 0.55rem/1 var(--mono); color: var(--mute); letter-spacing: 0.08em;
}
.ap-meters i {
  display: block; height: 5px; background: rgba(255,255,255,0.08); position: relative; overflow: hidden;
  font-style: normal;
}
.ap-meters i::after {
  content: ""; position: absolute; inset: 0; width: var(--v);
  background: linear-gradient(90deg, var(--meta), var(--tiktok));
  transition: width .5s var(--ease);
}

.killboard {
  padding: clamp(4rem, 9vw, 7rem) var(--pad);
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(254,44,85,0.05), transparent 35%);
}
.kb-head {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; align-items: end;
}
.killboard h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.6rem);
  text-transform: uppercase; line-height: 0.95; max-width: 14ch;
}
.kb-legend { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.kb-legend span {
  font: 600 0.55rem/1 var(--mono); letter-spacing: 0.12em;
  padding: 0.45rem 0.65rem; border: 1px solid var(--line);
}
.kb-win { color: #3DDC97; border-color: rgba(61,220,151,0.4) !important; }
.kb-kill { color: var(--tiktok); border-color: rgba(254,44,85,0.4) !important; }
.kb-test { color: var(--google); border-color: rgba(251,188,5,0.4) !important; }
.kb-table {
  margin-top: 2rem; border: 1px solid var(--line); overflow: hidden;
}
.kb-row {
  display: grid; grid-template-columns: 1.4fr 0.8fr 0.9fr 0.7fr;
  gap: 0.6rem; padding: 1rem 1.1rem; align-items: center;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  transition: background .3s;
}
.kb-row:first-child { border-top: 0; }
.kb-row:hover { background: rgba(255,255,255,0.03); }
.kb-th {
  font: 600 0.55rem/1 var(--mono); letter-spacing: 0.14em; color: var(--mute);
  background: #0a0c11; text-transform: uppercase;
}
.p-meta { color: #7eb6ff; }
.p-google { color: #ffd666; }
.p-tiktok { color: #ff7a9a; }
.p-yt { color: #ff6b84; }
.call-win, .call-kill, .call-test {
  font: 700 0.62rem/1 var(--mono); letter-spacing: 0.1em;
  padding: 0.4rem 0.55rem; text-align: center; width: fit-content;
}
.call-win { background: rgba(61,220,151,0.12); color: #3DDC97; }
.call-kill { background: rgba(254,44,85,0.12); color: var(--tiktok); }
.call-test { background: rgba(251,188,5,0.12); color: var(--google); }
@media (max-width: 700px) {
  .kb-row { grid-template-columns: 1.2fr 0.8fr; }
  .kb-row span:nth-child(3), .kb-th span:nth-child(3) { display: none; }
}
