:root {
  --bg: #0d0f14;
  --bg-2: #131620;
  --bg-card: #181b27;
  --accent: #ff4d00;
  --accent-dim: rgba(255, 77, 0, 0.12);
  --text: #f0f2f7;
  --text-muted: #8891a8;
  --border: #252838;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Figtree', 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Syne', sans-serif; line-height: 1.15; }

/* NAV */
.nav {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner { max-width: 1100px; margin: 0 auto; }
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* HERO */
.hero { padding: 5rem 2rem 4rem; }
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 2rem;
}
.hero-badges { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.badge {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
  border: 1px solid rgba(255,77,0,0.3);
  border-radius: 4px;
  padding: 0.3rem 0.65rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-right { display: flex; justify-content: center; }
.hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  width: 260px;
}
.grid-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  background: var(--bg-2);
  padding: 4px;
  text-align: center;
}
.grid-cell-1, .grid-cell-2, .grid-cell-3, .grid-cell-5, .grid-cell-9 { color: var(--text); background: #1c2035; }
.grid-cell-3 { color: var(--accent); background: rgba(255,77,0,0.15); }
.grid-cell-5 { color: #00e87a; background: rgba(0,232,122,0.08); }
.grid-cell-9 { color: #00e87a; background: rgba(0,232,122,0.12); }

/* PROOF */
.proof { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 3rem 2rem; }
.proof-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; align-items: center; }
.proof-divider { width: 1px; height: 40px; background: var(--border); }
.stat-value { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; color: var(--text); margin-bottom: 0.3rem; }
.stat-label { font-size: 0.78rem; color: var(--text-muted); line-height: 1.4; }

/* PHILOSOPHY */
.philosophy { padding: 5rem 2rem; }
.philosophy-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.philosophy-headline { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; margin-bottom: 1.5rem; color: var(--text); }
.philosophy-body { color: var(--text-muted); line-height: 1.75; margin-bottom: 1rem; }
.philosophy-list { display: flex; flex-direction: column; gap: 1.75rem; }
.philosophy-item { display: flex; gap: 1rem; }
.item-icon { font-family: 'Syne', monospace; font-size: 1rem; color: var(--accent); font-weight: 700; padding-top: 0.15rem; flex-shrink: 0; }
.item-title { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.25rem; color: var(--text); }
.item-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

/* PRICING */
.pricing { padding: 5rem 2rem; background: var(--bg-2); }
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing-header { text-align: center; margin-bottom: 3.5rem; }
.pricing-eyebrow { font-family: 'Syne', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem; }
.pricing-headline { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; color: var(--text); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pricing-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 2rem; position: relative; }
.pricing-card-featured { border-color: rgba(255,77,0,0.4); box-shadow: 0 0 40px rgba(255,77,0,0.06); }
.card-tier { font-family: 'Syne', sans-serif; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.15em; color: var(--accent); margin-bottom: 1rem; text-transform: uppercase; }
.card-price { font-family: 'Syne', sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--text); margin-bottom: 0.4rem; }
.per { font-size: 0.9rem; color: var(--text-muted); font-weight: 500; }
.card-desc { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.5; }
.card-features { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.card-features li { font-size: 0.85rem; color: var(--text-muted); padding-left: 1.25rem; position: relative; }
.card-features li::before { content: '\2713'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.pricing-note { text-align: center; margin-top: 2rem; font-size: 0.8rem; color: var(--text-muted); }

/* CLOSING */
.closing { padding: 5rem 2rem; }
.closing-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.closing-headline { font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 800; color: var(--text); margin-bottom: 1.25rem; line-height: 1.25; }
.closing-body { font-size: 1rem; color: var(--text-muted); line-height: 1.7; }

/* FOOTER */
.footer { border-top: 1px solid var(--border); padding: 2.5rem 2rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-end; }
.footer-name { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text); margin-bottom: 0.25rem; }
.footer-tagline { font-size: 0.8rem; color: var(--text-muted); }
.footer-copy { font-size: 0.75rem; color: var(--text-muted); }

/* MOBILE */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-right { display: none; }
  .proof-inner { grid-template-columns: 1fr 1fr; }
  .proof-divider { display: none; }
  .philosophy-inner { grid-template-columns: 1fr; gap: 3rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 1rem; align-items: flex-start; }
}