:root {
  --bg: #0b0b0b;
  --text: #f3f3f0;
  --muted: rgba(243, 243, 240, 0.58);
  --line: rgba(255, 255, 255, 0.1);
  --panel: #141414;
  --lime: #d6f250;
  --lime-2: #c8e63a;
  --ink: #0d0d0d;
  --up: #d6f250;
  --down: #ff6d6d;
  --font-display: "Unbounded", system-ui, sans-serif;
  --font-pixel: "Pixelify Sans", "Unbounded", system-ui, sans-serif;
  --font-ui: "Manrope", system-ui, sans-serif;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: var(--font-ui);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
a, button { -webkit-tap-highlight-color: transparent; }
html { -webkit-text-size-adjust: 100%; }
html.is-menu { overflow: hidden; }

.accent { color: var(--lime); }
.up { color: var(--up); }
.down { color: var(--down); }
.pixel { font-family: var(--font-pixel); }

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 130;
  opacity: 0.07;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

html.is-arrive,
html.is-leaving { background: #d6f250; }
html.is-arrive body { background: var(--bg); }
.page-veil {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  overflow: hidden;
  pointer-events: none;
  visibility: hidden;
}
.page-veil-blob {
  position: absolute;
  display: block;
  left: var(--veil-x, 50%);
  top: var(--veil-y, 50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #d6f250;
  transform: translate(-50%, -50%) scale(0);
  transform-origin: center;
  opacity: 0;
}
.page-veil span {
  position: relative;
  z-index: 1;
  font-family: var(--font-pixel);
  font-size: clamp(28px, 5vw, 44px);
  color: var(--ink);
  opacity: 0;
  transition: opacity 0.28s ease;
}
html.is-leaving .page-veil,
html.is-arrive .page-veil {
  visibility: visible;
  pointer-events: auto;
}
html.is-leaving .page-veil-blob {
  transform: translate(-50%, -50%) scale(90);
  opacity: 1;
  transition: transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}
html.is-leaving .page-veil span {
  opacity: 1;
  transition-delay: 0.16s;
}
html.is-arrive .page-veil span {
  opacity: 1;
  animation: df-veil-mark 0.28s ease forwards;
}
@keyframes df-veil-mark {
  from { opacity: 1; }
  to { opacity: 0; }
}
html.is-arrive .login-card {
  animation: df-veil-card 0.45s 0.1s ease both;
}
@keyframes df-veil-card {
  from { opacity: 0; }
  to { opacity: 1; }
}

.site-header {
  position: relative;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px 36px 8px;
}
.nav-left, .nav-right { display: flex; align-items: center; gap: 22px; }
.nav-right { justify-content: flex-end; }
.nav-link { color: var(--muted); font-size: 13.5px; font-weight: 500; }

.lang {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.lang button {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 7px 11px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--muted);
  cursor: pointer;
}
.lang button.is-on {
  background: var(--lime);
  color: var(--ink);
}

.logo {
  font-family: var(--font-pixel);
  color: var(--lime);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}
.burger span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--text);
  margin: 0;
  transition: transform 0.2s ease;
}
html.is-menu .burger span:first-child { transform: translateY(3.25px) rotate(45deg); }
html.is-menu .burger span:last-child { transform: translateY(-3.25px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: var(--bg);
  display: none;
  flex-direction: column;
  gap: 18px;
  padding: 92px 28px max(40px, env(safe-area-inset-bottom));
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  overflow: auto;
}
.mobile-menu:not([hidden]) { display: flex; }
.mobile-menu .btn-outline { width: fit-content; font-size: 14px; font-family: var(--font-ui); }
.mobile-menu .lang { width: fit-content; margin-top: 12px; }

.hero {
  position: relative;
  padding: 18px 36px 0;
  min-height: 760px;
  overflow: hidden;
}

.hero h1,
.banner h2,
.cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.045em;
  line-height: 1;
}
.hero h1 .line,
.banner h2 .line,
.cta h2 .line { padding: 0.1em 0 0.14em; }
.end-dot {
  letter-spacing: 0;
  margin-left: 0.1em;
}
[lang="ru"] .cta h2 .line:first-child .end-dot { margin-left: -0.28em; }
.hero h1 {
  font-size: clamp(52px, 9.2vw, 128px);
  max-width: none;
}
.hero h1 .line,
.hero h1 .line > span {
  white-space: nowrap;
}

.hero-grid {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 280px 1fr 220px;
  gap: 20px;
  align-items: end;
  min-height: 540px;
  padding-bottom: 28px;
}
.hero-stats { grid-column: 3; }

.hero-left p {
  margin: 0 0 28px;
  max-width: 300px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.65;
  padding-left: 16px;
  border-left: 2px solid var(--lime);
}
.hero-cta { display: flex; align-items: center; gap: 10px; }

.btn-dark {
  display: inline-flex;
  align-items: center;
  background: #171717;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
  min-height: 56px;
}
.btn-dark b { display: block; font-size: 13.5px; }
.btn-dark small { display: block; color: var(--muted); font-size: 11.5px; font-weight: 500; }

.btn-lime {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  display: grid;
  place-items: center;
}

.hero-stage {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 580px;
  pointer-events: none;
  z-index: 1;
}

.hero-glow {
  position: absolute;
  left: 50%;
  top: 0;
  width: 640px;
  height: 560px;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 42% 46%, rgba(214, 242, 80, 0.32), transparent 46%),
    radial-gradient(circle at 62% 28%, rgba(214, 242, 80, 0.12), transparent 50%);
  filter: blur(18px);
}

