/* ==========================================================
   OWN THE MORNING — WINNIPEG MARKET OPPORTUNITY
   MiTL Network Sales Page
   ========================================================== */

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

/* ---------- Tokens ---------- */
:root {
  /* MiTL Brand — Dark theme primary (matches mornings.live) */
  --bg-deep: #020617;
  --bg-surface: #0f172a;
  --bg-elevated: #1e293b;
  --bg-card: #0f172a;
  --border: #1e293b;
  --border-light: #334155;
  --text-bright: #f8fafc;
  --text-primary: #e2e8f0;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --accent: #ffde59;
  --accent-dark: #d97706;
  --accent-glow: rgba(255, 222, 89, 0.08);
  --red: #fb2c36;
  --red-dark: #e40014;
  --green: #22c55e;
  --blue: #3b82f6;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Layout */
  --max-width: 1120px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-deep);
}

img { display: block; max-width: 100%; height: auto; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* ---------- Scroll Animations ---------- */
.competitor, .feature-card, .data-card, .stream, .projection-card, .pricing-card, .proof-card, .format-pillar, .pricing-why__item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger children */
.competitor:nth-child(2).visible, .feature-card:nth-child(2).visible, .data-card:nth-child(2).visible,
.stream:nth-child(2).visible, .format-pillar:nth-child(2).visible { transition-delay: 0.08s; }
.competitor:nth-child(3).visible, .feature-card:nth-child(3).visible, .data-card:nth-child(3).visible,
.stream:nth-child(3).visible, .format-pillar:nth-child(3).visible { transition-delay: 0.16s; }
.competitor:nth-child(4).visible, .feature-card:nth-child(4).visible, .data-card:nth-child(4).visible,
.stream:nth-child(4).visible { transition-delay: 0.24s; }
.competitor:nth-child(5).visible { transition-delay: 0.32s; }
.feature-card:nth-child(5).visible, .data-card:nth-child(5).visible,
.stream:nth-child(5).visible { transition-delay: 0.32s; }
.feature-card:nth-child(6).visible, .data-card:nth-child(6).visible,
.stream:nth-child(6).visible { transition-delay: 0.4s; }

/* ---------- Section Helpers ---------- */
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-md);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 1.2rem + 2.5vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--text-bright);
  margin-bottom: var(--space-lg);
}

.section-intro {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: var(--space-3xl);
}

.hide-mobile { display: inline; }
@media (max-width: 640px) { .hide-mobile { display: none; } }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(2,6,23,0.2) 0%,
    rgba(2,6,23,0.5) 40%,
    rgba(2,6,23,0.85) 70%,
    rgba(2,6,23,0.98) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: var(--space-4xl) var(--space-lg) var(--space-3xl);
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg-deep);
  background: var(--accent);
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: var(--space-lg);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 2rem + 4vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--text-bright);
  margin-bottom: var(--space-lg);
}
.hero__title--accent {
  color: var(--accent);
}

.hero__subtitle {
  font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-2xl);
  max-width: 560px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero__stat-value {
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem);
  font-weight: 800;
  color: var(--text-bright);
  letter-spacing: -0.02em;
}
.hero__stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-light);
}

.hero__cta {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--bg-deep);
  background: var(--accent);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.2s;
}
.hero__cta:hover {
  background: #ffe680;
  color: var(--bg-deep);
  transform: translateY(-1px);
}

/* =============================================
   THE GAP — COMPETITIVE LANDSCAPE
   ============================================= */
.gap {
  padding: var(--space-4xl) 0;
  border-top: 1px solid var(--border);
}

.competitor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.competitor {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}
.competitor__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-sm);
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.competitor__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-bright);
}
.competitor__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
}
.competitor__tag--yellow { background: rgba(217,119,6,0.15); color: var(--accent-dark); }
.competitor__tag--blue { background: rgba(59,130,246,0.12); color: var(--blue); }
.competitor__tag--red { background: rgba(251,44,54,0.12); color: var(--red); }
.competitor__detail {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.competitor--dying {
  border-color: rgba(251,44,54,0.3);
  background: linear-gradient(135deg, var(--bg-surface) 0%, rgba(251,44,54,0.04) 100%);
}
.competitor-grid > .competitor:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.gap-callout {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  padding: var(--space-xl);
  background: var(--accent-glow);
  border: 1px solid rgba(255,222,89,0.15);
  border-radius: var(--radius-md);
}
.gap-callout__icon {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}
.gap-callout__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: var(--space-xs);
}
.gap-callout__text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* =============================================
   THE MiTL FORMAT
   ============================================= */
.format {
  padding: var(--space-4xl) 0;
  border-top: 1px solid var(--border);
}

