/* ============================================================
   PresaleWidget — Design System v2
   Dark terminal-fintech. Electric lime on deep ink.
   Depth: aurora field + film grain + cursor spotlight.
   ============================================================ */

:root {
  --bg: #07090f;
  --bg-raise: #0c111b;
  --surface: #101725;
  --surface-2: #141d2f;
  --line: rgba(148, 163, 184, 0.13);
  --line-strong: rgba(148, 163, 184, 0.26);
  --ink: #eaeef5;
  --muted: #97a3b8;
  --faint: #5d6b82;
  --accent: #b4ff3a;
  --accent-dim: #8fd41f;
  --accent-ink: #0c1200;
  --cyan: #6ee7f9;
  --violet: #a78bfa;
  --danger: #ff6b6b;
  --radius: 10px;
  --radius-lg: 18px;
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SF Mono", monospace;
  --maxw: 1180px;
  --shadow-pop: 0 30px 80px -28px rgba(0, 0, 0, 0.8);
  --ease-out: cubic-bezier(0.2, 0.65, 0.15, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: var(--accent-ink); }

/* custom scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: #232e42;
  border-radius: 100px;
  border: 3px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover { background: #34435f; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
strong { color: var(--ink); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-dim), var(--accent));
  z-index: 200;
  box-shadow: 0 0 12px rgba(180, 255, 58, 0.6);
}

/* ---------- background: grid + aurora + grain ---------- */
.grid-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 95% 65% at 50% 0%, black 25%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 95% 65% at 50% 0%, black 25%, transparent 80%);
}
.grid-bg::after {
  /* crosshair accents at grid intersections */
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle 1.5px at 28px 28px, rgba(180, 255, 58, 0.22) 99%, transparent);
  background-size: 224px 224px;
}
.glow {
  position: fixed;
  z-index: -4;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.16;
  pointer-events: none;
  animation: drift 26s ease-in-out infinite alternate;
}
.glow--a { background: radial-gradient(circle, #4d9922, #1d4d10 65%); top: -340px; right: -180px; }
.glow--b {
  background: radial-gradient(circle, #155e70, #123047 65%);
  bottom: -400px; left: -240px;
  opacity: 0.2;
  animation-duration: 34s;
  animation-delay: -12s;
}
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-70px, 60px) scale(1.12); }
}
body::before {
  /* film grain */
  content: "";
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- utility ---------- */
.mono {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent));
}
.section { padding: 112px 0; position: relative; }
.section--tight { padding: 72px 0; }
.section--line { border-top: 1px solid var(--line); }

