:root {
  color-scheme: dark;
  --bg: #080a0d;
  --panel: #10161a;
  --panel-2: #141b20;
  --line: rgba(236, 244, 244, 0.14);
  --text: #f1f6f3;
  --muted: #9aa9a5;
  --cyan: #4ee8f0;
  --lime: #c4ff4d;
  --coral: #ff6b61;
  --amber: #ffc247;
  --ink: #050606;
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 82% 10%, rgba(78, 232, 240, 0.14), transparent 28rem),
    radial-gradient(circle at 18% 42%, rgba(196, 255, 77, 0.08), transparent 24rem),
    linear-gradient(135deg, rgba(255, 107, 97, 0.06), transparent 38%),
    var(--bg);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.014) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 20%, black, transparent 72%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  min-height: 100vh;
  overflow: clip;
}

.hero-copy,
.hero-visual,
.ticker-strip,
.section,
.market-table,
.footer,
.desk-head,
.metric-grid article,
.primary-panels article,
.analytics-grid article,
.signal-board,
.activation-check {
  animation: revealUp 0.75s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-visual,
.metric-grid article:nth-child(2),
.primary-panels article:nth-child(2) {
  animation-delay: 0.08s;
}

.metric-grid article:nth-child(3),
.primary-panels article:nth-child(3) {
  animation-delay: 0.14s;
}

.metric-grid article:nth-child(4) {
  animation-delay: 0.2s;
}

.reveal-on-scroll {
  animation: none !important;
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition:
    opacity 0.72s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.72s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.72s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  filter: blur(8px);
  will-change: opacity, transform, filter;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.word-reveal {
  overflow: hidden;
}

.word-reveal .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.72em) rotateX(34deg);
  transform-origin: left bottom;
  filter: blur(9px);
  clip-path: inset(0 0 100% 0);
  transition:
    opacity 0.72s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.72s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.72s cubic-bezier(0.16, 1, 0.3, 1),
    clip-path 0.72s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--word-index) * 58ms);
  will-change: opacity, transform, filter, clip-path;
}

.word-reveal.words-visible .word {
  opacity: 1;
  transform: translateY(0) rotateX(0);
  filter: blur(0);
  clip-path: inset(0);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(130px, auto) 1fr auto;
  align-items: center;
  gap: 22px;
  margin: 14px clamp(12px, 2.4vw, 34px) 0;
  padding: 12px clamp(14px, 2vw, 24px);
  border-bottom: 1px solid var(--line);
  border: 1px solid rgba(236, 244, 244, 0.1);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(18, 24, 28, 0.86), rgba(7, 9, 11, 0.78)),
    radial-gradient(circle at 10% 0, rgba(78, 232, 240, 0.1), transparent 18rem);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 70px rgba(0,0,0,0.34), inset 0 1px 0 rgba(255,255,255,0.04);
}

.topbar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(78, 232, 240, 0.62), rgba(196, 255, 77, 0.5), transparent);
  opacity: 0.7;
}

.brand,
.sidebar-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand {
  min-height: 48px;
}

.brand strong {
  display: block;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.brand span,
.sidebar-brand span {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(196, 255, 77, 0.8);
  background: linear-gradient(135deg, var(--lime), var(--cyan) 54%, var(--coral));
  clip-path: polygon(0 0, 82% 0, 100% 46%, 44% 100%, 0 74%);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  padding: 5px;
  border: 1px solid rgba(236, 244, 244, 0.08);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
}

.main-nav a {
  padding: 0 14px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a:hover {
  background: rgba(78, 232, 240, 0.08);
}

.menu-toggle {
  display: none;
  width: 44px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  border: 1px solid rgba(236, 244, 244, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.menu-toggle span {
  width: 17px;
  height: 2px;
  border-radius: 99px;
  background: var(--text);
  transition: transform 0.22s ease, opacity 0.22s ease, background 0.22s ease;
}

.topbar.menu-open .menu-toggle span {
  background: var(--lime);
}

.topbar.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.topbar.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.topbar.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}

.main-nav a,
.workspace-link,
.secondary-action,
.primary-action {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.main-nav a:hover,
.footer a:hover {
  color: var(--cyan);
}

.workspace-link,
.primary-action {
  padding: 0 18px;
  border: 1px solid rgba(196, 255, 77, 0.5);
  border-radius: 10px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 800;
  box-shadow: 0 0 0 4px rgba(196,255,77,0.08), 0 12px 38px rgba(196,255,77,0.16);
}

.secondary-action {
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
}

.hero {
  position: relative;
  min-height: calc(100vh - 118px);
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(34px, 5vw, 82px);
  align-items: center;
  margin: 18px clamp(12px, 2.4vw, 34px) 0;
  padding: clamp(42px, 6vw, 82px) clamp(22px, 4.5vw, 66px);
  border: 1px solid rgba(236, 244, 244, 0.1);
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(78, 232, 240, 0.18), transparent 24rem),
    radial-gradient(circle at 78% 18%, rgba(196, 255, 77, 0.12), transparent 26rem),
    linear-gradient(135deg, rgba(18, 24, 28, 0.9), rgba(4, 6, 8, 0.78));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.055),
    0 34px 100px rgba(0,0,0,0.38);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 54% 42%, black, transparent 78%);
  pointer-events: none;
}

.hero > * {
  position: relative;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(48px, 6.6vw, 92px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.6vw, 64px);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.lede {
  color: var(--text);
  font-size: clamp(20px, 2.35vw, 30px);
  line-height: 1.18;
}

.hero-intel {
  max-width: 650px;
  padding: clamp(18px, 2.2vw, 24px);
  border: 1px solid rgba(236,244,244,0.1);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
    radial-gradient(circle at 0 0, rgba(78,232,240,0.08), transparent 14rem);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 18px 58px rgba(0,0,0,0.22);
  backdrop-filter: blur(10px);
}

.hero-intel p:last-child {
  margin-bottom: 0;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 650px;
  margin-top: 14px;
}

.hero-badges span {
  min-height: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 14px;
  border: 1px solid rgba(236,244,244,0.1);
  border-radius: 16px;
  background: rgba(255,255,255,0.035);
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-badges strong {
  min-width: 1.95em;
  color: var(--lime);
  font-size: 24px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 38%, rgba(196, 255, 77, 0.2), transparent 22rem),
    radial-gradient(circle at 20% 84%, rgba(78, 232, 240, 0.16), transparent 20rem),
    linear-gradient(135deg, rgba(78, 232, 240, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(20, 27, 32, 0.96), rgba(7, 9, 11, 0.98));
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255,255,255,0.06),
    inset 0 0 90px rgba(78, 232, 240, 0.09);
}

.hero-visual::after,
.workflow-visual::after,
.modal-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 10, 13, 0.34), transparent 55%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 28px);
  pointer-events: none;
}

.data-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.038) 1px, transparent 1px);
  background-size: clamp(28px, 4vw, 52px) clamp(28px, 4vw, 52px);
}