.format-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.format-pillar {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  position: relative;
}
.format-pillar__number {
  font-size: 48px;
  font-weight: 900;
  color: rgba(255,222,89,0.08);
  position: absolute;
  top: 16px;
  right: 20px;
  line-height: 1;
  font-family: var(--font-display);
}
.format-pillar__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--accent-glow);
  border: 1px solid rgba(255,222,89,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: var(--space-md);
}
.format-pillar__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: var(--space-sm);
}
.format-pillar__text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.format-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  padding: var(--space-xl) 0;
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}
.format-flow__step {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}
.format-flow__step svg {
  flex-shrink: 0;
}
.format-flow__arrow {
  color: var(--text-muted);
  font-size: 18px;
  flex-shrink: 0;
}

.transparency-box {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
}
.transparency-box__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.transparency-box__title svg {
  color: var(--accent);
  flex-shrink: 0;
}
.transparency-box__text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
}
.transparency-box__text a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =============================================
   WHAT YOU GET
   ============================================= */
.what-you-get {
  padding: var(--space-4xl) 0;
  border-top: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.feature-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
}
.feature-card__icon {
  color: var(--accent);
  margin-bottom: var(--space-md);
}
.feature-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: var(--space-sm);
}
.feature-card__text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* =============================================
   PROTOTYPE
   ============================================= */
.prototype {
  padding: var(--space-4xl) 0;
  border-top: 1px solid var(--border);
}

.prototype__link {
  display: block;
  text-decoration: none;
  transition: transform 0.3s;
}
.prototype__link:hover {
  transform: scale(1.005);
}

.prototype__browser {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-surface);
}

.prototype__browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}
.prototype__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-light);
}
.prototype__dot:first-child { background: #ff5f57; }
.prototype__dot:nth-child(2) { background: #ffbd2e; }
.prototype__dot:nth-child(3) { background: #28ca42; }
.prototype__url {
  margin-left: 12px;
  font-size: 12px;
  color: var(--text-muted);
  font-family: monospace;
}

.prototype__screenshot {
  aspect-ratio: 16/7;
  background: linear-gradient(135deg, var(--bg-deep) 0%, var(--bg-surface) 50%, var(--bg-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.prototype__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.prototype__arrow {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.05em;
}

/* =============================================
   MARKET DATA
   ============================================= */
.market-data {
  padding: var(--space-4xl) 0;
  border-top: 1px solid var(--border);
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.data-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.data-card__value {
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.data-card__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}
.data-card__source {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* =============================================
   REVENUE MODEL
   ============================================= */
.revenue {
  padding: var(--space-4xl) 0;
  border-top: 1px solid var(--border);
}

.revenue-streams {
  margin-bottom: var(--space-3xl);
}

.stream {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--border);
}
.stream:last-child { border-bottom: none; }
.stream__rank {
  font-size: 14px;
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
  width: 32px;
  padding-top: 2px;
}
.stream__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 4px;
}
.stream__text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Revenue Projections */
.projections {
  margin-top: var(--space-2xl);
}
.projections__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1rem + 1vw, 1.75rem);
  font-weight: 800;
  color: var(--text-bright);
  margin-bottom: var(--space-lg);
}

.projections__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.projection-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
}
.projection-card__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
  gap: var(--space-xs);
}
.projection-card__tier {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.projection-card--conservative .projection-card__tier { color: var(--text-secondary); }
.projection-card--moderate .projection-card__tier { color: var(--accent); }
.projection-card--aggressive .projection-card__tier { color: var(--green); }

.projection-card--moderate {
  border-color: rgba(255,222,89,0.25);
  background: linear-gradient(135deg, var(--bg-surface) 0%, rgba(255,222,89,0.03) 100%);
}

.projection-card__period {
  font-size: 11px;
  color: var(--text-muted);
}

.projection-card__amount {
  font-size: clamp(1.75rem, 1.5rem + 1vw, 2.25rem);
  font-weight: 800;
  color: var(--text-bright);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}
.projection-card__amount span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.projection-card__breakdown {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--space-lg);
  flex: 1;
}
.projection-card__breakdown li {
  font-size: 13px;
  color: var(--text-secondary);
  padding-left: 14px;
  position: relative;
}
.projection-card__breakdown li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--border-light);
}

.projection-card__annual {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
}

/* =============================================
   PRICING
   ============================================= */
.pricing {
  padding: var(--space-4xl) 0;
  border-top: 1px solid var(--border);
}

.pricing-single {
  max-width: 640px;
  margin: 0 auto var(--space-2xl);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.pricing-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
}
.pricing-card--alt {
  background: linear-gradient(135deg, var(--bg-surface) 0%, rgba(255,222,89,0.03) 100%);
  border-color: rgba(255,222,89,0.2);
}
.pricing-card--featured {
  background: linear-gradient(135deg, var(--bg-surface) 0%, rgba(255,222,89,0.04) 100%);
  border-color: rgba(255,222,89,0.25);
  padding: var(--space-2xl);
}

