:root {
  --bg: #0B1220;
  --surface: #111827;
  --surface-2: #1A2435;
  --fg: #F0F4FF;
  --fg-dim: #8892A4;
  --accent: #BFFF00;
  --accent-dim: rgba(191, 255, 0, 0.08);
  --border: rgba(255,255,255,0.07);
  --mono: 'JetBrains Mono', 'Fira Code', monospace;
}

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

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 18, 32, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--fg);
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  color: var(--fg-dim);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }

/* ─── HERO ─── */
.hero {
  padding: 100px 40px 80px;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: var(--accent-dim);
  border: 1px solid rgba(191, 255, 0, 0.2);
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-dim);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 440px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--fg-dim);
}
.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--fg-dim);
  opacity: 0.5;
}

/* ─── TERMINAL ─── */
.hero-terminal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(191,255,0,0.06);
}
.terminal-bar {
  background: var(--surface-2);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}
.t-dots {
  display: flex;
  gap: 6px;
}
.t-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}
.t-dots span:first-child { background: #FF5F57; }
.t-dots span:nth-child(2) { background: #FEBC2E; }
.t-dots span:nth-child(3) { background: #28C840; }
.t-title {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--fg-dim);
  flex: 1;
  text-align: center;
}
.t-status {
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.1em;
  background: rgba(191,255,0,0.1);
  padding: 3px 8px;
  border-radius: 4px;
}
.terminal-body {
  padding: 20px 22px;
  font-family: var(--mono);
  font-size: 0.78rem;
  line-height: 1.9;
}
.t-line { color: var(--fg-dim); }
.t-dim { color: #4A5568; }
.t-active { color: var(--accent); font-weight: 500; }
.t-pulse-line::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 14px;
  background: var(--accent);
  margin-left: 8px;
  vertical-align: middle;
  animation: pulse 1.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

/* ─── PROOF ─── */
.proof {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 48px 40px;
}
.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
.proof-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  margin: 0 48px;
}
.proof-stat {
  text-align: center;
}
.stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.8rem;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--fg-dim);
  line-height: 1.4;
  max-width: 180px;
}

/* ─── FEATURES ─── */
.features {
  padding: 100px 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.features-header {
  text-align: center;
  margin-bottom: 72px;
}
.features-header h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.features-header p {
  color: var(--fg-dim);
  font-size: 1rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.feature-card {
  background: var(--surface);
  padding: 36px 32px;
  transition: background 0.2s;
}
.feature-card:hover { background: var(--surface-2); }
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border: 1px solid rgba(191,255,0,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--fg-dim);
  line-height: 1.6;
}

/* ─── MANIFESTO ─── */
.manifesto {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 40px;
}
.manifesto-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.manifesto-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 40px;
}
.manifesto-body p {
  color: var(--fg-dim);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 24px;
}
.manifesto-body p:last-child { margin-bottom: 0; }

/* ─── CLOSING ─── */
.closing {
  padding: 100px 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.closing-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.closing-content h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 12px;
}
.closing-content p {
  color: var(--fg-dim);
  font-size: 0.95rem;
  max-width: 420px;
}
.cta-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.cta-from {
  font-size: 0.9rem;
  color: var(--fg-dim);
}
.cta-amount {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  letter-spacing: -0.04em;
  color: var(--fg);
}
.cta-period {
  font-size: 1rem;
  color: var(--fg-dim);
}
.cta-sub {
  font-size: 0.8rem;
  color: var(--fg-dim);
}

/* ─── FOOTER ─── */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 40px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--fg-dim);
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--fg-dim);
  opacity: 0.5;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-text { order: 1; }
  .hero-terminal { order: 2; }
  .hero-sub { max-width: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .proof-inner { grid-template-columns: 1fr; gap: 32px; }
  .proof-divider { display: none; }
  .proof-stat { text-align: left; }
  .closing-inner { flex-direction: column; }
  .nav { padding: 0 20px; }
  .hero { padding: 72px 20px 56px; }
  .features { padding: 72px 20px; }
  .manifesto { padding: 72px 20px; }
  .closing { padding: 72px 20px; }
}
@media (max-width: 580px) {
  .features-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
