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

:root {
  --bg: #030504;
  --bg-2: #060907;
  --surface: #0a0d0b;
  --surface-2: #0e120f;
  --surface-3: #121815;
  --surface-raised: #161c18;
  --glow: #00ff88;
  --primary: #3ddc97;
  --green-deep: #071a0e;
  --green-forest: #0a2a15;
  --green-dark: #0d3a1c;
  --green-mid: #125a2e;
  --green-emerald: #187a3d;
  --text: #e2e8e4;
  --text-dim: #8b9890;
  --text-muted: #5a6560;
  --border: rgba(0,255,136,0.06);
  --border-light: rgba(0,255,136,0.1);
  --font-heading: 'Sora', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Grain texture overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5, 13, 8, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0,255,136,0.08);
  transition: background 0.3s;
}
.nav-logo img {
  height: 28px;
  display: block;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-login {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-login:hover {
  color: var(--text);
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: linear-gradient(135deg, #00ff88, #3ddc97);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.4), 0 4px 16px rgba(0, 255, 136, 0.25);
}
.btn-primary:hover::before {
  opacity: 1;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: transparent;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(0,255,136,0.2);
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-ghost:hover {
  border-color: rgba(0,255,136,0.4);
  background: rgba(0,255,136,0.05);
  box-shadow: 0 0 20px rgba(0,255,136,0.08);
}

.nav-beta {
  flex: 1;
  display: flex;
  justify-content: center;
}
.beta-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border: 1px solid rgba(0,255,136,0.15);
  border-radius: 20px;
  background: rgba(0,255,136,0.06);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
}
.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  overflow: hidden;
  background:
    linear-gradient(180deg,
      #030504 0%,
      #030504 15%,
      #061a0e 28%,
      #0a2a15 35%,
      rgba(13,58,28,0.6) 40%,
      rgba(10,42,21,0.3) 45%,
      #050d08 55%,
      #030504 70%,
      #030504 100%),
    radial-gradient(ellipse 120% 15% at 50% 38%, rgba(0,255,136,0.12), transparent 70%),
    radial-gradient(ellipse 80% 8% at 60% 38%, rgba(0,255,136,0.08), transparent 60%);
}

/* Hero gradient orbs - positioned along the horizon band */
.hero-orb-1 {
  position: absolute;
  left: 30%;
  top: 28%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.08), transparent 70%);
  border-radius: 50%;
  filter: blur(100px);
  animation: orbPulse1 9s ease-in-out infinite;
  pointer-events: none;
}
.hero-orb-2 {
  position: absolute;
  right: 20%;
  top: 30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.06), transparent 70%);
  border-radius: 50%;
  filter: blur(90px);
  animation: orbPulse2 11s ease-in-out infinite;
  pointer-events: none;
}

/* Horizon line - thin glowing line across the hero */
.hero-horizon-line {
  position: absolute;
  top: 38%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(0,255,136,0.15) 30%, rgba(0,255,136,0.08) 70%, transparent 95%);
  z-index: 1;
  pointer-events: none;
}

@keyframes orbPulse1 {
  0%, 100% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.1) translate(-20px, 15px); }
}
@keyframes orbPulse2 {
  0%, 100% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.05) translate(15px, -10px); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 48px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 600px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInUp 0.6s 0.2s forwards;
}
.hero-eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--glow);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--glow), 0 0 20px rgba(0,255,136,0.3);
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--text);
  opacity: 0;
  animation: fadeInUp 0.6s 0.35s forwards;
}
.hero-headline .gradient-word {
  background: linear-gradient(135deg, var(--glow), var(--primary), #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dim);
  margin-bottom: 28px;
  max-width: 460px;
  opacity: 0;
  animation: fadeInUp 0.6s 0.5s forwards;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeInUp 0.6s 0.65s forwards;
}
.hero-ctas .btn-primary {
  padding: 12px 24px;
  font-size: 14px;
}
.hero-ctas .btn-ghost {
  padding: 12px 24px;
  font-size: 14px;
}

.hero-trust {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.6s 0.8s forwards;
}
.trust-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0,255,136,0.04);
  border: 1px solid rgba(0,255,136,0.1);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
}
.trust-pill .dot {
  width: 6px;
  height: 6px;
  background: var(--glow);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0, 255, 136, 0.6);
}

/* Hero right - video frame */
.hero-media {
  position: relative;
  opacity: 0;
  animation: fadeInScale 0.8s 0.4s forwards;
}

