/* === BASE === */
:root {
  --bg: #141414;
  --bg-alt: #1a1a1a;
  --fg: #F5F0E8;
  --fg-muted: #9a958a;
  --accent: #FFB800;
  --accent-dim: rgba(255, 184, 0, 0.15);
  --border: rgba(245, 240, 232, 0.08);
}

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

html { scroll-behavior: smooth; }

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

/* === NAV === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.78rem;
  color: var(--fg-muted);
  font-weight: 400;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,184,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 2px;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-heading {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-accent {
  color: var(--accent);
  display: block;
}
.hero-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 480px;
  margin-bottom: 44px;
}
.hero-pricing {
  display: flex;
  align-items: center;
  gap: 28px;
}
.price-block { display: flex; flex-direction: column; gap: 2px; }
.price-label {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.price-value {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--accent);
}
.price-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* Hero right — node field */
.hero-right { display: flex; align-items: center; justify-content: center; }
.node-field {
  position: relative;
  width: 100%;
  max-width: 480px;
}
.node-svg { width: 100%; height: auto; }
.node-label-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.node-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}
.nl-dot {
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* === MANIFESTO === */
.manifesto {
  padding: 100px 40px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner { max-width: 860px; margin: 0 auto; }
.manifesto-rule {
  width: 48px; height: 2px;
  background: var(--accent);
  margin-bottom: 36px;
}
.manifesto-quote {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  line-height: 1.4;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.manifesto-body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--fg-muted);
  max-width: 640px;
}

/* === SECTION SHARED === */
.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 8px;
}
.section-sub {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-bottom: 56px;
}

/* === PLAYBOOKS === */
.playbooks { padding: 100px 40px; }
.playbooks-header { max-width: 1200px; margin: 0 auto 56px; }
.playbook-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}
.playbook-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 40px 36px;
  position: relative;
}
.pc-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.8rem;
  color: var(--accent);
  opacity: 0.25;
  margin-bottom: 20px;
  line-height: 1;
}
.pc-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--fg);
  margin-bottom: 14px;
}
.pc-body {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--fg-muted);
  margin-bottom: 24px;
}
.pc-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--accent);
  border: 1px solid rgba(255,184,0,0.3);
  padding: 4px 10px;
  border-radius: 2px;
  letter-spacing: 0.04em;
}

/* === VERTICALS === */
.verticals { padding: 100px 40px; background: var(--bg); }
.verticals-header { max-width: 1200px; margin: 0 auto 56px; }
.verticals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}
.v-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 36px 32px;
}
.v-icon {
  width: 48px; height: 48px;
  background: var(--accent-dim);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.v-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
  margin-bottom: 12px;
}
.v-body {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--fg-muted);
}

/* === NUMBERS === */
.numbers {
  padding: 80px 40px;
  background: var(--accent);
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}
.num-item {
  padding: 0 40px;
  border-right: 1px solid rgba(20,20,20,0.2);
  text-align: center;
}
.num-item:last-child { border-right: none; }
.num-item:first-child { padding-left: 0; }
.num-value {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: #141414;
  line-height: 1;
  margin-bottom: 10px;
}
.num-label {
  font-size: 0.78rem;
  color: rgba(20,20,20,0.65);
  line-height: 1.4;
  font-weight: 500;
}

/* === CLOSING === */
.closing {
  padding: 120px 40px;
  background: var(--bg);
}
.closing-inner { max-width: 860px; margin: 0 auto; }
.closing-heading {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 28px;
}
.closing-accent { color: var(--accent); }
.closing-body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--fg-muted);
  max-width: 620px;
  margin-bottom: 56px;
}
.closing-rule {
  width: 48px; height: 2px;
  background: var(--accent);
  margin-bottom: 28px;
}
.closing-cta {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
  letter-spacing: -0.01em;
}

/* === FOOTER === */
.footer {
  padding: 56px 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 32px;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--fg);
}
.footer-meta {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.6;
}
.footer-note {
  font-size: 0.75rem;
  color: rgba(245,240,232,0.3);
  white-space: nowrap;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .playbook-grid { grid-template-columns: 1fr; gap: 2px; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .num-item { border-right: none; border-bottom: 1px solid rgba(20,20,20,0.15); padding: 20px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 16px; }
  .footer-note { display: none; }
}
@media (max-width: 600px) {
  .hero { padding: 100px 24px 60px; }
  .manifesto, .playbooks, .verticals, .closing { padding: 60px 24px; }
  .numbers { padding: 60px 24px; }
  .numbers-grid { grid-template-columns: 1fr; }
}

/* === CUSTOM SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
