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

:root {
  --bg:        #0f1117;
  --bg2:       #13161f;
  --bg3:       #1a1e29;
  --surface:   #1e2230;
  --border:    rgba(255,255,255,0.07);
  --green:     #39FF14;
  --green-dim: rgba(57,255,20,0.1);
  --green-glow:rgba(57,255,20,0.3);
  --lime:      #c8ff00;
  --white:     #f0f2f5;
  --muted:     #6b7280;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Subtle dot grid texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 1;
}

.pitch-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.04;
}
.pitch-deco svg { width: 100%; height: 100%; }

/* ─── TYPOGRAPHY ─────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  line-height: 1.0;
}

/* ─── LAYOUT ─────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
section { position: relative; }

/* ─── NAV ────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.4s, border-bottom 0.4s;
}
nav.scrolled {
  background: rgba(15,17,23,0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
nav .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.08em;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-logo em { color: var(--green); font-style: normal; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--green) !important;
  color: #080d08 !important;
  padding: 8px 18px;
  border-radius: 4px;
  font-weight: 600 !important;
  letter-spacing: 0.04em;
  transition: box-shadow 0.2s, background 0.2s !important;
}
.nav-cta:hover {
  background: #55ff30 !important;
  box-shadow: 0 0 18px var(--green-glow) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all 0.3s;
}

/* ─── BUTTONS ────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #080d08;
  font-family: var(--font-body); font-size: 15px;
  font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; padding: 14px 32px;
  border-radius: 4px; border: none; cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}
.btn-primary:hover {
  background: #55ff30;
  box-shadow: 0 0 28px var(--green-glow), 0 8px 24px rgba(0,0,0,0.35);
  transform: translateY(-1px);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  font-family: var(--font-body); font-size: 15px;
  font-weight: 500; padding: 13px 28px;
  border-radius: 4px; border: 1px solid var(--border);
  cursor: pointer; text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
}

/* ─── BADGE / LABEL ──────────────────────── */
.live-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(57,255,20,0.08);
  border: 1px solid rgba(57,255,20,0.18);
  color: var(--green);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
}
.live-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green); border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.section-label {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green); margin-bottom: 16px;
  font-family: var(--font-body);
}

/* ─── SCROLL REVEAL ──────────────────────── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s 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; }

/* Hero above-the-fold: visible by default, animation is progressive enhancement */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-item {
  animation: heroFadeUp 0.65s ease none;
}
.hero-item-d1 { animation-delay: 0.05s; }
.hero-item-d2 { animation-delay: 0.18s; }
.hero-item-d3 { animation-delay: 0.30s; }
.hero-item-d4 { animation-delay: 0.44s; }
.hero-item-d5 { animation-delay: 0.58s; }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-glow {
  position: absolute; top: -15%; right: -8%;
  width: 720px; height: 720px; border-radius: 50%;
  background: radial-gradient(circle, rgba(57,255,20,0.07) 0%, transparent 68%);
}
.hero-glow-2 {
  position: absolute; bottom: -15%; left: -5%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,255,0,0.04) 0%, transparent 70%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px; align-items: center;
  position: relative; z-index: 2;
}

h1.hero-title {
  font-size: clamp(68px, 8.5vw, 120px);
  line-height: 0.93; margin-bottom: 28px;
}
h1.hero-title .accent { color: var(--green); }

.hero-sub {
  font-size: 18px; color: rgba(240,242,245,0.6);
  max-width: 480px; margin-bottom: 16px;
  font-weight: 300; line-height: 1.7;
}

/* Launch timeline pill */
.launch-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(240,242,245,0.45);
  margin-bottom: 36px; font-weight: 400;
}
.launch-pill strong { color: var(--lime); font-weight: 600; }
.launch-pill::before {
  content: '';
  display: inline-block; width: 12px; height: 1px;
  background: rgba(200,255,0,0.4);
}

