/* Base */
:root {
  --bg: #0e0e0e;
  --surface: #141414;
  --surface-2: #1c1c1c;
  --border: #2a2a2a;
  --text: #f0efe9;
  --text-muted: #8a8a82;
  --accent: #f0a500;
  --accent-dim: rgba(240, 165, 0, 0.12);
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'Instrument Sans', system-ui, sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 3rem;
  --space-xl: 6rem;
}

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

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

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

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
  background: rgba(14, 14, 14, 0.9);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.375rem;
  color: var(--text);
  letter-spacing: -0.01em;
}

/* Section common */
.section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: var(--space-xl) 2rem;
}

.section-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-md);
}

.section-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: var(--space-lg);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
}
.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: var(--space-xl) 2rem;
  width: 100%;
}
.hero-eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: var(--space-md);
}
.hero-lede {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.65;
  margin-bottom: var(--space-lg);
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hero-stat {}
.stat-value {
  display: block;
  font-family: var(--serif);
  font-size: 1.75rem;
  color: var(--text);
  letter-spacing: -0.02em;
}
.stat-label {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.125rem;
}
.hero-stat-divider {
  width: 1px;
  height: 3rem;
  background: var(--border);
}

/* Problem */
.problem { background: var(--surface); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: var(--space-lg);
}
@media (min-width: 680px) {
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
}
.problem-item {
  background: var(--surface);
  padding: 2rem 2rem 2rem 2rem;
}
.problem-text {
  font-size: 1.0625rem;
  color: var(--text);
  line-height: 1.55;
}
.problem-closing {
  border-top: 1px solid var(--border);
  padding-top: var(--space-md);
}
.problem-closing p {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.65;
}

/* How */
.how { background: var(--bg); }
.how-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
  margin-bottom: var(--space-md);
}
.how-item {
  display: flex;
  gap: var(--space-md);
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.how-icon {
  width: 2rem;
  height: 2rem;
  background: var(--accent-dim);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.375rem;
  position: relative;
}
.how-icon::after {
  content: '';
  position: absolute;
  inset: 0.5rem;
  background: var(--accent);
  border-radius: 50%;
}
.how-content h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.how-content p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.how-tech {
  font-size: 0.8125rem;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

/* Who */
.who { background: var(--surface); }
.who-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
@media (min-width: 640px) {
  .who-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .who-grid { grid-template-columns: repeat(3, 1fr); }
}
.who-card {
  background: var(--surface-2);
  padding: 2rem;
}
.who-name {
  font-family: var(--serif);
  font-size: 1.375rem;
  color: var(--text);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.who-detail {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Pricing */
.pricing-model { background: var(--bg); }
.pricing-blocks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: var(--space-lg);
}
@media (min-width: 680px) {
  .pricing-blocks { grid-template-columns: 1fr 1fr; }
}
.pricing-block {
  background: var(--surface);
  padding: 2.5rem;
}
.pricing-block--accent {
  background: var(--surface-2);
}
.pricing-tier {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.pricing-amount {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  line-height: 1;
}
.pricing-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.pricing-note {
  font-size: 0.9375rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: var(--space-md);
  max-width: 580px;
  line-height: 1.6;
}

/* CTA Close */
.cta-close { background: var(--surface); }
.cta-close-inner {
  max-width: 800px;
}
.cta-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: var(--space-md);
}
.cta-sub {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Footer */
.footer { border-top: 1px solid var(--border); }
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3rem 2rem;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.footer-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.6;
}

/* Mobile */
@media (max-width: 640px) {
  .section-inner { padding: var(--space-lg) 1.25rem; }
  .hero-inner { padding: var(--space-lg) 1.25rem; }
  .hero-stats { gap: var(--space-md); }
  .hero-stat-divider { display: none; }
  .how-item { padding: 1.5rem 0; }
  .pricing-block { padding: 2rem 1.5rem; }
}