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

:root {
  --bg: #0A0A0F;
  --surface: #111318;
  --surface2: #1A1D25;
  --accent: #B5FF2E;
  --accent-dim: rgba(181, 255, 46, 0.12);
  --text: #EDEDED;
  --muted: #6B7280;
  --border: rgba(255,255,255,0.07);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Figtree', sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav { padding: 20px 0; border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; }
.nav-logo { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; color: var(--accent); letter-spacing: -0.02em; }
.nav-tagline { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.05em; text-transform: uppercase; }

/* HERO */
.hero { padding: 80px 0 60px; }
.hero-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.hero-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); font-weight: 600; margin-bottom: 20px; }
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-sub { font-size: 1.15rem; color: #9CA3AF; max-width: 520px; line-height: 1.7; margin-bottom: 40px; }

.hero-terminal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  max-width: 560px;
}
.terminal-bar { background: var(--surface2); padding: 10px 16px; display: flex; align-items: center; gap: 6px; border-bottom: 1px solid var(--border); }
.dot { width: 10px; height: 10px; border-radius: 50%; background: var(--muted); display: inline-block; }
.dot:first-child { background: #FF5F57; }
.dot:nth-child(2) { background: #FEBC2E; }
.dot:nth-child(3) { background: #28C840; }
.terminal-title { font-size: 0.75rem; color: var(--muted); margin-left: 8px; font-family: 'SF Mono', monospace; }
.terminal-body { padding: 18px 20px; }
.terminal-line { font-family: 'SF Mono', 'Fira Code', monospace; font-size: 0.85rem; line-height: 1.8; }
.terminal-line .prompt { color: var(--accent); margin-right: 10px; }
.terminal-line.muted { color: var(--muted); }

/* STATS */
.stats { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 40px 0; background: var(--surface); }
.stats-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; display: flex; gap: 0; align-items: center; }
.stat { flex: 1; padding: 0 40px; }
.stat:first-child { padding-left: 0; }
.stat:last-child { padding-right: 0; }
.stat-value { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; color: var(--accent); letter-spacing: -0.03em; }
.stat-label { font-size: 0.82rem; color: var(--muted); margin-top: 4px; line-height: 1.4; }
.stat-divider { width: 1px; height: 50px; background: var(--border); flex-shrink: 0; }

/* FEATURES */
.features { padding: 80px 0; }
.features-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.features-header { text-align: center; margin-bottom: 56px; }
.section-tag { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent); font-weight: 600; margin-bottom: 14px; }
.features-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 16px; }
.features-sub { font-size: 1rem; color: #9CA3AF; max-width: 480px; margin: 0 auto; }

.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.feature-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 28px; transition: border-color 0.2s, transform 0.2s; }
.feature-card:hover { border-color: rgba(181, 255, 46, 0.3); transform: translateY(-2px); }
.feature-card--glow { background: linear-gradient(160deg, var(--surface2) 0%, var(--surface) 60%); }
.feature-icon-wrap {
  width: 44px; height: 44px; background: var(--accent-dim);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; color: var(--accent);
}
.feature-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.feature-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

/* HOW */
.how { padding: 80px 0; background: var(--surface); }
.how-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.how-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 48px; }
.steps { display: flex; flex-direction: column; gap: 0; }
.step { display: flex; gap: 32px; align-items: flex-start; padding: 28px 0; border-bottom: 1px solid var(--border); }
.step:last-child { border-bottom: none; }
.step-num { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--accent); opacity: 0.5; flex-shrink: 0; width: 56px; }
.step-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.step-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.6; max-width: 600px; }

/* ROLES */
.roles { padding: 80px 0; }
.roles-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.roles-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 16px; }
.roles-sub { font-size: 0.95rem; color: #9CA3AF; line-height: 1.7; }
.roles-right { display: flex; flex-direction: column; gap: 12px; }
.role-card { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 20px 24px; display: flex; align-items: center; gap: 16px; }
.role-emoji { width: 36px; height: 36px; background: var(--accent-dim); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.role-name { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; margin-bottom: 2px; }
.role-desc { font-size: 0.82rem; color: var(--muted); }

/* CLOSING */
.closing { padding: 100px 0; background: var(--surface); position: relative; overflow: hidden; }
.closing-glow {
  position: absolute; bottom: -80px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px; pointer-events: none;
  background: radial-gradient(ellipse, rgba(181,255,46,0.06) 0%, transparent 70%);
}
.closing-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; text-align: center; }
.closing-title { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 20px; }
.closing-sub { font-size: 1.05rem; color: #9CA3AF; margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto; }
.closing-statement { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--accent); line-height: 1.6; margin-bottom: 24px; }
.closing-note { font-size: 0.78rem; color: #4B5563; margin-top: 24px; }

/* FOOTER */
.footer { border-top: 1px solid var(--border); padding: 32px 0; }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-logo { font-family: var(--font-display); font-weight: 800; font-size: 1rem; color: var(--accent); }
.footer-tagline { font-size: 0.8rem; color: var(--muted); }
.footer-copy { font-size: 0.75rem; color: #3F3F46; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 48px 0 40px; }
  .hero-headline { font-size: 3rem; }
  .stats-inner { flex-direction: column; gap: 24px; }
  .stat-divider { display: none; }
  .stat { padding: 0; text-align: center; }
  .feature-grid { grid-template-columns: 1fr; }
  .roles-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .closing-statement { font-size: 0.95rem; }
  .pricing-grid { grid-template-columns: 1fr; }
}

/* HERO ATMOSPHERE */
.hero { position: relative; overflow: hidden; }
.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(181,255,46,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(181,255,46,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 40%, transparent 100%);
}
.hero-glow {
  position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px; pointer-events: none;
  background: radial-gradient(ellipse, rgba(181,255,46,0.08) 0%, transparent 70%);
}

/* HERO HEADLINE ACCENT */
.hero-headline-accent { color: var(--accent); }

/* HERO BADGE */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(181, 255, 46, 0.25);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
}

/* HERO ACTIONS */
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 36px;
}

