/* ===========================
   CONTENTFORGE — THEME CSS
   =========================== */

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

:root {
  --bg: #0C0C0F;
  --bg-surface: #13131A;
  --bg-elevated: #18181F;
  --fg: #F5F0E8;
  --fg-muted: #7A7872;
  --accent: #E8B84B;
  --accent-dim: rgba(232, 184, 75, 0.12);
  --ember: #FF6B35;
  --border: rgba(245, 240, 232, 0.06);
  --font-display: 'Syne', system-ui, sans-serif;
  --font-body: 'Figtree', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* --- NAV --- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(12, 12, 15, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--fg);
}

.nav-label {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* --- SECTION SHARED --- */
.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 80px 32px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -120px;
  left: -80px;
  width: 700px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(232, 184, 75, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--fg-muted);
  letter-spacing: 0.03em;
  margin-bottom: 40px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.6rem, 9vw, 7.5rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 48px;
}

.hero-divider {
  width: 100%;
  max-width: 600px;
  margin-bottom: 40px;
}

.hero-sub {
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.65);
  max-width: 540px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
}

/* --- MARKET --- */
.market {
  padding: 100px 32px;
  border-top: 1px solid var(--border);
}

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

.market-header {
  margin-bottom: 40px;
}

.market-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--fg);
}

.market-headline em {
  font-style: normal;
  color: var(--ember);
}

.market-body {
  max-width: 600px;
  color: rgba(245, 240, 232, 0.6);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 64px;
}

.market-stats {
  display: flex;
  gap: 0;
  align-items: flex-start;
  flex-wrap: wrap;
}

.stat {
  flex: 1;
  min-width: 140px;
  padding: 32px 40px 32px 0;
}

.stat-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: -0.04em;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-desc {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.45;
}

.stat-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
  align-self: center;
  margin: 32px 40px 0 0;
  flex-shrink: 0;
}

/* --- HOW --- */
.how {
  padding: 100px 32px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}

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

.how-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 72px;
}

.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 200px;
  padding-right: 40px;
}

.step-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 16px;
}

.step-content h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.step-content p {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.65;
}

.step-connector {
  display: flex;
  align-items: center;
  padding-top: 24px;
  padding-right: 40px;
  flex-shrink: 0;
}

/* --- RESULTS --- */
.results {
  padding: 100px 32px;
  border-top: 1px solid var(--border);
}

.results-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.results-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 20px;
}

.results-sub {
  font-size: 0.95rem;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.65;
}

.deliverable {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.deliverable:first-child {
  border-top: 1px solid var(--border);
}

.deliverable-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid rgba(232, 184, 75, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.deliverable strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--fg);
  margin-bottom: 4px;
}

.deliverable span {
  display: block;
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* --- DIFFERENTIATORS --- */
.diff {
  padding: 100px 32px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}

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

.diff-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 64px;
}

.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 80px;
}

.diff-item h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.diff-item p {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.65;
}

/* --- CLOSING --- */
.closing {
  position: relative;
  padding: 120px 32px;
  text-align: center;
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.closing-glow {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(232, 184, 75, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.closing-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 32px;
}

.closing-sub {
  font-size: 1.05rem;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* --- FOOTER --- */
.site-footer {
  padding: 48px 32px;
  border-top: 1px solid var(--border);
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--fg);
  opacity: 0.5;
}

.footer-meta {
  font-size: 0.78rem;
  color: var(--fg-muted);
  opacity: 0.5;
  text-align: right;
  line-height: 1.6;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .hero { min-height: 80vh; padding: 64px 24px; }
  .hero-headline { font-size: 3.2rem; }
  .market { padding: 80px 24px; }
  .how { padding: 80px 24px; }
  .how-steps { flex-direction: column; gap: 40px; }
  .step-connector { display: none; }
  .step { padding-right: 0; }
  .results-inner { grid-template-columns: 1fr; gap: 48px; }
  .diff-grid { grid-template-columns: 1fr; gap: 40px; }
  .market-stats { flex-direction: column; }
  .stat-divider { width: 40px; height: 1px; margin: 16px 0; }
  .closing { padding: 80px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { text-align: left; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.6rem; }
  .market-stats { gap: 0; }
}