.data-visual::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 18% 28%, rgba(78,232,240,0.2), transparent 20rem),
    radial-gradient(circle at 86% 26%, rgba(196,255,77,0.16), transparent 24rem),
    radial-gradient(circle at 54% 78%, rgba(255,107,97,0.1), transparent 22rem);
  filter: blur(32px);
  animation: visualField 11s ease-in-out infinite alternate;
}

.data-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 28%, rgba(78,232,240,0.06) 29% 30%, transparent 31%),
    linear-gradient(180deg, rgba(255,255,255,0.035), transparent 42%),
    linear-gradient(90deg, rgba(4,7,8,0.42), transparent 50%, rgba(4,7,8,0.28));
  mix-blend-mode: screen;
  opacity: 0.64;
  animation: visualPlate 9s ease-in-out infinite alternate;
  pointer-events: none;
}

.flow-core {
  position: absolute;
  left: 50%;
  top: 48%;
  width: clamp(170px, 32vw, 360px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(78, 232, 240, 0.24);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 50%, rgba(196,255,77,0.2), transparent 22%),
    conic-gradient(from 60deg, rgba(78,232,240,0.08), rgba(196,255,77,0.18), rgba(255,107,97,0.1), rgba(78,232,240,0.08));
  box-shadow: 0 32px 120px rgba(0,0,0,0.42), inset 0 0 80px rgba(78,232,240,0.08);
  animation: coreFloat 8s ease-in-out infinite;
}

.flow-core span {
  position: absolute;
  inset: calc(12% + var(--ring, 0px));
  border: 1px solid rgba(236,244,244,0.1);
  border-radius: 28px;
  transform: rotate(var(--rotate, 0deg));
  animation: coreSpin 12s linear infinite;
}

.flow-core span:nth-child(1) { --ring: 0px; --rotate: 8deg; }
.flow-core span:nth-child(2) { --ring: 34px; --rotate: -16deg; animation-duration: 16s; animation-direction: reverse; }
.flow-core span:nth-child(3) { --ring: 68px; --rotate: 28deg; animation-duration: 9s; }

.live-tape {
  position: absolute;
  left: clamp(14px, 4vw, 44px);
  right: clamp(14px, 4vw, 44px);
  top: clamp(18px, 5vw, 48px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.live-tape b {
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(236,244,244,0.11);
  border-radius: 999px;
  background: rgba(4, 7, 8, 0.54);
  color: color-mix(in srgb, var(--text) 74%, var(--cyan));
  font-size: clamp(10px, 1.2vw, 13px);
  text-transform: uppercase;
  animation: tapeGlow 3.8s ease-in-out infinite;
  animation-delay: calc(var(--index, 0) * -0.2s);
}

.live-tape b:nth-child(2) { color: var(--lime); animation-delay: -0.8s; }
.live-tape b:nth-child(3) { color: var(--amber); animation-delay: -1.6s; }
.live-tape b:nth-child(4) { color: var(--cyan); animation-delay: -2.4s; }

.signal-mesh {
  position: absolute;
  right: clamp(20px, 5vw, 64px);
  bottom: clamp(70px, 11vw, 120px);
  width: clamp(150px, 25vw, 260px);
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 6px;
  padding: 15px;
  border: 1px solid rgba(196,255,77,0.18);
  border-radius: 20px;
  background: rgba(7, 11, 9, 0.58);
  backdrop-filter: blur(16px);
  transform: rotate(1deg);
}

.signal-mesh b {
  aspect-ratio: 1;
  border-radius: 5px;
  background: color-mix(in srgb, var(--lime) calc(var(--a) * 0.72%), rgba(255,255,255,0.045));
  animation: meshStep 2.8s ease-in-out infinite;
  animation-delay: calc((var(--i) % 12) * -0.08s);
}

.route-line {
  position: absolute;
  left: clamp(24px, 7vw, 82px);
  right: clamp(24px, 7vw, 82px);
  bottom: 28%;
  height: 32%;
  transform: perspective(700px) rotateX(22deg);
}

.route-line span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, rgba(78,232,240,0.8), rgba(196,255,77,0.7), transparent);
  transform-origin: left center;
  animation: routeTrace 4.6s ease-in-out infinite;
}

.route-line span:nth-child(1) { top: 12%; transform: rotate(-4deg); }
.route-line span:nth-child(2) { top: 48%; transform: rotate(2deg); background: linear-gradient(90deg, transparent, rgba(255,107,97,0.74), rgba(255,194,71,0.62), transparent); animation-delay: -1.1s; }
.route-line span:nth-child(3) { top: 82%; transform: rotate(-2deg); animation-delay: -2.2s; }

.forecast-card {
  position: absolute;
  z-index: 3;
  width: clamp(134px, 19vw, 198px);
  padding: clamp(12px, 1.8vw, 18px);
  border: 1px solid rgba(236,244,244,0.12);
  border-radius: 18px;
  background: rgba(5, 7, 8, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0,0,0,0.38), inset 0 1px 0 rgba(255,255,255,0.06);
  animation: cardLift 6s ease-in-out infinite alternate;
}

.forecast-card em,
.forecast-card small {
  display: block;
  color: var(--muted);
  font-size: clamp(9px, 1vw, 11px);
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.forecast-card strong {
  display: block;
  margin: 7px 0;
  color: var(--text);
  font-size: clamp(25px, 4vw, 42px);
  line-height: 0.95;
}

.forecast-a {
  left: clamp(18px, 6vw, 78px);
  top: 20%;
  border-color: rgba(78,232,240,0.34);
}

.forecast-b {
  right: clamp(28px, 7vw, 92px);
  top: 43%;
  bottom: auto;
  border-color: rgba(255,107,97,0.28);
  animation-delay: -1.4s;
}

.forecast-c {
  left: clamp(22px, 5vw, 72px);
  bottom: 30%;
  border-color: rgba(196,255,77,0.28);
  animation-delay: -2.8s;
}

.hero-stat {
  position: absolute;
  right: clamp(18px, 4vw, 46px);
  bottom: clamp(14px, 2vw, 22px);
  width: min(360px, calc(100% - 28px));
  padding: clamp(14px, 1.8vw, 20px);
  border: 1px solid rgba(78, 232, 240, 0.34);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(5, 7, 8, 0.86), rgba(7, 11, 9, 0.72)),
    radial-gradient(circle at 100% 0, rgba(196,255,77,0.12), transparent 10rem);
  backdrop-filter: blur(14px);
  transform: rotate(0.8deg);
  box-shadow: 0 18px 60px rgba(0,0,0,0.34), inset 0 1px 0 rgba(255,255,255,0.06);
}

.hero-stat span,
.signal-head span,
.featured span,
.market-table span,
.metric-grid span,
.unlock-list span,
.bookmark-box span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-stat strong {
  display: block;
  margin: 8px 0;
  color: var(--lime);
  font-size: 26px;
}

.hero-stat small {
  color: var(--muted);
}