/* ─── WAITLIST FORM (hero) ───────────────── */
.hero-form {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-input {
  flex: 1; min-width: 220px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 4px; padding: 14px 18px;
  color: var(--white); font-family: var(--font-body);
  font-size: 15px; outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.hero-input::placeholder { color: var(--muted); }
.hero-input:focus {
  border-color: rgba(57,255,20,0.35);
  background: rgba(255,255,255,0.07);
}
.hero-form .btn-primary { flex-shrink: 0; white-space: nowrap; }

.form-note {
  font-size: 12px; color: rgba(107,114,128,0.7);
  letter-spacing: 0.03em;
}
.form-note strong { color: rgba(200,255,0,0.6); font-weight: 500; }
.form-note a { color: var(--lime); text-decoration: underline; }
.form-note a:hover { color: var(--white); }

/* ─── PHONE MOCKUP ───────────────────────── */
.phone-wrap {
  position: relative; display: flex;
  justify-content: center; align-items: center;
}
.phone-glow-ring {
  position: absolute; width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57,255,20,0.1) 0%, transparent 70%);
  animation: float-ring 6s ease-in-out infinite;
}
@keyframes float-ring {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.05) translateY(-8px); }
}
.phone {
  width: 280px; height: 598px;
  background: #151921;
  border-radius: 38px;
  border: 1.5px solid rgba(57,255,20,0.4);
  box-shadow: 0 0 50px rgba(57,255,20,0.1), 0 40px 80px rgba(0,0,0,0.65), inset 0 1px 0 rgba(255,255,255,0.05);
  position: relative; overflow: hidden;
  animation: float-phone 6s ease-in-out infinite;
}
@keyframes float-phone {
  0%,100% { transform: rotate(-2deg) translateY(0); }
  50% { transform: rotate(-2deg) translateY(-14px); }
}
.phone::before {
  content: '';
  position: absolute; top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 72px; height: 5px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
}

/* Phone screen with screenshot */
.phone-screen {
  position: absolute; inset: 0;
  padding: 0;
  display: block;
  overflow: hidden;
  border-radius: 36px;
}
.phone-screen img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 36px;
}

/* Floating labels */
.phone-tag {
  position: absolute;
  background: rgba(13,16,24,0.92);
  border: 1px solid rgba(57,255,20,0.25);
  border-radius: 8px; padding: 8px 11px;
  font-size: 10px; white-space: nowrap;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.45);
}
.phone-tag strong { display: block; font-family: var(--font-display); font-size: 15px; color: var(--green); line-height: 1; }
.phone-tag span { color: var(--muted); font-size: 8px; letter-spacing: 0.06em; text-transform: uppercase; }
.tag1 { right: -18px; top: 90px; animation: t1 5s ease-in-out infinite; }
.tag2 { left: -28px; bottom: 110px; animation: t2 5s ease-in-out infinite 1s; }
@keyframes t1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }
@keyframes t2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(7px)} }

