/* === TOKENS === */
:root {
  --bg: #0f0e0c;
  --bg-alt: #161410;
  --bg-card: #1a1814;
  --amber: #e8a838;
  --amber-dim: rgba(232, 168, 56, 0.12);
  --cream: #f5f0e8;
  --cream-dim: rgba(245, 240, 232, 0.55);
  --warm-mid: #8c7a5a;
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'Satoshi', 'Helvetica Neue', sans-serif;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

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

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

/* === NAV === */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  border-bottom: 1px solid rgba(232, 168, 56, 0.08);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 32px;
  height: 32px;
  background: var(--amber);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-style: italic;
}
.logo-word {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.nav-tagline {
  font-size: 13px;
  color: var(--cream-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* === HERO === */
.hero {
  padding: 80px 48px 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,168,56,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 20px;
  font-weight: 600;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 28px;
  font-style: italic;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--cream-dim);
  max-width: 480px;
  margin-bottom: 48px;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 32px;
}
.proof-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.proof-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--amber);
  line-height: 1;
  font-style: italic;
}
.proof-label {
  font-size: 12px;
  color: var(--cream-dim);
  line-height: 1.4;
}
.proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(232,168,56,0.2);
}

/* === CALENDAR VIZ === */
.calendar-viz {
  background: var(--bg-card);
  border: 1px solid rgba(232, 168, 56, 0.15);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.calendar-viz::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0.4;
}
.cv-header {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 20px;
  font-weight: 600;
}
.cv-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.cv-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--bg-alt);
  border: 1px solid transparent;
  transition: border-color 0.2s;
}
.cv-row-active { border-color: rgba(232,168,56,0.2); }
.cv-day {
  font-size: 11px;
  color: var(--warm-mid);
  width: 32px;
  font-weight: 600;
  text-transform: uppercase;
}
.cv-post { flex: 1; }
.cv-post-bar {
  height: 4px;
  border-radius: 2px;
  margin-bottom: 4px;
  width: 60%;
}
.cv-bar-amber { background: var(--amber); opacity: 0.5; }
.cv-bar-gold { background: #c4882f; width: 75%; }
.cv-bar-cream { background: var(--cream); opacity: 0.3; width: 50%; }
.cv-post-label {
  font-size: 11px;
  color: var(--cream-dim);
}
.cv-status {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cv-status-done {
  color: var(--amber);
  background: rgba(232,168,56,0.1);
}
.cv-agent {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(232,168,56,0.06);
  border-radius: 8px;
  border: 1px solid rgba(232,168,56,0.1);
  font-size: 12px;
  color: var(--cream-dim);
}
.agent-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* === SECTIONS === */
.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 16px;
  font-weight: 600;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin-bottom: 56px;
  font-style: italic;
}

/* === FEATURES === */
.features {
  padding: 100px 48px;
  background: var(--bg-alt);
  border-top: 1px solid rgba(232,168,56,0.07);
}
.features-inner { max-width: 1200px; margin: 0 auto; }
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 64px;
}
.feature-card {
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid rgba(232,168,56,0.06);
  transition: border-color 0.25s;
}
.feature-card:hover { border-color: rgba(232,168,56,0.2); }
.feature-icon { margin-bottom: 20px; }
.feature-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 12px;
  font-style: italic;
}
.feature-desc {
  font-size: 15px;
  color: var(--cream-dim);
  line-height: 1.7;
}
.features-callout {
  padding: 40px;
  border-left: 2px solid var(--amber);
  margin-top: 8px;
}
.callout-mark {
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--amber);
  opacity: 0.5;
  display: block;
  line-height: 0.8;
  margin-bottom: 16px;
}
.callout-text {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.6;
  color: var(--cream);
  font-style: italic;
}

/* === HOW IT WORKS === */
.howitworks {
  padding: 100px 48px;
  background: var(--bg);
}
.hiw-inner { max-width: 1200px; margin: 0 auto; }
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.step { padding: 32px 0; }
.step-num {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--amber);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 20px;
  font-style: italic;
}
.step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 14px;
  color: var(--cream-dim);
  line-height: 1.6;
}
.step-connector {
  display: flex;
  align-items: center;
  padding: 80px 16px 0;
  color: var(--amber);
  opacity: 0.5;
}

/* === MANIFESTO === */
.manifesto {
  padding: 100px 48px;
  background: var(--bg-alt);
  border-top: 1px solid rgba(232,168,56,0.07);
}
.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.mq-mark { margin-bottom: 28px; }
.mq-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.5;
  color: var(--cream);
  font-style: italic;
  margin-bottom: 24px;
}
.mq-attr {
  font-size: 13px;
  color: var(--warm-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.manifesto-stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.mstat { border-left: 2px solid var(--amber); padding-left: 24px; }
.mstat-num {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 8px;
  font-style: italic;
}
.mstat-label {
  font-size: 14px;
  color: var(--cream-dim);
}

/* === CLOSING === */
.closing {
  padding: 120px 48px 100px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.closing::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(232,168,56,0.03), transparent);
  pointer-events: none;
}
.closing-inner { max-width: 1200px; margin: 0 auto; }
.closing-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 20px;
  font-weight: 600;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--cream);
  font-style: italic;
  margin-bottom: 28px;
}
.closing-body {
  font-size: 18px;
  color: var(--cream-dim);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 64px;
}
.closing-vibe { text-align: center; }
.cv-word {
  font-family: var(--font-display);
  font-size: 96px;
  color: transparent;
  -webkit-text-stroke: 1px var(--amber);
  opacity: 0.4;
  font-style: italic;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
}
.cv-sub {
  font-size: 14px;
  color: var(--warm-mid);
  font-style: italic;
}

/* === FOOTER === */
.footer {
  padding: 40px 48px;
  border-top: 1px solid rgba(232,168,56,0.08);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--cream);
  margin-bottom: 6px;
  font-style: italic;
}
.footer-tagline {
  font-size: 13px;
  color: var(--cream-dim);
}
.footer-copy {
  font-size: 13px;
  color: var(--warm-mid);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 60px 24px 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .features { padding: 72px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .howitworks { padding: 72px 24px; }
  .steps-grid { grid-template-columns: 1fr; gap: 0; }
  .step-connector { display: none; }
  .manifesto { padding: 72px 24px; }
  .manifesto-inner { grid-template-columns: 1fr; }
  .manifesto-stats { flex-direction: row; flex-wrap: wrap; gap: 24px; }
  .closing { padding: 80px 24px 72px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; }
}