.ticker-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 18px clamp(12px, 2.4vw, 34px) 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(20, 27, 32, 0.64);
  box-shadow: inset 0 1px 0 rgba(78, 232, 240, 0.08);
}

.ticker-strip span {
  min-height: 66px;
  display: grid;
  place-items: center;
  padding: 14px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.section {
  padding: clamp(58px, 8vw, 124px) clamp(24px, 4vw, 64px);
}

.section-copy {
  max-width: 900px;
}

.proof-grid,
.edge-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: start;
}

.proof-grid,
.edge-section,
.workflow-section,
.faq-section {
  margin-inline: clamp(12px, 2.4vw, 34px);
  border-inline: 1px solid rgba(236,244,244,0.04);
}

.signal-board,
.activation-check,
.trend-card,
.category-card,
.primary-panels article,
.metric-grid article,
.layer-list article,
.market-table article,
.workflow-list > article,
.cookie-panel,
.activation-modal {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(22, 30, 34, 0.94), rgba(8, 11, 13, 0.94)),
    radial-gradient(circle at 12% 0, rgba(78, 232, 240, 0.1), transparent 16rem);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.signal-board {
  padding: 22px;
}

.signal-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.signal-head strong {
  color: var(--amber);
  text-align: right;
}

.odds-meter {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.odds-meter div {
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(to top, rgba(78, 232, 240, 0.3) calc(var(--value) * 1%), transparent 0),
    rgba(255, 255, 255, 0.03);
}

.odds-meter strong {
  font-size: 28px;
}

.featured {
  margin-top: 14px;
  padding: 20px;
  border-left: 3px solid var(--coral);
  background: rgba(255, 107, 97, 0.08);
}

.featured a,
.market-table a {
  color: var(--lime);
  font-weight: 900;
}

.market-table {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0 clamp(18px, 4vw, 56px) clamp(58px, 8vw, 110px);
}

.market-table article {
  position: relative;
  min-height: 240px;
  padding: clamp(18px, 2vw, 24px);
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(78,232,240,0.12), transparent 10rem),
    linear-gradient(180deg, rgba(23,32,37,0.96), rgba(7,10,12,0.98));
  box-shadow:
    0 20px 70px rgba(0,0,0,0.24),
    inset 0 1px 0 rgba(255,255,255,0.055);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.market-table article::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.07), transparent 32%),
    linear-gradient(90deg, rgba(78,232,240,0.05), transparent 42%);
  pointer-events: none;
}

.market-table article:hover {
  transform: translateY(-4px);
  border-color: rgba(196,255,77,0.28);
  box-shadow:
    0 26px 86px rgba(0,0,0,0.34),
    0 0 0 1px rgba(196,255,77,0.07),
    inset 0 1px 0 rgba(255,255,255,0.07);
}

.market-table article > * {
  position: relative;
}

.market-table article > div {
  min-height: 86px;
}

.market-table strong {
  display: block;
}

.market-table article > div strong {
  font-size: 20px;
  line-height: 1.12;
}

.market-table a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-top: 4px;
}

dl {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 16px;
  margin: 18px 0;
}

dt {
  color: var(--muted);
}

dd {
  margin: 0;
  font-weight: 900;
}

.outcomes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.outcomes span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--lime);
  font-weight: 900;
  text-transform: uppercase;
}

.layer-list {
  display: grid;
  gap: 12px;
}

.layer-list article {
  padding: 22px;
}

.layer-list article > span,
.workflow-list article > span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.workflow-section {
  padding-top: 0;
}

.workflow-visual {
  position: relative;
  height: min(56vw, 520px);
  min-height: 300px;
  margin: 32px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 28%, rgba(255, 107, 97, 0.14), transparent 18rem),
    radial-gradient(circle at 80% 30%, rgba(78, 232, 240, 0.18), transparent 20rem),
    linear-gradient(180deg, rgba(20, 27, 32, 0.92), rgba(7, 9, 11, 0.98));
}

.workflow-list {
  display: grid;
  gap: 20px;
  counter-reset: workflow;
}

.workflow-list > article {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 56px);
  padding: clamp(26px, 4vw, 46px);
  overflow: hidden;
}

.workflow-list > article::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0 0, rgba(78,232,240,0.11), transparent 20rem),
    linear-gradient(90deg, rgba(196,255,77,0.045), transparent 36%);
  pointer-events: none;
}

.workflow-list > article > span,
.workflow-list > article > h3,
.workflow-list > article > p,
.workflow-list > article > .mini-grid {
  position: relative;
}

.workflow-list > article > span {
  grid-column: 1;
  font-size: 13px;
}

.workflow-list > article > h3,
.workflow-list > article > p {
  grid-column: 1;
}

.workflow-list > article > h3 {
  font-size: clamp(28px, 3vw, 46px);
}

.workflow-list > article > .mini-grid {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: center;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 0;
}

.mini-grid div {
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
}

.mini-grid b {
  display: block;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 11px;
  text-transform: uppercase;
}

.mini-grid strong {
  display: block;
  margin-bottom: 8px;
}

.mini-grid p {
  margin-bottom: 0;
  font-size: 14px;
}

.activation-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr) auto;
  gap: 24px;
  align-items: center;
  border-block: 1px solid var(--line);
  background: rgba(196, 255, 77, 0.06);
}

.activation-band ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 24px;
}

.activation-band li span {
  display: block;
  color: var(--muted);
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(360px, 1.25fr);
  gap: clamp(24px, 5vw, 72px);
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

summary {
  padding: 18px;
  cursor: pointer;
  font-weight: 900;
}

details p {
  padding: 0 18px 18px;
}

.footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(18px, 3vw, 34px);
  margin: 22px clamp(12px, 2.4vw, 34px) 0;
  padding: clamp(20px, 3vw, 34px);
  border-top: 1px solid var(--line);
  border: 1px solid rgba(236,244,244,0.11);
  border-radius: 26px 26px 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0, rgba(78, 232, 240, 0.12), transparent 22rem),
    radial-gradient(circle at 86% 100%, rgba(196, 255, 77, 0.1), transparent 24rem),
    rgba(5, 7, 8, 0.62);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, black, transparent 78%);
  pointer-events: none;
}

.footer > * {
  position: relative;
}

.footer-cta {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(236,244,244,0.12);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(78,232,240,0.12), transparent 44%),
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.footer-cta h2 {
  max-width: 920px;
  margin-bottom: 12px;
  font-size: clamp(34px, 4.4vw, 70px);
}

.footer-cta p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 17px;
}