/* ══════════════════════════════════════════
   PROBLEM / SOLUTION
══════════════════════════════════════════ */
#problem {
  padding: 120px 0;
  background: var(--bg2);
}
.problem-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; margin-top: 56px;
  border-radius: 12px; overflow: hidden;
}
.prob-col { padding: 52px 44px; position: relative; }
.prob-left { background: var(--surface); }
.prob-right {
  background: rgba(57,255,20,0.03);
  border: 1px solid rgba(57,255,20,0.07);
}
.prob-eyebrow {
  font-size: 10px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 18px; display: flex; align-items: center; gap: 8px;
}
.prob-eyebrow::before { content:''; display:inline-block; width:14px; height:1px; background:currentColor; }
.prob-right .prob-eyebrow { color: var(--green); }
.prob-col h3 { font-size: clamp(30px,3.5vw,44px); margin-bottom: 22px; line-height: 1.0; }
.prob-list { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.prob-list li {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: 14px; color: rgba(240,242,245,0.65); line-height: 1.55;
}
.prob-icon {
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
  margin-top: 2px; display: flex; align-items: center;
  justify-content: center; font-size: 9px;
}
.prob-left .prob-icon { background: rgba(255,60,60,0.1); color: #ff6060; border: 1px solid rgba(255,60,60,0.18); }
.prob-right .prob-icon { background: var(--green-dim); color: var(--green); border: 1px solid rgba(57,255,20,0.18); }

/* ══════════════════════════════════════════
   FEATURES
══════════════════════════════════════════ */
#features { padding: 120px 0; }

.features-header { max-width: 520px; margin-bottom: 68px; }
.features-header h2 { font-size: clamp(48px,6vw,78px); margin-bottom: 14px; line-height: 0.95; }
.features-header p { color: rgba(240,242,245,0.5); font-size: 17px; font-weight: 300; }

.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }

.feature-card {
  background: var(--bg2); border: 1px solid var(--border);
  padding: 36px 32px; border-radius: 8px;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.25s, background 0.3s;
  cursor: default;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.feature-card:hover { border-color: rgba(57,255,20,0.13); background: var(--bg3); transform: translateY(-3px); }
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 44px; height: 44px; background: var(--green-dim);
  border: 1px solid rgba(57,255,20,0.14); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
}
.feature-icon svg { width: 20px; height: 20px; stroke: var(--green); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.feature-card h4 { font-size: 20px; letter-spacing: 0.04em; margin-bottom: 9px; color: var(--white); line-height: 1.1; }
.feature-card p { font-size: 13.5px; color: rgba(240,242,245,0.48); line-height: 1.65; }
.feature-tag { display: inline-block; margin-top: 14px; font-size: 9.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); opacity: 0.65; }

/* ══════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════ */
#how { padding: 120px 0; background: var(--bg2); }
.how-header { text-align: center; margin-bottom: 80px; }
.how-header h2 { font-size: clamp(44px,5.5vw,76px); }

.steps-row {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 0; position: relative;
}
.steps-row::before {
  content: ''; position: absolute; top: 44px;
  left: calc(16.67% + 20px); right: calc(16.67% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--green), rgba(57,255,20,0.2) 50%, var(--green));
  opacity: 0.25;
}
.step { text-align: center; padding: 0 28px; }
.step-num {
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--bg); border: 1px solid rgba(57,255,20,0.18);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px; font-family: var(--font-display);
  font-size: 34px; color: var(--green); position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.step:hover .step-num { border-color: var(--green); box-shadow: 0 0 28px var(--green-glow); }
.step-num::after {
  content: ''; position: absolute; inset: -6px;
  border-radius: 50%; border: 1px dashed rgba(57,255,20,0.1);
}
.step h3 { font-size: 26px; margin-bottom: 11px; color: var(--white); letter-spacing: 0.04em; }
.step p { font-size: 13.5px; color: rgba(240,242,245,0.48); line-height: 1.7; max-width: 240px; margin: 0 auto; }

/* ══════════════════════════════════════════
   BETA TESTERS / SOCIAL PROOF
══════════════════════════════════════════ */
#proof { padding: 120px 0; }
.proof-header { text-align: center; margin-bottom: 60px; }
.proof-header h2 { font-size: clamp(40px,5vw,64px); }
.proof-sub {
  margin-top: 12px; font-size: 15px;
  color: rgba(240,242,245,0.4); font-weight: 300;
}

.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }

.testimonial-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 12px; padding: 32px 28px; position: relative;
  transition: border-color 0.3s, transform 0.25s;
}
.testimonial-card:hover { border-color: rgba(57,255,20,0.1); transform: translateY(-3px); }
.testimonial-card::before {
  content: '"'; position: absolute; top: 16px; right: 24px;
  font-family: var(--font-display); font-size: 72px;
  color: rgba(57,255,20,0.06); line-height: 1;
}

.beta-tag {
  display: inline-block; margin-bottom: 14px;
  background: rgba(57,255,20,0.07); border: 1px solid rgba(57,255,20,0.14);
  color: var(--green); font-size: 9px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 4px;
}

.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.star { width: 11px; height: 11px; background: var(--green); clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); }

.testimonial-text { font-size: 14px; color: rgba(240,242,245,0.7); line-height: 1.7; margin-bottom: 24px; font-style: italic; font-weight: 300; }