/* ghost section number (set by JS from kicker text) */
.section[data-num]::before {
  content: attr(data-num);
  position: absolute;
  top: 44px;
  right: max(24px, calc((100vw - var(--maxw)) / 2));
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(90px, 13vw, 180px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(148, 163, 184, 0.1);
  pointer-events: none;
  user-select: none;
}

.sec-head { max-width: 720px; margin-bottom: 60px; position: relative; z-index: 1; }
.sec-head h2 { font-size: clamp(28px, 4.2vw, 44px); margin-bottom: 16px; }
.sec-head p { color: var(--muted); font-size: 17.5px; }
.sec-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head--center .kicker { justify-content: center; }
.sec-head--center .kicker::before { display: none; }

/* ---------- buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15.5px;
  padding: 15px 28px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.18s var(--ease-out), box-shadow 0.18s var(--ease-out), border-color 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; position: relative; z-index: 1; }
.btn span, .btn { z-index: 0; }
.btn--primary {
  background: linear-gradient(180deg, #c6ff5e, var(--accent) 45%, #9fe62e);
  color: var(--accent-ink);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 6px 20px -8px rgba(180, 255, 58, 0.5);
}
.btn--primary::before {
  /* shine sweep */
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: -80%;
  width: 45%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s var(--ease-out);
}
.btn--primary:hover::before { left: 130%; }
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 14px 38px -8px rgba(180, 255, 58, 0.55);
}
.btn--primary:active { transform: translateY(0); }
.btn--ghost {
  background: rgba(148, 163, 184, 0.04);
  color: var(--ink);
  border-color: var(--line-strong);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  border-color: rgba(180, 255, 58, 0.65);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.6);
}
.btn--lg { padding: 18px 34px; font-size: 16.5px; border-radius: 12px; }
.btn--sm { padding: 11px 20px; font-size: 14px; }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(7, 9, 15, 0.82);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom-color: var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
}
.logo-mark { width: 34px; height: 34px; flex: none; transition: transform 0.4s var(--ease-out); }
.logo:hover .logo-mark { transform: rotate(-8deg) scale(1.06); }
.logo em { font-style: normal; color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block;
  padding: 10px 12px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
  border-radius: 8px;
  transition: color 0.15s ease;
  white-space: nowrap;
}
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--ink); }
.nav-links > li > a.has-drop::after {
  content: "▾";
  font-size: 10px;
  margin-left: 6px;
  color: var(--faint);
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 300px;
  background: rgba(16, 23, 37, 0.96);
  backdrop-filter: blur(18px);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 8px;
  margin-top: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s var(--ease-out);
  box-shadow: var(--shadow-pop);
}
.dropdown::before {
  /* hover bridge so the menu doesn't close crossing the gap */
  content: "";
  position: absolute;
  top: -12px; left: 0; right: 0;
  height: 12px;
}
.nav-links > li:hover .dropdown,
.nav-links > li:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 14.5px;
  color: var(--muted);
  transition: background 0.13s ease, color 0.13s ease, padding-left 0.13s ease;
}
.dropdown a:hover { background: rgba(180, 255, 58, 0.06); color: var(--ink); padding-left: 18px; }
.dropdown a span { display: block; font-size: 12px; color: var(--faint); margin-top: 2px; font-weight: 400; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-burger {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  width: 42px; height: 42px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-burger span { width: 18px; height: 2px; background: var(--ink); transition: transform 0.2s ease, opacity 0.2s ease; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero { padding: 180px 0 100px; position: relative; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  padding: 7px 15px 7px 9px;
  margin-bottom: 26px;
  background: rgba(148, 163, 184, 0.05);
  backdrop-filter: blur(6px);
}
.hero-badge b {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 10.5px;
  color: var(--accent-ink);
  background: var(--accent);
  border-radius: 100px;
  padding: 2px 9px;
}
.hero h1 {
  font-size: clamp(38px, 5.4vw, 64px);
  margin-bottom: 24px;
  font-weight: 700;
}
.hero h1 .hl {
  background: linear-gradient(92deg, var(--accent) 20%, #e2ff9e 50%, var(--accent) 80%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 5s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 0; }
  50% { background-position: 100% 0; }
}
.hero h1 .hl-strike {
  position: relative;
  display: inline-block;
}
.hero h1 .hl-strike svg {
  position: absolute;
  left: -2%;
  bottom: -0.18em;
  width: 104%;
  height: 0.32em;
  overflow: visible;
}
.hero h1 .hl-strike svg path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: draw 1s var(--ease-out) 0.5s forwards;
  opacity: 0.85;
}
@keyframes draw { to { stroke-dashoffset: 0; } }
.hero-sub { color: var(--muted); font-size: 18.5px; max-width: 560px; margin-bottom: 36px; }
.hero-sub strong { color: var(--ink); font-weight: 500; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 42px; }
.hero-note { display: flex; align-items: center; gap: 10px; color: var(--faint); font-size: 13.5px; flex-wrap: wrap; }
.hero-note .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(180, 255, 58, 0.15);
  animation: pulse 2.2s infinite;
  flex: none;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(180, 255, 58, 0.15); }
  50% { box-shadow: 0 0 0 9px rgba(180, 255, 58, 0.04); }
}

/* ---------- widget mockup + floaters ---------- */
.widget-frame {
  position: relative;
  perspective: 1200px;
}
.widget-frame::before {
  content: "";
  position: absolute;
  inset: -50px -36px;
  background: radial-gradient(ellipse at 55% 42%, rgba(180, 255, 58, 0.12), transparent 62%);
  z-index: -1;
}
.pw-widget {
  position: relative;
  background: linear-gradient(180deg, rgba(20, 29, 47, 0.9) 0%, rgba(10, 15, 24, 0.95) 100%);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 26px;
  max-width: 420px;
  margin-left: auto;
  box-shadow: var(--shadow-pop), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform-style: preserve-3d;
  transition: transform 0.25s ease-out;
  border: 1px solid transparent;
  background-clip: padding-box;
}
.pw-widget::before {
  /* gradient border */
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg, rgba(180, 255, 58, 0.55), rgba(148, 163, 184, 0.14) 30%, rgba(148, 163, 184, 0.1) 65%, rgba(110, 231, 249, 0.35));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.pw-widget-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.pw-token { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; font-size: 15px; }
.pw-token-icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: conic-gradient(from 180deg, var(--accent), var(--cyan), var(--accent));
  display: grid; place-items: center;
  color: var(--accent-ink);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  animation: spin-slow 14s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }
.pw-token-icon::after { content: ""; }
.pw-live {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: var(--accent);
  border: 1px solid rgba(180, 255, 58, 0.35);
  border-radius: 100px;
  padding: 4px 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(180, 255, 58, 0.06);
}
.pw-live::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.8s infinite;
}
.pw-count { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 20px; }
.pw-count div {
  background: rgba(7, 9, 15, 0.75);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
  padding: 10px 4px;
}
.pw-count b { display: block; font-family: var(--font-display); font-size: 21px; font-variant-numeric: tabular-nums; }
.pw-count span { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.12em; color: var(--faint); text-transform: uppercase; }
.pw-raise { margin-bottom: 20px; }
.pw-raise-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.pw-raise-row b { color: var(--ink); font-variant-numeric: tabular-nums; }
.pw-bar {
  height: 10px;
  border-radius: 100px;
  background: rgba(7, 9, 15, 0.75);
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}
.pw-bar i {
  display: block;
  height: 100%;
  width: 73%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--accent-dim), var(--accent));
  animation: fill 2.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.pw-bar i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.5) 50%, transparent 70%);
  animation: bar-shine 2.6s ease-in-out infinite;
}
@keyframes bar-shine {
  0%, 55% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
@keyframes fill { from { width: 8%; } }
.pw-input { display: flex; gap: 10px; margin-bottom: 12px; }
.pw-input > div {
  flex: 1;
  background: rgba(7, 9, 15, 0.75);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--muted);
}
.pw-input b { color: var(--ink); font-variant-numeric: tabular-nums; }
.pw-buy {
  width: 100%;
  background: linear-gradient(180deg, #c6ff5e, var(--accent) 45%, #9fe62e);
  color: var(--accent-ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15.5px;
  border: none;
  border-radius: 9px;
  padding: 15px;
  cursor: pointer;
  transition: filter 0.15s ease, transform 0.15s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.pw-buy:hover { filter: brightness(1.07); transform: translateY(-1px); }
.pw-foot {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--faint);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pw-foot em { color: var(--accent); font-style: normal; }

/* floating chips around the widget */
.floater {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(16, 23, 37, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 10px 15px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  box-shadow: 0 16px 44px -14px rgba(0, 0, 0, 0.75);
  animation: floaty 6s ease-in-out infinite;
  white-space: nowrap;
}
.floater b { color: var(--ink); font-weight: 600; font-family: var(--font-display); font-size: 13px; }
.floater .up { color: var(--accent); }
.floater svg { width: 17px; height: 17px; flex: none; }
.floater--tx { top: -26px; left: -12px; animation-delay: -1.5s; }
.floater--apy { bottom: 42px; left: -46px; animation-delay: -3.4s; }
.floater--chain { top: 38%; right: -26px; animation-delay: -5s; padding: 10px 13px; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- ticker / marquee ---------- */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
  background: rgba(12, 17, 27, 0.6);
  position: relative;
}
.ticker::before, .ticker::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.ticker::after { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.ticker-track { display: flex; gap: 56px; width: max-content; animation: marquee 36s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track span {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  display: flex;
  align-items: center;
  gap: 56px;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.ticker-track span:hover { color: var(--accent); }
.ticker-track span::after { content: "◆"; color: var(--accent); font-size: 8px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- trust / logos strip ---------- */
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px 44px;
  flex-wrap: wrap;
  padding: 8px 0 0;
}
.trust-strip .mono { flex-basis: 100%; text-align: center; margin-bottom: 14px; }
.trust-logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15.5px;
  color: var(--faint);
  opacity: 0.75;
  transition: opacity 0.2s ease, color 0.2s ease, transform 0.2s ease;
  cursor: default;
}
.trust-logo svg { width: 20px; height: 20px; }
.trust-logo:hover { opacity: 1; color: var(--muted); transform: translateY(-2px); }

/* ---------- stats strip ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(16, 23, 37, 0.7), rgba(12, 17, 27, 0.7));
  backdrop-filter: blur(8px);
  overflow: hidden;
  position: relative;
}
.stats::before {
  content: "";
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(180, 255, 58, 0.5), transparent);
}
.stat { padding: 36px 30px; border-left: 1px solid var(--line); position: relative; transition: background 0.25s ease; }
.stat:hover { background: rgba(180, 255, 58, 0.03); }
.stat:first-child { border-left: none; }
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 700;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.stat b em { color: var(--accent); font-style: normal; }
.stat span { color: var(--faint); font-size: 13.5px; }

/* ---------- cards (with cursor spotlight) ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  position: relative;
  background: linear-gradient(180deg, rgba(16, 23, 37, 0.55), rgba(12, 17, 27, 0.8));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  transition: border-color 0.25s ease, transform 0.25s var(--ease-out), box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.card::before {
  /* cursor spotlight — JS sets --mx/--my */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(180, 255, 58, 0.07), transparent 45%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.card:hover::before { opacity: 1; }
.card:hover {
  border-color: rgba(180, 255, 58, 0.45);
  transform: translateY(-5px);
  box-shadow: 0 24px 50px -24px rgba(0, 0, 0, 0.7);
}
.card-num { font-family: var(--font-mono); font-size: 12px; color: var(--faint); letter-spacing: 0.12em; margin-bottom: 22px; }
.card-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(180, 255, 58, 0.14), rgba(180, 255, 58, 0.04));
  border: 1px solid rgba(180, 255, 58, 0.28);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}
.card:hover .card-icon {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 0 24px -4px rgba(180, 255, 58, 0.35);
}
.card-icon svg { width: 22px; height: 22px; stroke: var(--accent); }
.card h3 { font-size: 19.5px; margin-bottom: 11px; }
.card h3 a { transition: color 0.15s ease; }
.card h3 a:hover { color: var(--accent); }
.card p { color: var(--muted); font-size: 15px; flex: 1; }
.card-link {
  margin-top: 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.card-link svg { width: 15px; height: 15px; transition: transform 0.2s var(--ease-out); }
.card:hover .card-link svg { transform: translateX(5px); }
.card-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 4px 11px;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.card:hover .tag { border-color: var(--line-strong); }

/* ---------- pricing ---------- */
.price-card { padding-top: 36px; }
.price-card .card-num { margin-bottom: 14px; }
.price-tier {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.price-amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.price-amount small { font-size: 15px; font-weight: 500; color: var(--faint); letter-spacing: 0; }
.price-note { color: var(--faint); font-size: 13px; margin-bottom: 22px; }
.price-card .check-list { margin-bottom: 26px; flex: 1; }
.price-card .check-list li { font-size: 14.5px; margin-bottom: 10px; }
.price-card .btn { width: 100%; }
.card--featured { border-color: rgba(180, 255, 58, 0.5); }
.card--featured::after {
  content: "Most popular";
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: var(--accent);
  border-radius: 100px;
  padding: 4px 11px;
  font-weight: 600;
}
.card--featured:hover { border-color: var(--accent); }

/* ---------- feature rows ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 56px 0;
}
.feature-row + .feature-row { border-top: 1px solid var(--line); }
.feature-row h3 { font-size: clamp(23px, 2.8vw, 30px); margin-bottom: 14px; }
.feature-row > div > p { color: var(--muted); margin-bottom: 20px; }
.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 11px;
  color: var(--muted);
  font-size: 15.5px;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 17px; height: 17px;
  border-radius: 5px;
  background: rgba(180, 255, 58, 0.12);
  border: 1px solid rgba(180, 255, 58, 0.4);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 5px; top: 8px;
  width: 7px; height: 4px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.check-list li strong { color: var(--ink); }
.feature-visual {
  background: linear-gradient(180deg, rgba(16, 23, 37, 0.5), rgba(12, 17, 27, 0.7));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.feature-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
}
.feature-visual::after {
  content: "";
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180, 255, 58, 0.08), transparent 65%);
  top: -80px; right: -60px;
  pointer-events: none;
}

/* ---------- code panel ---------- */
.code-panel {
  background: rgba(8, 11, 18, 0.92);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-pop), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.code-panel-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(148, 163, 184, 0.03);
}
.code-panel-bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--line-strong); }
.code-panel-bar i:nth-child(1) { background: #ff5f57; opacity: 0.7; }
.code-panel-bar i:nth-child(2) { background: #febc2e; opacity: 0.7; }
.code-panel-bar i:nth-child(3) { background: #28c840; opacity: 0.7; }
.code-panel-bar span { margin-left: auto; font-family: var(--font-mono); font-size: 11px; color: var(--faint); }
.code-panel pre {
  padding: 20px 22px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.75;
  color: var(--muted);
  overflow-x: auto;
}
.code-panel .c-key { color: var(--cyan); }
.code-panel .c-str { color: var(--accent); }
.code-panel .c-com { color: var(--faint); }
.code-panel .c-fn { color: #f0abfc; }

/* ---------- chains grid ---------- */
.chains { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.chain {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(16, 23, 37, 0.5), rgba(12, 17, 27, 0.7));
  padding: 22px 12px;
  text-align: center;
  transition: border-color 0.2s ease, transform 0.25s var(--ease-out), box-shadow 0.25s ease;
  overflow: hidden;
}
.chain::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 0%), rgba(180, 255, 58, 0.08), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.chain:hover::before { opacity: 1; }
.chain:hover { border-color: var(--line-strong); transform: translateY(-4px); box-shadow: 0 16px 34px -18px rgba(0, 0, 0, 0.7); }
.chain svg, .chain img { width: 30px; height: 30px; margin: 0 auto 10px; transition: transform 0.25s var(--ease-out); }
.chain:hover svg, .chain:hover img { transform: scale(1.15); }
.chain b { display: block; font-family: var(--font-display); font-size: 14px; font-weight: 600; }
.chain span { font-family: var(--font-mono); font-size: 10px; color: var(--faint); letter-spacing: 0.08em; text-transform: uppercase; }

/* ---------- process timeline ---------- */
.process { position: relative; }
.process::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 12px; bottom: 12px;
  width: 1px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--line-strong) 100%);
}
.step { position: relative; padding: 0 0 44px 88px; }
.step:last-child { padding-bottom: 0; }
.step-num {
  position: absolute;
  left: 0; top: 0;
  width: 55px; height: 55px;
  border-radius: 50%;
  background: var(--bg-raise);
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--accent);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s var(--ease-out);
}
.step:hover .step-num {
  border-color: rgba(180, 255, 58, 0.6);
  box-shadow: 0 0 0 6px rgba(180, 255, 58, 0.06), 0 0 24px -4px rgba(180, 255, 58, 0.3);
  transform: scale(1.06);
}
.step h3 { font-size: 20px; margin-bottom: 8px; }
.step h3 span {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--faint);
  text-transform: uppercase;
  margin-left: 12px;
}
.step p { color: var(--muted); max-width: 640px; font-size: 15.5px; }

/* ---------- comparison table ---------- */
.compare {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  overflow-x: auto;
  background: rgba(12, 17, 27, 0.5);
}
.compare table { width: 100%; border-collapse: collapse; min-width: 680px; }
.compare th, .compare td {
  padding: 17px 22px;
  text-align: left;
  font-size: 14.5px;
  border-bottom: 1px solid var(--line);
}
.compare th { font-family: var(--font-display); font-weight: 600; font-size: 15px; background: var(--surface); }
.compare tbody tr { transition: background 0.15s ease; }
.compare tbody tr:hover { background: rgba(148, 163, 184, 0.035); }
.compare th.hl-col, .compare td.hl-col {
  background: rgba(180, 255, 58, 0.05);
  border-left: 1px solid rgba(180, 255, 58, 0.25);
  border-right: 1px solid rgba(180, 255, 58, 0.25);
}
.compare th.hl-col { color: var(--accent); }
.compare tr:last-child td { border-bottom: none; }
.compare td { color: var(--muted); }
.compare td:first-child { color: var(--ink); font-weight: 500; }
.compare .yes { color: var(--accent); font-weight: 600; }
.compare .no { color: var(--faint); }

/* ---------- testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.quote {
  position: relative;
  background: linear-gradient(180deg, rgba(16, 23, 37, 0.55), rgba(12, 17, 27, 0.8));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, transform 0.25s var(--ease-out);
  overflow: hidden;
}
.quote::before {
  content: "“";
  position: absolute;
  top: -14px; right: 14px;
  font-family: var(--font-display);
  font-size: 120px;
  line-height: 1;
  color: rgba(180, 255, 58, 0.07);
  pointer-events: none;
}
.quote:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.quote-stars { color: var(--accent); letter-spacing: 3px; font-size: 14px; margin-bottom: 16px; }
.quote p { color: var(--muted); font-size: 15px; flex: 1; }
.quote-who { margin-top: 22px; display: flex; align-items: center; gap: 12px; }
.quote-ava {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--surface-2), var(--bg-raise));
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
}
.quote-who b { display: block; font-size: 14.5px; font-family: var(--font-display); }
.quote-who span { font-size: 12.5px; color: var(--faint); }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 12px;
  background: linear-gradient(180deg, rgba(16, 23, 37, 0.5), rgba(12, 17, 27, 0.7));
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.faq-item:hover { border-color: var(--line-strong); }
.faq-item.open { border-color: rgba(180, 255, 58, 0.35); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16.5px;
  text-align: left;
  cursor: pointer;
}
.faq-q::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--accent);
  flex: none;
  transition: transform 0.25s var(--ease-out);
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease-out); }
.faq-a-inner { padding: 0 24px 22px; color: var(--muted); font-size: 15.5px; }
.faq-a-inner a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- big CTA ---------- */
.big-cta {
  position: relative;
  border-radius: 24px;
  padding: 84px 40px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 75% 130% at 50% -25%, rgba(180, 255, 58, 0.16), transparent 62%),
    linear-gradient(180deg, rgba(16, 23, 37, 0.7), rgba(12, 17, 27, 0.9));
  border: 1px solid transparent;
}
.big-cta::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, rgba(180, 255, 58, 0.5), rgba(148, 163, 184, 0.12) 55%, rgba(148, 163, 184, 0.2));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.big-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 70% 90% at 50% 0%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 90% at 50% 0%, black, transparent 75%);
  pointer-events: none;
}
.big-cta > * { position: relative; z-index: 1; }
.big-cta h2 { font-size: clamp(30px, 4.8vw, 50px); max-width: 720px; margin: 0 auto 18px; font-weight: 700; }
.big-cta p { color: var(--muted); max-width: 560px; margin: 0 auto 36px; font-size: 17.5px; }
.big-cta .hero-ctas { justify-content: center; margin-bottom: 0; }
.big-cta .mono { display: block; margin-top: 28px; }

