:root {
  --bg: #0a0f0d;
  --bg-center: #0f1614;
  --bg-edge: #0a0f0d;
  --panel: rgba(12, 14, 26, 0.85);
  --stroke: rgba(255, 255, 255, 0.08);
  --primary: #10b981;
  --primary-2: #22c55e;
  --accent: #14b8a6;
  --amber: #f59e0b;
  --text: #f5f7ff;
  --muted: rgba(255,255,255,0.68);
  --muted-2: rgba(255,255,255,0.5);
  --card: rgba(255, 255, 255, 0.06);
  --radius: 20px;
  --blur: 18px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  --grid: rgba(255,255,255,0.02);
}

* { box-sizing: border-box; }
html, body {
  overscroll-behavior: none;
}
body {
  margin: 0;
  font-family: 'Inter', 'Space Grotesk', system-ui, -apple-system, sans-serif;
  background: radial-gradient(140% 120% at 35% 25%, var(--bg-center) 0%, #0c1411 38%, var(--bg-edge) 70%, #070b0a 100%);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

a { color: inherit; }

.bg-glow {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(124, 118, 255, 0.2), transparent 32%),
    radial-gradient(circle at 80% 0%, rgba(16, 185, 129, 0.2), transparent 30%),
    linear-gradient(140deg, #05070c 0%, #0a0f1a 60%, #0d1224 100%);
  filter: blur(72px);
  z-index: 0;
  pointer-events: none;
}
.bg-grid {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(var(--grid) 1px, transparent 0);
  background-size: 22px 22px;
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
}
.bg-noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.35'/%3E%3C/svg%3E");
  opacity: 0.025;
  mix-blend-mode: soft-light;
  z-index: 0;
  pointer-events: none;
}

.topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 32px;
  height: 56px;
  background: transparent;
  backdrop-filter: none;
  border: none;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--primary), #22c55e 45%, #34d399);
  color: #031208;
  display: grid; place-items: center;
  font-weight: 800; font-size: 18px;
  box-shadow: 0 18px 38px rgba(16, 185, 129, 0.38), 0 0 20px rgba(16,185,129,0.3);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-weight: 800; letter-spacing: -0.01em; }
.logo-tagline { color: var(--muted); font-size: 12px; }

.nav { display: none; }
.nav-link {
  position: relative;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 6px;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { transform: scaleX(1); }

.actions { display: flex; gap: 12px; align-items: center; }
.btn {
  border: none;
  cursor: pointer;
  font-weight: 700;
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 14px;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-2px) scale(1.02); }
.btn:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #031207;
  box-shadow: 0 18px 45px rgba(16, 185, 129, 0.5);
}
.btn.primary:hover { box-shadow: 0 24px 60px rgba(16, 185, 129, 0.6); }
.btn.ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid var(--stroke);
}
.btn.ghost:hover { border-color: rgba(255,255,255,0.16); }
.btn.glass {
  background: rgba(255,255,255,0.08);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
}
.btn.tiny { padding: 8px 12px; border-radius: 10px; font-size: 12px; }
.btn.wide { width: 100%; justify-content: center; display: inline-flex; }
.btn.pill { border-radius: 999px; }

.page { position: relative; z-index: 1; padding: 32px; }