.pricing-card__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid rgba(255,222,89,0.15);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: var(--space-md);
  align-self: flex-start;
}

.pricing-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1rem + 1vw, 1.75rem);
  font-weight: 800;
  color: var(--text-bright);
  margin-bottom: var(--space-sm);
}

.pricing-card__price {
  font-size: clamp(2.5rem, 2rem + 2.5vw, 3.5rem);
  font-weight: 900;
  color: var(--text-bright);
  margin-bottom: var(--space-xs);
  letter-spacing: -0.03em;
}
.pricing-card__price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 4px;
}

.pricing-card__subtitle {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: var(--space-md);
}

.pricing-card__description {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: var(--space-lg);
}

.pricing-card__benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--space-xl);
}
.pricing-card__benefits li {
  font-size: 14px;
  color: var(--text-primary);
  padding-left: 24px;
  position: relative;
}
.pricing-card__benefits li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
}

.pricing-card__math {
  border-top: 1px solid var(--border);
  padding-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}
.pricing-card__scenario {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-secondary);
}
.pricing-card__net {
  font-weight: 700;
  color: var(--text-primary);
}
.pricing-card__net--highlight {
  color: var(--green);
}

.pricing-card__annual {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: rgba(255,222,89,0.06);
  border: 1px solid rgba(255,222,89,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pricing-card__annual-label {
  font-size: 13px;
  color: var(--text-secondary);
}
.pricing-card__annual-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}

/* Why No Monthly Fee */
.pricing-why {
  margin-bottom: var(--space-xl);
}
.pricing-why__title {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  font-weight: 800;
  color: var(--text-bright);
  margin-bottom: var(--space-lg);
}
.pricing-why__grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.pricing-why__item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}
.pricing-why__item strong {
  color: var(--text-bright);
}
.pricing-why__icon {
  flex-shrink: 0;
  color: var(--accent);
  font-weight: 700;
  margin-top: 1px;
}

.pricing-note {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}
.pricing-note p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.pricing-note strong {
  color: var(--text-bright);
}

/* =============================================
   SOCIAL PROOF
   ============================================= */
.proof {
  padding: var(--space-4xl) 0;
  border-top: 1px solid var(--border);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.proof-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
}
.proof-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: var(--space-sm);
}
.proof-card__text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}
.proof-card__stat {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}

.election-callout {
  display: flex;
  gap: var(--space-xl);
  align-items: flex-start;
  background: var(--bg-surface);
  border: 1px solid rgba(251,44,54,0.2);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
}
.election-callout__date {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--red);
  color: white;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  min-width: 72px;
}
.election-callout__day {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}
.election-callout__month {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.election-callout__content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: var(--space-xs);
}
.election-callout__content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* =============================================
   CTA
   ============================================= */
.cta-section {
  padding: var(--space-4xl) 0;
  border-top: 1px solid var(--border);
  text-align: center;
  background: linear-gradient(180deg, var(--bg-deep) 0%, rgba(255,222,89,0.03) 50%, var(--bg-deep) 100%);
}
.cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.5rem + 3vw, 3.5rem);
  font-weight: 900;
  color: var(--text-bright);
  margin-bottom: var(--space-lg);
  line-height: 1.1;
}
.cta-section__text {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto var(--space-xl);
  line-height: 1.7;
}
.cta-section__button {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: var(--bg-deep);
  background: var(--accent);
  padding: 16px 40px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.2s;
  letter-spacing: 0.02em;
}
.cta-section__button:hover {
  background: #ffe680;
  color: var(--bg-deep);
  transform: translateY(-2px);
}
.cta-section__fine {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: var(--space-md);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--border);
}
.site-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-lg);
}
.site-footer__logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-bright);
}
.site-footer__tagline {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}
.site-footer__links {
  display: flex;
  gap: var(--space-lg);
}
.site-footer__links a {
  font-size: 13px;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.site-footer__links a:hover { color: var(--text-bright); }
.site-footer__attribution a {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
}
.site-footer__attribution a:hover { color: var(--text-secondary); }

/* =============================================
   MOBILE RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .competitor-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .data-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .projections__grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .proof-grid {
    grid-template-columns: 1fr;
  }
  .format-pillars {
    grid-template-columns: 1fr;
  }
  .format-flow {
    flex-direction: column;
  }
  .format-flow__arrow {
    transform: rotate(90deg);
  }
  .hero__stats {
    gap: var(--space-lg);
  }
  .hero__stat-divider {
    display: none;
  }
  .gap-callout {
    flex-direction: column;
  }
  .election-callout {
    flex-direction: column;
  }
  .site-footer__inner {
    flex-direction: column;
    text-align: center;
  }
  .site-footer__links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .data-grid {
    grid-template-columns: 1fr;
  }
  .hero__content {
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-2xl);
  }
  .container {
    padding: 0 var(--space-md);
  }
}
