/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #030712;
  --surface: #0a0f1e;
  --surface2: #111827;
  --border: #1a2540;
  --green: #00ff8c;
  --green-dim: rgba(0, 255, 140, 0.12);
  --orange: #ff6b2c;
  --orange-dim: rgba(255, 107, 44, 0.12);
  --text: #f0f4ff;
  --text-dim: #6b7a99;
  --text-muted: #3d4f6b;
  --font-display: 'Syne', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-display);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--green); color: var(--bg); }

/* === NAVBAR === */
.navbar {
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(12px);
}
.navbar-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 0 24px;
  height: 56px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none;
}
.logo-mark {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 600;
  color: var(--green);
}
.logo-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.nav-status {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
}
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.5;} }

/* === HERO === */
.hero {
  min-height: calc(100vh - 56px);
  display: flex; flex-direction: column;
  padding: 80px 24px 60px;
}
.hero-inner {
  max-width: 1100px; margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  flex: 1;
}
.hero-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 24px;
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid var(--green-dim);
  border-radius: 2px;
}
.hero-headline {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 440px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex; align-items: center; gap: 24px;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-value {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.stat-sep {
  width: 1px; height: 32px;
  background: var(--border);
}

/* === TERMINAL === */
.terminal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0, 255, 140, 0.04), 0 20px 60px rgba(0,0,0,0.4);
}
.terminal-header {
  background: var(--surface2);
  padding: 10px 16px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--border);
}
.terminal-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.terminal-dot.red { background: #ff5f57; }
.terminal-dot.yellow { background: #febc2e; }
.terminal-dot.green { background: #28c840; }
.terminal-title {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  margin-left: 8px;
}
.terminal-body {
  padding: 16px 20px;
  display: flex; flex-direction: column; gap: 4px;
}
.t-line {
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.8;
  display: flex; gap: 8px;
}
.t-ts { color: var(--text-muted); min-width: 70px; }
.t-ok { color: var(--green); }
.t-warn { color: var(--orange); }
.t-mono { color: var(--text); }
.t-price { color: var(--text-dim); }
.t-skip { color: var(--text-muted); margin: 2px 0; }
.t-dim { color: var(--text-muted); }

/* === HERO SCROLL HINT === */
.hero-scroll-hint {
  max-width: 1100px; margin: 0 auto; width: 100%;
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

/* === SECTION TAGS === */
.section-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-block;
  margin-bottom: 16px;
}

/* === HOW IT WORKS === */
.how { padding: 100px 24px; }
.how-inner { max-width: 1100px; margin: 0 auto; }
.how-header {
  margin-bottom: 64px;
}
.how-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 500px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step { padding: 32px; border: 1px solid var(--border); border-radius: 8px; background: var(--surface); }
.step-num {
  font-family: var(--font-mono);
  font-size: 40px;
  font-weight: 600;
  color: var(--green-dim);
  margin-bottom: 20px;
  line-height: 1;
}
.step h3 {
  font-size: 18px; font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.step p { font-size: 14px; color: var(--text-dim); line-height: 1.7; }

/* === PRICING === */
.pricing { padding: 100px 24px; background: var(--surface); }
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing-header { text-align: center; margin-bottom: 60px; }
.pricing-header h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.pricing-note { font-size: 15px; color: var(--text-dim); }
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.tier {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  position: relative;
}
.tier-featured {
  border-color: var(--green);
  background: var(--green-dim);
}
.tier-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bg);
  background: var(--green);
  padding: 3px 12px; border-radius: 2px;
  font-weight: 600;
  white-space: nowrap;
}
.tier-name {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  display: block; margin-bottom: 12px;
}
.tier-price { margin-bottom: 12px; }
.tier .price {
  font-size: 40px; font-weight: 700;
  letter-spacing: -0.03em;
}
.tier .per { font-size: 16px; color: var(--text-dim); }
.tier-desc { font-size: 14px; color: var(--text-dim); margin-bottom: 24px; }
.tier-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.tier-features li {
  font-size: 14px; color: var(--text);
  padding-left: 20px; position: relative;
}
.tier-features li::before {
  content: '›'; position: absolute; left: 0;
  color: var(--green);
  font-size: 16px;
}
.tier-cta {
  display: block;
  width: 100%;
  margin-top: 28px;
  padding: 12px 20px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--green);
  border: 1px solid var(--green);
  border-radius: 4px;
  background: transparent;
  transition: background 0.15s, color 0.15s;
}
.tier-cta:hover {
  background: var(--green);
  color: var(--bg);
}
.tier-cta-featured {
  color: var(--bg);
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 24px rgba(0, 255, 140, 0.3);
}
.tier-cta-featured:hover {
  background: #00e67a;
  border-color: #00e67a;
  box-shadow: 0 0 32px rgba(0, 255, 140, 0.45);
}
.founding-note {
  text-align: center;
  font-size: 15px;
  color: var(--text-dim);
}
.founding-note strong { color: var(--green); }

/* === PHILOSOPHY === */
.philosophy { padding: 100px 24px; }
.philosophy-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.philosophy-mark {
  font-family: var(--font-mono);
  font-size: 48px;
  color: var(--green);
  margin-bottom: 40px;
  display: block;
}
.philosophy-quote {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 40px;
}
.philosophy-body {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* === CLOSING === */
.closing { padding: 100px 24px; border-top: 1px solid var(--border); }
.closing-inner { max-width: 1100px; margin: 0 auto; }
.closing-headline {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 500px;
  margin-bottom: 48px;
}
.closing-meta {
  display: flex; gap: 40px; flex-wrap: wrap;
}
.meta-item { display: flex; flex-direction: column; gap: 4px; }
.meta-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.meta-val {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text);
}

/* === FOOTER === */
.footer { padding: 40px 24px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 8px; }
.footer-brand .logo-mark { font-size: 14px; }
.footer-brand .logo-name { font-size: 14px; }
.footer-tagline { font-size: 13px; color: var(--text-muted); flex: 1; }
.footer-links { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-muted); }
.sep { color: var(--text-muted); }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero { padding: 60px 20px 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { order: -1; }
  .hero-stats { gap: 16px; }
  .steps { grid-template-columns: 1fr; gap: 20px; }
  .tiers { grid-template-columns: 1fr; }
  .closing-meta { gap: 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 28px; }
  .terminal-body { padding: 12px 14px; }
  .t-line { font-size: 10px; }
}