.wordmark {
  position: absolute;
  left: 50%;
  bottom: -4%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(140px, 22vw, 280px);
  line-height: 0.72;
  letter-spacing: -0.08em;
  color: rgba(243, 243, 240, 0.2);
  text-transform: uppercase;
  white-space: nowrap;
  user-select: none;
}

.phone {
  position: absolute;
  left: 50%;
  bottom: -8%;
  transform: translateX(-50%);
  width: 250px;
  z-index: 2;
}
.phone-bezel {
  border-radius: 40px;
  padding: 8px;
  background: #111;
  border: 1px solid var(--line);
}
.phone-screen {
  position: relative;
  height: 430px;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(180deg, #1a1a14 0%, #0e1208 48%, #0a0c07 100%);
}
.island {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 24px;
  border-radius: 20px;
  background: #050505;
  z-index: 2;
}
.status {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding: 14px 20px 0;
  font-size: 12px;
  font-weight: 650;
}
.phone-chart {
  position: absolute;
  inset: 70px 0 0;
  width: 100%;
  height: calc(100% - 70px);
}

.glass-card {
  position: absolute;
  z-index: 3;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 10px;
  min-width: 300px;
  padding: 11px 16px 11px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px) saturate(1.3);
  color: #fff;
  animation: float 5.6s ease-in-out infinite;
}
.card-eth {
  top: 16%;
  left: 52%;
  background: linear-gradient(180deg, rgba(214, 242, 80, 0.32), rgba(40, 48, 12, 0.58));
  transform: rotate(8deg);
}
.card-sber {
  top: 46%;
  left: calc(50% - 280px);
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.92), rgba(8, 8, 8, 0.86));
  transform: rotate(-7deg);
  animation-delay: -1.8s;
}
.card-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(214, 242, 80, 0.18);
  color: var(--lime);
  font-weight: 800;
}
.card-meta { display: flex; flex-direction: column; line-height: 1.15; }
.card-meta strong { font-size: 13.5px; }
.card-meta span { font-size: 11px; opacity: 0.7; }
.mini-spark { width: 64px; height: 24px; color: var(--lime); }
.card-quote { text-align: right; }
.card-quote strong { display: block; font-size: 13.5px; }
.card-quote span { font-size: 11px; }

@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}

.hero-stats { display: grid; gap: 14px; justify-items: end; }
.hero-stats article {
  width: min(100%, 210px);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 16px 16px;
}
.hero-stats b { display: block; font-size: 42px; line-height: 0.9; margin-bottom: 10px; }
.hero-stats b.muted { color: rgba(243, 243, 240, 0.28); }
.hero-stats p { margin: 0; color: var(--muted); font-size: 12.5px; line-height: 1.45; }

.btn-start {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #171717;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 12px 16px;
  font-size: 13.5px;
  font-weight: 650;
}
.btn-start span { color: var(--lime); }
.btn-start.static { margin-top: 22px; width: fit-content; }

.logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  padding: 28px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: rgba(243, 243, 240, 0.55);
  font-family: var(--font-pixel);
  font-size: 18px;
}
.logos span { display: inline-flex; align-items: center; gap: 8px; }
.logos span + span::before {
  content: "";
  width: 1px;
  height: 18px;
  background: var(--line);
  margin-right: 28px;
}
.logos i { width: 10px; height: 10px; border-radius: 50%; background: currentColor; opacity: 0.7; }