.footer-metrics {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.footer-metrics span {
  min-height: 86px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 18px;
  border: 1px solid rgba(236,244,244,0.1);
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-metrics strong {
  color: var(--lime);
  font-size: 30px;
  line-height: 1;
}

.footer-mark p,
.footer-bottom p {
  max-width: 720px;
  font-size: 14px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.footer-links div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
}

.footer-links span {
  display: block;
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  margin: 10px 0;
  color: var(--muted);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  animation: none !important;
}

.footer-bottom a {
  color: var(--lime);
  font-weight: 900;
}

.legal-main {
  padding: clamp(32px, 5vw, 72px) clamp(14px, 3vw, 44px) 0;
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(236,244,244,0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 14%, rgba(78,232,240,0.14), transparent 24rem),
    radial-gradient(circle at 86% 10%, rgba(196,255,77,0.12), transparent 24rem),
    linear-gradient(180deg, rgba(21,29,34,0.9), rgba(6,8,10,0.94));
  box-shadow: 0 28px 100px rgba(0,0,0,0.34), inset 0 1px 0 rgba(255,255,255,0.06);
}

.legal-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.032) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.024) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, black, transparent 76%);
  pointer-events: none;
}

.legal-hero > * {
  position: relative;
  z-index: 1;
}

.legal-kicker,
.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-weight: 800;
}

.legal-kicker {
  margin-bottom: 28px;
  font-size: 13px;
  text-transform: uppercase;
}

.legal-kicker a,
.legal-meta a {
  color: var(--cyan);
}

.legal-hero h1 {
  max-width: 980px;
  font-size: clamp(44px, 8vw, 112px);
  line-height: 0.92;
}

.legal-hero > p:not(.eyebrow) {
  max-width: 820px;
  margin: 18px 0 26px;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.35;
}

.legal-meta span,
.legal-meta a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(236,244,244,0.11);
  border-radius: 999px;
  background: rgba(255,255,255,0.035);
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(16px, 3vw, 34px);
  align-items: start;
  margin-top: 22px;
}

.legal-toc,
.legal-document {
  border: 1px solid rgba(236,244,244,0.11);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(17,24,28,0.88), rgba(6,8,10,0.92));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.045);
}

.legal-toc {
  position: sticky;
  top: 102px;
  display: grid;
  gap: 9px;
  padding: 16px;
}

.legal-toc strong,
.legal-toc span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-toc a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid transparent;
  border-radius: 14px;
  color: var(--muted);
  font-weight: 800;
}

.legal-toc a.active {
  border-color: rgba(196,255,77,0.26);
  background: rgba(196,255,77,0.08);
  color: var(--text);
}

.legal-document {
  padding: clamp(20px, 4vw, 48px);
}

.legal-document section + section {
  margin-top: clamp(28px, 5vw, 52px);
  padding-top: clamp(24px, 4vw, 42px);
  border-top: 1px solid rgba(236,244,244,0.08);
}

.legal-document h2 {
  margin-bottom: 14px;
  color: var(--text);
  font-size: clamp(24px, 3.2vw, 42px);
}

.legal-document p,
.legal-document li {
  max-width: 940px;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.72;
}

.legal-document ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 22px;
}

.legal-note {
  margin-top: 20px;
  padding: 18px;
  border: 1px solid rgba(196,255,77,0.22);
  border-radius: 18px;
  background: rgba(196,255,77,0.07);
  color: color-mix(in srgb, var(--text) 72%, var(--lime));
  font-weight: 800;
  line-height: 1.55;
}

.legal-footer {
  grid-template-columns: minmax(260px, 0.72fr) minmax(420px, 1.28fr);
}

.cookie-panel {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  width: min(360px, calc(100vw - 28px));
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(19, 27, 31, 0.94), rgba(8, 11, 13, 0.94));
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.46);
  animation: cookieIn 0.45s cubic-bezier(0.2, 0.8, 0.2, 1) 0.45s both;
}

.cookie-panel strong {
  font-size: 16px;
}

.cookie-panel p {
  margin: 8px 0 14px;
  font-size: 14px;
  line-height: 1.45;
}

.cookie-panel div,
.modal-actions {
  display: flex;
  gap: 10px;
}

.cookie-panel button,
.modal-actions button,
.activation-check button,
.workspace-tabs button {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.cookie-panel button:last-child,
.modal-actions button:last-child {
  background: var(--lime);
  color: var(--ink);
  font-weight: 900;
  border-color: rgba(196,255,77,0.55);
  box-shadow: 0 0 0 4px rgba(196,255,77,0.08), 0 14px 34px rgba(196,255,77,0.16);
}

.workspace {
  position: relative;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 0;
  min-height: calc(100vh - 128px);
  margin: 24px clamp(12px, 2.4vw, 34px);
  padding: 0;
  border: 1px solid rgba(236,244,244,0.11);
  border-radius: 26px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(13,18,21,0.84), rgba(5,7,8,0.84));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.045), 0 26px 80px rgba(0,0,0,0.28);
  transition: grid-template-columns 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.workspace::before {
  content: "";
  position: fixed;
  top: 73px;
  left: 0;
  z-index: 25;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--lime), transparent);
  transform-origin: left;
  animation: appLoadBar 1.25s ease both;
  pointer-events: none;
}

.sidebar {
  position: relative;
  top: auto;
  height: auto;
  min-height: calc(100vh - 128px);
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 20px 18px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(11, 16, 18, 0.94), rgba(6, 8, 9, 0.94)),
    radial-gradient(circle at 18% 0, rgba(196, 255, 77, 0.08), transparent 12rem);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  overflow: hidden auto;
  transition: padding 0.28s ease, background 0.28s ease;
}

.sidebar-brand {
  align-items: flex-start;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 4px;
  min-height: 58px;
  transition: align-items 0.28s ease, min-height 0.28s ease;
}

