@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&family=Manrope:wght@400;500;600;700;800&display=swap');

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

:root {
  --fire: #f97316;
  --fire-dim: rgba(249,115,22,0.12);
  --ash: #525252;
  --smoke: #a3a3a3;
  --bone: #fafafa;
  --void: #000;
  --surface: #080808;
  --border: #151515;
}

body {
  background: var(--void);
  color: var(--bone);
  font-family: 'Space Mono', monospace;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Grain */
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ===== NAV ===== */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(20px);
}
.logo {
  font-family: 'Space Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.logo .fire { color: var(--fire); }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ash);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--bone); }
.nav-cta {
  background: var(--fire);
  color: var(--void) !important;
  padding: 8px 20px;
  font-weight: 700;
  font-size: 10px !important;
  letter-spacing: 3px !important;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 48px;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(249,115,22,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-label {
  font-size: 10px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -3px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
.hero h1 em {
  font-style: normal;
  color: var(--fire);
}
.hero-sub {
  font-size: 14px;
  color: var(--ash);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}
.hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}
.btn-fire {
  background: var(--fire);
  color: var(--void);
  padding: 14px 32px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: box-shadow 0.3s;
  display: inline-block;
}
.btn-fire:hover { box-shadow: 0 0 40px rgba(249,115,22,0.3); }
.btn-ghost {
  color: var(--ash);
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}
.btn-ghost:hover { color: var(--bone); border-color: var(--ash); }

/* Stats */
.stats-strip {
  display: flex;
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat {
  flex: 1;
  background: var(--void);
  padding: 32px 48px;
  text-align: center;
}
.stat-value {
  font-family: 'Manrope', sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ash);
}

/* ===== SECTIONS ===== */
.section {
  padding: 140px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-size: 9px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 20px;
}
.section-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 13px;
  color: var(--ash);
  line-height: 1.8;
  max-width: 420px;
}

.fire-rule {
  height: 1px;
  background: linear-gradient(90deg, var(--fire), transparent 50%);
  opacity: 0.3;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== WHAT ===== */
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  margin-top: 64px;
}
.what-text p {
  font-size: 13px;
  color: #737373;
  line-height: 2;
  margin-bottom: 20px;
}
.what-text p strong { color: var(--bone); font-weight: 700; }

.terminal {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 28px;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  position: relative;
  overflow: hidden;
}
.terminal::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--fire), transparent 40%);
}
.terminal-chrome { display: flex; gap: 6px; margin-bottom: 20px; }
.terminal-chrome span { width: 8px; height: 8px; border-radius: 50%; background: var(--border); }
.t-line { color: var(--ash); margin-bottom: 6px; line-height: 1.8; white-space: nowrap; }
.t-cmd { color: var(--fire); }
.t-val { color: var(--bone); }
.t-ok { color: #22c55e; }

/* ===== WHY ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  margin-top: 64px;
  border: 1px solid var(--border);
}
.why-card {
  background: var(--void);
  padding: 40px;
  position: relative;
  transition: background 0.3s;
}
.why-card:hover { background: var(--surface); }
.why-card::before {
  content: attr(data-num);
  font-family: 'Manrope', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--fire-dim);
  position: absolute;
  top: 20px;
  right: 24px;
  line-height: 1;
  letter-spacing: -2px;
}
.why-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}
.why-card p { font-size: 12px; color: var(--ash); line-height: 1.7; max-width: 280px; }

/* ===== STEPS ===== */
.steps-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-top: 72px;
}
.step {
  position: relative;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.step::before {
  content: attr(data-step);
  font-family: 'Manrope', sans-serif;
  font-size: 72px;
  font-weight: 800;
  color: var(--fire-dim);
  position: absolute;
  top: -12px;
  left: 0;
  line-height: 1;
  letter-spacing: -3px;
}
.step h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}
.step p { font-size: 12px; color: var(--ash); line-height: 1.8; }

/* ===== FEATURES ===== */
.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--border);
  margin-top: 64px;
  border: 1px solid var(--border);
}
.feat {
  background: var(--void);
  padding: 36px;
  transition: background 0.3s;
}
.feat:hover { background: var(--surface); }
.feat h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.feat p { font-size: 12px; color: var(--ash); line-height: 1.7; }

/* ===== PRICING ===== */
.pricing-box {
  margin: 64px auto 0;
  max-width: 480px;
  border: 1px solid var(--fire);
  position: relative;
  padding: 56px;
  text-align: center;
  background: var(--void);
}
.pricing-box::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(180deg, rgba(249,115,22,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.price-tag {
  font-family: 'Manrope', sans-serif;
  font-size: 72px;
  font-weight: 800;
  letter-spacing: -4px;
  line-height: 1;
  margin-bottom: 4px;
}
.price-tag span {
  font-size: 22px;
  color: var(--ash);
  font-family: 'Space Mono', monospace;
  letter-spacing: 0;
}
.price-desc {
  font-size: 12px;
  color: var(--ash);
  margin-bottom: 32px;
  letter-spacing: 1px;
}
.price-list {
  list-style: none;
  text-align: left;
  margin-bottom: 36px;
}
.price-list li {
  font-size: 12px;
  color: var(--smoke);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}
.price-list li::before { content: '\2192'; color: var(--fire); font-weight: 700; flex-shrink: 0; }

/* ===== FOOTER ===== */
footer {
  padding: 48px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
}
footer .brand {
  font-size: 10px;
  color: var(--ash);
  letter-spacing: 2px;
  text-transform: uppercase;
}
footer .f-links { display: flex; gap: 28px; }
footer .f-links a {
  font-size: 10px;
  color: #333;
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
}
footer .f-links a:hover { color: var(--ash); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  nav { padding: 18px 24px; }
  .nav-links a:not(.nav-cta) { display: none; }

  .hero { padding: 0 24px; min-height: 90vh; }
  .hero h1 { font-size: 40px; letter-spacing: -2px; }
  .hero-sub { font-size: 13px; }

  .stats-strip { flex-direction: column; gap: 1px; }
  .stat { padding: 24px; }
  .stat-value { font-size: 22px; }

  .section { padding: 80px 24px; }
  .section-title { font-size: 28px; letter-spacing: -1px; }

  .what-grid { grid-template-columns: 1fr; gap: 40px; }
  .terminal { font-size: 11px; padding: 20px; overflow-x: auto; }

  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 28px; }
  .why-card::before { font-size: 40px; }

  .steps-row { grid-template-columns: 1fr; gap: 40px; }
  .step::before { font-size: 48px; }

  .feat-grid { grid-template-columns: 1fr; }

  .pricing-box { padding: 36px 24px; }
  .price-tag { font-size: 56px; }

  footer { flex-direction: column; gap: 20px; text-align: center; }
  footer .f-links { flex-wrap: wrap; justify-content: center; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .section { padding: 100px 32px; }
  .hero { padding: 0 32px; }
  .what-grid { gap: 48px; }
  .steps-row { gap: 28px; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
}