.banner { padding: 72px 36px 12px; text-align: center; }
.banner h2 { font-size: clamp(48px, 9vw, 118px); }

.section {
  padding: 48px 36px 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.section-copy { max-width: 640px; margin-bottom: 28px; }
.kicker {
  margin: 0 0 8px;
  color: var(--lime);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}
.section-copy h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.section-copy p { margin: 0; color: var(--muted); line-height: 1.6; }

.workspace,
.calc-card,
.plan,
.split article,
.blog-grid a,
.scan-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.workspace { overflow: hidden; margin-bottom: 18px; }
.tv-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}
.tv-bar i { width: 8px; height: 8px; border-radius: 50%; background: var(--line); }
.tv-bar i:first-child { background: var(--lime); }
.tv-bar em { margin-left: auto; color: var(--lime); font-style: normal; }
.ws-chips { display: flex; gap: 6px; margin-left: 8px; flex-wrap: wrap; }
.ws-chips span {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.04em;
}
.ws-chips .is-on {
  background: color-mix(in srgb, var(--lime) 18%, transparent);
  border-color: color-mix(in srgb, var(--lime) 55%, var(--line));
  color: var(--lime);
}
.ws-body { display: grid; grid-template-columns: 1fr 220px; min-height: 360px; }
.ws-chart-wrap { min-height: 320px; }
.tv-chart { display: block; width: 100%; height: 320px; color: var(--lime); padding: 8px 8px 0; }
.ws-tape {
  border-left: 1px solid var(--line);
  padding: 16px;
}
.ws-tape p { margin: 0; color: var(--muted); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.ws-tape b { display: block; margin: 6px 0 14px; font-family: var(--font-display); }
.ws-tape ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.ws-tape li { display: flex; justify-content: space-between; font-size: 13px; }
.ws-tape em { color: var(--lime); font-style: normal; }

.scan-head { max-width: 640px; margin: 36px 0 16px; }
.scan-head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.scan-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.scan-card {
  padding: 20px 18px 18px;
  min-height: 236px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  transition: transform 0.35s cubic-bezier(.16,1,.3,1), border-color 0.35s ease;
}
.scan-card:hover,
.scan-card.is-on {
  border-color: color-mix(in srgb, var(--lime) 60%, var(--line));
  background: color-mix(in srgb, var(--lime) 9%, var(--panel));
}
@media (hover: hover) {
  .scan-card:hover { transform: translateY(-6px); }
}
.scan-card.is-on {
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--lime) 35%, transparent);
}
.scan-card h4 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: -0.03em;
}
.scan-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.45; }
.num { color: var(--lime); font-size: 18px; }