.sidebar-brand small {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.sidebar p {
  align-self: stretch;
  margin: 6px 0 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}

.sidebar button {
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: transparent;
  text-align: left;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.side-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 11px;
}

.side-item i[data-icon] {
  width: 20px;
  min-width: 20px;
  height: 20px;
}

.side-item span {
  transition: opacity 0.18s ease, width 0.18s ease;
  white-space: nowrap;
}

.sidebar button.active,
.sidebar button:hover {
  border-color: rgba(78, 232, 240, 0.32);
  background: rgba(78, 232, 240, 0.1);
  transform: translateX(2px);
}

.icon-button {
  width: 40px;
  min-width: 40px;
  min-height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

i[data-icon] {
  position: relative;
  width: 22px;
  min-width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(78, 232, 240, 0.24);
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(78, 232, 240, 0.18), rgba(196, 255, 77, 0.08));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

i[data-icon]::before,
i[data-icon]::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

i[data-icon]::before {
  width: 10px;
  height: 10px;
  border: 2px solid var(--cyan);
}

i[data-icon="grid"]::before { box-shadow: -5px -5px 0 -3px var(--lime), 5px -5px 0 -3px var(--lime), -5px 5px 0 -3px var(--lime), 5px 5px 0 -3px var(--lime); }
i[data-icon="user"]::before { width: 8px; height: 8px; top: 4px; }
i[data-icon="user"]::after { width: 12px; height: 6px; bottom: 4px; border: 2px solid var(--lime); border-top-left-radius: 10px; border-top-right-radius: 10px; border-bottom: 0; }
i[data-icon="spark"]::before { width: 12px; height: 12px; border: 0; background: conic-gradient(from 45deg, var(--lime), transparent, var(--cyan), transparent, var(--lime)); clip-path: polygon(50% 0, 61% 38%, 100% 50%, 61% 62%, 50% 100%, 39% 62%, 0 50%, 39% 38%); }
i[data-icon="bot"]::before { width: 13px; height: 10px; border-color: var(--lime); border-radius: 4px; }
i[data-icon="bot"]::after { width: 3px; height: 3px; background: var(--cyan); box-shadow: 6px 0 0 var(--cyan); }
i[data-icon="alert"]::before { width: 0; height: 0; border-left: 6px solid transparent; border-right: 6px solid transparent; border-bottom: 12px solid var(--coral); border-top: 0; border-radius: 2px; }
i[data-icon="sliders"]::before { width: 14px; height: 2px; border: 0; background: var(--cyan); box-shadow: 0 -5px 0 var(--lime), 0 5px 0 var(--coral); }
i[data-icon="palette"]::before { border-color: var(--coral); border-radius: 50%; box-shadow: 4px -2px 0 -3px var(--lime), -3px 3px 0 -3px var(--cyan); }
i[data-icon="share"]::before { width: 5px; height: 5px; background: var(--cyan); border: 0; box-shadow: 8px -4px 0 var(--lime), 8px 6px 0 var(--coral); }
i[data-icon="gear"]::before { border-style: dashed; border-color: var(--lime); }
i[data-icon="help"]::before { content: "?"; width: auto; height: auto; border: 0; color: var(--cyan); font-size: 15px; font-style: normal; font-weight: 900; }
i[data-icon="route"]::before { width: 14px; height: 8px; border: 0; border-bottom: 2px solid var(--cyan); border-left: 2px solid var(--lime); border-radius: 2px; transform: rotate(-12deg); }
i[data-icon="pin"]::before { width: 8px; height: 12px; border-color: var(--lime); border-radius: 8px 8px 8px 0; transform: rotate(-45deg); }
i[data-icon="check"]::before { width: 12px; height: 6px; border: 0; border-left: 3px solid var(--lime); border-bottom: 3px solid var(--lime); border-radius: 0; transform: rotate(-45deg); }
i[data-icon="video"]::before { width: 12px; height: 8px; border-color: var(--cyan); border-radius: 3px; }
i[data-icon="video"]::after { right: 3px; width: 0; height: 0; border-left: 5px solid var(--lime); border-top: 4px solid transparent; border-bottom: 4px solid transparent; }
i[data-icon="browser"]::before { width: 13px; height: 10px; border-color: var(--cyan); border-radius: 3px; box-shadow: inset 0 4px 0 rgba(196,255,77,0.28); }
i[data-icon="status"]::before { width: 10px; height: 10px; border: 2px solid var(--coral); border-radius: 50%; background: rgba(255,107,97,0.18); box-shadow: 0 0 0 4px rgba(255,107,97,0.08); }
i[data-icon="status"]::after { width: 4px; height: 4px; border-radius: 50%; background: var(--coral); }

.desk {
  min-width: 0;
  padding: 28px;
  background:
    radial-gradient(circle at 76% 8%, rgba(78,232,240,0.08), transparent 22rem),
    linear-gradient(180deg, rgba(255,255,255,0.012), transparent 32%);
  transition: transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.desk-head {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 10%, rgba(78,232,240,0.16), transparent 20rem),
    radial-gradient(circle at 88% 28%, rgba(196, 255, 77, 0.13), transparent 22rem),
    linear-gradient(120deg, rgba(21, 30, 35, 0.98), rgba(7, 10, 12, 0.98));
  box-shadow:
    0 24px 80px rgba(0,0,0,0.34),
    inset 0 1px 0 rgba(255,255,255,0.06),
    inset 0 -80px 120px rgba(0,0,0,0.16);
}

.desk-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(78, 232, 240, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(90deg, transparent, black 28%, black 85%, transparent);
  animation: gridSlide 14s linear infinite;
}

.desk-head > * {
  position: relative;
  z-index: 1;
}

.desk-head h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(34px, 4.1vw, 56px);
  line-height: 0.98;
}

.workspace-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.workspace-tabs button.active {
  background: var(--lime);
  color: var(--ink);
  font-weight: 900;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.metric-grid article {
  position: relative;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  overflow: hidden;
  border-radius: 20px;
  background:
    radial-gradient(circle at 86% 18%, rgba(78,232,240,0.12), transparent 10rem),
    linear-gradient(180deg, rgba(24,33,38,0.96), rgba(7,10,12,0.98));
  box-shadow:
    0 18px 60px rgba(0,0,0,0.24),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.metric-grid article::before,
.primary-panels article::before,
.trend-card::before,
.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), transparent 32%),
    radial-gradient(circle at 100% 0, rgba(196,255,77,0.08), transparent 10rem);
  opacity: 0.75;
  pointer-events: none;
}

.metric-grid strong {
  color: var(--text);
  font-variant-numeric: tabular-nums;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 0.95;
  white-space: nowrap;
  overflow-wrap: anywhere;
}

.metric-grid small {
  color: var(--muted);
  font-size: 12px;
}

.desk-view {
  display: none;
}

.desk-view.active {
  display: block;
}

.primary-panels,
.analytics-grid {
  display: grid;
  gap: 14px;
  margin-bottom: 14px;
}

.primary-panels {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.primary-panels.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.primary-panels article,
.trend-card,
.category-card,
.activation-check {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 2.4vw, 34px);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0, rgba(196,255,77,0.08), transparent 14rem),
    linear-gradient(180deg, rgba(24,33,38,0.96), rgba(7,10,12,0.98));
  box-shadow:
    0 20px 70px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.055);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.primary-panels article:hover,
.metric-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(78,232,240,0.32);
  box-shadow:
    0 24px 84px rgba(0,0,0,0.34),
    0 0 0 1px rgba(78,232,240,0.08),
    inset 0 1px 0 rgba(255,255,255,0.07);
}

.workspace h2 {
  font-size: clamp(24px, 2.4vw, 38px);
  line-height: 1.05;
}

.primary-panels h2 {
  font-size: clamp(24px, 2.2vw, 34px);
}

.workspace p {
  font-size: 15px;
}

.analytics-grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.85fr);
  align-items: stretch;
}

.analytics-title {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.analytics-title i[data-icon] {
  width: 48px;
  min-width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255,255,255,0.035);
}

i[data-icon="bars"]::before {
  width: 3px;
  height: 15px;
  border: 0;
  border-radius: 4px;
  background: #9bd4a4;
  box-shadow: -8px 7px 0 #9bd4a4, 8px -7px 0 #9bd4a4;
}

.analytics-title h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  color: #f7f2e8;
}

.view-toggle {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #c8c0b3;
  white-space: nowrap;
}

.view-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.view-toggle b {
  position: relative;
  width: 56px;
  height: 30px;
  border-radius: 999px;
  background: rgba(122,184,132,0.88);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

.view-toggle b::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #061012;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.trend-stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 26px;
}