/* ---------- page hero (subpages) ---------- */
.page-hero { padding: 172px 0 76px; border-bottom: 1px solid var(--line); position: relative; }
.crumbs {
  display: flex;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--faint);
  text-transform: uppercase;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.crumbs a:hover { color: var(--accent); }
.crumbs span::before { content: "/"; margin-right: 8px; color: var(--line-strong); }
.page-hero h1 { font-size: clamp(32px, 4.8vw, 56px); max-width: 860px; margin-bottom: 22px; font-weight: 700; }
.page-hero .hero-sub { max-width: 720px; }

/* ---------- content prose ---------- */
.prose { max-width: 800px; }
.prose h2 { font-size: clamp(25px, 3.2vw, 34px); margin: 44px 0 16px; }
.prose h3 { font-size: 21px; margin: 34px 0 12px; }
.prose p { color: var(--muted); margin-bottom: 16px; }
.prose ul { margin: 0 0 16px; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- split + aside ---------- */
.split { display: grid; grid-template-columns: 1fr 340px; gap: 64px; align-items: start; }
.aside-card {
  position: sticky;
  top: 100px;
  background: linear-gradient(180deg, rgba(16, 23, 37, 0.85), rgba(12, 17, 27, 0.9));
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  overflow: hidden;
}
.aside-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, rgba(180, 255, 58, 0.45), rgba(148, 163, 184, 0.14));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.aside-card > * { position: relative; }
.aside-card h3 { font-size: 19px; margin-bottom: 10px; }
.aside-card p { color: var(--muted); font-size: 14.5px; margin-bottom: 22px; }
.aside-card .btn { width: 100%; margin-bottom: 10px; }
.aside-card .mono { display: block; text-align: center; margin-top: 14px; font-size: 11px; }

