/* landing.css v2 — WorldSignal v4 Landing Design System */

/* ══════════ RESET / BASE ══════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  --bg: #09090b;
  --card: #14130e;
  --card-h: #1c1a12;
  --gold: #e7c112;
  --gold-l: #f5d942;
  --gold-d: #b8990e;
  --amber: #d4a017;
  --gold-dim: rgba(231,193,18,.08);
  --gold-glow: rgba(231,193,18,.18);
  --red: #ef4444;
  --green: #22c55e;
  --cyan: #38bdf8;
  --t1: #f0ece0;
  --t2: #9a9080;
  --t3: #5e5640;
  --brd: rgba(231,193,18,.06);
  --brd-g: rgba(231,193,18,.18);
  --mono: 'JetBrains Mono', monospace;
  --sans: 'Plus Jakarta Sans', system-ui, sans-serif;
}

body.landing {
  background: var(--bg);
  color: var(--t1);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ══════════ AMBIENT GLOW BACKGROUNDS ══════════ */
.glow-top {
  position: fixed;
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(231,193,18,.09) 0%, rgba(212,160,23,.04) 35%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  filter: blur(30px);
}
.glow-mid {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 1100px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(231,193,18,.1) 0%, rgba(212,160,23,.04) 35%, transparent 65%);
  pointer-events: none;
  filter: blur(40px);
}

/* ══════════ GRADIENT BORDER MIXIN ══════════ */
.gb {
  position: relative;
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
}
.gb::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(231,193,18,.3), rgba(231,193,18,.05) 50%, rgba(231,193,18,.15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ══════════ NAV ══════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(9,9,11,.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--brd);
  padding: 0 clamp(16px, 3vw, 40px);
  height: 64px;
  display: flex;
  align-items: center;
  gap: 0;
}

/* ── Zone 1: Brand ── */
.n-logo img, .n-logo .brand-logo {
  height: 36px;
  width: 36px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(240,185,11,.2));
}
.n-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.n-logo span {
  font-weight: 800;
  font-size: 20px;
  color: var(--gold);
  letter-spacing: -.03em;
}

/* ── Zone 2: Navigation links (centered) ── */
.n-links {
  display: flex;
  gap: 6px;
  margin: 0 auto;  /* push to center */
}
.n-links a {
  color: var(--t2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color .2s, background .2s, border-color .2s;
  white-space: nowrap;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid transparent;
}
.n-links a:hover {
  color: #fff;
  background: rgba(255,255,255,.04);
  border-bottom-color: rgba(231,193,18,.5);
}
.n-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ── Zone 3: Actions ── */
.n-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

/* Divider between nav and actions */
.n-actions::before {
  content: '';
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,.08);
  margin-right: 4px;
}

/* Sign In — ghost text link */
.n-signin {
  color: rgba(255,255,255,.85);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: color .2s, background .2s, border-color .2s;
  white-space: nowrap;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
}
.n-signin:hover {
  color: #fff;
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.15);
}

/* CTA button — gold with glow */
.btn-p {
  position: relative;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  border-radius: 10px;
  text-decoration: none;
  transition: all .4s ease;
}
.btn-p-inner {
  display: block;
  background: linear-gradient(160deg, #f5d942 0%, #e7c112 50%, #d4a843 100%);
  color: #000;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .03em;
  padding: 10px 26px;
  border-radius: 10px;
  transition: all .3s;
  position: relative;
  z-index: 1;
  white-space: nowrap;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25), inset 0 -1px 0 rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.2);
}
.btn-p::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-l), var(--gold));
  opacity: .6;
  filter: blur(10px);
  z-index: 0;
  transition: opacity .4s;
  animation: cta-pulse 2.5s ease-in-out infinite alternate;
}
@keyframes cta-pulse {
  0%   { opacity: .4; filter: blur(8px); }
  100% { opacity: .7; filter: blur(12px); }
}
.btn-p:hover .btn-p-inner {
  background: linear-gradient(135deg, var(--gold-l), #fff176);
}
.btn-p:hover::before { opacity: .8; }
.btn-p:hover {
  box-shadow: 0 0 20px rgba(231,193,18,.35), 0 0 40px rgba(231,193,18,.15), 0 0 80px rgba(231,193,18,.08);
  transform: translateY(-1px);
}

/* CTA shimmer sweep */
@keyframes cta-shimmer {
  0%   { transform: translateX(-100%) skewX(-15deg); }
  100% { transform: translateX(200%) skewX(-15deg); }
}
.btn-p-inner::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transform: translateX(-100%) skewX(-15deg);
  animation: cta-shimmer 3s ease-in-out infinite;
  border-radius: 10px;
}