.scan-visual { margin-bottom: auto; }
.radar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle, transparent 42%, color-mix(in srgb, var(--lime) 35%, transparent) 43%, transparent 44%),
    conic-gradient(from 210deg, transparent 0 70%, color-mix(in srgb, var(--lime) 45%, transparent) 0 78%, transparent 0);
  animation: sweep 5.5s linear infinite;
}
@keyframes sweep { to { transform: rotate(360deg); } }
.radar span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
}
.radar span:nth-child(1) { top: 26%; left: 62%; }
.radar span:nth-child(2) { top: 58%; left: 28%; width: 12px; height: 12px; }
.radar span:nth-child(3) { top: 70%; left: 68%; width: 6px; height: 6px; }
.heat {
  height: 42px;
  border-radius: 8px;
  background: linear-gradient(90deg, #3a4a12, var(--lime), #6b2a2a);
}
.levels {
  height: 48px;
  display: grid;
  align-content: space-between;
}
.levels i {
  display: block;
  height: 1px;
  background: var(--lime);
  opacity: 0.35;
}
.levels i:nth-child(2) { opacity: 0.9; width: 78%; }
.levels i:nth-child(3) { width: 62%; opacity: 0.45; }
.gap {
  height: 42px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: end;
}
.gap i {
  display: block;
  border-radius: 6px 6px 0 0;
  background: var(--lime);
}
.gap i:first-child { height: 18px; opacity: 0.45; }
.gap i:last-child { height: 42px; }
.macd {
  height: 42px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
}
.macd i {
  flex: 1;
  border-radius: 2px 2px 0 0;
  background: var(--lime);
}
.macd i:nth-child(1) { height: 12px; opacity: .35; }
.macd i:nth-child(2) { height: 22px; opacity: .55; }
.macd i:nth-child(3) { height: 34px; }
.macd i:nth-child(4) { height: 18px; opacity: .5; }
.macd i:nth-child(5) { height: 28px; opacity: .8; }
.macd i:nth-child(6) { height: 14px; opacity: .4; }
.macd i:nth-child(7) { height: 38px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.split article { padding: 28px; }
.split h4 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: -0.03em;
}
.split p { margin: 0; color: var(--muted); line-height: 1.55; }

.calc {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
}
.calc-card {
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.calc-card label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
}
.calc-card input {
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #0f0f0f;
  padding: 0 12px;
  outline: none;
}
.calc-result { grid-column: 1 / -1; }
.calc-result small { color: var(--muted); }
.calc-result strong {
  display: block;
  margin-top: 6px;
  font-family: var(--font-pixel);
  font-size: 34px;
  color: var(--lime);
}

.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.plan { padding: 28px; }
.plan.featured {
  border-color: color-mix(in srgb, var(--lime) 45%, var(--line));
  background: color-mix(in srgb, var(--lime) 7%, var(--panel));
}
.plan-top { display: flex; align-items: center; gap: 10px; }
.plan h3 { margin: 0; font-family: var(--font-display); text-transform: uppercase; }
.badge {
  background: var(--lime);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 999px;
}
.price { margin: 16px 0 6px; font-size: 40px; line-height: 1; }
.price span { font-size: 14px; color: var(--muted); font-family: var(--font-ui); }
.plan-note { color: var(--muted); margin: 0 0 18px; font-size: 14px; }
.plan ul { margin: 22px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.plan li { padding-left: 16px; position: relative; font-size: 14.5px; }
.plan li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--lime);
  position: absolute;
  left: 0;
  top: 8px;
}
.plan li.muted { color: var(--muted); }

.chip {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--lime) 16%, transparent);
  color: var(--lime);
  font-size: 12px;
  font-weight: 700;
  width: fit-content;
}

.journal-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 22px;
}
.journal-head .section-copy { margin-bottom: 0; }
.journal-head .btn-start { margin-top: 0; flex-shrink: 0; }

.journal-board {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 12px;
  min-height: 520px;
}

.journal-feature {
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 520px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.journal-visual {
  position: relative;
  min-height: 240px;
  padding: 22px;
  background:
    radial-gradient(circle at 80% 20%, rgba(214, 242, 80, 0.16), transparent 42%),
    linear-gradient(180deg, #17180f 0%, #101010 100%);
  overflow: hidden;
}
.journal-visual-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}
.journal-visual-top b { font-size: 28px; color: var(--lime); }
.journal-chart {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 70%;
  color: var(--lime);
}
.journal-quote {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.journal-quote strong {
  display: block;
  font-size: 28px;
  letter-spacing: -0.04em;
  line-height: 1;
}
.journal-quote span { font-size: 13px; }

.journal-copy { padding: 24px 26px 26px; }
.journal-copy time,
.journal-feed time {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 8px;
}
.journal-copy h4 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.24;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  padding-top: 0.08em;
}
.journal-copy p,
.journal-feed p { margin: 0; color: var(--muted); line-height: 1.55; }
.journal-go {
  display: inline-flex;
  margin-top: 16px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 700;
}

.journal-feed {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 12px;
}
.journal-feed a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 20px 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  align-items: start;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.journal-feed a:hover {
  border-color: color-mix(in srgb, var(--lime) 50%, var(--line));
  transform: translateY(-3px);
}
.journal-feed h4 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 1.2;
}
.journal-feed .num { font-size: 16px; padding-top: 2px; }

