/* OptionScout Theme */

/* Fonts */
:root {
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* Colors */
  --bg: #08090d;
  --bg-surface: #0f1118;
  --bg-card: #14171f;
  --fg: #f0ede8;
  --fg-muted: #9a958d;
  --fg-subtle: #5c574f;
  --accent: #ff6b35;
  --accent-dim: rgba(255, 107, 53, 0.12);
  --green: #4ade80;
  --border: rgba(240, 237, 232, 0.08);
}

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

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(8, 9, 13, 0.85);
  backdrop-filter: blur(12px);
}

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

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.header-nav {
  display: flex;
  gap: 32px;
}

.header-nav a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

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

/* Hero */
.hero {
  padding: 100px 32px 80px;
  border-bottom: 1px solid var(--border);
}

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

.hero-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 32px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--fg);
  max-width: 700px;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* Header CTA link */
.header-cta-link {
  color: var(--accent) !important;
  font-weight: 600;
}
.header-cta-link:hover { opacity: 0.8; }

/* Hero CTA buttons */
.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 12px 24px;
  border-radius: 6px;
  letter-spacing: -0.01em;
  transition: opacity 0.2s;
}
.btn-hero-primary:hover { opacity: 0.85; }

.btn-hero-secondary {
  display: inline-block;
  background: transparent;
  color: var(--fg-muted);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  padding: 12px 20px;
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-hero-secondary:hover { color: var(--fg); border-color: rgba(240,237,232,0.2); }

.hero-data {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--fg-muted);
}

/* Stats Band */
.stats-band {
  padding: 72px 32px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}

.stats-text p {
  font-size: 1.125rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

.stats-breakdown {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.breakdown-item {
  flex: 1;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.breakdown-item.highlight { background: var(--accent-dim); }

.breakdown-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.breakdown-val {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.breakdown-item.highlight .breakdown-val { color: var(--accent); }

.breakdown-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* Features */
.features {
  padding: 100px 32px;
  border-bottom: 1px solid var(--border);
}

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

.section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fg);
  max-width: 500px;
  margin-bottom: 64px;
  line-height: 1.15;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s;
}

.feature-card:hover { border-color: rgba(255, 107, 53, 0.3); }

.feature-number {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.feature-desc {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.65;
  flex: 1;
}

/* Comparison */
.comparison-block { border-top: 1px solid var(--border); padding-top: 48px; }

.comparison-label {
  font-size: 0.75rem;
  color: var(--fg-subtle);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 24px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.comparison-item {
  background: var(--bg-card);
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.comparison-item.current { background: var(--accent-dim); }

.comp-name {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--fg);
}

.comparison-item.current .comp-name { color: var(--accent); }

.comp-detail {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* Closing */
.closing {
  padding: 100px 32px;
  border-bottom: 1px solid var(--border);
}

.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1.12;
  margin-bottom: 24px;
}

.closing-body {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.closing-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 80px;
}

.closing-callout {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.callout-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-subtle);
  font-weight: 500;
}

.callout-value {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
}

.callout-note {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  margin-top: 4px;
  line-height: 1.5;
}

/* Footer */
.site-footer {
  padding: 48px 32px;
  background: var(--bg-surface);
}

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

.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--fg-muted);
}

.footer-meta { text-align: right; }

.footer-note {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  margin-bottom: 4px;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--fg-subtle);
}

/* Responsive */
@media (max-width: 900px) {
  .feature-grid { grid-template-columns: 1fr; }
  .comparison-grid { grid-template-columns: 1fr 1fr; }
  .closing-inner { grid-template-columns: 1fr; }
  .closing-aside { padding-top: 0; }
  .stats-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { text-align: left; }
  .hero { padding: 72px 24px 60px; }
  .features { padding: 72px 24px; }
  .closing { padding: 72px 24px; }
}

@media (max-width: 600px) {
  .hero-data { gap: 24px; }
  .stat-num { font-size: 1.5rem; }
  .comparison-grid { grid-template-columns: 1fr; }
  .stats-breakdown { flex-direction: column; }
  .breakdown-divider { width: 100%; height: 1px; }
  .header-inner { padding: 0 20px; }
}