/* ── Language selector (compact) ── */
.lang-sel { position: relative; }
.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 6px 10px;
  cursor: pointer;
  transition: all .2s;
  font-family: var(--sans);
  color: var(--t2);
}
.lang-btn span {
  color: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
}
.lang-btn svg { stroke: currentColor; }
.lang-btn:hover { border-color: var(--gold); color: #fff; background: rgba(231,193,18,.06); }
.lang-drop {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(17,17,17,.98);
  border: 1px solid rgba(231,193,18,.15);
  border-radius: 10px;
  padding: 6px;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all .2s;
  z-index: 200;
  box-shadow: 0 12px 40px rgba(0,0,0,.6);
  backdrop-filter: blur(12px);
}
.lang-drop.open { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-opt {
  display: block;
  padding: 8px 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: all .15s;
}
.lang-opt:hover { background: rgba(231,193,18,.08); color: var(--gold); }
.lang-opt.active { color: var(--gold); }

/* ── Hamburger (mobile only) ── */
.ln-hamburger {
  display: none;  /* hidden on desktop */
  background: none;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 6px;
  cursor: pointer;
  color: var(--t1);
  transition: all .2s;
  margin-left: auto;
  line-height: 0;
}
.ln-hamburger:hover { border-color: var(--gold); color: var(--gold); }

/* Mobile overlay */
.ln-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 99;
  opacity: 0;
  transition: opacity .3s;
}
.ln-overlay.active { display: block; opacity: 1; }

/* ══════════ HERO ══════════ */
.hero {
  min-height: 100vh;
  padding: 100px 32px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-ambient {
  position: absolute;
  top: -250px;
  right: -150px;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(231,193,18,.14) 0%, rgba(212,160,23,.08) 25%, rgba(184,153,14,.03) 50%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}
.hero-ambient2 {
  position: absolute;
  bottom: -300px;
  left: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(231,193,18,.08) 0%, rgba(184,153,14,.03) 30%, transparent 60%);
  pointer-events: none;
  filter: blur(60px);
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .015;
  background-image: linear-gradient(rgba(231,193,18,.3) 1px, transparent 1px), linear-gradient(90deg, rgba(231,193,18,.3) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-c {
  max-width: 1260px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-t h1 {
  font-size: clamp(34px, 4.8vw, 54px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.04em;
  margin-bottom: 22px;
}
.hero-t h1 .gold-text {
  background: linear-gradient(135deg, var(--gold-l), var(--gold), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 16px;
  color: var(--t2);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-acts {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

/* Hero CTA — flat button, glow appears behind on hover */
.btn-hero {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 12px;
  text-decoration: none;
  padding: 0;
  transition: all .4s ease;
}
.btn-hero.primary span {
  display: block;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: 12px;
  transition: all .3s;
  position: relative;
  z-index: 1;
}
.btn-hero.primary:hover {
  box-shadow: 0 0 30px rgba(34,197,94,.28), 0 0 60px rgba(231,193,18,.32), 0 0 100px rgba(34,197,94,.15), 0 0 160px rgba(231,193,18,.08);
  transform: translateY(-3px);
}
.btn-hero.primary:hover span { background: var(--gold-l); }
.btn-hero.secondary {
  background: linear-gradient(135deg, rgba(231,193,18,.6), rgba(34,197,94,.2), rgba(231,193,18,.5));
  padding: 2.5px;
  border-radius: 12px;
}
.btn-hero.secondary span {
  display: block;
  background: #000;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: 10px;
  transition: all .3s;
}
.btn-hero.secondary:hover {
  box-shadow: 0 0 50px rgba(231,193,18,.18), 0 0 100px rgba(34,197,94,.08), 0 0 140px rgba(231,193,18,.06);
  transform: translateY(-3px);
  background: linear-gradient(135deg, rgba(231,193,18,.8), rgba(34,197,94,.35), rgba(231,193,18,.7));
}
.btn-hero.secondary:hover span { color: var(--gold); }

.tl { font-size: 12px; color: #fff; display: flex; gap: 14px; flex-wrap: wrap; }
.tl b { color: var(--gold); font-size: 13px; margin-right: 3px; }

/* ══════════ HERO SCREENSHOT ══════════ */
.hero-v { position: relative; }
.hero-v::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 5%;
  right: 5%;
  height: 120px;
  background: radial-gradient(ellipse, rgba(231,193,18,.14) 0%, transparent 65%);
  filter: blur(30px);
}
.hero-screen {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 100px rgba(0,0,0,.8), 0 0 80px rgba(231,193,18,.05);
}
.hero-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(231,193,18,.4), rgba(231,193,18,.06) 50%, rgba(231,193,18,.25));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}
.hero-screen img { display: block; width: 100%; height: auto; border-radius: 12px; }

/* ══════════ TRUST BAR ══════════ */
.trust { padding: 52px 32px; position: relative; overflow: hidden; }
.trust::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 1100px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(231,193,18,.13) 0%, rgba(212,160,23,.06) 30%, rgba(184,153,14,.02) 50%, transparent 70%);
  pointer-events: none;
  filter: blur(30px);
}
.trust::after {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(231,193,18,.35), transparent);
}
.trust-g {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  text-align: center;
  padding: 28px 16px;
  border-radius: 14px;
  background: #000;
  position: relative;
}
.trust-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 1px;
  background: linear-gradient(160deg, rgba(231,193,18,.2), rgba(231,193,18,.03) 50%, rgba(231,193,18,.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.trust-item::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 20%;
  right: 20%;
  height: 10px;
  background: radial-gradient(ellipse, rgba(231,193,18,.08) 0%, transparent 70%);
  filter: blur(6px);
}
.trust-ico { margin-bottom: 10px; opacity: .7; }
.trust-n {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-l), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.trust-l { font-size: 13px; font-weight: 600; color: var(--t1); margin: 4px 0 2px; }
.trust-d { font-size: 11px; color: var(--t3); line-height: 1.4; }
.dsrc { text-align: center; margin-top: 28px; font-size: 11px; color: #fff; font-family: var(--mono); }

/* ══════════ SECTIONS ══════════ */
.sec { padding: 88px 32px; position: relative; }
.sec-h { text-align: center; margin-bottom: 56px; }
.sec-h h2 {
  font-size: clamp(26px, 3.8vw, 38px);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 14px;
}
.sec-h h2 .gold-text {
  background: linear-gradient(135deg, var(--gold-l), var(--gold), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sec-h p { font-size: 15px; color: var(--t2); max-width: 520px; margin: 0 auto; }

/* ══════════ SOCIAL PROOF STRIP ══════════ */
.sp-strip { padding: 48px 32px; position: relative; overflow: hidden; }
.sp-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(231,193,18,.2), transparent);
}
.sp-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.sp-item { display: flex; align-items: center; gap: 12px; }
.sp-ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(231,193,18,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sp-num { font-size: 22px; font-weight: 800; color: #fff; line-height: 1; }
.sp-label { font-size: 11px; color: var(--t2); line-height: 1.3; }

/* ══════════ PRODUCT PREVIEW ══════════ */
.pp-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pp-card {
  position: relative;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  transition: all .3s;
}
.pp-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 1px;
  background: linear-gradient(160deg, rgba(231,193,18,.2), rgba(231,193,18,.03) 50%, rgba(231,193,18,.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}
.pp-card::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 15%;
  right: 15%;
  height: 14px;
  background: radial-gradient(ellipse, rgba(231,193,18,.08) 0%, transparent 70%);
  filter: blur(8px);
  opacity: 0;
  transition: opacity .3s;
}
.pp-card:hover { transform: translateY(-5px); }
.pp-card:hover::after { opacity: 1; }
.pp-img { height: 200px; overflow: hidden; }
.pp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  opacity: .85;
  transition: opacity .3s;
}
.pp-card:hover .pp-img img { opacity: 1; }
.pp-body { padding: 18px; }
.pp-title { font-size: 15px; font-weight: 700; margin-bottom: 5px; }
.pp-title .gold-text {
  background: linear-gradient(135deg, var(--gold-l), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pp-desc { font-size: 13px; color: var(--t2); line-height: 1.5; }

/* ══════════ HOW IT WORKS ══════════ */
.steps {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step {
  position: relative;
  background: #000;
  border-radius: 14px;
  padding: 28px 20px;
  transition: all .3s;
}
.step::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 1px;
  background: linear-gradient(160deg, rgba(231,193,18,.15), rgba(231,193,18,.02) 50%, rgba(231,193,18,.08));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.step::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 20%;
  right: 20%;
  height: 12px;
  background: radial-gradient(ellipse, rgba(231,193,18,.06) 0%, transparent 70%);
  filter: blur(6px);
  opacity: 0;
  transition: opacity .3s;
}
.step:hover { transform: translateY(-4px); background: #0a0a0a; }
.step:hover::after { opacity: 1; }
.step-n {
  position: absolute;
  top: -14px;
  left: 20px;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  color: #000;
  background: linear-gradient(135deg, var(--gold-l), var(--gold));
  box-shadow: 0 4px 12px rgba(231,193,18,.25);
}
.step-i { margin: 8px 0 14px; opacity: .8; }
.step-tt { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.step-tt .gold-text {
  background: linear-gradient(135deg, var(--gold-l), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.step-bd { font-size: 13px; color: var(--t2); line-height: 1.5; }

/* ══════════ PRICING — Dark X 3-card style ══════════ */
.pr-grid {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  gap: 24px;
  align-items: center;
}
.pr-c {
  position: relative;
  background: #000;
  border-radius: 16px;
  padding: 32px 24px;
  transition: all .4s ease;
}
.pr-c::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(160deg, rgba(231,193,18,.25), rgba(34,197,94,.08) 40%, rgba(231,193,18,.15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: all .4s ease;
}
/* Hover glow — gold + green ambient shadow */
.pr-c:hover {
  box-shadow: 0 0 50px rgba(231,193,18,.18), 0 0 100px rgba(34,197,94,.08), 0 0 140px rgba(231,193,18,.06), 0 20px 60px rgba(0,0,0,.4);
  transform: translateY(-5px);
}
.pr-c:hover::before {
  background: linear-gradient(160deg, rgba(231,193,18,.6), rgba(34,197,94,.2) 40%, rgba(231,193,18,.4));
}

/* Pro card — always glowing gold+green, hover = blazing */
.pr-c.pro {
  padding: 40px 28px;
  background: #000;
  box-shadow: 0 0 60px rgba(231,193,18,.15), 0 0 120px rgba(34,197,94,.06), 0 24px 60px rgba(0,0,0,.5);
}
.pr-c.pro::before {
  background: linear-gradient(160deg, rgba(231,193,18,.7), rgba(34,197,94,.25) 35%, rgba(231,193,18,.5) 65%, rgba(34,197,94,.15));
  padding: 2px;
}
.pr-c.pro::after {
  content: '';
  position: absolute;
  bottom: -28px;
  left: 5%;
  right: 5%;
  height: 28px;
  background: radial-gradient(ellipse, rgba(231,193,18,.2) 0%, rgba(34,197,94,.06) 50%, transparent 70%);
  filter: blur(14px);
}
.pr-c.pro:hover {
  box-shadow: 0 0 80px rgba(231,193,18,.28), 0 0 150px rgba(34,197,94,.12), 0 0 200px rgba(231,193,18,.08), 0 24px 80px rgba(0,0,0,.5);
  transform: translateY(-7px);
}
.pr-c.pro:hover::before {
  background: linear-gradient(160deg, rgba(245,217,66,.9), rgba(34,197,94,.4) 35%, rgba(231,193,18,.7) 65%, rgba(34,197,94,.25));
}
.pr-pop {
  position: absolute;
  top: -11px;
  right: 22px;
  background: linear-gradient(135deg, var(--gold-l), var(--gold));
  color: #000;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 6px;
  text-transform: uppercase;
}
.pr-nm { font-size: 18px; font-weight: 700; margin-bottom: 3px; color: #fff; }
.pr-nm .gold-text {
  background: linear-gradient(135deg, var(--gold-l), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pr-ds { font-size: 12px; color: rgba(255,255,255,.5); margin-bottom: 18px; }
.pr-am { font-size: 36px; font-weight: 800; margin-bottom: 3px; color: #fff; }
.pr-am span { font-size: 14px; font-weight: 400; color: rgba(255,255,255,.45); }
.pr-per { font-size: 12px; color: rgba(255,255,255,.45); margin-bottom: 22px; }
.pr-ft { list-style: none; margin-bottom: 24px; }
.pr-ft li {
  font-size: 12px;
  color: #fff;
  padding: 7px 0;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.pr-ft li:last-child { border: none; }
.pr-ft .ck {
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(231,193,18,.1);
  border-radius: 5px;
}
.pr-ft .ck svg { width: 12px; height: 12px; }

/* Gradient border buttons */
.btn-gb {
  position: relative;
  display: block;
  text-align: center;
  border-radius: 10px;
  padding: 1px;
  text-decoration: none;
  background: linear-gradient(135deg, rgba(231,193,18,.3), rgba(34,197,94,.08), rgba(231,193,18,.2));
  transition: all .4s ease;
}
.btn-gb span {
  display: block;
  padding: 11px 20px;
  border-radius: 9px;
  font-weight: 600;
  font-size: 13px;
  font-family: var(--sans);
  transition: all .3s;
}
.btn-gb.outline span { background: #000; color: #fff; }
.btn-gb.outline:hover span { background: #0a0a0a; color: var(--gold); }
.btn-gb.outline:hover {
  box-shadow: 0 0 30px rgba(34,197,94,.2), 0 0 60px rgba(231,193,18,.22), 0 0 100px rgba(34,197,94,.1), 0 0 140px rgba(231,193,18,.05);
  background: linear-gradient(135deg, rgba(231,193,18,.6), rgba(34,197,94,.3), rgba(231,193,18,.4));
}
.btn-gb.filled { background: none; padding: 0; }
.btn-gb.filled span { background: var(--gold); color: #000; font-weight: 700; border-radius: 9px; }
.btn-gb.filled:hover span { background: var(--gold-l); }
.btn-gb.filled:hover {
  box-shadow: 0 0 30px rgba(34,197,94,.25), 0 0 60px rgba(231,193,18,.28), 0 0 100px rgba(34,197,94,.12), 0 0 160px rgba(231,193,18,.06);
}
.pr-note { text-align: center; margin-top: 20px; font-size: 11px; color: rgba(255,255,255,.45); }

/* ── v4 CTA buttons — унифицированный стиль (pricing + settings billing) ── */
.pr-cta-btn {
  display: block;
  text-align: center;
  padding: 14px 28px;
  margin: 24px 0 0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s;
  cursor: pointer;
  border: none;
}
.pr-cta-fill {
  background: var(--gold, #e7c112);
  color: #000;
  box-shadow: 0 4px 20px rgba(231,193,18,.2);
  position: relative;
  overflow: hidden;
}
.pr-cta-fill::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transition: left .5s ease;
  pointer-events: none;
}
.pr-cta-fill:hover::before { left: 100%; }
.pr-cta-fill:hover {
  background: var(--gold-l, #f5d942);
  box-shadow: 0 4px 24px rgba(231,193,18,.4), 0 0 30px rgba(231,193,18,.15);
  transform: translateY(-1px);
}
.pr-cta-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(231,193,18,.2);
}
.pr-cta-outline:hover {
  border-color: rgba(231,193,18,.5);
  background: rgba(231,193,18,.04);
  color: #fff;
}

/* ══════════ FINAL CTA ══════════ */
.fcta { padding: 88px 32px; text-align: center; position: relative; }
.fcta-ambient {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 1000px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(231,193,18,.12) 0%, rgba(212,160,23,.05) 35%, transparent 65%);
  pointer-events: none;
  filter: blur(30px);
}
.fcta h2 {
  font-size: clamp(26px, 3.8vw, 42px);
  font-weight: 800;
  margin-bottom: 14px;
  position: relative;
}
.fcta h2 .gold-text {
  background: linear-gradient(135deg, var(--gold-l), var(--gold), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fcta p { font-size: 16px; color: var(--t2); margin-bottom: 28px; position: relative; }

/* ══════════ FOOTER ══════════ */
footer {
  border-top: 1px solid var(--brd);
  padding: 40px 32px;
  max-width: 1200px;
  margin: 0 auto;
}
footer a { text-decoration: none; transition: color .2s; }
footer a:hover { color: var(--gold) !important; }

/* ══════════ LIVE BADGE on screenshot ══════════ */
.live-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(12px);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(34,197,94,.3);
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: livepulse 2s infinite;
}
@keyframes livepulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,.4); }
  50% { box-shadow: 0 0 0 8px transparent; }
}
.live-badge span { font-size: 11px; font-weight: 600; color: #fff; font-family: var(--mono); }

/* ══════════ PHILOSOPHY BANNER ══════════ */
.phil { padding: 72px 32px; position: relative; overflow: hidden; text-align: center; }
.phil::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 1000px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(231,193,18,.07) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(30px);
}
.phil-inner { max-width: 760px; margin: 0 auto; position: relative; }
.phil-quote {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 16px;
  color: #fff;
}
.phil-quote em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-l), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.phil-sub { font-size: 14px; color: var(--t2); line-height: 1.6; max-width: 600px; margin: 0 auto 20px; }
.phil-tags { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.phil-tag {
  font-size: 11px;
  font-family: var(--mono);
  color: rgba(255,255,255,.45);
  padding: 5px 12px;
  border-radius: 6px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
}

/* ══════════ V2 ROADMAP TEASER ══════════ */
.v2 { padding: 56px 32px; position: relative; }
.v2-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  background: #000;
  border-radius: 16px;
  padding: 36px 32px;
  overflow: hidden;
}
.v2-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(160deg, rgba(231,193,18,.2), rgba(34,197,94,.08) 50%, rgba(231,193,18,.12));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.v2-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 4px 10px;
  border-radius: 5px;
  background: linear-gradient(135deg, rgba(231,193,18,.15), rgba(34,197,94,.08));
  color: var(--gold);
  margin-bottom: 14px;
  border: 1px solid rgba(231,193,18,.15);
}
.v2-title { font-size: 22px; font-weight: 800; margin-bottom: 10px; color: #fff; }
.v2-desc { font-size: 14px; color: var(--t2); line-height: 1.6; margin-bottom: 20px; max-width: 650px; }
.v2-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.v2-item {
  padding: 14px;
  background: rgba(255,255,255,.02);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.04);
}
.v2-item-t { font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.v2-item-d { font-size: 11px; color: var(--t2); line-height: 1.4; }

/* ══════════ WHY DIFFERENT ══════════ */
.wd-grid {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.wd-card {
  position: relative;
  background: #000;
  border-radius: 14px;
  padding: 32px 24px;
  transition: all .4s ease;
}
.wd-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 1px;
  background: linear-gradient(160deg, rgba(231,193,18,.15), rgba(231,193,18,.02) 50%, rgba(231,193,18,.08));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.wd-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 50px rgba(231,193,18,.15), 0 0 100px rgba(34,197,94,.06), 0 20px 60px rgba(0,0,0,.3);
}
.wd-card:hover::before {
  background: linear-gradient(160deg, rgba(231,193,18,.45), rgba(34,197,94,.12) 50%, rgba(231,193,18,.25));
}
.wd-ico { margin-bottom: 16px; opacity: .85; }
.wd-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.wd-title .gold-text {
  background: linear-gradient(135deg, var(--gold-l), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.wd-body { font-size: 13px; color: var(--t2); line-height: 1.6; margin-bottom: 12px; }
.wd-stat { font-size: 12px; color: var(--gold); font-weight: 600; font-family: var(--mono); }

/* ══════════ FAQ ACCORDION ══════════ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(231,193,18,.08); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--sans);
  padding: 20px 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color .2s;
}
.faq-q:hover { color: var(--gold); }
.faq-q::after {
  content: '+';
  font-size: 20px;
  color: var(--gold);
  font-weight: 300;
  transition: transform .3s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .4s ease; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }
.faq-a p { font-size: 14px; color: var(--t2); line-height: 1.7; }

/* ══════════ RISK DISCLOSURE BAR ══════════ */
.risk-bar {
  padding: 20px 32px;
  text-align: center;
  border-top: 1px solid rgba(231,193,18,.06);
  border-bottom: 1px solid rgba(231,193,18,.06);
}
.risk-bar p {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
.risk-bar svg { vertical-align: middle; margin-right: 6px; }

/* ══════════ EARLY ADOPTER ══════════ */
.ea { padding: 64px 32px; position: relative; overflow: hidden; }
.ea::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 900px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(231,193,18,.06) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(30px);
}
.ea-inner { max-width: 640px; margin: 0 auto; text-align: center; position: relative; }
.ea-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 4px 12px;
  border-radius: 5px;
  background: rgba(34,197,94,.1);
  color: #22c55e;
  margin-bottom: 16px;
  border: 1px solid rgba(34,197,94,.15);
}
.ea h3 { font-size: 24px; font-weight: 800; margin-bottom: 8px; color: #fff; }
.ea p { font-size: 14px; color: var(--t2); margin-bottom: 24px; line-height: 1.6; }
.ea-form { display: flex; gap: 10px; max-width: 420px; margin: 0 auto; }
.ea-input {
  flex: 1;
  background: #000;
  border: 1px solid rgba(231,193,18,.15);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  color: #fff;
  font-family: var(--sans);
  outline: none;
  transition: border-color .2s;
}
.ea-input::placeholder { color: rgba(255,255,255,.3); }
.ea-input:focus { border-color: var(--gold); }
.ea-btn {
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  transition: all .3s;
  white-space: nowrap;
}
.ea-btn:hover {
  background: var(--gold-l);
  box-shadow: 0 0 30px rgba(34,197,94,.2), 0 0 60px rgba(231,193,18,.25);
}
.ea-note { font-size: 11px; color: rgba(255,255,255,.35); margin-top: 10px; }

/* ══════════ LOCK-IN BADGE (pricing) ══════════ */
.lock-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 600;
  font-family: var(--mono);
  color: var(--gold);
  background: rgba(231,193,18,.06);
  border: 1px solid rgba(231,193,18,.12);
  border-radius: 5px;
  padding: 4px 10px;
  margin-top: 12px;
}
.lock-badge svg { flex-shrink: 0; }

/* Price strikethrough */
.pr-was {
  font-size: 14px;
  color: rgba(255,255,255,.3);
  text-decoration: line-through;
  margin-right: 6px;
  font-weight: 400;
}

/* ══════════ EXIT-INTENT POPUP ══════════ */
.exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.8);
  backdrop-filter: blur(8px);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}
.exit-overlay.show { display: flex; opacity: 1; }
.exit-box {
  position: relative;
  background: #000;
  border-radius: 20px;
  padding: 44px 40px;
  max-width: 480px;
  width: 90%;
  text-align: center;
}
.exit-box::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(231,193,18,.5), rgba(34,197,94,.2), rgba(231,193,18,.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.exit-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  color: rgba(255,255,255,.25);
  font-size: 15px;
  cursor: pointer;
  transition: color .2s;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.exit-close:hover { color: rgba(255,255,255,.6); }
.exit-box h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; color: #fff; }
.exit-box h3 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-l), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* ── Crypto ticker marquee ── */
.exit-ticker {
  overflow: hidden;
  margin: 0 -40px 16px;
  padding: 0 8px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.exit-ticker-track {
  display: flex;
  gap: 6px;
  width: max-content;
  animation: exitTickerScroll 18s linear infinite;
}
.exit-ticker-coin {
  flex-shrink: 0;
  padding: 3px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
  font-family: var(--mono, monospace);
  letter-spacing: .5px;
  color: var(--coin, #5e6673);
  background: color-mix(in srgb, var(--coin, #5e6673) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--coin, #5e6673) 18%, transparent);
}
@keyframes exitTickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.exit-box p { font-size: 14px; color: var(--t2); margin-bottom: 24px; line-height: 1.6; }
.exit-box .btn-hero { justify-content: center; width: 100%; }
.exit-box .btn-hero span { width: 100%; text-align: center; }
.exit-sub { font-size: 11px; color: rgba(255,255,255,.35); margin-top: 12px; }

/* ══════════ STICKY MOBILE CTA BAR ══════════ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(0,0,0,.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(231,193,18,.1);
  padding: 12px 16px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transform: translateY(100%);
  transition: transform .3s;
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .sticky-text { font-size: 12px; color: rgba(255,255,255,.6); }
.sticky-cta .sticky-text b { color: #fff; }

/* ══════════ SCROLL REVEAL ANIMATIONS ══════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }


/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-c { grid-template-columns: 1fr; gap: 32px; }
  .hero-v { order: -1; }
  .trust-g { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr 1fr; }
  .pp-grid { grid-template-columns: 1fr; }
  .pr-grid { grid-template-columns: 1fr; }
  .v2-grid { grid-template-columns: 1fr; }
  .wd-grid { grid-template-columns: 1fr; }
  .sec { padding: 56px 20px; }
  .wtd, .scn { grid-template-columns: 1fr; }
  .ea-form { flex-direction: column; }
  .sticky-cta { display: flex; }
}

/* ── Mobile nav: slide-out panel ── */
@media (max-width: 768px) {
  nav { padding: 0 16px; }
  .ln-hamburger { display: flex; }

  /* Both sections share the same slide-out panel */
  .n-links,
  .n-actions {
    position: fixed;
    right: -280px;
    width: 260px;
    background: rgba(14,13,10,.98);
    backdrop-filter: blur(24px);
    border-left: 1px solid var(--brd);
    transition: right .3s ease;
    z-index: 101;
    box-shadow: -8px 0 32px rgba(0,0,0,.5);
  }

  /* Nav links: top section */
  .n-links {
    top: 60px;
    flex-direction: column;
    gap: 4px;
    margin: 0;
    padding: 20px;
    border-bottom: 1px solid var(--brd);
  }
  .n-links a {
    font-size: 14px;
    padding: 10px 12px;
    border-radius: 8px;
  }

  /* Actions: below nav links */
  .n-actions {
    top: calc(60px + var(--nav-links-h, 180px));
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    padding: 20px;
  }
  .n-actions::before { display: none; }
  .n-signin {
    text-align: center;
    padding: 10px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
  }
  .btn-p { width: 100%; text-align: center; }
  .btn-p-inner { text-align: center; }
  .lang-sel { order: 3; }

  /* Open state */
  nav.nav-open .n-links,
  nav.nav-open .n-actions { right: 0; }
}

@media (max-width: 520px) {
  nav { padding: 0 12px; }
  .n-logo span { font-size: 15px; }
  .hero { padding: 80px 16px 40px; }
  .steps, .trust-g { grid-template-columns: 1fr; }
  .hero-acts { flex-direction: column; align-items: stretch; }
  .tk { flex-wrap: wrap; }
  .tk-c { min-width: 45%; }
  .sticky-cta { display: flex; }
}


/* ══════════════════════════════════════════════════════
   LEGACY — Legal pages, Pricing page cards, loading states
   (Kept from previous landing.css for pricing.html & legal pages)
   ══════════════════════════════════════════════════════ */

/* ── Legal pages ──────────────────────────────────────── */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}
.legal-page h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}
.legal-page .legal-updated {
  color: #848e9c;
  font-size: 13px;
  margin-bottom: 40px;
}
.legal-page h2 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 12px;
  padding-top: 20px;
  border-top: 1px solid #2b3139;
}
.legal-page h2:first-of-type { border-top: none; padding-top: 0; }
.legal-page p, .legal-page ul {
  color: #c4c9d2;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.legal-page ul { padding-left: 24px; list-style-type: disc; }
.legal-page li { margin-bottom: 8px; }
.legal-page li strong { color: #eaecef; }

/* ── Pricing page — cards ─────────────────────────────── */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: 760px;
  margin: 0 auto;
}
.price-card {
  background: #161a1e;
  border: 1px solid #2b3139;
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}
.price-card.featured { border-color: #f0b90b; }
.price-card .badge {
  display: inline-block;
  background: rgba(240,185,11,.12);
  color: #f0b90b;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
  align-self: flex-start;
}
.price-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.price-card .card-price {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 4px;
  color: #f0b90b;
}
.price-card .card-period { color: #848e9c; font-size: 14px; margin-bottom: 24px; }
.price-card ul {
  list-style: none;
  flex: 1;
  margin-bottom: 28px;
}
.price-card ul li {
  padding: 6px 0;
  font-size: 14px;
  color: #c4c9d2;
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-card ul li::before {
  content: "\2713";
  color: #f0b90b;
  font-weight: 700;
  font-size: 13px;
}
.price-card .btn { width: 100%; }

.pricing-note {
  text-align: center;
  color: #848e9c;
  font-size: 13px;
  margin-top: 32px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ── Pricing loading / unavailable states ────────────── */
.pricing-loading {
  text-align: center;
  color: #848e9c;
  font-size: 15px;
  padding: 48px 20px;
}
.pricing-unavailable {
  text-align: center;
  color: #848e9c;
  font-size: 15px;
  padding: 48px 20px;
  background: #161a1e;
  border: 1px solid #2b3139;
  border-radius: 14px;
}
.pricing-unavailable a { color: #f0b90b; }
