:root {
  --bg: #05050A;
  --fg: #E8E8F0;
  --fg-dim: #8888A0;
  --accent: #00E5C3;
  --accent-dim: rgba(0,229,195,0.12);
  --accent-glow: rgba(0,229,195,0.2);
  --surface: #0C0C16;
  --surface-2: #121220;
  --border: rgba(255,255,255,0.07);
  --border-accent: rgba(0,229,195,0.3);
  --text-muted: #6B6B82;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Outfit', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.1;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0 40px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle at center,
    rgba(0,229,195,0.06) 0%,
    rgba(0,229,195,0.02) 40%,
    transparent 70%
  );
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 80%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: fit-content;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-headline {
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #FFFFFF;
}

.hero-headline .accent {
  color: var(--accent);
}

.hero-sub {
  font-size: 17px;
  color: var(--fg-dim);
  max-width: 440px;
  line-height: 1.7;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cloak-visual {
  position: relative;
  height: 340px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%,
    rgba(0,229,195,0.04) 0%,
    transparent 60%
  );
}

.person-figure {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  filter: drop-shadow(0 0 30px rgba(0,229,195,0.15));
}

.figure-head {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  background: rgba(0,229,195,0.05);
  box-shadow: 0 0 20px rgba(0,229,195,0.3), inset 0 0 10px rgba(0,229,195,0.1);
}

.figure-body {
  width: 2px;
  height: 80px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  margin-top: -2px;
}

.particles {
  position: absolute;
  inset: 0;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px rgba(0,229,195,0.8);
  animation: float-up 4s ease-in-out infinite;
  opacity: 0;
}

.p1  { left: 38%; top: 55%; animation-delay: 0s;    animation-duration: 3.5s; }
.p2  { left: 42%; top: 58%; animation-delay: 0.3s;  animation-duration: 4s;   }
.p3  { left: 45%; top: 52%; animation-delay: 0.6s;  animation-duration: 3s;   }
.p4  { left: 40%; top: 60%; animation-delay: 1s;    animation-duration: 4.5s; }
.p5  { left: 50%; top: 56%; animation-delay: 0.2s;  animation-duration: 3.8s; }
.p6  { left: 54%; top: 53%; animation-delay: 0.8s;  animation-duration: 3.2s; }
.p7  { left: 48%; top: 59%; animation-delay: 1.2s;  animation-duration: 4.2s; }
.p8  { left: 52%; top: 57%; animation-delay: 0.5s;  animation-duration: 3.6s; }
.p9  { left: 44%; top: 54%; animation-delay: 0.9s;  animation-duration: 4s;   }
.p10 { left: 46%; top: 61%; animation-delay: 1.4s; animation-duration: 3.4s; }
.p11 { left: 56%; top: 55%; animation-delay: 0.4s;  animation-duration: 4.3s; }
.p12 { left: 41%; top: 57%; animation-delay: 1.1s;  animation-duration: 3.7s; }

@keyframes float-up {
  0%   { opacity: 0; transform: translateY(0px) scale(1); }
  20%  { opacity: 0.9; }
  80%  { opacity: 0.5; }
  100% { opacity: 0; transform: translateY(-60px) scale(0.5); }
}

.crosshair {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ch-line {
  position: absolute;
  background: rgba(0,229,195,0.1);
}

.ch-line:nth-child(1) {
  left: 50%;
  top: 30%;
  width: 1px;
  height: calc(70% - 30%);
  transform: translateX(-50%);
}

.ch-line:nth-child(2) {
  top: 50%;
  left: 30%;
  height: 1px;
  width: calc(40% - 30%);
  transform: translateY(-50%);
}

/* Broker tags */
.broker-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.broker-tag {
  padding: 5px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 12px;
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  transition: all 0.2s;
}

.broker-tag:hover {
  border-color: var(--border-accent);
  color: var(--accent);
}

/* Ticker */
.hero-ticker {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 48px auto 0;
  padding: 0 48px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.ticker-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ticker-numbers {
  display: flex;
  align-items: baseline;
  gap: 0;
}

.ticker-num {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
}

.ticker-suffix {
  font-size: 14px;
  color: var(--fg-dim);
  margin-left: 4px;
}

/* ===== STATS BAR ===== */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 36px 0;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 0;
}

.stat-item {
  flex: 1;
  text-align: center;
}

.stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* ===== SECTION SHARED ===== */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--fg-dim);
  max-width: 600px;
  line-height: 1.7;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 100px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(33.33% - 12px);
  right: calc(33.33% - 12px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-accent), var(--border-accent), transparent);
}