.testimonial-author { display: flex; align-items: center; gap: 11px; }
.author-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 15px; color: var(--green); flex-shrink: 0;
}
.author-name { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.author-role { font-size: 11px; color: var(--muted); }

.beta-disclaimer {
  margin-top: 40px; text-align: center;
  font-size: 12px; color: rgba(107,114,128,0.55);
  font-style: italic; letter-spacing: 0.02em;
}

/* ══════════════════════════════════════════
   EARLY-BIRD PRICING
══════════════════════════════════════════ */
#pricing {
  padding: 120px 0;
  background: var(--bg2);
}
.pricing-header { text-align: center; margin-bottom: 60px; }
.pricing-header h2 { font-size: clamp(44px,5.5vw,76px); }
.pricing-header p { color: var(--muted); margin-top: 10px; font-size: 15px; }

.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 14px; max-width: 1140px; margin: 0 auto;
}

.price-card {
  border-radius: 12px; padding: 44px 40px;
  position: relative; overflow: hidden;
  transition: transform 0.25s;
}
.price-card:hover { transform: translateY(-4px); }
.price-free { background: var(--bg3); border: 1px solid var(--border); }
.price-pro {
  background: linear-gradient(135deg, rgba(57,255,20,0.05), rgba(57,255,20,0.02));
  border: 1px solid rgba(57,255,20,0.22);
}
.price-pro::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, var(--green), var(--lime));
}
.price-yearly {
  background: linear-gradient(135deg, rgba(57,255,20,0.09), rgba(57,255,20,0.03));
  border: 1px solid var(--lime);
}
.price-yearly::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, var(--lime), var(--green));
}
.price-badge.badge-best {
  background: rgba(57,255,20,0.14); border-color: var(--lime); color: var(--lime);
}

.price-badge {
  display: inline-block; margin-bottom: 18px;
  background: var(--green-dim); border: 1px solid rgba(57,255,20,0.18);
  color: var(--green); font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px;
}
.price-plan { font-family: var(--font-display); font-size: 26px; letter-spacing: 0.06em; color: var(--white); margin-bottom: 6px; }
.price-amount { font-family: var(--font-display); font-size: 60px; line-height: 1; color: var(--white); margin-bottom: 4px; }
.price-amount sup { font-size: 22px; vertical-align: top; margin-top: 10px; display: inline-block; color: var(--muted); font-family: var(--font-body); font-weight: 300; }
.price-amount.free-style { font-size: 44px; color: var(--muted); }
.price-period { font-size: 11px; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 8px; }

.price-original {
  font-size: 12px; color: rgba(107,114,128,0.5);
  margin-bottom: 24px; text-decoration: line-through;
  letter-spacing: 0.03em;
}
.price-saving {
  font-size: 12px; color: var(--lime); font-weight: 600;
  letter-spacing: 0.04em; margin-bottom: 28px;
}

.price-features { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 32px; }
.price-features li { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: rgba(240,242,245,0.68); }
.check-icon {
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--green-dim); border: 1px solid rgba(57,255,20,0.18);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--green); font-size: 8px;
}
.check-icon.off { background: rgba(255,255,255,0.03); border-color: var(--border); color: var(--muted); }

.price-launch-note {
  text-align: center; margin-top: 28px;
  font-size: 12px; color: rgba(107,114,128,0.5);
}
.price-launch-note strong { color: var(--lime); }

/* ══════════════════════════════════════════
   CTA / WAITLIST SECTION
══════════════════════════════════════════ */
#cta {
  padding: 140px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(57,255,20,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.cta-pitch {
  position: absolute; inset: 0; opacity: 0.025; overflow: hidden;
}
#cta h2 {
  font-size: clamp(52px,7.5vw,108px); line-height: 0.93;
  margin-bottom: 20px; position: relative; z-index: 1;
}
#cta h2 .accent { color: var(--green); }
#cta .cta-sub {
  font-size: 18px; color: rgba(240,242,245,0.45);
  margin-bottom: 44px; font-weight: 300;
  position: relative; z-index: 1;
}

