:root {
  --bg: #0C0C10;
  --bg-2: #111116;
  --bg-3: #16161D;
  --accent: #FFB340;
  --accent-dim: rgba(255, 179, 64, 0.12);
  --text: #F5F0E8;
  --text-muted: rgba(245, 240, 232, 0.55);
  --text-dim: rgba(245, 240, 232, 0.28);
  --border: rgba(245, 240, 232, 0.08);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

/* Navigation */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}
.nav-link {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--text); }
.nav-cta-sm {
  font-size: 12px;
  font-weight: 600;
  background: var(--accent);
  color: #0a0a0a;
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.01em;
}

/* Section utilities */
.section-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
  max-width: 700px;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 40px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,179,64,0.18) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,179,64,0.08) 0%, transparent 70%);
  bottom: 0; left: 20%;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(255,179,64,0.2);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 40px;
}
.hero-label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 9vw, 100px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 52px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 0;
}
.hero-stat {
  padding: 0 36px;
}
.hero-stat:first-child { padding-left: 0; }
.hero-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}
.hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.hero-stat-label {
  display: block;
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* What We Make */
.what-we-make {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.formats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 56px;
}
.format-card {
  background: var(--bg-2);
  padding: 40px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.format-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.format-card:hover::before { opacity: 1; }
.format-icon {
  margin-bottom: 20px;
}
.format-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--text);
}
.format-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* The Problem */
.the-problem {
  padding: 100px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.problem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.problem-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.market-block {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 40px;
}
.market-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
}
.market-row:last-child { border-bottom: none; }
.market-label {
  font-size: 13px;
  color: var(--text-muted);
}
.market-val {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
}
.market-cite {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 16px;
  letter-spacing: 0.04em;
}

/* Pricing */
.pricing {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}
.pricing-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 40px 36px;
  position: relative;
}
.pricing-card-featured {
  background: var(--bg-3);
  border-color: rgba(255,179,64,0.3);
}
.pricing-card-featured::before {
  content: 'Most popular';
  position: absolute;
  top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 0 0 4px 4px;
}
.pricing-tier {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 8px;
}
.pricing-amount span {
  font-size: 20px;
  font-weight: 400;
  color: var(--text-muted);
}
.pricing-tagline {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 36px;
  font-style: italic;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-features li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}

/* Process */
.process {
  padding: 100px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.process-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 56px;
}
.step {
  flex: 1;
  padding: 36px 40px;
  background: var(--bg);
  border: 1px solid var(--border);
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--accent-dim);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 24px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.step-connector {
  width: 40px;
  height: 1px;
  background: var(--border);
  flex-shrink: 0;
}

/* Closing */
.closing {
  padding: 120px 40px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 20px;
}
.closing-body {
  font-family: var(--font-display);
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}
.closing-statement {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Footer */
.footer {
  padding: 40px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--text);
}
.footer-tagline {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-copy {
  font-size: 13px;
  color: var(--text-dim);
}

/* Responsive */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 80px 24px 60px; }
  .formats-grid { grid-template-columns: 1fr; }
  .problem-inner { grid-template-columns: 1fr; gap: 48px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; gap: 2px; }
  .step-connector { width: 100%; height: 1px; }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 20px; }
  .hero-divider { display: none; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .section-headline { max-width: 100%; }
  .hero-stat { padding: 0; }
}