.hero-video-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0,255,136,0.03);
  border: 1px solid rgba(0,255,136,0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 0 80px rgba(0,255,136,0.15),
    0 0 160px rgba(0,255,136,0.05),
    0 40px 80px rgba(0,0,0,0.5),
    inset 0 0 0 1px rgba(0,255,136,0.08);
}
.hero-video-frame::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, rgba(0,255,136,0.35), rgba(0,255,136,0.1) 30%, transparent 60%, rgba(0,255,136,0.08));
  border-radius: 17px;
  z-index: -1;
}

.browser-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(0,0,0,0.5);
  border-bottom: 1px solid rgba(0,255,136,0.06);
}
.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.browser-dot.red { background: #ff5f57; }
.browser-dot.yellow { background: #febc2e; }
.browser-dot.green { background: #28c840; }
.browser-bar {
  flex: 1;
  height: 26px;
  background: rgba(0,255,136,0.04);
  border: 1px solid rgba(0,255,136,0.06);
  border-radius: 6px;
  margin-left: 12px;
  display: flex;
  align-items: center;
  padding: 0 12px;
}
.browser-bar span {
  font-size: 11px;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.hero-video-frame video {
  display: block;
  width: 100%;
  height: auto;
}

/* Floating green glow behind frame */
.hero-frame-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 125%;
  height: 125%;
  background: radial-gradient(ellipse at 50% 50%, rgba(0,255,136,0.12), transparent 55%);
  filter: blur(60px);
  z-index: -1;
  animation: orbPulse1 6s ease-in-out infinite;
}

/* Floating badge */
.floating-badge {
  position: absolute;
  bottom: -20px;
  left: -30px;
  padding: 12px 20px;
  background: rgba(7, 26, 14, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0,255,136,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(0,255,136,0.05);
  animation: floatBadge 4s ease-in-out infinite;
  z-index: 10;
}
.floating-badge .badge-icon {
  width: 36px;
  height: 36px;
  background: rgba(0, 255, 136, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,255,136,0.1);
}
.floating-badge .badge-icon svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
}
.floating-badge .badge-number {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}
.floating-badge .badge-label {
  font-size: 12px;
  color: var(--text-dim);
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* ========== SECTION DIVIDER ========== */
.section-divider {
  height: 1px;
  background: rgba(0,255,136,0.15);
  border: none;
  margin: 0;
}

/* ========== LEAGUE TICKER ========== */
.ticker-section {
  position: relative;
  padding: 40px 0;
  background: linear-gradient(180deg, rgba(0,255,136,0.02), rgba(0,255,136,0.04), rgba(0,255,136,0.02));
  border-top: 1px solid rgba(0,255,136,0.08);
  border-bottom: 1px solid rgba(0,255,136,0.08);
  overflow: hidden;
}
.ticker-label {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 28px;
  font-weight: 500;
}
.ticker-track-wrapper {
  position: relative;
}
.ticker-track-wrapper::before,
.ticker-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 10;
  pointer-events: none;
}
.ticker-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}
.ticker-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}
.ticker-track {
  display: flex;
  gap: 14px;
  animation: marquee 45s linear infinite;
  width: max-content;
}
.ticker-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(0,255,136,0.04);
  border: 1px solid rgba(0,255,136,0.1);
  border-radius: 10px;
  flex-shrink: 0;
  transition: all 0.3s;
}
.ticker-card:hover {
  background: rgba(0,255,136,0.08);
  box-shadow: 0 0 20px rgba(0,255,136,0.06);
}
.ticker-card img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.ticker-card span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
  white-space: nowrap;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========== SECTION SHARED ========== */
.section {
  padding: 120px 48px;
  position: relative;
}
.section-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.section-alt {
  background: var(--surface);
}
.section-alt-2 {
  background: var(--surface-2);
}

/* Section transition gradients */
.section-transition {
  height: 80px;
  background: linear-gradient(180deg, var(--bg), var(--surface));
  position: relative;
}
.section-transition::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,255,136,0.15), transparent);
}

/* Diagonal clip sections */
.clip-top {
  clip-path: polygon(0 0, 100% 40px, 100% 100%, 0 100%);
  margin-top: -40px;
  padding-top: 160px;
}
.clip-bottom {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 0 100%);
}

.section-label {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.section-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 560px;
}

