@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --bg:         #0a0f0d;
  --bg2:        #0d1410;
  --bg3:        #111a15;
  --surface:    #172118;
  --surface2:   #1c2b1f;
  --border:     #243328;
  --border2:    #2e4035;
  --accent:     #2dff8f;
  --accent2:    #1adb72;
  --accent3:    #0fb85a;
  --accent-dim: rgba(45,255,143,0.10);
  --accent-glow:rgba(45,255,143,0.20);
  --text:       #e8f5ee;
  --text2:      #8aaa96;
  --text3:      #4a6655;
  --red:        #ff4d6d;
  --red-dim:    rgba(255,77,109,0.10);
  --yellow:     #ffd166;
  --yellow-dim: rgba(255,209,102,0.10);
  --blue:       #2dff8f;
  --blue-dim:   rgba(45, 255, 143, 0.10);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NOISE ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ── GRID BG ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 0%, transparent 70%);
}

/* ── GLOW ORBS ── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(45,255,143,0.12) 0%, transparent 70%);
  top: -200px; left: 50%;
  transform: translateX(-50%);
  animation: orb-drift 8s ease-in-out infinite;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(45,255,143,0.07) 0%, transparent 70%);
  top: 60vh; left: -100px;
  animation: orb-drift 10s ease-in-out infinite reverse;
}
.orb-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(77,166,255,0.06) 0%, transparent 70%);
  top: 40vh; right: -80px;
  animation: orb-drift 12s ease-in-out infinite;
}
@keyframes orb-drift {
  0%, 100% { transform: translateY(0) translateX(-50%); }
  50% { transform: translateY(30px) translateX(-50%); }
}
.orb-2 { animation: orb-drift2 10s ease-in-out infinite; }
.orb-3 { animation: orb-drift3 12s ease-in-out infinite; }
@keyframes orb-drift2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
@keyframes orb-drift3 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(25px); }
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 48px;
  height: 64px;
  background: rgba(10, 15, 13, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(45,255,143,0.08);
  transition: background 0.3s;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-mark {
  width: 34px; height: 34px;
  background: var(--accent);
  border-radius: 9px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.logo-mark::after {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  background: var(--bg);
  border-radius: 50%;
  top: 7px; left: 7px;
}
.logo-mark::before {
  content: '';
  position: absolute;
  width: 9px; height: 9px;
  background: var(--accent);
  border-radius: 50%;
  top: 12px; left: 12px;
  z-index: 1;
}
.logo-wordmark {
  font-family: 'Space Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.logo-wordmark span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 40px;
}
.nav-link {
  padding: 7px 14px;
  border-radius: 8px;
  color: var(--text2);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s;
}
.nav-link:hover { background: var(--surface); color: var(--text); }

.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  position: relative;
  z-index: 1;
}
.btn-primary {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 0 24px rgba(45,255,143,0.25);
}
.btn-primary:hover {
  background: var(--accent2);
  box-shadow: 0 0 36px rgba(45,255,143,0.4);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--text2);
  border: 1px solid var(--border2);
}
.btn-ghost:hover {
  background: var(--surface);
  color: var(--text);
  border-color: var(--accent-glow);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(45,255,143,0.3);
}
.btn-outline:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(45,255,143,0.15);
}
.btn-lg { padding: 14px 28px; font-size: 15px; border-radius: 12px; }
.btn-sm { padding: 7px 14px; font-size: 13px; border-radius: 8px; }

/* ── SECTIONS ── */
section { position: relative; z-index: 1; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 100px;
  padding: 6px 14px 6px 8px;
  font-size: 12px;
  font-family: 'Space Mono', monospace;
  color: var(--text2);
  margin-bottom: 32px;
  animation: badge-glow 3s ease-in-out infinite;
}
.hero-badge-dot {
  width: 20px; height: 20px;
  background: var(--accent-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-badge-dot::after {
  content: '';
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}
@keyframes badge-glow {
  0%, 100% { box-shadow: none; }
  50% { box-shadow: 0 0 20px rgba(45,255,143,0.1); }
}

.hero-title {
  font-family: 'Space Mono', monospace;
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 24px;
  max-width: 800px;
}
.hero-title .line-accent {
  color: var(--accent);
  position: relative;
  display: inline-block;
}
.hero-title .line-accent::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 2px;
}

.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text2);
  max-width: 540px;
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 20px 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-stat-item { text-align: center; }
.hero-stat-value {
  font-family: 'Space Mono', monospace;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  display: block;
}
.hero-stat-label {
  font-size: 12px;
  color: var(--text3);
  font-family: 'Space Mono', monospace;
  letter-spacing: 0.06em;
}
.hero-stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border2);
}