.hero {
  min-height: 90vh;
  padding: 80px 0 72px;
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  margin-top: 32px;
}
.hero-text h1 {
  font-size: 52px;
  line-height: 1.05;
  margin: 14px 0;
  letter-spacing: -0.02em;
}
.hero-text h1 .light { font-weight: 500; color: #cdeee0; }
.lead { color: rgba(255,255,255,0.78); font-size: 17px; line-height: 1.55; margin-bottom: 18px; }
.lead.two-line { line-height: 1.45; }
.cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 12px; }
.note-wrap { display: grid; gap: 4px; }
.note { color: var(--muted); font-size: 13px; margin: 0; }
.note.inline { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.note .dot { opacity: 0.6; }
.link-inline { color: var(--primary); text-decoration: none; border-bottom: 1px solid transparent; }
.link-inline:hover { border-bottom-color: var(--primary); }
.chrome { margin-right: 4px; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1a1a1a;
  color: #f7edd7;
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  background-image:
    linear-gradient(#1a1a1a, #0f0f0f),
    linear-gradient(135deg, #f59e0b, #d97706);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.18);
}
.pill.prestige { box-shadow: 0 14px 34px rgba(245, 158, 11, 0.26); }
.lock { font-size: 18px; color: #f59e0b; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
}
.blob {
  position: absolute;
  width: 420px; height: 420px;
  background: radial-gradient(circle at 30% 30%, rgba(16,185,129,0.16), transparent 45%),
              radial-gradient(circle at 70% 40%, rgba(20,184,166,0.14), transparent 40%);
  filter: blur(60px);
  animation: blob 18s ease-in-out infinite alternate;
  z-index: 0;
  opacity: 0.12;
}
.browser-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: linear-gradient(145deg, rgba(14, 18, 26, 0.92), rgba(9, 13, 18, 0.9));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  overflow: visible;
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 8px 12px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
}
.browser-dots { display: flex; gap: 6px; }
.browser-dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.browser-url { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.chart-ghost {
  position: relative;
  width: 100%;
  height: 240px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(10,14,18,0.96), rgba(8,12,15,0.96)),
    radial-gradient(circle at 30% 20%, rgba(16,185,129,0.12), transparent 35%),
    radial-gradient(circle at 70% 40%, rgba(20,184,166,0.1), transparent 32%);
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.06);
}
.chart-ghost::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(0deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.35;
}
.chart-ghost::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,185,129,0.16), transparent 70%);
  filter: blur(24px);
  opacity: 0.4;
  pointer-events: none;
}
.chart-ghost .candles {
  position: absolute;
  inset: 12px 14px 14px;
  border-radius: 12px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA2MDAgMjYwJyBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSdub25lJz48ZGVmcz48ZmlsdGVyIGlkPSdiJyB4PSctNScgeT0nLTUlJyB3aWR0aD0nMTEwJScgaGVpZ2h0PScxMTAlJz48ZmVHYXVzc2lhbkJsdXIgc3RkRGV2aWF0aW9uPScyJyAvPjwvZmlsdGVyPjwvZGVmcz48cmVjdCB3aWR0aD0nNjAwJyBoZWlnaHQ9JzI2MCcgZmlsbD0nbm9uZScvPjxnIGZpbHRlcj0ndXJsKCNiKScgb3BhY2l0eT0nMC45Jz48cGF0aCBkPSdNMTEgMTkwIEM4MSAxNDAgMTQxIDE3MCAyMDEgMTIwIEMyNDEgOTAgMzAxIDEzMCAzNTEgMTA1IEM0MDEgMTI1IDQ3MSA4MCA1NjEgMTIwJyBzdHJva2U9JyMxMGI5ODEnIHN0cm9rZS13aWR0aD0nNCcgc3Ryb2tlLWxpbmVjYXA9J3JvdW5kJyBzdHJva2UtbGluZWpvaW49J3JvdW5kJyBmaWxsPSdub25lJy8+PC9nPjxnIG9wYWNpdHk9JzAuNyc+PHJlY3QgeD0nNjAnIHk9JzE1MCcgd2lkdGg9JzEwJyBoZWlnaHQ9JzQ4JyByeD0nMycgZmlsbD0nIzEwYjk4MScvPjxyZWN0IHg9JzEyMCcgeT0nMTI1JyB3aWR0aD0nMTAnIGhlaWdodD0nNjAnIHJ4PSczJyBmaWxsPScjZjg3MTcxJy8+PHJlY3QgeD0nMTgwJyB5PScxMTAnIHdpZHRoPScxMCcgaGVpZ2h0PSc3MCcgcng9JzMnIGZpbGw9JyMxMGI5ODEnLz48cmVjdCB4PScyNDAnIHk9JzE0MCcgd2lkdGg9JzEwJyBoZWlnaHQ9JzU0JyByeD0nMycgZmlsbD0nIzIyYzU1ZScvPjxyZWN0IHg9JzMwMCcgeT0nMTE4JyB3aWR0aD0nMTAnIGhlaWdodD0nNjQnIHJ4PSczJyBmaWxsPScjMjJjNTVlJy8+PHJlY3QgeD0nMzYwJyB5PSc5MCcgd2lkdGg9JzEwJyBoZWlnaHQ9Jzg0JyByeD0nMycgZmlsbD0nIzEwYjk4MScvPjxyZWN0IHg9JzQzMCcgeT0nMTEwJyB3aWR0aD0nMTAnIGhlaWdodD0nNjgnIHJ4PSczJyBmaWxsPScjZjg3MTcxJy8+PHJlY3QgeD0nNTAwJyB5PSc4MCcgd2lkdGg9JzEwJyBoZWlnaHQ9Jzk2JyByeD0nMycgZmlsbD0nIzIyYzU1ZScvPjwvZz48L3N2Zz4=");
  background-size: cover;
  background-position: center;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.35));
  opacity: 0.92;
  pointer-events: none;
  mix-blend-mode: screen;
}
.live-card {
  position: absolute;
  top: -12px; right: -12px;
  width: 300px;
  background: rgba(12, 16, 24, 0.94);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 26px 70px rgba(0,0,0,0.55), 0 18px 40px rgba(16,185,129,0.2);
  backdrop-filter: blur(14px);
  z-index: 2;
  transform: translateY(0);
  animation: fadeUp 0.7s ease, glowPulse 3s ease-in-out infinite;
}
.live-card::after {
  content: '';
  position: absolute;
  left: -10px; right: -10px; bottom: -26px;
  height: 60px;
  background: var(--primary);
  filter: blur(30px);
  opacity: 0.1;
  z-index: -1;
}
.live-badge {
  position: absolute;
  top: 12px; right: 12px;
  font-size: 12px;
  color: #ff6b6b;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.live-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #ff6b6b;
  animation: blink 1.2s infinite;
}
.call-pill {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(16,185,129,0.2), rgba(16,185,129,0.12));
  border: 1px solid rgba(16,185,129,0.5);
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-top: 4px;
  animation: pulse 3s ease-in-out infinite;
}
.card-meta { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin: 12px 0; min-width: 0; }
.meta-label { color: var(--muted-2); font-size: 12px; }
.meta-value { font-size: 20px; font-weight: 800; }
.gauge { flex: 1; min-width: 0; }
.gauge-label { color: var(--muted-2); font-size: 12px; }
.gauge-row { display: flex; align-items: center; gap: 8px; margin-top: 6px; min-width: 0; }
.gauge-row .gauge-bar { margin: 0; }
.gauge-bar {
  position: relative;
  flex: 1; min-width: 0;
  height: 10px; border-radius: 999px;
  background: rgba(255,255,255,0.07); overflow: hidden;
}
.gauge-bar span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  border-radius: 999px;
}
.gauge-bar.ticks em {
  position: absolute;
  top: 0; width: 2px; height: 100%;
  background: rgba(255,255,255,0.25);
  transform: translateX(-1px);
}
.gauge-val { font-weight: 700; color: var(--text); flex-shrink: 0; white-space: nowrap; }
@media (max-width: 480px) {
  .gauge-val { display: none; }
}
.card-exp { font-size: 14px; color: #cbeee0; margin-bottom: 10px; }
.card-summary {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 10px;
  color: #e8f5ee;
  line-height: 1.5;
}
.card-factors {
  margin: 10px 0 0;
  padding-left: 18px;
  color: #e8f5ee;
  line-height: 1.45;
}

.section-head { margin-bottom: 20px; }
.section-head h2 { margin: 0; font-size: 38px; letter-spacing: -0.01em; }
.section-head p { color: var(--muted); margin-top: 6px; }
.subtitle { color: rgba(255,255,255,0.6); font-size: 18px; }
.subtitle .free { color: var(--primary); font-weight: 700; }
.grad { background: linear-gradient(90deg, var(--primary), var(--accent)); -webkit-background-clip: text; color: transparent; }
.divider-dots {
  width: 120px; height: 2px;
  background: radial-gradient(circle, rgba(16,185,129,0.8) 30%, transparent 30%) repeat-x;
  background-size: 12px 2px;
  margin-top: 12px;
}

.steps { padding: 96px 0 64px; }
.steps-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 12px;
}
.step-card {
  background: linear-gradient(145deg, rgba(0,255,136,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 18px 18px 24px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
}
.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16,185,129,0.4);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.step-card.small { transform: scale(0.97); }
.step-card.medium { transform: scale(1); border-color: rgba(16,185,129,0.35); box-shadow: 0 24px 60px rgba(16,185,129,0.2); padding: 26px; }
.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(16,185,129,0.5);
  display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 18px;
  margin-bottom: 10px;
  background: radial-gradient(circle, rgba(16,185,129,0.2), rgba(255,255,255,0.02));
  transition: background 0.2s ease, border-color 0.2s ease;
}
.step-card:hover .step-num { background: radial-gradient(circle, rgba(16,185,129,0.35), rgba(255,255,255,0.08)); border-color: rgba(16,185,129,0.8); }
.step-icon { font-size: 26px; margin-bottom: 6px; color: var(--text); }
.step-icon.svg svg {
  width: 24px; height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.step-card h3 { margin: 6px 0 6px; font-size: 18px; }
.step-card p { color: var(--muted); margin: 0 0 8px; }
.link { color: var(--primary); text-decoration: none; font-weight: 700; position: relative; }
.link::after {
  content: ''; position: absolute; left: 0; bottom: -3px; width: 100%; height: 1px;
  background: var(--primary); transform: scaleX(0); transform-origin: left; transition: transform 0.2s ease;
}
.link:hover::after { transform: scaleX(1); }
.downloads { display: flex; gap: 8px; flex-wrap: wrap; }
.downloads .btn { background: rgba(16,185,129,0.12); color: var(--primary); border: 1px solid rgba(16,185,129,0.35); }
.note.small { font-size: 12px; color: var(--muted-2); }
.step-actions { margin-top: auto; }
.tg-btn {
  border: 1px solid rgba(16,185,129,0.35);
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  background: rgba(255,255,255,0.04);
}
.tg-btn:hover {
  background: rgba(16,185,129,0.1);
  border-color: var(--primary);
}
.url-hint {
  color: var(--muted-2);
  font-size: 12px;
  margin-top: 6px;
  letter-spacing: 0.01em;
}
.url-mini {
  margin-top: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  font-size: 13px;
  color: #e8f5ee;
  width: fit-content;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
}
.url-mini:hover { background: rgba(16,185,129,0.08); border-color: rgba(16,185,129,0.4); }
.copy-ico { font-size: 14px; opacity: 0.8; cursor: pointer; }
.copy-toast {
  position: absolute;
  right: -6px; top: -18px;
  background: rgba(16,185,129,0.15);
  color: #dff6eb;
  border: 1px solid rgba(16,185,129,0.4);
  border-radius: 8px;
  padding: 4px 8px;
  font-size: 11px;
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.copy-toast.show { opacity: 1; transform: translateY(0); }
.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.download-btn:hover { transform: scale(1.02); box-shadow: 0 12px 30px rgba(16,185,129,0.35); }
.dl-ico { font-size: 14px; }
.info-hint { display: inline-flex; align-items: center; gap: 6px; }
.url-tip {
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}
.connector {
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.15) 0 10px, transparent 10px 16px);
  position: relative;
  opacity: 0.7;
  transition: opacity 0.6s ease;
}
.connector .arrow {
  position: absolute; right: -10px; top: -14px; color: var(--primary); font-size: 16px;
  text-shadow: 0 4px 12px rgba(16,185,129,0.5);
}
.steps-flow.active .connector { opacity: 1; }
.fade-step { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-step.visible { opacity: 1; transform: translateY(0); }

.analytics {
  padding: 96px 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.05));
}
.analytics-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}
.analysis-live { display: flex; flex-direction: column; gap: 12px; position: relative; padding-top: 12px; }
.browser-mock {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 12px;
  position: relative;
  overflow: hidden;
}
.browser-mock::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(var(--grid) 1px, transparent 0);
  background-size: 18px 18px;
  opacity: 0.4;
  pointer-events: none;
}
.browser-dots { display: flex; gap: 6px; margin-bottom: 10px; }
.browser-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.chart-ghost.large {
  height: 260px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(8,12,15,0.95), rgba(7,10,13,0.98)),
    radial-gradient(circle at 18% 20%, rgba(20,184,166,0.15), transparent 35%),
    radial-gradient(circle at 78% 30%, rgba(16,185,129,0.12), transparent 32%);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