/* ========== FEATURE ROWS ========== */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature-row.flipped .feature-copy {
  order: 2;
}
.feature-row.flipped .feature-media {
  order: 1;
}

.feature-copy .section-desc + .section-desc {
  margin-top: 16px;
}

.feature-media {
  position: relative;
}
.feature-media-inner {
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0,255,136,0.05);
  border: 1px solid rgba(0,255,136,0.15);
  box-shadow:
    0 0 30px rgba(0,255,136,0.20),
    0 0 60px rgba(0,255,136,0.03),
    0 20px 60px rgba(0,0,0,0.4);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s, border-color 0.4s;
}
.feature-media-inner:hover {
  transform: translateY(-4px);
  border-color: rgba(0,255,136,0.25);
  box-shadow:
    0 0 50px rgba(0,255,136,0.12),
    0 0 100px rgba(0,255,136,0.05),
    0 30px 80px rgba(0,0,0,0.5);
}
.feature-media-inner video,
.feature-media-inner img {
  display: block;
  width: 100%;
  height: auto;
}

/* Feature full width stacked */
.feature-stacked {
  text-align: center;
}
.feature-stacked .section-desc {
  margin-left: auto;
  margin-right: auto;
}
.feature-stacked .feature-media {
  margin-top: 48px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== MID CTA ========== */
.mid-cta {
  position: relative;
  padding: 120px 48px;
  overflow: hidden;
  clip-path: polygon(0 40px, 100% 0, 100% calc(100% - 40px), 0 100%);
  margin-top: -40px;
  margin-bottom: -40px;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0,255,136,0.1), transparent 70%),
    linear-gradient(180deg, #0d3a1c, #071a0e 40%, #060907 80%, #030504);
}
.mid-cta-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,255,136,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,136,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
}
.mid-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(0, 255, 136, 0.15), transparent 60%);
  filter: blur(80px);
  pointer-events: none;
}
.mid-cta-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.mid-cta-inner .section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 24px;
}
.mid-cta-inner .section-desc {
  max-width: 680px;
  margin: 0 auto 40px;
}
.btn-cta-pulse {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #00ff88, #3ddc97);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  animation: ctaPulse 3s ease-in-out infinite;
}
.btn-cta-pulse:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(0, 255, 136, 0.5), 0 8px 24px rgba(0, 255, 136, 0.3);
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 136, 0.2); }
  50% { box-shadow: 0 0 40px rgba(0, 255, 136, 0.35); }
}

/* ========== STATS STRIP ========== */
.stats-section {
  padding: 100px 48px;
  background: var(--bg);
  position: relative;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,255,136,0.15), transparent);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.stat-card {
  text-align: center;
  padding: 48px 32px;
  background: rgba(0,255,136,0.03);
  border: 1px solid rgba(0,255,136,0.08);
  border-radius: 16px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.3s;
}
.stat-card:hover {
  border-color: rgba(0, 255, 136, 0.25);
  box-shadow: 0 0 40px rgba(0, 255, 136, 0.08);
  transform: translateY(-4px);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  background: linear-gradient(135deg, #00ff88, var(--primary), #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}
.stat-label {
  font-size: 15px;
  color: var(--text-dim);
  font-weight: 500;
}

/* ========== HOW IT WORKS ========== */
.how-section {
  padding: 120px 48px;
  background: var(--surface);
  position: relative;
}
.how-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,255,136,0.12), transparent);
}
.how-header {
  text-align: center;
  margin-bottom: 80px;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.how-step {
  text-align: center;
  padding: 0 40px;
  position: relative;
}
/* Connecting lines */
.how-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 36px;
  right: -2px;
  width: calc(100% - 72px);
  height: 2px;
  background: linear-gradient(to right, var(--primary), rgba(0, 255, 136, 0.2));
  left: calc(50% + 36px);
}
.how-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(0, 255, 136, 0.08);
  border: 2px solid rgba(0, 255, 136, 0.25);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 30px rgba(0,255,136,0.06);
}
.how-step-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.how-step-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dim);
}

