/* ===== FONTS ===== */

/* ===== TOKENS ===== */
:root {
  --slate: #111827;
  --slate-mid: #1f2937;
  --slate-light: #374151;
  --amber: #f59e0b;
  --amber-dim: #d97706;
  --cream: #faf5eb;
  --cream-dark: #f0e6d3;
  --text-primary: #111827;
  --text-secondary: #6b7280;
  --text-muted: #9ca3af;
  --border: rgba(17,24,39,0.08);
  --card-bg: #ffffff;
  --section-pad: clamp(5rem, 8vw, 7rem);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Instrument Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--amber); color: var(--slate); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--amber); border-radius: 3px; }

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

.section-label {
  font-family: 'Instrument Sans', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-dim);
  margin-bottom: 1.5rem;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 245, 235, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark { display: flex; align-items: center; gap: 0.5rem; }

.wordmark-name {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate);
}

.wordmark-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
}

.header-nav { display: flex; gap: 2rem; }

.header-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate-light);
  text-decoration: none;
  transition: color 0.15s;
}

.header-nav a:hover { color: var(--amber-dim); }

/* ===== HERO ===== */
.hero {
  background: var(--cream);
  padding: clamp(4rem, 8vw, 6rem) 2rem clamp(3rem, 6vw, 5rem);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 5rem);
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-dim);
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 1.5rem;
  line-height: 1.08;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 44ch;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--slate-mid);
  font-weight: 500;
}

/* ===== HERO VISUAL ===== */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-stack {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  width: 100%;
  max-width: 360px;
}

.vs-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: white;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}

.vs-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--amber);
  border-radius: 3px 0 0 3px;
}

.vs-card-2 { transform: translateX(12px); }
.vs-card-3 { transform: translateX(24px); }
.vs-card-4 { transform: translateX(36px); }

.vs-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-dim);
  flex-shrink: 0;
}

.vs-text { flex: 1; }

.vs-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 0.15rem;
}

.vs-status {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.vs-check { color: #10b981; }

/* ===== PROOF SECTION ===== */
.proof {
  background: var(--slate);
  padding: var(--section-pad) 2rem;
}

.proof-inner { max-width: 1200px; margin: 0 auto; }

.proof-header { max-width: 60ch; margin-bottom: 4rem; }

.proof-header .section-label { color: var(--amber); }

.proof-headline {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: white;
  font-weight: 400;
  line-height: 1.25;
}

.proof-highlight {
  color: var(--amber);
  font-weight: 700;
  font-style: italic;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 3rem;
}

.proof-stat {
  padding: 2.5rem 2.5rem;
  background: rgba(255,255,255,0.04);
  border-top: 2px solid var(--amber);
}

.proof-number {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.proof-unit {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--amber);
  margin-bottom: 0.6rem;
}

.proof-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.proof-context {
  max-width: 58ch;
}

.proof-context p {
  font-size: 0.975rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

/* ===== PROCESS SECTION ===== */
.process {
  background: linear-gradient(180deg, var(--cream) 0%, #f5eedd 100%);
  padding: var(--section-pad) 2rem;
}

.process-inner { max-width: 1200px; margin: 0 auto; }

.process-headline {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--slate);
  margin-bottom: 4rem;
  max-width: 18ch;
}

.process-steps {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.step {
  flex: 1;
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.step-number {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 1.5rem;
  display: block;
}

.step-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 0.75rem;
  font-family: 'Fraunces', serif;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.step-connector {
  flex-shrink: 0;
  opacity: 0.6;
}

/* ===== PRICING SECTION ===== */
.pricing {
  background: var(--cream);
  padding: var(--section-pad) 2rem;
}

.pricing-inner { max-width: 1200px; margin: 0 auto; }

.pricing-headline {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--slate);
  margin-bottom: 3.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.pricing-card {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}

.pricing-card-featured {
  background: var(--slate);
  border-color: var(--slate);
}

.pricing-card-header { margin-bottom: 2rem; }

.pricing-tier {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: 'Instrument Sans', sans-serif;
  margin-bottom: 0.75rem;
}

.pricing-card-featured .pricing-tier { color: rgba(255,255,255,0.5); }

.pricing-price {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--slate);
  line-height: 1;
}

.pricing-card-featured .pricing-price { color: white; }

.pricing-per {
  font-size: 1.25rem;
  font-weight: 400;
}

.pricing-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

.pricing-card-featured .pricing-note { color: rgba(255,255,255,0.4); }

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.pricing-card-featured .pricing-features li { color: rgba(255,255,255,0.75); }

.pricing-features svg { flex-shrink: 0; margin-top: 2px; }

.pricing-context {
  max-width: 58ch;
}

.pricing-context p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ===== CLOSING SECTION ===== */
.closing {
  background: var(--slate);
  padding: var(--section-pad) 2rem;
}

.closing-inner { max-width: 1200px; margin: 0 auto; }

.closing-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
}

.closing-headline {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: white;
  font-weight: 400;
  font-style: italic;
  max-width: 28ch;
  line-height: 1.3;
  margin-bottom: 2.5rem;
}

.closing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 4rem;
}

.closing-tag {
  padding: 0.4rem 1rem;
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 100px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.closing-final {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: rgba(255,255,255,0.85);
  max-width: 40ch;
  line-height: 1.6;
  font-style: italic;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #0a0e1a;
  padding: 3rem 2rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-wordmark {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
}

.footer-note {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  max-width: 28ch;
  text-align: right;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-visual { display: none; }
  .proof-grid { grid-template-columns: 1fr; }
  .process-steps {
    flex-direction: column;
    gap: 0;
  }
  .step { margin-bottom: 0; }
  .step-connector {
    display: none;
  }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-note { text-align: left; }
  .header-nav { display: none; }
}

@media (max-width: 600px) {
  .vs-card-2, .vs-card-3, .vs-card-4 { transform: none; }
  .proof-stat { padding: 2rem 1.5rem; }
  .step { padding: 2rem 1.5rem; }
  .pricing-card { padding: 2rem 1.5rem; }
}
