/* =============================
   Super vs Orchids — Design System
   Paper / Ink aesthetic with comparison lab feel
   ============================= */

:root {
  --paper: #f7f5ef;
  --ink: #0a0a0a;
  --muted: #6a655f;
  --white: #ffffff;
  --line: rgba(10,10,10,0.14);
  --accent: #2b2a28;
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow-soft: 0 24px 64px rgba(24,22,18,0.14);
  --shadow-hard: 0 28px 84px rgba(0,0,0,0.22);
  --ease: cubic-bezier(0.16,1,0.3,1);
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Cabinet Grotesk', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 15% -10%, rgba(10,10,10,0.06), transparent 60%),
    radial-gradient(900px 500px at 85% 0%, rgba(10,10,10,0.05), transparent 60%),
    radial-gradient(700px 500px at 50% 110%, rgba(10,10,10,0.04), transparent 60%),
    var(--paper);
}

.page { position: relative; overflow-x: hidden; }

.ambient-grid {
  position: fixed; inset: 0;
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

.paper-noise {
  position: fixed; inset: 0;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="120" height="120"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="4" stitchTiles="stitch"/></filter><rect width="120" height="120" filter="url(%23n)" opacity="0.035"/></svg>');
  pointer-events: none;
  z-index: 1;
}

.shell { max-width: 1200px; padding: 0 32px; margin: 0 auto; position: relative; z-index: 2; }

.nav {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  gap: 24px; padding: 12px 20px; border-radius: 999px;
  background: rgba(247,245,239,0.82);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
  z-index: 10;
}

.brand img { width: 36px; height: 36px; }

.nav-links a {
  margin: 0 10px; text-decoration: none; color: var(--ink);
  font-weight: 600; font-size: 14px;
}

.btn {
  display: inline-block; padding: 14px 24px; border-radius: 999px;
  text-decoration: none; font-weight: 800;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
}

.btn-black { background: var(--ink); color: var(--white); }
.btn-white { background: var(--white); color: var(--ink); box-shadow: inset 0 0 0 1px var(--line); }

.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-hard); }

.hero { padding: 200px 0 140px; }
.hero-inner { text-align: center; }
.hero h1 {
  font-size: clamp(44px, 6vw, 74px);
  line-height: 1.05; max-width: 1120px; margin: 0 auto 24px;
}
.hero-sub { font-size: 20px; max-width: 820px; margin: 0 auto 36px; color: var(--muted); }
.hero-actions { display: flex; justify-content: center; gap: 18px; margin-bottom: 64px; }

.media-frame {
  aspect-ratio: 16 / 9; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-hard);
}
.media-frame video { width: 100%; height: 100%; object-fit: cover; }

.chapter { padding: 140px 0; }
.chapter h2 { font-size: clamp(32px, 4vw, 48px); text-align: center; margin-bottom: 56px; }

.compare-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px; grid-auto-flow: dense;
}

.compare-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-soft);
}
.compare-card.highlight { background: var(--ink); color: var(--white); }

.long-form-guide { padding: 140px 0; }
.long-form-guide h2 { font-size: 42px; margin-bottom: 24px; }
.long-form-guide h3 { margin-top: 56px; font-size: 28px; }
.long-form-guide h4 { margin-top: 32px; font-size: 22px; }
.long-form-guide p, .long-form-guide li, .long-form-guide dd { font-size: 18px; line-height: 1.6; color: var(--ink); }

.decision-table { width: 100%; border-collapse: collapse; margin-top: 32px; }
.decision-table th, .decision-table td { border: 1px solid var(--line); padding: 16px; text-align: left; }

.cta-band { padding: 160px 0; text-align: center; }

@media (max-width: 768px) {
  .nav { grid-template-columns: auto auto; }
  .nav-links { display: none; }
  .hero { padding: 160px 0 120px; }
  .hero-actions { flex-direction: column; }
  .chapter, .long-form-guide { padding: 100px 0; }
}