.chart-ghost.large::before {
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.35;
}
.chart-ghost.large::after {
  background: linear-gradient(180deg, rgba(16,185,129,0.16), transparent 70%);
  filter: blur(28px);
  opacity: 0.45;
}
.chart-ghost.large .candles {
  position: absolute;
  inset: 14px 16px 16px;
  border-radius: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 260'%3E%3Cdefs%3E%3Cfilter id='g'%3E%3CfeGaussianBlur stdDeviation='2'/%3E%3C/filter%3E%3C/defs%3E%3Crect width='600' height='260' fill='none'/%3E%3Cg opacity='0.82'%3E%3Crect x='50' y='140' width='12' height='80' rx='3' fill='%2310b981'/%3E%3Crect x='110' y='120' width='12' height='96' rx='3' fill='%2322c55e'/%3E%3Crect x='170' y='110' width='12' height='104' rx='3' fill='%2310b981'/%3E%3Crect x='230' y='150' width='12' height='72' rx='3' fill='%23f87171'/%3E%3Crect x='290' y='130' width='12' height='92' rx='3' fill='%2310b981'/%3E%3Crect x='350' y='100' width='12' height='122' rx='3' fill='%2322c55e'/%3E%3Crect x='410' y='118' width='12' height='104' rx='3' fill='%2310b981'/%3E%3Crect x='470' y='90' width='12' height='132' rx='3' fill='%2322c55e'/%3E%3C/g%3E%3Cpath d='M20 200 C90 150 150 180 210 130 C250 95 320 140 370 115 C430 135 500 90 580 130' stroke='%2310b981' stroke-width='4' fill='none' stroke-linecap='round' stroke-linejoin='round' filter='url(%23g)' opacity='0.9'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  opacity: 0.9;
  mix-blend-mode: screen;
  pointer-events: none;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,0.35));
}
.analysis-card {
  background: rgba(12, 16, 24, 0.94);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 26px 70px rgba(0,0,0,0.5);
  max-width: 520px;
}
.analysis-top { display: flex; align-items: center; gap: 10px; }
.badge.call {
  background: linear-gradient(180deg, rgba(16,185,129,0.28), rgba(16,185,129,0.16));
  color: var(--primary);
  border: 1px solid rgba(16,185,129,0.45);
  padding: 7px 12px;
  border-radius: 12px;
  font-weight: 800;
}
.timeframe { color: #cbeee0; font-weight: 600; }
.live-dot { margin-left: auto; color: #ff6b6b; font-size: 12px; display: inline-flex; align-items: center; gap: 6px; }
.live-dot .blink {
  width: 8px; height: 8px; border-radius: 50%;
  background: #ff6b6b;
  animation: blink 1.2s infinite;
}
.analysis-main { display: flex; align-items: center; gap: 14px; margin: 12px 0; min-width: 0; }
.gauge-wrap { flex: 1; min-width: 0; }
.gauge-label { color: var(--muted-2); font-size: 12px; }
.gauge-wrap .gauge-row { display: flex; align-items: center; gap: 8px; margin-top: 6px; min-width: 0; }
.gauge-wrap .gauge-bar { flex: 1; min-width: 0; margin: 0; }
.gauge-bar {
  position: relative;
  width: 100%; height: 10px; border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden; margin: 6px 0;
}
.gauge-bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--primary), var(--primary-2)); border-radius: 999px; }
.gauge-bar.ticks em {
  position: absolute;
  top: 0; width: 2px; height: 100%;
  background: rgba(255,255,255,0.25);
  transform: translateX(-1px);
}
.gauge-bar.ten {
  height: 12px;
  background: rgba(255,255,255,0.08);
}
.gauge-bar.ten::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0 calc(10% - 1px), rgba(255,255,255,0.14) calc(10% - 1px) 10%);
  opacity: 0.5;
  pointer-events: none;
}
.gauge-bar.ten span {
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  border-radius: 999px;
  max-width: 100%;
}
.gauge-bar.ten span::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.35) 30%, transparent 60%);
  mix-blend-mode: screen;
  animation: shimmer 2.2s ease-in-out infinite;
}
.gauge-val { color: var(--text); font-weight: 700; }
.exp { color: #cbeee0; font-size: 14px; }
.analysis-summary {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 12px;
  color: #e8f5ee;
  line-height: 1.55;
}
.analysis-factors {
  margin: 12px 0 0;
  padding-left: 18px;
  color: #e8f5ee;
  line-height: 1.55;
}
.analysis-card.highlight-direction .badge.call { box-shadow: 0 0 0 2px rgba(16,185,129,0.4); }
.analysis-card.highlight-confidence .gauge-bar span { box-shadow: 0 0 0 2px rgba(16,185,129,0.35); }
.analysis-card.highlight-reasons .analysis-summary { box-shadow: 0 0 0 2px rgba(16,185,129,0.35); }
.analysis-card.highlight-limits .analysis-factors { box-shadow: 0 0 0 2px rgba(16,185,129,0.25); border-radius: 10px; padding: 10px 18px; background: rgba(16,185,129,0.05); }
.analysis-explain { display: grid; gap: 12px; }
.ex-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  background: rgba(255,255,255,0.02);
  border-left: 3px solid var(--primary);
  border-radius: 12px;
  padding: 12px;
}
.analysis-explain { gap: 24px; }
.ex-ico {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: transparent;
  display: grid; place-items: center;
  color: var(--primary);
  font-weight: 800;
  font-size: 18px;
}
.ex-item[data-highlight="direction"] .ex-ico {
  width: 40px; height: 40px;
  background: rgba(16,185,129,0.12);
  font-size: 20px;
  box-shadow: 0 8px 22px rgba(16,185,129,0.25);
}
.ex-title { font-weight: 700; }
.ex-desc { color: var(--muted); }
.trust {
  margin-top: 10px;
  color: #f0f7f3;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}
.trust .info { color: #fbbf24; font-size: 20px; }
#btn-view-full {
  position: absolute;
  top: -6px;
  right: 0;
  width: auto;
  padding: 12px 16px;
  box-shadow: 0 12px 28px rgba(16,185,129,0.35);
  border-radius: 12px;
}

.social-proof { padding: 96px 0 72px; }
.social-grid { display: grid; grid-template-columns: 1fr; gap: 20px; align-items: start; }
.metrics-row {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  align-items: stretch;
}
.metric {
  position: relative;
  padding: 14px 12px 12px;
  border-left: 4px solid var(--primary);
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}
.metric:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -8px; top: 12px; bottom: 12px;
  width: 1px;
  background: rgba(255,255,255,0.12);
}
.metric-num { font-size: 48px; font-weight: 800; color: var(--primary); line-height: 1; }
.metric-num::after {
  content: attr(data-suffix);
  font-size: 0.6em;
  margin-left: 2px;
}
.metric-label { color: var(--muted); font-size: 14px; }
.stat-note { margin-top: 10px; color: var(--muted-2); font-size: 13px; display: flex; gap: 6px; align-items: center; }
.info { color: var(--amber); }
.testimonials { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.t-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 16px 14px 14px 16px;
  font-size: 15px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.35);
  border-left: 4px solid var(--primary);
  position: relative;
  overflow: hidden;
}
.t-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,255,255,0.12);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0,0,0,0.35);
}
.avatar::after { display: none; }
.t-user { color: var(--primary); font-weight: 700; }
.t-meta { color: var(--muted); font-size: 12px; }
.t-quote {
  color: #e8f5ee;
  font-size: 16px;
  position: relative;
}
.t-quote::before {
  content: '“';
  position: absolute;
  left: -10px; top: -12px;
  font-size: 48px;
  color: rgba(255,255,255,0.12);
  pointer-events: none;
}

