/* ==========================================
   PITCHFORGE — CSS ART DIRECTION
   Palette: Deep Ink + Ember + Muted Gold
   Fonts: Fraunces (display) + Plus Jakarta Sans (body)
   ========================================== */

:root {
  --bg: #0A0A12;
  --surface: #111120;
  --surface-2: #181830;
  --ember: #FF6B35;
  --ember-dim: rgba(255, 107, 53, 0.12);
  --ember-glow: rgba(255, 107, 53, 0.3);
  --gold: #C8A55A;
  --ink: #F0EDE8;
  --ink-mid: #8A8A9A;
  --ink-dim: #4A4A5A;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ───────────────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 64px;
  border-bottom: 1px solid var(--surface-2);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  color: var(--ember);
  font-size: 18px;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 13px;
  color: var(--ink-mid);
  letter-spacing: 0.02em;
}

/* ── HERO ───────────────────────────────────── */
.hero {
  padding: 100px 64px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ember);
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
}

.hero-title-main {
  color: var(--ink);
}

.hero-title-sub {
  color: var(--ember);
  font-style: italic;
  font-weight: 300;
}

.hero-lede {
  font-size: 18px;
  color: var(--ink-mid);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 40px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 0;
}

.meta-item {
  display: flex;
  flex-direction: column;
  padding: 0 24px;
}

.meta-item:first-child { padding-left: 0; }

.meta-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--ember);
  line-height: 1;
  margin-bottom: 4px;
}

.meta-label {
  font-size: 12px;
  color: var(--ink-mid);
  letter-spacing: 0.03em;
}

.meta-divider {
  width: 1px;
  height: 40px;
  background: var(--surface-2);
}

/* ── HERO ART (CSS-generated) ─────────────── */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
}

.hero-art {
  position: relative;
  width: 340px;
  height: 340px;
}

.art-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 107, 53, 0.15);
}

.art-ring-1 { width: 340px; height: 340px; top: 0; left: 0; }
.art-ring-2 { width: 260px; height: 260px; top: 40px; left: 40px; border-color: rgba(255, 107, 53, 0.2); }
.art-ring-3 { width: 180px; height: 180px; top: 80px; left: 80px; border-color: rgba(255, 107, 53, 0.25); }

.art-core {
  position: absolute;
  width: 100px;
  height: 100px;
  top: 120px;
  left: 120px;
  background: var(--ember);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(255, 107, 53, 0.5), 0 0 80px rgba(255, 107, 53, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.art-core-inner {
  width: 50px;
  height: 50px;
  background: var(--bg);
  border-radius: 50%;
  border: 2px solid var(--ember);
}

.art-spark {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--ember);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--ember);
}

.art-spark-1 { top: 20px; left: 160px; }
.art-spark-2 { top: 100px; right: 20px; }
.art-spark-3 { bottom: 60px; left: 40px; }
.art-spark-4 { bottom: 20px; right: 100px; }

.art-node {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1px solid var(--ember);
  background: var(--bg);
  border-radius: 50%;
}

.art-node-1 { top: 60px; left: 0; }
.art-node-2 { top: 0; left: 200px; }
.art-node-3 { bottom: 40px; right: 0; }
.art-node-4 { bottom: 0; left: 80px; }

.art-line {
  position: absolute;
  border: 1px solid rgba(255, 107, 53, 0.1);
  transform-origin: center;
}

.art-line-1 { width: 80px; top: 64px; left: 8px; transform: rotate(45deg); }
.art-line-2 { width: 60px; top: 8px; left: 204px; transform: rotate(-30deg); }
.art-line-3 { width: 70px; bottom: 44px; right: 8px; transform: rotate(15deg); }
.art-line-4 { width: 50px; bottom: 8px; left: 84px; transform: rotate(-60deg); }

/* ── THE GAP ───────────────────────────────── */
.thegap {
  background: var(--surface);
  padding: 80px 64px;
  border-top: 1px solid var(--surface-2);
  border-bottom: 1px solid var(--surface-2);
}

.thegap-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.thegap-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-dim);
  margin-bottom: 40px;
}

.thegap-content {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 60px;
  align-items: start;
}

.gap-label {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-dim);
  margin-bottom: 20px;
}

.gap-label-new { color: var(--ember); }

.gap-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gap-list li {
  font-size: 15px;
  color: var(--ink-mid);
  padding-left: 20px;
  position: relative;
}

.gap-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--ink-dim);
}

.gap-list-new li { color: var(--ink); }
.gap-list-new li::before { color: var(--ember); }

.thegap-divider {
  width: 1px;
  background: var(--surface-2);
  align-self: stretch;
}

/* ── HOW IT WORKS ───────────────────────────── */
.howitworks {
  padding: 100px 64px;
}

.howitworks-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ember);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 72px;
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 60px;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 32px;
}

.step:first-child { padding-left: 0; }

.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--ember);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 20px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.step-desc {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.7;
}

.step-connector {
  width: 40px;
  height: 1px;
  background: var(--surface-2);
  margin-top: 40px;
  flex-shrink: 0;
}

.alwayson-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ember-dim);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 13px;
  color: var(--ember);
  font-weight: 500;
}

.alwayson-dot {
  width: 8px;
  height: 8px;
  background: var(--ember);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--ember);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ── FEATURES ───────────────────────────────── */
.features {
  background: var(--surface);
  padding: 80px 64px;
  border-top: 1px solid var(--surface-2);
}

.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
}

.feature-card {
  background: var(--surface-2);
  padding: 36px 32px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s;
}

.feature-card:hover {
  border-color: rgba(255, 107, 53, 0.3);
}

.feature-icon {
  font-size: 24px;
  color: var(--ember);
  margin-bottom: 16px;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.65;
}

/* ── MANIFESTO ─────────────────────────────── */
.manifesto {
  padding: 100px 64px;
  background: var(--bg);
}

.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  quotes: none;
}

.manifesto-quote::before { content: ''; }
.manifesto-quote::after { content: ''; }

.manifesto-sub {
  font-size: 16px;
  color: var(--ember);
  font-weight: 500;
}

/* ── FOOTER ─────────────────────────────────── */
.footer {
  padding: 48px 64px;
  border-top: 1px solid var(--surface-2);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
}

.footer-copy {
  font-size: 13px;
  color: var(--ink-dim);
}

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .nav-tagline { display: none; }
  .hero { padding: 60px 24px 48px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { height: 260px; }
  .hero-art { transform: scale(0.75); transform-origin: center; }
  .thegap { padding: 60px 24px; }
  .thegap-content { grid-template-columns: 1fr; gap: 32px; }
  .thegap-divider { display: none; }
  .howitworks { padding: 60px 24px; }
  .steps { flex-direction: column; gap: 32px; }
  .step { padding: 0; }
  .step-connector { display: none; }
  .features { padding: 60px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .manifesto { padding: 60px 24px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .meta-item { padding: 0 12px; }
  .meta-num { font-size: 22px; }
}