.faq { max-width: 1180px; padding-bottom: 56px; }
.faq-board {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
  gap: 40px 64px;
  align-items: start;
}
.faq-intro { position: sticky; top: 28px; }
.faq-intro h3 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}
.faq-intro h3 .line { white-space: nowrap; }
.faq-intro p:not(.kicker) {
  margin: 0;
  max-width: 320px;
  color: var(--muted);
  line-height: 1.55;
}
.faq-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.faq-pills span {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
}
.faq-list {
  border: 1px solid var(--line);
  border-radius: 32px;
  overflow: hidden;
  background: var(--panel);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease;
}
.faq-list details:last-child { border-bottom: 0; }
.faq-list details[open] { background: rgba(214, 242, 80, 0.04); }
.faq-list summary {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 32px;
  gap: 14px;
  align-items: center;
  cursor: pointer;
  list-style: none;
  padding: 20px 18px;
  font-family: var(--font-display);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary .num { font-size: 18px; }
.faq-list summary i {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  position: relative;
  justify-self: end;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.faq-list summary i::before,
.faq-list summary i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--text);
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease, background 0.25s ease;
}
.faq-list summary i::before { width: 11px; height: 1.5px; }
.faq-list summary i::after { width: 1.5px; height: 11px; }
.faq-list summary:hover i { border-color: var(--lime); }
.faq-list details[open] summary i {
  background: var(--lime);
  border-color: var(--lime);
}
.faq-list details[open] summary i::before,
.faq-list details[open] summary i::after { background: var(--ink); }
.faq-list details[open] summary i::after { opacity: 0; }
.faq-list p {
  margin: 0;
  padding: 0 18px 20px 74px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 56ch;
  animation: faqIn 0.4s cubic-bezier(.16, 1, .3, 1);
}
.faq-list a { color: var(--lime); }
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}

.cta { text-align: center; padding: 88px 24px 96px; }
.cta h2 { font-size: clamp(44px, 8vw, 104px); }
.cta p { max-width: 480px; margin: 18px auto 28px; color: var(--muted); }

.footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  overflow: hidden;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 36px 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 48px 72px;
  align-items: start;
}
.footer-brand .logo { font-size: 32px; }
.footer-brand p {
  margin: 14px 0 0;
  max-width: 260px;
  line-height: 1.55;
}
.footer-mail {
  display: inline-flex;
  margin-top: 22px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}
.footer-mail:hover,
.footer-social a:hover { border-color: var(--lime); color: var(--lime); }
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 40px;
}
.footer h4 {
  margin: 0 0 16px;
  color: var(--lime);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.footer-cols a { color: rgba(243, 243, 240, 0.78); }
.footer-cols a:hover { color: var(--text); }
.footer-wordmark {
  margin: 52px -12px 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(84px, 16vw, 200px);
  line-height: 0.72;
  letter-spacing: -0.08em;
  color: rgba(243, 243, 240, 0.08);
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px 28px;
  flex-wrap: wrap;
  padding-top: 22px;
  margin-top: 8px;
  border-top: 1px solid var(--line);
}
.legal { display: flex; flex-wrap: wrap; gap: 10px 18px; }
.legal a:hover { color: var(--text); }
.disclaimer {
  margin: 18px 0 0;
  font-size: 12px;
  line-height: 1.55;
  max-width: 920px;
}

.page-login .site-header { z-index: 60; }
.login-board {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  min-height: calc(100svh - 92px);
  padding: 28px 40px 56px;
  overflow: hidden;
}
.login-glow {
  position: absolute;
  left: -8%;
  bottom: -28%;
  width: 62%;
  height: 78%;
  background:
    radial-gradient(circle at 40% 50%, rgba(214, 242, 80, 0.28), transparent 52%),
    radial-gradient(circle at 70% 20%, rgba(214, 242, 80, 0.1), transparent 48%);
  filter: blur(22px);
  pointer-events: none;
  z-index: 0;
}
.login-word {
  position: absolute;
  left: 50%;
  bottom: -10%;
  z-index: 0;
  margin: 0;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(140px, 24vw, 340px);
  line-height: 0.72;
  letter-spacing: -0.08em;
  color: rgba(243, 243, 240, 0.1);
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.login-stage {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 36px 56px;
  align-items: center;
}
.login-mark {
  margin: 0 0 18px;
  font-family: var(--font-pixel);
  color: var(--lime);
  font-size: 22px;
}
.login-copy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5.4vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}
.login-copy h1 .line,
.login-copy h1 .line > span { white-space: nowrap; }
.login-copy h1 .line { padding: 0.08em 0 0.16em; }
.login-lead {
  margin: 20px 0 0;
  max-width: 34ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  padding-left: 16px;
  border-left: 2px solid var(--lime);
}
.login-card {
  width: 100%;
  padding: 26px 24px 20px;
  background: color-mix(in srgb, var(--lime) 7%, rgba(11, 11, 11, 0.92));
  border: 1px solid color-mix(in srgb, var(--lime) 45%, var(--line));
  border-radius: 28px;
  backdrop-filter: blur(18px) saturate(1.3);
}
.login-card .kicker { margin-bottom: 6px; }
.login-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}
.login-card .pick {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.login-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 16px 0 12px;
  cursor: pointer;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.55;
}
.login-consent input {
  appearance: none;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  flex-shrink: 0;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #0f0f0f;
  cursor: pointer;
}
.login-consent input:checked {
  background: var(--lime);
  border-color: var(--lime);
  box-shadow: inset 0 0 0 3px var(--ink);
}
.login-consent a { color: var(--lime); }
.login-actions {
  display: grid;
  gap: 10px;
  transition: opacity 0.2s ease;
}
html:not(.is-consent) .login-actions {
  opacity: 0.38;
  pointer-events: none;
}
.login-id {
  width: 100%;
  justify-content: flex-start;
  gap: 12px;
  min-height: 52px;
  padding: 8px 14px;
}
.login-id:hover { border-color: color-mix(in srgb, var(--lime) 55%, var(--line)); }
.login-id.is-main {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
}
.login-id.is-main small { color: rgba(13, 13, 13, 0.62); }
.login-id.is-main .card-icon {
  background: var(--ink);
  color: var(--lime);
}
.login-id .card-icon {
  width: 34px;
  height: 34px;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
}
.login-or {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  margin: 6px 0 2px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.login-or::before,
.login-or::after {
  content: "";
  height: 1px;
  background: var(--line);
}
.login-form { display: grid; gap: 10px; }
.login-form input {
  height: 48px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #0f0f0f;
  padding: 0 16px;
  outline: none;
  font-size: 16px;
}
.login-form input:focus { border-color: rgba(214, 242, 80, 0.45); }
.btn-lime-wide {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}
.btn-lime-wide:disabled { cursor: not-allowed; }
.login-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(.16, 1, .3, 1), transform 0.7s cubic-bezier(.16, 1, .3, 1);
}
[data-reveal].is-in { opacity: 1; transform: none; }
.scan-card[data-reveal]:nth-child(2) { transition-delay: .06s; }
.scan-card[data-reveal]:nth-child(3) { transition-delay: .12s; }
.scan-card[data-reveal]:nth-child(4) { transition-delay: .18s; }
.scan-card[data-reveal]:nth-child(5) { transition-delay: .24s; }
.scan-card.is-on.is-in,
.scan-card.is-on {
  transform: translateY(-6px);
}