.trend-stats strong {
  display: block;
  color: #f7f2e8;
  font-size: clamp(22px, 2.3vw, 30px);
  line-height: 1.05;
}

.trend-stats div:nth-child(2) strong {
  color: #8de0a2;
}

.trend-stats span {
  display: block;
  margin-top: 8px;
  color: #a99f94;
  font-size: 15px;
}

.line-chart {
  position: relative;
  min-height: 230px;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(180deg, transparent, rgba(125,214,148,0.04)),
    linear-gradient(0deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 100% 46px;
}

.line-chart svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.chart-fill {
  fill: url(#lineFill);
}

.chart-line {
  fill: none;
  stroke: #a9e8b2;
  stroke-width: 5;
  stroke-linecap: round;
  filter: drop-shadow(0 0 12px rgba(169,232,178,0.18));
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: drawLine 1.35s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s both;
}

.donut-chart {
  position: relative;
  width: min(260px, 72%);
  aspect-ratio: 1;
  margin: 10px auto 28px;
  border-radius: 50%;
  background:
    conic-gradient(#405166 0 40%, #d4ae78 40% 70%, #75ba86 70% 90%, #86afd0 90% 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06), 0 18px 48px rgba(0,0,0,0.28);
}

.donut-chart::before {
  content: "";
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  background: #0a0f12;
  box-shadow: inset 0 8px 24px rgba(0,0,0,0.4);
}

.donut-chart span {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: conic-gradient(from -20deg, rgba(255,255,255,0.18), transparent 22%, transparent 70%, rgba(255,255,255,0.12));
  mask: radial-gradient(circle, transparent 61%, black 62%);
}

.category-legend {
  display: grid;
  gap: 14px;
}

.category-row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 0;
  padding: 0;
  color: #d8d0c4;
  font-size: 20px;
}

.category-row i {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border-radius: 50%;
  background: #405166;
  box-shadow: 0 0 0 8px rgba(255,255,255,0.035);
}

.category-row.gold i { background: #d4ae78; }
.category-row.mint i { background: #75ba86; }
.category-row.sky i { background: #86afd0; }

.category-row strong {
  color: #f7f2e8;
}

.workspace-signal {
  margin-bottom: 12px;
}

.activation-check {
  max-width: 760px;
}

.activation-check div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 12px 0;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.activation-check strong {
  color: var(--amber);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 54px);
  background: rgba(0, 0, 0, 0.72);
  animation: fadeIn 0.22s ease both;
}

.modal-backdrop.hidden {
  display: none;
}

.activation-modal {
  position: relative;
  width: min(1080px, 100%);
  max-height: min(820px, calc(100vh - 72px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(15, 20, 25, 0.98), rgba(4, 6, 8, 0.98));
  animation: modalIn 0.35s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.modal-loader {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  background:
    radial-gradient(circle at 50% 30%, rgba(78, 232, 240, 0.18), transparent 18rem),
    rgba(5, 7, 8, 0.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
}

.modal-backdrop.is-loading .modal-loader {
  opacity: 1;
  pointer-events: auto;
}

.loader-ring {
  position: relative;
  width: 78px;
  height: 78px;
}

.loader-ring span {
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-top-color: var(--cyan);
  border-radius: 50%;
  animation: loaderSpin 0.9s linear infinite;
}

.loader-ring span:nth-child(2) {
  inset: 10px;
  border-top-color: var(--lime);
  animation-duration: 1.2s;
  animation-direction: reverse;
}

.loader-ring span:nth-child(3) {
  inset: 21px;
  border-top-color: var(--coral);
  animation-duration: 0.7s;
}

.modal-loader strong {
  font-size: 20px;
}

.modal-loader small {
  color: var(--muted);
}

.close-modal {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 38px;
  min-width: 38px;
  min-height: 38px;
}

.wizard-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  min-height: 76px;
  padding: 18px 26px;
  border-bottom: 1px solid var(--line);
}

.wizard-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}

.wizard-head > span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.045);
  margin-right: 46px;
}

.wizard-body {
  min-height: 0;
  overflow: auto;
}

.wizard-step {
  display: none;
  padding: 22px 26px 26px;
}

.wizard-step.active {
  display: block;
  animation: revealUp 0.36s ease both;
}

.video-frame {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 20% 0, rgba(78, 232, 240, 0.08), transparent 22rem),
    rgba(6, 11, 13, 0.78);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.video-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding-bottom: 12px;
  color: var(--cyan);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.video-toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
}

.video-toolbar em {
  margin-left: auto;
  padding: 10px 18px;
  border: 1px solid rgba(196,255,77,0.22);
  border-radius: 999px;
  color: #dfecc7;
  font-style: normal;
}

.setup-video-shell {
  position: relative;
  height: clamp(260px, 36vh, 360px);
  border: 1px solid rgba(236,244,244,0.1);
  border-radius: 16px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(78,232,240,0.16), transparent 18rem),
    linear-gradient(180deg, #171d21, #0b0f12);
}

.setup-video-shell video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(236,244,244,0.12);
  border-radius: 12px;
  background: rgba(5,7,8,0.62);
  backdrop-filter: blur(12px);
  pointer-events: none;
}

.video-overlay span,
.video-overlay strong {
  display: block;
}

.video-overlay span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.pin-panel {
  margin: 16px 0 16px;
  padding: 18px;
  border: 1px solid rgba(196,255,77,0.24);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(196,255,77,0.12), rgba(78,232,240,0.04));
}

.drag-bookmark {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  padding: 0 24px;
  border: 1px solid rgba(196,255,77,0.35);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(196,255,77,0.22), rgba(78,232,240,0.1));
  color: var(--text);
  font-weight: 900;
}

.browser-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.browser-card-grid article {
  min-height: 132px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,0.035);
}

.browser-card-grid strong {
  display: block;
  margin: 12px 0;
  font-size: 18px;
}

.step-copy h2 {
  max-width: 1080px;
  margin-bottom: 14px;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 0.98;
}

.step-copy p {
  max-width: 1060px;
  font-size: 18px;
}

.verify-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 22px;
}

.connection-card,
.next-card {
  position: relative;
  min-height: 440px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255,255,255,0.035);
  overflow: hidden;
}

.connection-card {
  border-color: rgba(255,107,97,0.3);
  background:
    radial-gradient(circle at 18% 12%, rgba(255,107,97,0.18), transparent 20rem),
    linear-gradient(180deg, rgba(80, 16, 22, 0.32), rgba(11, 8, 10, 0.88));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.055), 0 24px 80px rgba(0,0,0,0.28);
}

.connection-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.032) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, black, transparent 72%);
  pointer-events: none;
}

.connection-card > *,
.next-card > * {
  position: relative;
}

.connection-card h2 {
  max-width: 760px;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1;
}

.status-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 18px 0;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
  color: var(--muted);
}

.status-row strong {
  color: #dfecc7;
}

