/* === TOKENS === */
:root {
  --bg: #0d0d0d;
  --bg-2: #141414;
  --bg-3: #1c1c1c;
  --fg: #f0ebe0;
  --fg-muted: #9a9488;
  --accent: #e8a020;
  --accent-dim: rgba(232, 160, 32, 0.12);
  --border: rgba(240, 235, 224, 0.1);
  --radius: 4px;
}

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

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

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; line-height: 1.15; }

/* === LAYOUT === */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* === HEADER === */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,13,13,0.85); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1160px; margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { font-family: 'Fraunces', serif; font-weight: 700; font-size: 18px; letter-spacing: -0.5px; }
.site-header nav { display: flex; gap: 32px; }
.site-header nav a { color: var(--fg-muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.site-header nav a:hover { color: var(--fg); }

/* === HERO === */
.hero { padding: 140px 0 80px; }
.hero-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(40px, 5vw, 64px); font-weight: 700; line-height: 1.05;
  margin-bottom: 24px; color: var(--fg);
}
.hero-headline em { font-style: italic; color: var(--accent); }
.hero-lede {
  font-size: 18px; color: var(--fg-muted); line-height: 1.7;
  max-width: 440px; margin-bottom: 40px;
}
.hero-metric { display: flex; align-items: baseline; gap: 12px; }
.metric-number { font-family: 'Fraunces', serif; font-size: 48px; font-weight: 700; color: var(--accent); }
.metric-label { font-size: 14px; color: var(--fg-muted); }

/* Hero Visual */
.hero-visual { position: relative; }
.forge-animation {
  position: absolute; top: -40px; right: -20px;
  width: 220px; height: 280px; pointer-events: none;
  display: flex; align-items: flex-end; gap: 12px; z-index: 0;
}
.forge-bar {
  width: 20px; border-radius: 2px 2px 0 0;
  background: linear-gradient(to top, var(--accent), rgba(232,160,32,0.2));
  animation: forge-pulse 3s ease-in-out infinite;
}
.forge-bar-1 { height: 60%; animation-delay: 0s; }
.forge-bar-2 { height: 85%; animation-delay: 0.2s; }
.forge-bar-3 { height: 100%; animation-delay: 0.4s; }
.forge-bar-4 { height: 70%; animation-delay: 0.6s; }
.forge-bar-5 { height: 45%; animation-delay: 0.8s; }
@keyframes forge-pulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.05); }
}
.forge-glow {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 80px;
  background: radial-gradient(ellipse at center bottom, rgba(232,160,32,0.15) 0%, transparent 70%);
}
.workflow-card {
  position: relative; z-index: 1;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 8px; padding: 20px 24px;
  font-size: 13px;
}
.workflow-header {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; color: var(--fg); margin-bottom: 16px;
  padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.wf-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 4px var(--accent); }
  50% { box-shadow: 0 0 12px var(--accent); }
}
.workflow-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid rgba(240,235,224,0.05);
  color: var(--fg-muted);
}
.workflow-item:last-child { border-bottom: none; }
.workflow-item.done { color: #7ab87a; }
.workflow-item.active { color: var(--fg); }
.wf-check { font-size: 12px; }
.wf-dot-sm {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--fg-muted); flex-shrink: 0;
}
.workflow-item.active .wf-dot-sm { background: var(--accent); }
.workflow-item.pending .wf-dot-sm { background: rgba(240,235,224,0.2); }

/* === MANIFESTO === */
.manifesto {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}
.manifesto-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 200px 1fr; gap: 64px;
}
.manifesto-label {
  padding-top: 8px;
}
.manifesto-label span {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent);
}
.manifesto-statement {
  font-family: 'Fraunces', serif; font-size: 22px; font-weight: 400;
  line-height: 1.5; color: var(--fg-muted); margin-bottom: 28px;
}
.manifesto-highlight { color: var(--fg); }