/* ── SCROLL INDICATOR ── */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text3);
  font-size: 11px;
  font-family: 'Space Mono', monospace;
  letter-spacing: 0.1em;
  animation: scroll-bounce 2s ease-in-out infinite;
}
.scroll-hint svg { opacity: 0.5; }
@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── FEATURES ── */
.features {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
  background: var(--accent-dim);
  border: 1px solid rgba(45,255,143,0.2);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Space Mono', monospace;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.15;
}
.section-sub {
  font-size: 16px;
  color: var(--text2);
  max-width: 500px;
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.25s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover {
  border-color: var(--border2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(45,255,143,0.05);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 44px; height: 44px;
  background: var(--accent-dim);
  border: 1px solid rgba(45,255,143,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 20px;
  margin-bottom: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}
.feature-icon svg {
  width: 20px;
  height: 20px;
  overflow: visible;
}
.feature-icon.tone-blue {
  background: var(--blue-dim);
  border-color: rgba(45, 255, 143, 0.18);
  color: var(--blue);
}
.feature-icon.tone-yellow {
  background: var(--yellow-dim);
  border-color: rgba(255,209,102,0.18);
  color: var(--yellow);
}
.feature-icon.tone-red {
  background: var(--red-dim);
  border-color: rgba(255,77,109,0.18);
  color: var(--red);
}
.feature-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  font-family: 'Space Mono', monospace;
  letter-spacing: -0.02em;
}
.feature-desc {
  font-size: 13.5px;
  color: var(--text2);
  line-height: 1.65;
}
.feature-tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 10px;
  font-family: 'Space Mono', monospace;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.08em;
}

/* ── HOW IT WORKS ── */
.how {
  padding: 100px 24px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(45,255,143,0.2));
}
.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}
.step-num {
  width: 48px; height: 48px;
  background: var(--bg3);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 16px;
  color: var(--accent);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(45,255,143,0.2);
}
.step-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  font-family: 'Space Mono', monospace;
}
.step-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
}

/* ── PRICING ── */
.pricing {
  padding: 100px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.pricing-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  transition: all 0.3s;
}
.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(45,255,143,0.35);
  box-shadow: 0 0 40px rgba(45,255,143,0.12), 0 8px 32px rgba(0,0,0,0.3);
}
.pricing-card.featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, var(--surface2), var(--bg3));
  box-shadow: 0 0 60px rgba(45,255,143,0.12);
}
.pricing-card.featured:hover {
  box-shadow: 0 0 80px rgba(45,255,143,0.22), 0 8px 40px rgba(45,255,143,0.1);
  border-color: var(--accent);
}

/* ── FEATURE DETAIL LINK ── */
.feature-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 14px;
  margin-bottom: 2px;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, gap 0.2s;
  cursor: pointer;
}
.feature-detail-link:hover {
  border-bottom-color: var(--accent);
  gap: 10px;
}
.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.plan-name {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--text3);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.plan-price {
  font-family: 'Space Mono', monospace;
  font-size: 42px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}
.plan-price sup {
  font-size: 20px;
  vertical-align: super;
  color: var(--text2);
}
.plan-price span {
  font-size: 16px;
  color: var(--text3);
  font-weight: 400;
  letter-spacing: 0;
}
.plan-desc {
  font-size: 13px;
  color: var(--text3);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text2);
}
.plan-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.plan-features li.dim { color: var(--text3); }
.plan-features li.dim::before { content: '×'; color: var(--text3); }

/* ── PAYMENT METHODS ── */
.payments {
  padding: 80px 24px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.payments-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.payment-methods {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.payment-pill {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text2);
  transition: all 0.2s;
}
.payment-pill:hover {
  border-color: var(--accent);
  color: var(--text);
  background: var(--surface2);
  box-shadow: 0 0 20px rgba(45,255,143,0.08);
}
.payment-pill .pill-icon { font-size: 20px; }

/* ── CTA ── */
.cta {
  padding: 120px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(45,255,143,0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-title {
  font-family: 'Space Mono', monospace;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-sub {
  color: var(--text2);
  font-size: 16px;
  margin-bottom: 36px;
}

/* ── FOOTER ── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 48px 48px 32px;
  position: relative;
  z-index: 1;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.footer-brand { max-width: 260px; }
.footer-tagline {
  font-size: 13px;
  color: var(--text3);
  margin-top: 10px;
  line-height: 1.6;
}
.footer-links-group { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text3);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.footer-col a {
  color: var(--text2);
  text-decoration: none;
  font-size: 13.5px;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text3);
  font-family: 'Space Mono', monospace;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-status {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
}
.footer-status::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.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; }
.reveal-delay-5 { transition-delay: 0.5s; }

.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .features-grid, .pricing-grid { grid-template-columns: 1fr; }
  .social-proof-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: repeat(2, 1fr); }
  .how-steps::before { display: none; }
  .hero-stats { gap: 24px; }
  .hero-stat-sep { display: none; }
  footer { padding: 40px 20px 24px; }
  .footer-top { flex-direction: column; }
}