.line {
  display: block;
  overflow: hidden;
  padding: 0.08em 0 0.12em;
}
.line > span {
  display: block;
  transform: translateY(110%);
  transition: transform 0.9s cubic-bezier(.16, 1, .3, 1);
}
.is-in .line > span { transform: none; }
.line:nth-child(2) > span { transition-delay: .1s; }
.line:nth-child(3) > span { transition-delay: .2s; }

.chart-line {
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
}
.hero .chart-line,
.is-in .chart-line { animation: draw 1.6s ease forwards 0.3s; }
@keyframes draw { to { stroke-dashoffset: 0; } }

@media (prefers-reduced-motion: reduce) {
  [data-reveal], .line > span, .glass-card, .chart-line, .radar, .faq-list p {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
    stroke-dashoffset: 0 !important;
  }
  .page-veil { display: none !important; }
  html.is-arrive,
  html.is-arrive body { background: var(--bg); }
  html.is-arrive .login-card { opacity: 1; }
}

@media (max-width: 1100px) {
  .scan-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 980px) {
  .nav-left { display: none; }
  .site-header .btn-outline { display: none; }
  .burger { display: flex; width: 36px; height: 36px; }
  .site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    min-height: 56px;
    background: rgba(11, 11, 11, 0.97);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    padding: max(8px, env(safe-area-inset-top)) 16px 8px;
  }
  .nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    height: 36px;
    margin: 0;
  }
  .logo {
    display: flex;
    align-items: center;
    height: 36px;
    font-size: 22px;
    line-height: 1;
  }
  .lang { height: 36px; align-items: stretch; }
  .lang button {
    height: 36px;
    padding: 0 11px;
    display: grid;
    place-items: center;
  }
  .mobile-menu .lang { display: none; }
  .hero, .section, .banner, .footer-inner { padding-left: 16px; padding-right: 16px; }
  .journal-board, .footer-top, .ws-body, .faq-board {
    grid-template-columns: 1fr;
  }
  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding-top: 14px;
    padding-bottom: 18px;
  }
  .hero h1 {
    order: 1;
    font-size: clamp(32px, 7.2vw, 48px);
    line-height: 1.12;
    letter-spacing: -0.05em;
  }
  .hero h1 .line { padding: 0.1em 0 0.14em; }
  .hero-grid { display: contents; }
  .hero-left { order: 2; margin: 12px 0 8px; }
  .hero-left p {
    max-width: none;
    margin-bottom: 14px;
    font-size: 14px;
    padding-left: 12px;
  }
  .hero-cta { width: 100%; }
  .hero-cta .btn-dark { flex: 1; justify-content: center; min-height: 52px; }
  .hero-cta .btn-lime { flex-shrink: 0; }
  .hero-stage {
    order: 3;
    position: relative;
    height: 250px;
    margin: 4px 0 12px;
    overflow: hidden;
    border-radius: 28px;
    background: #101010;
  }
  .hero-stats {
    order: 4;
    grid-column: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: stretch;
    gap: 10px;
  }
  .hero-stats article { width: 100%; }
  .glass-card { display: none; animation: none; }
  .card-sber {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    min-width: 0;
    width: min(78%, 240px);
    left: 50%;
    top: 12%;
    transform: translateX(-50%) rotate(-6deg);
    padding: 8px 12px 8px 8px;
  }
  .card-sber .mini-spark { display: none; }
  .card-sber .card-icon { width: 28px; height: 28px; font-size: 12px; }
  .phone { width: 142px; bottom: -36px; }
  .phone-bezel { border-radius: 28px; padding: 5px; }
  .phone-screen { height: 252px; border-radius: 24px; }
  .island { width: 52px; height: 14px; top: 8px; }
  .status { padding: 10px 12px 0; font-size: 10px; }
  .wordmark {
    font-size: clamp(64px, 15vw, 96px);
    bottom: 10%;
    color: rgba(243, 243, 240, 0.1);
    max-width: 100%;
  }
  .hero-glow { width: min(100%, 360px); height: 220px; top: -10%; }
  .banner { padding-top: 56px; }
  .banner h2 {
    font-size: clamp(28px, 7.2vw, 64px);
    letter-spacing: -0.05em;
    line-height: 1.08;
    overflow: hidden;
  }
  .cta { padding: 64px 16px 72px; }
  .cta h2 {
    font-size: clamp(24px, 6.4vw, 56px);
    letter-spacing: -0.05em;
    line-height: 1.1;
    overflow: hidden;
  }
  .journal-visual {
    min-height: 200px;
    isolation: isolate;
    contain: paint;
  }
  .journal-quote {
    left: 16px;
    bottom: 14px;
    max-width: calc(100% - 32px);
  }
  .cta p { margin-left: 0; margin-right: 0; }
  .section { padding-top: 36px; padding-bottom: 20px; }
  .section-copy h3 { font-size: clamp(26px, 6vw, 40px); }
  .journal-head { flex-direction: column; align-items: flex-start; }
  .journal-feature { min-height: 0; }
  .journal-board { min-height: 0; }
  .journal-feed { grid-template-rows: none; }
  .faq-intro { position: static; }
  .faq-intro p:not(.kicker) { max-width: none; }
  .faq-list {
    border-radius: 28px;
    overflow: hidden;
  }
  .scan-grid { grid-template-columns: 1fr 1fr; }
  .scan-card:last-child { grid-column: 1 / -1; }
  .ws-chips { display: none; }
  .ws-tape { border-left: 0; border-top: 1px solid var(--line); }
  .ws-tape ul { grid-template-columns: 1fr 1fr; }
  .tv-chart { height: 260px; }
  .ws-chart-wrap { min-height: 260px; }
  .ws-body { min-height: 0; }
  .plan .btn-outline,
  .plan .btn-start { width: 100%; justify-content: center; }
  .footer-wordmark {
    width: calc(100% + 32px);
    margin: 40px -16px 8px;
    padding: 0 8px;
    font-size: clamp(64px, 18vw, 140px);
    letter-spacing: -0.07em;
    line-height: 1;
    overflow: visible;
  }
  .login-board {
    min-height: 0;
    padding: 16px 16px 40px;
  }
  .login-stage {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .login-copy h1 { font-size: clamp(28px, 8.6vw, 44px); }
  .login-word { font-size: clamp(88px, 28vw, 160px); bottom: -8%; }
  .login-card { padding: 22px 18px; border-radius: 24px; }
  #terminal, #pricing, #faq, #blog, .banner, .section, .hero {
    scroll-margin-top: 68px;
  }
}

