:root {
  --bg: #F8F5F0;
  --bg-alt: #F0EBE3;
  --fg: #0D1B2A;
  --fg-muted: #5A6475;
  --accent: #C9973B;
  --accent-dark: #9E7230;
  --surface: #FFFFFF;
  --border: #E2D9C8;
  --success: #2A7A4F;
  --warn: #B8590A;
  --text-green: #1E6B3A;
}

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

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

/* NAV */
.nav {
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo {
  font-family: 'Instrument Serif', serif;
  font-size: 18px;
  font-weight: 400;
  background: var(--fg);
  color: var(--bg);
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  letter-spacing: 1px;
}
.nav-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  font-weight: 400;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 80px 48px 96px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.15;
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--fg);
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  gap: 40px;
}
.hero-stat {}
.stat-number {
  display: block;
  font-family: 'Instrument Serif', serif;
  font-size: 32px;
  color: var(--fg);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 4px;
  line-height: 1.4;
}

/* DEMO WINDOW */
.demo-window {
  background: var(--fg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(13, 27, 42, 0.18);
}
.demo-bar {
  background: #1A2D42;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.demo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.demo-label {
  margin-left: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  font-family: 'Instrument Sans', sans-serif;
}
.demo-content {
  padding: 0;
}
.demo-row {
  display: grid;
  grid-template-columns: 56px 1fr auto 90px;
  gap: 0;
  padding: 10px 16px;
  font-size: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  align-items: center;
}
.demo-row-header {
  background: #1A2D42;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.demo-row-match { background: rgba(42, 122, 79, 0.08); }
.demo-row-unmatch { background: rgba(184, 89, 10, 0.08); }
.badge {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge-matched { background: rgba(42, 122, 79, 0.3); color: #5CCF8D; }
.badge-linked { background: rgba(201, 151, 59, 0.25); color: #E8BF7A; }
.badge-unmatched { background: rgba(184, 89, 10, 0.25); color: #F4A261; }
.text-green { color: #5CCF8F; }
.demo-footer {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  background: #1A2D42;
}
.text-right { text-align: right; color: rgba(255,255,255,0.9); font-size: 13px; }
.hero-demo-cta {
  display: block;
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.15s;
}
.hero-demo-cta:hover { color: var(--accent-dark); }

/* SECTION HEADER */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.2;
}

/* HOW IT WORKS */
.howitworks {
  background: var(--fg);
  color: white;
  padding: 96px 48px;
}
.howitworks .section-eyebrow { color: var(--accent); }
.howitworks .section-title { color: white; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}
.step-card {}
.step-num {
  display: block;
  font-family: 'Instrument Serif', serif;
  font-size: 56px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}
.step-title {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
}
.step-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* CRA RELIABILITY */
.creliability {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 96px 48px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.crel-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}
.crel-badges {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.crel-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--fg);
  font-weight: 500;
}
.badge-icon { color: var(--accent); display: flex; align-items: center; }

/* ZIP PREVIEW */
.zip-preview {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.zip-header {
  background: var(--bg-alt);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}
.zip-icon { color: var(--accent); }
.zip-name { font-size: 14px; font-weight: 600; }
.zip-tree {
  padding: 20px;
  font-family: 'Instrument Sans', monospace;
  font-size: 12px;
  line-height: 2;
}
.zip-folder { color: var(--accent); font-weight: 600; }
.zip-file { padding-left: 20px; color: var(--fg); }
.zip-note {
  font-size: 11px;
  color: var(--fg-muted);
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}

/* PRICING */
.pricing {
  background: var(--bg-alt);
  padding: 96px 48px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.pricing-card-featured {
  border-color: var(--fg);
  box-shadow: 0 8px 32px rgba(13,27,42,0.1);
  position: relative;
}
.plan-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(201,151,59,0.12);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.plan-name {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.price-amount {
  font-family: 'Instrument Serif', serif;
  font-size: 48px;
  line-height: 1;
}
.price-period {
  font-size: 14px;
  color: var(--fg-muted);
}
.plan-desc {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 24px;
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan-features li {
  font-size: 14px;
  color: var(--fg);
  padding-left: 20px;
  position: relative;
}
.plan-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.plan-note {
  display: block;
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  margin-top: 16px;
}
.pricing-disclaimer {
  text-align: center;
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 32px;
}

/* PRIVACY */
.privacy {
  padding: 96px 48px;
}
.privacy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}
.privacy-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
}
.privacy-icon {
  color: var(--accent);
  margin-bottom: 20px;
}
.privacy-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}
.privacy-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* CLOSING */
.closing {
  background: var(--fg);
  padding: 96px 48px;
  text-align: center;
}
.closing-statement {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(20px, 2.5vw, 30px);
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto;
  font-style: italic;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 48px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.footer-logo {
  font-family: 'Instrument Serif', serif;
  font-size: 16px;
  background: var(--fg);
  color: var(--bg);
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}
.footer-name {
  font-size: 14px;
  color: var(--fg-muted);
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 13px;
  color: var(--fg-muted);
  text-decoration: none;
}
.footer-links a:hover { color: var(--fg); }
.footer-note {
  font-size: 12px;
  color: var(--fg-muted);
  width: 100%;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 56px 24px 64px; }
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .creliability { grid-template-columns: 1fr; gap: 48px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .privacy-grid { grid-template-columns: 1fr; }
  .nav { padding: 20px 24px; }
  .howitworks, .pricing, .privacy, .closing { padding: 64px 24px; }
  .footer { padding: 24px; }
  .footer-links { gap: 16px; }
  .hero-stats { gap: 24px; }
  .demo-row { font-size: 11px; grid-template-columns: 44px 1fr auto 80px; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 16px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .demo-row { grid-template-columns: 40px 1fr 70px; }
  .demo-row span:last-child { display: none; }
}