/* === SECTION LABELS === */
.section-label {
  display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 16px;
}
.section-heading {
  font-size: clamp(28px, 3.5vw, 42px); font-weight: 600;
  line-height: 1.2; margin-bottom: 56px; color: var(--fg);
}

/* === HOW === */
.how { padding: 96px 0; }
.how-inner { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.steps-grid {
  display: flex; align-items: flex-start; gap: 24px;
}
.step { flex: 1; }
.step-num {
  font-family: 'Fraunces', serif; font-size: 48px; font-weight: 700;
  color: var(--accent); opacity: 0.4; margin-bottom: 20px;
}
.step h3 { font-size: 18px; font-weight: 600; margin-bottom: 12px; color: var(--fg); }
.step p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }
.step-connector {
  padding-top: 36px; color: var(--border);
  flex-shrink: 0;
}

/* === FEATURES === */
.features { padding: 96px 0; background: var(--bg-2); }
.features-inner { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px; padding: 28px 24px;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: rgba(232,160,32,0.3); }
.feature-icon {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  background: var(--accent-dim); border-radius: 6px; margin-bottom: 16px;
  color: var(--accent);
}
.feature-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 10px; color: var(--fg); }
.feature-card p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* === PRICING === */
.pricing { padding: 96px 0; }
.pricing-inner { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-bottom: 32px;
}
.pricing-card {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 8px; padding: 32px;
  display: flex; flex-direction: column;
}
.pricing-card.featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--bg-2) 0%, rgba(232,160,32,0.06) 100%);
}
.pricing-badge {
  display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent);
  background: var(--accent-dim); border-radius: 20px;
  padding: 4px 12px; margin-bottom: 20px; width: fit-content;
}
.pricing-card-header { margin-bottom: 24px; }
.pricing-card h3 { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 600; margin-bottom: 12px; color: var(--fg); }
.price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.price-amount { font-family: 'Fraunces', serif; font-size: 36px; font-weight: 700; color: var(--fg); }
.price-period { font-size: 14px; color: var(--fg-muted); }
.price-tagline { font-size: 13px; color: var(--fg-muted); }
.pricing-features {
  list-style: none; margin-bottom: 28px; flex: 1;
}
.pricing-features li {
  font-size: 14px; color: var(--fg-muted); padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 10px;
}
.pricing-features li::before { content: '→'; color: var(--accent); font-size: 12px; flex-shrink: 0; margin-top: 2px; }
.pricing-cta { text-align: center; }
.cta-note { font-size: 12px; color: var(--fg-muted); font-weight: 500; }
.pricing-note { font-size: 13px; color: var(--fg-muted); text-align: center; margin-top: 8px; }

/* === CLOSING === */
.closing { padding: 120px 0; }
.closing-inner { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.closing-statement { max-width: 720px; margin: 0 auto; text-align: center; }
.closing-statement p {
  font-family: 'Fraunces', serif; font-size: clamp(24px, 3vw, 36px);
  font-weight: 400; line-height: 1.5; color: var(--fg); font-style: italic;
  margin-bottom: 28px;
}
.closing-sub { font-family: 'DM Sans', sans-serif; font-size: 16px; font-style: normal; color: var(--fg-muted); }

/* === FOOTER === */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
}
.footer-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-brand .logo { display: block; margin-bottom: 8px; }
.footer-brand p { font-size: 14px; color: var(--fg-muted); }
.footer-links { display: flex; gap: 24px; font-size: 13px; color: var(--fg-muted); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 24px; }
  .steps-grid { flex-direction: column; }
  .step-connector { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
  .site-header nav { gap: 16px; }
  .site-header nav a { font-size: 13px; }
}

@media (max-width: 480px) {
  .hero { padding: 120px 0 60px; }
  .how, .features, .pricing { padding: 64px 0; }
  .closing { padding: 80px 0; }
  .manifesto { padding: 64px 0; }
}