.retry-box {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,0.035);
}

.next-card {
  border-color: rgba(78,232,240,0.18);
  background:
    radial-gradient(circle at 12% 0, rgba(78,232,240,0.14), transparent 20rem),
    radial-gradient(circle at 96% 24%, rgba(196,255,77,0.1), transparent 16rem),
    linear-gradient(180deg, rgba(20,27,32,0.95), rgba(7,10,12,0.98));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.055), 0 24px 80px rgba(0,0,0,0.26);
}

.next-card .eyebrow {
  color: #a8ddff;
}

.next-card h3 {
  max-width: 460px;
  margin-bottom: 22px;
  font-size: clamp(28px, 3vw, 42px);
}

.next-list {
  display: grid;
  gap: 12px;
  margin-top: 0;
}

.next-list p {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(236,244,244,0.12);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
}

.next-list span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(78,232,240,0.3);
  border-radius: 12px;
  background: rgba(78,232,240,0.08);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
}

.next-card .next-signal {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(196,255,77,0.22);
  border-color: rgba(196,255,77,0.22);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(196,255,77,0.12), rgba(78,232,240,0.045));
}

.next-signal span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.next-signal strong {
  color: #dfecc7;
  text-align: right;
}

.wizard-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  min-height: 74px;
  padding: 14px 26px;
  border-top: 1px solid var(--line);
}

.step-dots {
  display: flex;
  gap: 18px;
}

.step-dots span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}

.step-dots span.active {
  width: 16px;
  background: #9fe3ff;
  box-shadow: 0 0 0 7px rgba(159, 227, 255, 0.12), 0 0 24px rgba(159, 227, 255, 0.35);
}

.modal-actions button {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 14px;
  font-size: 17px;
}

.modal-actions button:last-child {
  background: var(--lime);
  color: var(--ink);
}

.modal-media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 35% 20%, rgba(78, 232, 240, 0.18), transparent 16rem),
    linear-gradient(180deg, rgba(20, 27, 32, 0.98), rgba(7, 9, 11, 0.98));
}

.video-callout {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  min-height: 132px;
  display: grid;
  grid-template-columns: 72px 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 16px;
  align-content: center;
  padding: 18px;
  border: 1px solid rgba(196, 255, 77, 0.36);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(196, 255, 77, 0.12), rgba(78, 232, 240, 0.08)),
    rgba(5, 7, 8, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0,0,0,0.32);
}

.play-icon {
  grid-row: 1 / 4;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(78, 232, 240, 0.44);
  background: rgba(78, 232, 240, 0.12);
  box-shadow: 0 0 0 8px rgba(78, 232, 240, 0.06);
}

.play-icon::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-left: 18px solid var(--lime);
  border-block: 12px solid transparent;
}

.video-callout span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.video-callout strong {
  font-size: 24px;
  line-height: 1.05;
}

.video-callout small {
  color: var(--muted);
}

.modal-copy {
  padding: clamp(22px, 4vw, 42px);
}

.unlock-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.unlock-list div,
.bookmark-box,
.browser-help p {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.unlock-list div {
  display: grid;
  gap: 8px;
}

.unlock-list strong,
.bookmark-box strong {
  display: block;
  margin-bottom: 8px;
}

.desk-flow {
  margin: 18px 0;
  color: var(--muted);
}

.bookmark-box {
  position: relative;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 4px 12px;
  border-color: rgba(196, 255, 77, 0.28);
}

.bookmark-box > i {
  grid-row: 1 / 4;
}

.bookmark-box a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border-radius: var(--radius);
  background: var(--lime);
  color: var(--ink);
  font-weight: 900;
}

.browser-help {
  display: grid;
  gap: 8px;
  margin: 14px 0;
}

.browser-help p {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  margin: 0;
}

@keyframes revealUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes slowSpin {
  to { transform: rotate(360deg); }
}

@keyframes visualField {
  from { transform: translate3d(-2%, -1%, 0) scale(1); opacity: 0.74; }
  to { transform: translate3d(2%, 2%, 0) scale(1.06); opacity: 1; }
}

@keyframes visualPlate {
  from { transform: translate3d(-8px, -6px, 0); opacity: 0.48; }
  to { transform: translate3d(8px, 6px, 0); opacity: 0.78; }
}

@keyframes coreFloat {
  0%, 100% { transform: translate(-50%, -50%) rotate(-1deg) scale(0.98); }
  50% { transform: translate(-50%, -53%) rotate(1.5deg) scale(1.02); }
}

@keyframes coreSpin {
  to { transform: rotate(calc(var(--rotate, 0deg) + 360deg)); }
}

@keyframes tapeGlow {
  0%, 100% { opacity: 0.52; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-2px); }
}

@keyframes meshStep {
  0%, 100% { opacity: 0.32; transform: scale(0.82); }
  50% { opacity: 1; transform: scale(1); }
}

@keyframes routeTrace {
  0% { clip-path: inset(0 100% 0 0); opacity: 0; }
  18% { opacity: 0.85; }
  56% { clip-path: inset(0 0 0 8%); }
  100% { clip-path: inset(0 0 0 100%); opacity: 0; }
}

@keyframes cardLift {
  from { transform: translate3d(0, 0, 0) rotate(-0.8deg); }
  to { transform: translate3d(8px, -10px, 0) rotate(0.8deg); }
}

@keyframes gridSlide {
  to { background-position: 76px 38px; }
}

@keyframes cookieIn {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes appLoadBar {
  0% { transform: scaleX(0); opacity: 0; }
  20% { opacity: 1; }
  80% { transform: scaleX(1); opacity: 1; }
  100% { transform: scaleX(1); opacity: 0; }
}

@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }

  .word-reveal .word {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: inset(0) !important;
    transition: none !important;
  }
}

@media (max-width: 1080px) {
  .hero,
  .proof-grid,
  .edge-section,
  .faq-section,
  .activation-band,
  .activation-modal {
    grid-template-columns: 1fr;
  }

  .market-table,
  .metric-grid,
  .mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 380px;
  }

  .workspace {
    grid-template-columns: 1fr;
  }

  .sidebar {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .footer,
  .footer-cta,
  .footer-bottom,
  .legal-layout,
  .legal-footer,
  .verify-grid,
  .mock-grid {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }

  .browser-card-grid {
    grid-template-columns: 1fr;
  }

  .activation-modal {
    width: min(960px, 100%);
  }

  .setup-video-shell {
    height: 340px;
  }

  .trend-stats {
    grid-template-columns: 1fr;
  }

  .analytics-title {
    grid-template-columns: auto 1fr;
  }

  .view-toggle {
    grid-column: 1 / -1;
    justify-content: space-between;
  }
}