/* HERO TRUST */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.trust-label { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.trust-pill { font-size: 0.78rem; color: #9CA3AF; background: var(--surface); border: 1px solid var(--border); border-radius: 100px; padding: 4px 12px; }

/* TERMINAL CURSOR */
.cursor { display: inline-block; background: var(--accent); width: 8px; height: 16px; animation: blink 1.2s step-end infinite; vertical-align: middle; margin-left: 2px; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--accent);
  color: #000;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 20px rgba(181, 255, 46, 0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(181, 255, 46, 0.35); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: transparent;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.3); color: #fff; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 24px;
  background: transparent;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: var(--accent);
  color: #000;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  transition: transform 0.15s;
}
.btn-nav-cta:hover { transform: translateY(-1px); }

.nav-link {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--text); }

/* HOW CTA */
.how-cta { margin-top: 40px; }

/* ROLES — role-card now uses flex with div wrapper */
.role-card { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 18px 20px; display: flex; align-items: center; gap: 16px; transition: border-color 0.2s; }
.role-card:hover { border-color: rgba(181, 255, 46, 0.25); }
.role-emoji { width: 40px; height: 40px; background: var(--accent-dim); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.role-name { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; margin-bottom: 3px; }
.role-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }
.role-card > div { flex: 1; }

/* PRICING */
.pricing { padding: 100px 0; }
.pricing-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.pricing-header { text-align: center; margin-bottom: 56px; }
.pricing-title { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 16px; }
.pricing-sub { font-size: 1rem; color: #9CA3AF; max-width: 480px; margin: 0 auto; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  position: relative;
  transition: border-color 0.2s;
  display: flex;
  flex-direction: column;
}
.price-card:hover { border-color: rgba(255,255,255,0.15); }
.price-card--featured { border-color: rgba(181, 255, 46, 0.3); background: linear-gradient(180deg, rgba(181, 255, 46, 0.06) 0%, var(--surface) 100%); }
.price-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #000; font-size: 0.72rem; font-weight: 700; padding: 4px 12px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.05em; white-space: nowrap; }
.price-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); font-weight: 600; margin-bottom: 12px; }
.price-amount { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: var(--text); letter-spacing: -0.03em; margin-bottom: 4px; }
.price-period { font-size: 1.2rem; font-weight: 600; color: var(--muted); }
.price-tagline { font-size: 0.88rem; color: #9CA3AF; margin-bottom: 28px; line-height: 1.5; }
.price-features { list-style: none; margin-bottom: 28px; flex: 1; }
.price-features li { font-size: 0.88rem; color: #D1D5DB; padding: 6px 0; border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; gap: 10px; }
.price-features li::before { content: '→'; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.price-card .btn-outline { margin-top: auto; }
.price-card .btn-primary { margin-top: auto; }
.pricing-note { text-align: center; margin-top: 40px; display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 0.88rem; color: var(--muted); }
.pricing-note strong { color: var(--text); }

/* CLOSING ACTIONS */
.closing-actions { display: flex; gap: 16px; align-items: center; justify-content: center; margin-bottom: 48px; }
.btn-large { padding: 14px 32px; font-size: 1rem; }
.btn-ghost-large { padding: 14px 32px; font-size: 1rem; }

/* FOOTER LINKS */
.footer-left { flex-shrink: 0; }
.footer-links { display: flex; gap: 24px; }
.footer-link { font-size: 0.82rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-link:hover { color: var(--text); }

/* STEP CONTENT */
.step-content { flex: 1; }

/* HOW SECTION MOBILE */
@media (max-width: 768px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .closing-actions { flex-direction: column; align-items: center; }
  .hero-trust { gap: 8px; }
  .hero-trust .trust-pill { font-size: 0.72rem; }
}