.cta-form-wrap { position: relative; z-index: 1; }
.cta-form {
  display: flex; gap: 8px; max-width: 520px;
  margin: 0 auto 16px; flex-wrap: wrap; justify-content: center;
}
.cta-form input {
  flex: 1; min-width: 240px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border); border-radius: 4px;
  padding: 15px 20px; color: var(--white);
  font-family: var(--font-body); font-size: 15px;
  outline: none; transition: border-color 0.2s, background 0.2s;
}
.cta-form input::placeholder { color: var(--muted); }
.cta-form input:focus {
  border-color: rgba(57,255,20,0.35);
  background: rgba(255,255,255,0.08);
}
.cta-form .btn-primary { padding: 15px 28px; }

.cta-micro {
  font-size: 12px; color: rgba(107,114,128,0.6);
  position: relative; z-index: 1; letter-spacing: 0.03em;
}
.cta-micro strong { color: rgba(200,255,0,0.55); font-weight: 500; }
.cta-micro a { color: var(--lime); text-decoration: underline; }
.cta-micro a:hover { color: var(--white); }

.launch-bar {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 40px; padding: 10px 20px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 100px; font-size: 13px; color: rgba(240,242,245,0.4);
  position: relative; z-index: 1;
}
.launch-bar strong { color: var(--lime); font-weight: 600; }
.launch-bar::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--lime); opacity: 0.7;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  padding: 60px 0 36px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-display); font-size: 22px;
  letter-spacing: 0.08em; color: var(--white);
  text-decoration: none; display: inline-flex;
  margin-bottom: 14px;
}
.footer-logo em { color: var(--green); font-style: normal; }
.footer-desc { font-size: 13px; color: var(--muted); line-height: 1.7; max-width: 230px; }

.footer-col h5 {
  font-family: var(--font-body); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.25); margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex; align-items: center;
  border-top: 1px solid var(--border); padding-top: 28px;
  font-size: 12px; color: rgba(107,114,128,0.5);
}
.footer-bottom a { color: rgba(107,114,128,0.5); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--muted); }
.footer-social { display: flex; gap: 18px; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .phone-wrap { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .steps-row { grid-template-columns: 1fr; gap: 36px; }
  .steps-row::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 1080px) and (min-width: 901px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; max-width: 760px; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .hero-form { flex-direction: column; }
  .hero-input { min-width: unset; }
  .prob-col { padding: 32px 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* Mobile nav open state */
@media (max-width: 900px) {
  #navLinks.open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(15,17,23,0.97);
    backdrop-filter: blur(18px);
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    z-index: 99;
  }
}

/* Form success state */
.form-success {
  display: none;
  align-items: center; justify-content: center; gap: 10px;
  background: var(--green-dim); border: 1px solid rgba(57,255,20,0.2);
  border-radius: 8px; padding: 14px 24px;
  font-size: 15px; color: var(--green); font-weight: 500;
  max-width: 480px; margin: 0 auto;
}
.form-success.show { display: flex; }

/* ══════════════════════════════════════════
   LEGAL PAGES
══════════════════════════════════════════ */
.legal-content { max-width: 760px; }
.legal-updated { color: var(--muted); font-size: 13px; margin-bottom: 36px; }
.legal-content h2 {
  font-size: 24px; letter-spacing: 0.04em; color: var(--white);
  margin: 40px 0 14px;
}
.legal-content p { color: rgba(240,242,245,0.72); font-size: 15px; line-height: 1.7; margin-bottom: 14px; }
.legal-content ul { list-style: none; margin-bottom: 14px; }
.legal-content ul li {
  position: relative; padding-left: 22px; margin-bottom: 9px;
  color: rgba(240,242,245,0.72); font-size: 15px; line-height: 1.6;
}
.legal-content ul li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--green);
}
.legal-content a { color: var(--green); text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }
.legal-content .legal-note { color: var(--muted); font-size: 13px; margin-top: 32px; }