.limits { padding: 80px 0 96px; }
.limits-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 18px; align-items: start; }
.limit-left {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.4);
}
.limit-bar {
  position: relative;
  width: 100%; height: 8px; border-radius: 999px;
  background: rgba(255,255,255,0.06); overflow: hidden; margin-bottom: 10px;
}
.limit-bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--primary), var(--primary-2)); }
.limit-bar.segs em {
  position: absolute;
  top: 0; width: 1px; height: 100%;
  background: rgba(255,255,255,0.18);
}
.limit-text { color: #e8f5ee; margin-bottom: 8px; font-weight: 700; }
.limit-meta { color: var(--muted); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.clock { font-size: 20px; display: inline-block; transition: transform 0.3s ease; }
.clock:hover { transform: scale(1.08) rotate(8deg); }
.limit-lines { display: grid; gap: 4px; color: #e8f5ee; }
.limit-right { display: flex; justify-content: flex-start; }
.limit-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid #10b981;
  border-left: 4px solid #10b981;
  border-radius: 16px;
  padding: 20px;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 18px 44px rgba(16,185,129,0.3);
  transform: translateY(0);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.limit-card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(16,185,129,0.35); }
.limit-title { font-weight: 800; margin-bottom: 8px; }
.limit-benefits {
  margin: 10px 0 14px;
  padding: 0;
  color: #e8f5ee;
  line-height: 1.5;
  list-style: none;
  display: grid;
  gap: 6px;
}
.limit-benefits li {
  position: relative;
  padding-left: 18px;
}
.limit-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  color: var(--primary);
  font-weight: 800;
}
.limit-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 8px 0 6px;
  color: #e8f5ee;
}
.price-amount { font-size: 24px; font-weight: 800; color: var(--primary); }
.price-suffix { font-size: 14px; color: var(--muted); }