/* ========== BOTTOM CTA ========== */
.bottom-cta {
  position: relative;
  padding: 160px 48px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(0,255,136,0.08), transparent 60%),
    linear-gradient(180deg, var(--surface), #071a0e 40%, #060907 70%, var(--bg));
}
.bottom-cta-orb-1 {
  position: absolute;
  top: -20%;
  left: 20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.12), transparent 60%);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  animation: orbPulse2 8s ease-in-out infinite;
}
.bottom-cta-orb-2 {
  position: absolute;
  bottom: -30%;
  right: 15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.06), transparent 60%);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  animation: orbPulse1 10s ease-in-out infinite;
}
/* Decorative floating elements - all green */
.bottom-cta-deco-1 {
  position: absolute;
  top: 15%;
  left: 8%;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(0, 255, 136, 0.12);
  border-radius: 16px;
  transform: rotate(15deg);
  animation: floatDeco1 6s ease-in-out infinite;
  pointer-events: none;
}
.bottom-cta-deco-2 {
  position: absolute;
  bottom: 20%;
  right: 10%;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(0, 255, 136, 0.1);
  border-radius: 50%;
  animation: floatDeco2 8s ease-in-out infinite;
  pointer-events: none;
}
.bottom-cta-deco-3 {
  position: absolute;
  top: 30%;
  right: 6%;
  width: 40px;
  height: 40px;
  background: rgba(0, 255, 136, 0.05);
  border-radius: 8px;
  transform: rotate(-20deg);
  animation: floatDeco1 7s ease-in-out infinite;
  pointer-events: none;
}
@keyframes floatDeco1 {
  0%, 100% { transform: rotate(15deg) translateY(0); }
  50% { transform: rotate(15deg) translateY(-20px); }
}
@keyframes floatDeco2 {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-15px) scale(1.05); }
}

.bottom-cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.bottom-cta-inner .section-title {
  font-size: clamp(36px, 5vw, 60px);
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff, var(--glow), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bottom-cta-inner .section-desc {
  max-width: 540px;
  margin: 0 auto 40px;
  font-size: 18px;
}
.bottom-cta-inner .btn-cta-pulse {
  font-size: 17px;
  padding: 18px 42px;
}
.bottom-cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.bottom-cta-buttons .btn-ghost {
  padding: 18px 42px;
  font-size: 17px;
}

/* ========== FOOTER ========== */
.footer {
  padding: 40px 48px;
  border-top: 1px solid rgba(0,255,136,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  background: var(--bg);
}
.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--text-dim);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .nav { padding: 0 32px; }
  .hero { padding: 120px 32px 80px; }
  .hero-inner { gap: 48px; }
  .section { padding: 80px 32px; }
  .mid-cta { padding: 80px 32px; }
  .how-section { padding: 80px 32px; }
  .stats-section { padding: 80px 32px; }
  .bottom-cta { padding: 120px 32px; }
  .footer { padding: 40px 32px; }
}

@media (max-width: 900px) {
  .nav-beta { display: none; }
  .mobile-menu-btn { display: block; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-copy {
    max-width: none;
    text-align: center;
  }
  .hero-subtitle {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-trust {
    justify-content: center;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .feature-row.flipped .feature-copy {
    order: 1;
  }
  .feature-row.flipped .feature-media {
    order: 2;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .how-steps {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .how-step:not(:last-child)::after {
    display: none;
  }

  .floating-badge {
    left: auto;
    right: -10px;
    bottom: -15px;
  }
}

@media (max-width: 600px) {
  .nav { padding: 0 20px; height: 64px; }
  .nav-login { display: none; }
  .nav-right .btn-primary { padding: 8px 16px; font-size: 13px; }
  .hero { padding: 100px 20px 60px; }
  .section { padding: 64px 20px; }
  .mid-cta { padding: 64px 20px; }
  .how-section { padding: 64px 20px; }
  .stats-section { padding: 64px 20px; }
  .bottom-cta { padding: 80px 20px; }
  .footer { padding: 32px 20px; flex-direction: column; align-items: center; text-align: center; }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost {
    width: 100%;
    justify-content: center;
  }
  .trust-pill {
    font-size: 12px;
    padding: 6px 12px;
  }
  .stat-card {
    padding: 36px 24px;
  }
  .how-step {
    padding: 0 20px;
  }
  .clip-top {
    clip-path: polygon(0 0, 100% 20px, 100% 100%, 0 100%);
    margin-top: -20px;
    padding-top: 120px;
  }
  .mid-cta {
    clip-path: polygon(0 20px, 100% 0, 100% calc(100% - 20px), 0 100%);
    margin-top: -20px;
    margin-bottom: -20px;
  }
  .bottom-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .bottom-cta-buttons .btn-ghost,
  .bottom-cta-buttons .btn-cta-pulse {
    width: 100%;
    justify-content: center;
  }
}