@media (max-width: 640px) {
  .logo { font-size: 20px; }
  .hero h1 { font-size: clamp(28px, 8.8vw, 36px); }
  .hero-cta { flex-wrap: nowrap; }
  .btn-dark { flex: 1; justify-content: center; min-height: 48px; padding: 8px 16px; }
  .btn-lime { width: 48px; height: 48px; flex-shrink: 0; }
  .hero-stage { height: 220px; margin: 2px 0 12px; border-radius: 24px; }
  .phone { width: 124px; bottom: -42px; }
  .phone-screen { height: 220px; }
  .card-sber {
    width: min(86%, 220px);
    top: 10%;
    padding: 7px 10px 7px 7px;
  }
  .card-meta strong,
  .card-quote strong { font-size: 12px; }
  .wordmark { font-size: clamp(48px, 18vw, 68px); }
  .hero-stats article { padding: 14px 12px 12px; border-radius: 16px; }
  .hero-stats b { font-size: 30px; }
  .hero-stats p { font-size: 12px; }
  .logos {
    justify-content: flex-start;
    gap: 14px;
    padding: 18px 18px;
    font-size: 13px;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .logos::-webkit-scrollbar { display: none; }
  .logos span { flex: 0 0 auto; }
  .logos span + span::before { margin-right: 14px; height: 14px; }
  .banner h2 { font-size: clamp(24px, 7.6vw, 32px); }
  .banner h2 .line,
  .banner h2 .line > span,
  .cta h2 .line,
  .cta h2 .line > span { white-space: nowrap; }
  .banner h2 .line,
  .cta h2 .line { padding: 0.1em 0 0.14em; }
  .cta { padding: 52px 16px 60px; }
  .cta h2 { font-size: clamp(22px, 6.8vw, 28px); }
  .cta p { font-size: 14.5px; }
  .btn-start.static { width: 100%; justify-content: center; }
  .scan-card { min-height: 188px; padding: 16px 14px 14px; }
  .scan-card h4 { font-size: 15px; }
  .split article { padding: 22px; }
  .split h4 { font-size: 18px; }
  .calc-card { grid-template-columns: 1fr; }
  .calc, .plans, .split { grid-template-columns: 1fr; }
  .calc-card input { font-size: 16px; height: 48px; }
  .calc-result strong { font-size: 28px; }
  .price { font-size: 32px; }
  .plan { padding: 22px; }
  .journal-visual {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 188px;
    padding: 16px;
  }
  .journal-quote {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 28px;
    max-width: 100%;
  }
  .journal-quote strong { font-size: 22px; }
  .journal-copy { padding: 20px 18px 22px; }
  .journal-copy h4 { font-size: 22px; }
  .journal-feed a { padding: 16px 16px; gap: 12px; }
  .journal-feed h4 { font-size: 15px; }
  .faq-intro h3 { font-size: clamp(30px, 12vw, 40px); }
  .faq-list { border-radius: 32px; }
  .faq-list summary {
    grid-template-columns: 28px minmax(0, 1fr) 36px;
    gap: 10px;
    padding: 16px 14px;
    font-size: 15px;
    min-height: 56px;
  }
  .faq-list summary i { width: 28px; height: 28px; }
  .faq-list p { padding: 0 14px 16px 52px; }
  .footer-inner { padding: 48px 16px max(28px, env(safe-area-inset-bottom)); }
  .footer-brand .logo { font-size: 28px; }
  .footer-cols { gap: 24px 16px; }
  .footer-wordmark {
    width: calc(100% + 32px);
    margin: 28px -16px 6px;
    padding: 0.12em 4px 0.18em;
    font-size: 18vw;
    letter-spacing: -0.07em;
    line-height: 1;
    overflow: visible;
  }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .mobile-menu { font-size: 24px; gap: 16px; padding-left: 18px; padding-right: 18px; }
  .login-copy h1 { font-size: clamp(26px, 8.4vw, 34px); }
  .login-mark { margin-bottom: 12px; font-size: 18px; }
  .login-lead { margin-top: 14px; font-size: 14px; }
  .login-card h2 { font-size: 22px; }
  .login-form input { height: 48px; }
  .btn-lime-wide { min-height: 48px; }
}

@media (max-width: 360px) {
  .hero-stats { grid-template-columns: 1fr; }
  .scan-grid { grid-template-columns: 1fr; }
  .scan-card:last-child { grid-column: auto; }
  .ws-tape ul { grid-template-columns: 1fr; }
}