.faq { padding: 80px 0 96px; background: rgba(0,0,0,0.2); }
.faq-list { display: grid; gap: 16px; }
.faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  overflow: hidden;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.faq-item.popular { background: rgba(16,185,129,0.05); border-color: rgba(16,185,129,0.25); }
.faq-toggle {
  width: 100%;
  background: none;
  border: none;
  color: #e8f5ee;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 16px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 10px;
}
.faq-toggle:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.faq-item:hover { background: rgba(255,255,255,0.03); border-left: 3px solid var(--primary); }
.chevron {
  transition: transform 0.25s ease, color 0.2s ease, opacity 0.2s ease;
  color: rgba(255,255,255,0.7);
  font-size: 20px;
  display: inline-flex;
  align-items: center;
}
.faq-item:hover .chevron { opacity: 1; }
.faq-item.open .chevron { transform: rotate(180deg); color: var(--primary); }
.faq-label {
  background: rgba(16,185,129,0.12);
  color: var(--primary);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 700;
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 16px;
  color: var(--muted);
}
.faq-item.open .faq-body {
  max-height: 240px;
  padding: 0 16px 20px;
  border-left: 3px solid var(--primary);
  background: rgba(255,255,255,0.02);
}
.faq-cta { margin-top: 14px; color: var(--muted); }
.faq-cta a { color: var(--primary); text-decoration: none; }
.faq-cta .telegram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(16,185,129,0.35);
  padding: 10px 14px;
}
.tg-ico { font-size: 16px; }