/* ---------- footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse 60% 90% at 50% 110%, rgba(180, 255, 58, 0.05), transparent 65%),
    var(--bg-raise);
  padding: 76px 0 36px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand p { color: var(--muted); font-size: 14.5px; margin: 18px 0 24px; max-width: 320px; }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 18px;
}
.footer-col li { margin-bottom: 11px; }
.footer-col a {
  color: var(--muted);
  font-size: 14.5px;
  transition: color 0.15s ease, padding-left 0.15s ease;
}
.footer-col a:hover { color: var(--accent); padding-left: 4px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  display: grid;
  place-items: center;
  transition: border-color 0.15s ease, transform 0.2s var(--ease-out), box-shadow 0.2s ease;
}
.footer-social a:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 22px -8px rgba(180, 255, 58, 0.4);
}
.footer-social svg { width: 17px; height: 17px; fill: var(--muted); transition: fill 0.15s ease; }
.footer-social a:hover svg { fill: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--faint);
  font-size: 13px;
}
.footer-bottom a:hover { color: var(--accent); }

/* ---------- reveal animation (staggered by JS) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
  transition-delay: var(--stagger, 0s);
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker-track, .glow, .floater, .pw-token-icon, .pw-bar i::after, .hero h1 .hl { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 1180px) {
  .nav-cta .btn--ghost { display: none; }
}
@media (max-width: 1024px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .chains { grid-template-columns: repeat(4, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: none; }
  .stat { border-top: 1px solid var(--line); }
  .stat:nth-child(-n+2) { border-top: none; }
  .split { grid-template-columns: 1fr; }
  .aside-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section[data-num]::before { font-size: 90px; top: 30px; opacity: 0.7; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .pw-widget { margin: 0 auto; }
  .widget-frame { max-width: 460px; margin: 0 auto; }
  .floater--apy { left: -8px; }
  .floater--chain { right: -8px; }
  .floater--tx { left: 4px; }
  .feature-row { grid-template-columns: 1fr; gap: 34px; padding: 44px 0; }
  .nav-links {
    position: fixed;
    top: 76px; left: 0; right: 0; bottom: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px;
    gap: 2px;
    display: none;
    overflow-y: auto;
    border-top: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a { padding: 15px 8px; font-size: 17px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    background: none;
    box-shadow: none;
    min-width: 0;
    margin-top: 0;
    padding: 0 0 8px 16px;
    display: none;
    backdrop-filter: none;
  }
  .nav-links > li.open-drop .dropdown { display: block; }
  .nav-burger { display: flex; }
  .nav-cta .btn { display: none; }
  .nav-cta .btn.nav-tg { display: inline-flex; }
}
@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .hero { padding: 140px 0 64px; }
  .hero h1 .hl-strike svg { display: none; }
  .hero-badge { font-size: 10px; letter-spacing: 0.08em; }
  .cards { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .chains { grid-template-columns: repeat(3, 1fr); }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .step { padding-left: 74px; }
  .big-cta { padding: 60px 22px; }
  .hero-ctas .btn { width: 100%; }
  .floater { display: none; }
  .section[data-num]::before { display: none; }
}