.step-card {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.step-card:hover {
  border-color: var(--border-accent);
  box-shadow: 0 0 40px rgba(0,229,195,0.05);
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.step-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 12px;
  color: var(--accent);
  margin-bottom: 20px;
}

.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.step-desc {
  font-size: 14px;
  color: var(--fg-dim);
  line-height: 1.7;
}

/* ===== FEATURES ===== */
.features {
  padding: 100px 0;
  background: var(--surface);
}

.features-top {
  margin-bottom: 56px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 48px;
}

.feature-card {
  padding: 36px;
  background: var(--bg);
}

.feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 10px;
  color: var(--accent);
  margin-bottom: 20px;
}

.feature-title {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 14px;
  color: var(--fg-dim);
  line-height: 1.7;
}

.vs-section {
  margin-top: 40px;
}

.vs-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.vs-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.vs-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--fg-dim);
}

.vs-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vs-old {
  color: #FF4D6D;
  background: rgba(255,77,109,0.1);
}

.vs-cloak {
  color: var(--accent);
  background: var(--accent-dim);
}

/* ===== PRICING ===== */
.pricing {
  padding: 100px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.pricing-card {
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  position: relative;
}

.pricing-card-featured {
  border-color: var(--border-accent);
  background: linear-gradient(180deg, rgba(0,229,195,0.04) 0%, var(--surface) 60%);
}

.plan-badge {
  position: absolute;
  top: -1px;
  right: 32px;
  padding: 5px 14px;
  background: var(--accent);
  color: #05050A;
  font-size: 11px;
  font-weight: 700;
  border-radius: 0 0 8px 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.plan-name {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}

.price-amount {
  font-family: 'Syne', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: #FFFFFF;
}

.price-period {
  font-size: 16px;
  color: var(--text-muted);
}

.plan-desc {
  font-size: 14px;
  color: var(--fg-dim);
  margin-bottom: 28px;
  line-height: 1.6;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--fg);
}

.plan-features li svg {
  color: var(--accent);
  flex-shrink: 0;
}

.plan-note {
  font-size: 12px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.pricing-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  font-size: 13px;
  color: var(--fg-dim);
}

.pricing-guarantee svg {
  color: var(--accent);
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 120px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.manifesto-quote {
  border-left: 2px solid var(--accent);
  padding-left: 32px;
  margin-bottom: 64px;
}

.quote-text {
  font-family: 'Syne', sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  color: #FFFFFF;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 20px;
}

.quote-text:last-child {
  margin-bottom: 0;
  color: var(--fg-dim);
  font-weight: 400;
  font-style: italic;
}

.manifesto-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.2;
}

.manifesto-sub {
  font-size: 15px;
  color: var(--fg-dim);
  max-width: 560px;
  line-height: 1.8;
}

/* ===== FOOTER ===== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.footer-brand {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo-mark {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.footer-logo-name {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #FFFFFF;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 240px;
}

.footer-links {
  display: flex;
  gap: 48px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 4px;
}

.footer-link {
  font-size: 13px;
  color: var(--fg-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.footer-legal {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-badges {
  display: flex;
  gap: 12px;
}

.badge-item {
  padding: 4px 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    order: -1;
  }

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

  .steps-grid::before {
    display: none;
  }

  .vs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-inner,
  .section-inner,
  .stats-inner,
  .hero-ticker,
  .footer-inner {
    padding: 0 24px;
  }

  .hero {
    padding: 60px 0 32px;
  }

  .stats-inner {
    flex-direction: column;
    gap: 24px;
  }

  .stat-divider {
    width: 80px;
    height: 1px;
  }

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

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

  .footer-brand {
    flex-direction: column;
    gap: 32px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .vs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ticker-num {
    font-size: 22px;
  }
}