@media (max-width: 760px) {
  .topbar {
    grid-template-columns: 1fr auto;
    margin: 10px;
    padding: 10px;
    gap: 10px;
  }

  .topbar .brand {
    min-height: 42px;
  }

  .topbar .brand small {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    width: 40px;
    min-width: 40px;
    min-height: 40px;
    gap: 2px;
    border-radius: 11px;
  }

  .menu-toggle span {
    width: 16px;
    height: 2px;
  }

  .main-nav {
    display: none;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 6px;
    justify-content: stretch;
    overflow: visible;
    padding: 8px;
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
  }

  .main-nav a {
    justify-content: flex-start;
    min-height: 46px;
    padding-inline: 14px;
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
  }

  .workspace-link {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    min-height: 50px;
  }

  .topbar.menu-open .main-nav {
    display: grid;
    animation: revealUp 0.22s ease both;
  }

  .topbar.menu-open .workspace-link {
    display: inline-flex;
    animation: revealUp 0.26s ease both;
  }

  .hero,
  .section,
  .workspace {
    padding-inline: 14px;
  }

  .hero {
    padding-block: 34px;
  }

  .hero-copy {
    max-width: none;
  }

  h1 {
    font-size: clamp(46px, 17vw, 68px);
  }

  .hero-intel {
    padding: 16px;
    border-radius: 18px;
  }

  .hero-badges {
    grid-template-columns: 1fr;
  }

  .hero-badges span {
    min-height: 58px;
  }

  .actions .primary-action,
  .actions .secondary-action {
    flex: 1 1 190px;
  }

  .workspace {
    display: block;
    margin: 12px 10px;
    padding: 0;
    border-radius: 22px;
    overflow: visible;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
  }

  .sidebar {
    position: sticky;
    top: 76px;
    z-index: 15;
    min-height: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 10px;
    border: 1px solid rgba(236,244,244,0.12);
    border-radius: 20px;
    background:
      linear-gradient(180deg, rgba(14,20,23,0.96), rgba(6,8,9,0.94)),
      radial-gradient(circle at 10% 0, rgba(78,232,240,0.12), transparent 14rem);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 54px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.05);
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
  }

  .sidebar::-webkit-scrollbar {
    display: none;
  }

  .sidebar-brand {
    flex: 0 0 auto;
    align-items: center;
    flex-direction: row;
    gap: 9px;
    min-height: auto;
    margin: 0;
    padding-right: 12px;
    border-right: 1px solid var(--line);
  }

  .sidebar-brand strong {
    font-size: 14px;
  }

  .sidebar-brand small {
    display: none;
  }

  .sidebar p {
    display: none;
  }

  .sidebar .side-item {
    flex: 0 0 auto;
    width: 46px;
    min-width: 46px;
    min-height: 46px;
    justify-content: center;
    padding: 0;
    border-radius: 14px;
  }

  .sidebar .side-item.active {
    box-shadow: 0 0 0 3px rgba(78,232,240,0.08);
  }

  .sidebar .side-item i[data-icon] {
    width: 19px;
    min-width: 19px;
    height: 19px;
  }

  .sidebar .side-item span {
    display: none;
  }

  .sidebar button:nth-of-type(n+6) {
    display: none;
  }

  .desk {
    padding: 0;
  }

  .hero-visual {
    min-height: 420px;
    transform: none;
  }

  .hero-stat {
    transform: none;
    width: calc(100% - 24px);
    right: 12px;
    bottom: 12px;
    border-radius: 16px;
    padding: 16px;
  }

  .hero-stat strong {
    font-size: 24px;
  }

  .live-tape {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    top: 14px;
    left: 12px;
    right: 12px;
    gap: 6px;
  }

  .live-tape b {
    min-height: 34px;
    padding-inline: 8px;
    font-size: 9px;
    letter-spacing: 0.06em;
  }

  .flow-core {
    width: min(58vw, 220px);
    top: 41%;
    left: 53%;
    opacity: 0.88;
  }

  .route-line {
    left: -12%;
    right: -12%;
    bottom: 42%;
  }

  .signal-mesh {
    width: 112px;
    grid-template-columns: repeat(6, 1fr);
    gap: 3px;
    right: 12px;
    bottom: 136px;
    padding: 8px;
    border-radius: 14px;
    opacity: 0.74;
  }

  .forecast-card {
    width: 112px;
    padding: 10px;
    border-radius: 14px;
  }

  .forecast-a {
    left: 16px;
    top: 114px;
  }

  .forecast-b {
    right: 16px;
    top: 188px;
    bottom: auto;
  }

  .forecast-c {
    left: 16px;
    bottom: 142px;
  }

  .forecast-card strong {
    margin: 5px 0;
    font-size: 24px;
  }

  .forecast-card em,
  .forecast-card small {
    font-size: 8px;
  }

  .ticker-strip,
  .market-table,
  .metric-grid,
  .primary-panels,
  .primary-panels.compact,
  .analytics-grid,
  .mini-grid,
  .unlock-list,
  .footer-metrics,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .market-table {
    padding-inline: 14px;
  }

  .odds-meter {
    grid-template-columns: 1fr;
  }

  .desk-head {
    align-items: start;
    flex-direction: column;
  }

  .category-row {
    font-size: 17px;
  }

  .analytics-title {
    gap: 12px;
    margin-bottom: 18px;
  }

  .analytics-title i[data-icon] {
    width: 42px;
    min-width: 42px;
    height: 42px;
  }

  .trend-stats {
    gap: 12px;
    margin-bottom: 18px;
  }

  .trend-stats div {
    padding: 12px 0;
    border-bottom: 1px solid rgba(236,244,244,0.08);
  }

  .line-chart {
    min-height: 190px;
  }

  .donut-chart {
    width: min(230px, 82%);
  }

  .modal-media {
    min-height: 220px;
  }

  .wizard-head,
  .wizard-footer {
    padding-inline: 18px;
  }

  .wizard-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .wizard-step {
    padding: 18px;
  }

  .video-frame,
  .pin-panel,
  .connection-card,
  .next-card {
    border-radius: 18px;
    padding: 18px;
  }

  .setup-video-shell {
    height: 260px;
  }

  .video-controls {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .step-copy h2,
  .connection-card h2 {
    font-size: 34px;
  }

  .step-copy p,
  .next-list p {
    font-size: 17px;
  }

  .wizard-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .modal-actions {
    width: 100%;
  }

  .modal-actions button {
    flex: 1;
    min-height: 52px;
    padding-inline: 14px;
    font-size: 16px;
  }

  .footer-bottom {
    align-items: start;
  }

  .legal-main {
    padding-inline: 10px;
  }

  .legal-hero,
  .legal-document,
  .legal-toc {
    border-radius: 20px;
  }

  .legal-hero h1 {
    font-size: clamp(38px, 13vw, 58px);
  }

  .legal-meta {
    align-items: stretch;
    flex-direction: column;
  }

  .footer {
    margin-inline: 10px;
    padding: 14px;
    border-radius: 22px 22px 0 0;
  }

  .footer-cta {
    padding: 20px;
    border-radius: 18px;
  }

  .footer-cta .primary-action {
    width: 100%;
  }

  .footer-metrics span {
    min-height: 72px;
  }
}