/* override hero/analysis placeholders with darker abstract chart */
.chart-ghost .candles {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 260'%3E%3Cdefs%3E%3Cfilter id='g'%3E%3CfeGaussianBlur stdDeviation='2'/%3E%3C/filter%3E%3C/defs%3E%3Crect width='600' height='260' fill='none'/%3E%3Cg opacity='0.7'%3E%3Crect x='30' y='150' width='12' height='70' rx='3' fill='%2310b981'/%3E%3Crect x='70' y='120' width='12' height='110' rx='3' fill='%23059669'/%3E%3Crect x='110' y='130' width='12' height='90' rx='3' fill='%23ef4444'/%3E%3Crect x='150' y='100' width='12' height='130' rx='3' fill='%2310b981'/%3E%3Crect x='190' y='140' width='12' height='92' rx='3' fill='%2322c55e'/%3E%3Crect x='230' y='110' width='12' height='120' rx='3' fill='%23059669'/%3E%3Crect x='270' y='125' width='12' height='96' rx='3' fill='%23ef4444'/%3E%3Crect x='310' y='115' width='12' height='108' rx='3' fill='%2310b981'/%3E%3Crect x='350' y='95' width='12' height='140' rx='3' fill='%2322c55e'/%3E%3Crect x='390' y='135' width='12' height='96' rx='3' fill='%2310b981'/%3E%3Crect x='430' y='105' width='12' height='126' rx='3' fill='%23059669'/%3E%3Crect x='470' y='128' width='12' height='92' rx='3' fill='%23ef4444'/%3E%3Crect x='510' y='90' width='12' height='140' rx='3' fill='%2310b981'/%3E%3Crect x='550' y='118' width='12' height='104' rx='3' fill='%2322c55e'/%3E%3C/g%3E%3Cpath d='M10 200 C70 150 140 190 200 140 C250 105 310 150 370 120 C430 140 500 100 580 140' stroke='%2310b981' stroke-width='4' fill='none' stroke-linecap='round' stroke-linejoin='round' filter='url(%23g)' opacity='0.8'/%3E%3Cg stroke='%23ffffff' stroke-width='1' opacity='0.12'%3E%3Cpath d='M0 70 H600'/%3E%3Cpath d='M0 120 H600'/%3E%3Cpath d='M0 170 H600'/%3E%3Cpath d='M0 220 H600'/%3E%3C/g%3E%3C/svg%3E") !important;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,0.3));
  opacity: 0.7;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  z-index: 10;
}
.modal.show { display: flex; }
.modal-content {
  position: relative;
  width: min(520px, 90vw);
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
}
.modal-close {
  position: absolute;
  top: 12px; right: 12px;
  border: none; background: none; color: var(--muted);
  font-size: 22px; cursor: pointer;
}
.modal-actions { display: flex; gap: 10px; flex-wrap: wrap; margin: 12px 0; }
.download { background: rgba(255,255,255,0.04); border: 1px solid var(--stroke); border-radius: 14px; padding: 12px; }
.download.hidden { display: none; }
.download-title { font-weight: 700; margin-bottom: 8px; }
.download-steps { margin: 10px 0 0; padding-left: 18px; color: #dfe5ff; line-height: 1.5; }

.footer {
  position: relative;
  margin-top: 40px;
  padding: 64px 32px 48px;
  background: #0a0c0b;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  align-items: start;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #10b981 50%, transparent 100%);
  opacity: 0.9;
}
.footer a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
}
.footer a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
  opacity: 0.7;
}
.footer a:hover {
  color: #fff;
}
.footer a:hover::after { transform: scaleX(1); opacity: 1; }
.footer-col { display: flex; gap: 12px; }
.footer-col.links { gap: 18px; }
.footer-col.links .col { display: grid; gap: 10px; }
.footer-col.right {
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  justify-content: end;
  font-size: 14px;
  text-align: right;
}
.footer-col.right a { font-size: 14px; color: rgba(255,255,255,0.5); }
.footer-col.right a:hover { color: #fff; }
.footer-meta { color: rgba(255,255,255,0.55); font-size: 12px; display: inline-flex; align-items: center; gap: 6px; }
.logo-name { color: #fff; }
.logo-tagline { color: rgba(255,255,255,0.7); }
.chrome-ico { font-size: 14px; }
.footer [class*="metric"] { color: #fff; }
.footer .col a { font-weight: 600; }
.footer .footer-col.right span { opacity: 0.4; }
.footer-social { margin-top: 12px; display: flex; gap: 8px; }
.social-badge {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(16,185,129,0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.social-badge:hover {
  background: rgba(16,185,129,0.16);
  border-color: var(--primary);
  transform: translateY(-1px);
}
.tg-inline { margin-right: 6px; }

/* Animations */
@keyframes blob {
  from { transform: translateY(-10px) scale(1); }
  to { transform: translateY(10px) scale(1.05); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes blink {
  0% { opacity: 0.2; }
  50% { opacity: 1; }
  100% { opacity: 0.2; }
}
@keyframes pulse {
  0%,100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16,185,129,0.35); }
  50% { transform: scale(1.03); box-shadow: 0 12px 30px rgba(16,185,129,0.3); }
}
@keyframes glowPulse {
  0%,100% { box-shadow: 0 30px 80px rgba(16, 185, 129, 0.22); }
  50% { box-shadow: 0 36px 90px rgba(16, 185, 129, 0.32); }
}
@keyframes shimmer {
  0% { transform: translateX(-60%); }
  50% { transform: translateX(30%); }
  100% { transform: translateX(110%); }
}

/* Responsive */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding-top: 96px; }
  .steps-flow { grid-template-columns: 1fr; gap: 16px; }
  .connector { display: none; }
  .analysis-grid { grid-template-columns: 1fr; }
  .topbar { position: sticky; }
}
@media (max-width: 720px) {
  .page { padding: 20px; }
  .hero { padding: 72px 0 56px; gap: 32px; }
  .hero-text h1 { font-size: 40px; }
  .nav { display: none; }
  .steps, .analytics, .faq, .social-proof, .limits { padding: 56px 0; }
  .footer { padding: 20px; }
}

