/* ═══════════════════════════════════════════════════════════════
   BreatheWise — v2 brand overlay
   Layered on top of style.css. Drop this file in AFTER style.css
   in index.html and the website inherits the IG post brand.

   Type system (matches IG posts):
     • Fraunces       — display, headlines, accent words (italic)
     • Inter          — body, UI, nav
     • JetBrains Mono — eyebrows, numbers, labels
     (Space Grotesk has been dropped entirely.)

   Color system:
     • Cream paper #F5EFE4 (campaign accent)
     • Warm off-white #FAFAF7 (default bg)
     • Warm charcoal #2A2A2A (text)
     • Deep green #2C5F3F + Mint #52B788
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght,SOFT,WONK@9..144,300;9..144,400;9..144,500;9..144,600;9..144,700&display=swap');

:root {
  /* Warm neutrals */
  --white: #FAFAF7;
  --paper: #F5EFE4;
  --paper-deep: #EBE3D0;
  --g100: #F2EFE9;
  --g200: #E5E0D5;
  --g400: #8A857C;
  --g600: #5A5650;
  --black: #2A2A2A;
  --hero-black: #1A1612;

  /* Brand greens */
  --green: #2C5F3F;
  --green-l: #52B788;
  --green-p: #EDF5EE;

  /* Status */
  --danger: #E76F51;
  --warning: #F4A261;

  /* Type */
  --font: 'Inter', -apple-system, sans-serif;
  --display: 'Fraunces', Georgia, serif;     /* now Fraunces, not Space Grotesk */
  --serif: 'Fraunces', Georgia, serif;
  --mono: 'JetBrains Mono', monospace;
}

body {
  background: var(--white);
  color: var(--black);
}

/* Section bg rotation */
.problem,
.before-after,
.team,
.verticals,
.testimonials,
.share-section { background: var(--white); }

.progression,
.how-it-works,
.tech-stack,
.faq { background: var(--g100); }

/* ─────────────────────────────────────────────────────────────
   NAV
   ───────────────────────────────────────────────────────────── */
.navbar {
  background: rgba(250, 250, 247, 0.82);
  border-bottom: 1px solid rgba(42, 42, 42, 0.06);
}
.navbar.at-hero {
  background: rgba(250, 250, 247, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(42, 42, 42, 0.06);
}
.navbar.at-hero .nav-logo,
.navbar.at-hero .nav-links a,
.navbar.at-hero .nav-drop-trigger { color: var(--g600); }
.navbar.at-hero .nav-logo { color: var(--black); }
.navbar.at-hero .nav-cta { color: #fff !important; }
.navbar.at-hero .nav-hamburger span { background: var(--black); }

.nav-logo {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.nav-cta { background: var(--green); }
.nav-cta:hover { background: #234d33; }

/* ─────────────────────────────────────────────────────────────
   HERO V2 — editorial cream
   ───────────────────────────────────────────────────────────── */
.hero-v2 {
  background: var(--paper);
  color: var(--black);
  min-height: 100vh;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-v2-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
  position: relative;
}
.hero-v2-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 80px;
  flex-wrap: wrap;
  gap: 20px;
}
.hero-v2-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--g600);
}
.hero-v2-aqi {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--g600);
}
.hero-v2-aqi-dot {
  width: 7px;
  height: 7px;
  background: var(--danger);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot-v2 1.8s ease-in-out infinite;
}
@keyframes pulse-dot-v2 {
  0%, 100% { box-shadow: 0 0 0 0 rgba(231,111,81,0.5); }
  50%      { box-shadow: 0 0 0 6px rgba(231,111,81,0); }
}

.hero-v2-headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--black);
  margin: 0 0 80px;
}
.hero-v2-accent {
  font-style: italic;
  font-weight: 500;
  color: var(--green);
}

.hero-v2-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 80px;
}
.hero-v2-left { max-width: 480px; flex: 1; }
.hero-v2-sub {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  color: var(--g600);
  margin: 0 0 28px;
}
.hero-v2-sub strong { color: var(--black); font-weight: 600; }

.hero-v2-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-v2-cta {
  display: inline-flex;
  align-items: center;
  background: var(--green);
  color: var(--paper) !important;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
}
.hero-v2-cta:hover { background: #234d33; transform: scale(1.02); }
.hero-v2-ghost {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid var(--black);
  padding-bottom: 2px;
  transition: gap .2s;
}
.hero-v2-ghost span { display: inline-block; transition: transform .25s; }
.hero-v2-ghost:hover span { transform: translateX(4px); }

.hero-v2-proof {
  text-align: right;
  border-left: 1px solid rgba(42, 42, 42, 0.18);
  padding-left: 36px;
  flex-shrink: 0;
}
.hero-v2-proof-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--g600);
  margin-bottom: 8px;
}
.hero-v2-proof-num {
  font-family: var(--serif);
  font-size: 88px;
  font-weight: 400;
  color: var(--danger);
  line-height: 1;
  letter-spacing: -0.03em;
}
.hero-v2-proof-unit {
  font-size: 13px;
  color: var(--g600);
  margin-top: 6px;
  font-family: var(--font);
}
.hero-v2-danger { color: var(--danger); font-weight: 600; }

/* ─────────────────────────────────────────────────────────────
   Section headers — Fraunces
   ───────────────────────────────────────────────────────────── */
.section-headline {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
  font-size: 56px;
}
.section-headline em,
.section-headline i {
  font-style: italic;
  font-weight: 500;
  color: var(--green);
}
.overline {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
}
.section-subtitle {
  font-family: var(--font);
  color: var(--g600);
}

/* ─────────────────────────────────────────────────────────────
   PROBLEM — dark warm card, serif numbers
   ───────────────────────────────────────────────────────────── */
.data-table {
  background: var(--hero-black);
  border-radius: 24px;
}
.data-number {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 80px;
  letter-spacing: -0.03em;
  line-height: 0.9;
}
.data-row-labels {
  font-family: var(--font);
}
.data-verified {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
}

/* ─────────────────────────────────────────────────────────────
   PROGRESSION
   ───────────────────────────────────────────────────────────── */
.prog-stage {
  background: var(--white);
  border-color: rgba(42, 42, 42, 0.06);
}
.prog-stage-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.prog-metric-value {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.02em;
}
.prog-metric-label {
  font-family: var(--font);
}
.prog-metric-status {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.05em;
}

/* ─────────────────────────────────────────────────────────────
   HOW IT WORKS
   ───────────────────────────────────────────────────────────── */
.how-step-num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  background: var(--green-p);
  color: var(--green);
  border-radius: 50%;
  width: 56px;
  height: 56px;
}
.how-step-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
}

/* ─────────────────────────────────────────────────────────────
   TEAM
   ───────────────────────────────────────────────────────────── */
.team-card {
  background: var(--white);
  border-color: rgba(42, 42, 42, 0.06);
}
.team-photo-wrap {
  background: linear-gradient(180deg, var(--paper) 0%, #EBE5D7 100%);
}
.team-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--black);
}
.team-role {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--green);
}
.team-bio {
  font-family: var(--font);
  color: var(--g600);
}

/* ─────────────────────────────────────────────────────────────
   VERTICALS
   ───────────────────────────────────────────────────────────── */
.v-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  font-size: 30px;
}
.v-stat {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
}
.v-stat b {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: 14px;
}

/* ─────────────────────────────────────────────────────────────
   TECH STACK
   ───────────────────────────────────────────────────────────── */
.tech-col {
  background: var(--white);
  border-color: rgba(42, 42, 42, 0.05);
}
.tech-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--green);
}
.tech-list li { font-family: var(--font); }

/* ─────────────────────────────────────────────────────────────
   TESTIMONIALS
   ───────────────────────────────────────────────────────────── */
.testimonial-card {
  background: var(--g100);
  border-radius: 20px;
}
.testimonial-text {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--black);
  letter-spacing: -0.005em;
}
.testimonial-author strong {
  font-family: var(--font);
  font-weight: 600;
  color: var(--black);
}

/* ─────────────────────────────────────────────────────────────
   SHARE
   ───────────────────────────────────────────────────────────── */
.share-box {
  background: var(--g100);
  border-radius: 20px;
}
.share-left h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.01em;
}
.share-btn {
  background: var(--white);
  border-color: rgba(42, 42, 42, 0.08);
}

/* ─────────────────────────────────────────────────────────────
   FAQ
   ───────────────────────────────────────────────────────────── */
.faq-question {
  font-family: var(--font);
  font-weight: 600;
  font-size: 17px;
  color: var(--black);
}
.faq-item.open .faq-icon { background: var(--green); }

/* ─────────────────────────────────────────────────────────────
   CONTACT — deep green
   ───────────────────────────────────────────────────────────── */
.contact {
  background: var(--green);
  color: var(--paper);
}
.contact-headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 56px;
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--paper);
}
.contact-headline em,
.contact-headline i {
  font-style: italic;
  font-weight: 500;
}
.contact-subtitle {
  font-family: var(--font);
  color: rgba(245, 239, 228, 0.7);
}
.contact-info a { color: rgba(245, 239, 228, 0.55); }
.contact-info a:hover { color: var(--paper); }
.contact-address {
  color: rgba(245, 239, 228, 0.5);
  border-color: rgba(245, 239, 228, 0.12);
}
.contact-address svg { color: var(--green-l); }

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(245, 239, 228, 0.08);
  border-color: rgba(245, 239, 228, 0.15);
  color: var(--paper);
  font-family: var(--font);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(245, 239, 228, 0.35); }
.form-group label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(245, 239, 228, 0.55);
  text-transform: uppercase;
}
.form-submit {
  background: var(--paper);
  color: var(--green);
  font-family: var(--font);
}
.form-submit:hover { background: #fff; }

/* ─────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────── */
.footer { background: var(--hero-black); }
.footer-logo {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
}

/* ─────────────────────────────────────────────────────────────
   FLOATING CONTACTS
   ───────────────────────────────────────────────────────────── */
.fc-btn { background: var(--black); }

/* ─────────────────────────────────────────────────────────────
   STAKES — minimal list
   ───────────────────────────────────────────────────────────── */
.stakes { background: var(--white); padding: 120px 0; }
.stakes-mini {
  list-style: none;
  margin: 64px 0 0;
  padding: 0;
  border-top: 1px solid rgba(42, 42, 42, 0.1);
}
.stakes-mini li {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: baseline;
  gap: 32px;
  padding: 32px 8px;
  border-bottom: 1px solid rgba(42, 42, 42, 0.1);
}
.stakes-mini-num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 80px;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--danger);
}
.stakes-mini-text {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--black);
}
.stakes-mini-src {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--g600);
  white-space: nowrap;
}
.stakes-mini-quote {
  margin: 56px auto 0;
  max-width: 820px;
  text-align: center;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--g600);
}
.stakes-mini-quote em { font-style: italic; color: var(--black); }
.stakes-mini-quote-by {
  display: block;
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--g600);
  font-style: normal;
}
@media (max-width: 767px) {
  .stakes { padding: 80px 0; }
  .stakes-mini li { grid-template-columns: 1fr; gap: 8px; padding: 24px 4px; }
  .stakes-mini-num { font-size: 56px; }
  .stakes-mini-text { font-size: 20px; }
  .stakes-mini-quote { font-size: 19px; }
}

/* legacy stakes block (no longer used) */
.stakes-legacy { display: none; }
.stakes-old-keep { background: var(--white); padding: 120px 0; }
.stakes-sub { max-width: 680px; margin-top: 16px; font-size: 17px; line-height: 1.55; }

/* Trust bar — institutional logos */
.stakes-trustbar {
  margin-top: 56px;
  padding: 28px 36px;
  background: var(--paper);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stakes-trustbar-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--g600);
  flex-shrink: 0;
}
.stakes-trustbar-logos {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  flex: 1;
}
.stakes-logo {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--black);
}
.stakes-logo em { font-style: italic; font-weight: 400; }
.stakes-logo-harvard { letter-spacing: 0.18em; font-weight: 600; font-family: 'Times New Roman', serif; }
.stakes-logo-who { letter-spacing: 0.05em; font-family: 'Helvetica Neue', sans-serif; font-weight: 700; color: #0093D5; }
.stakes-logo-ashrae { font-family: var(--font); font-weight: 700; letter-spacing: 0.04em; }
.stakes-logo-epa { font-family: var(--font); font-weight: 700; }
.stakes-logo-lancet { font-family: var(--serif); font-weight: 500; font-style: italic; }
.stakes-logo-sep {
  width: 1px;
  height: 22px;
  background: rgba(42, 42, 42, 0.18);
}

/* Card grid */
.stakes-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.stakes-v2 {
  background: var(--paper);
  border-radius: 20px;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.stakes-v2-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(42, 42, 42, 0.1);
  margin-bottom: 22px;
}
.stakes-v2-badge-mark {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #A41034;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Times New Roman', serif;
  font-weight: 600;
  font-size: 22px;
  flex-shrink: 0;
}
.stakes-v2-badge-mark-blue { background: #0093D5; }
.stakes-v2-badge-mark-dark { background: var(--hero-black); font-family: var(--serif); font-size: 14px; }
.stakes-v2-badge-mark-green { background: #056839; }
.stakes-v2-badge-mark-amber { background: #C8702D; }
.stakes-v2-badge-text {
  font-family: var(--font);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.25;
  color: var(--black);
}
.stakes-v2-badge-text span {
  display: block;
  font-weight: 400;
  font-size: 11px;
  color: var(--g600);
  margin-top: 1px;
}
.stakes-v2-num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 84px;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--danger);
  margin-bottom: 6px;
}
.stakes-v2-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--g600);
  margin-bottom: 14px;
}
.stakes-v2-line {
  font-family: var(--font);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--g600);
  margin: 0 0 auto;
  padding-bottom: 18px;
}
.stakes-v2-line strong { color: var(--black); font-weight: 600; }
.stakes-v2-cite {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--g400);
  text-transform: uppercase;
  border-top: 1px solid rgba(42, 42, 42, 0.08);
  padding-top: 12px;
  margin-top: auto;
}

/* Quote card — full width hero */
.stakes-v2-quote {
  grid-column: span 3;
  background: var(--green);
  color: var(--paper);
  padding: 48px 56px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 24px;
  row-gap: 16px;
  align-items: start;
}
.stakes-v2-quote-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 140px;
  line-height: 0.5;
  color: var(--green-l);
  grid-row: 1 / 3;
  margin-top: 20px;
}
.stakes-v2-quote-text {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--paper);
  margin: 0;
  max-width: 880px;
}
.stakes-v2-quote-text em {
  font-style: italic;
  font-weight: 500;
  color: #fff;
}
.stakes-v2-quote-author {
  display: flex;
  align-items: center;
  gap: 14px;
  grid-column: 2;
}
.stakes-v2-quote-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.02em;
}
.stakes-v2-quote-name {
  font-family: var(--font);
  font-weight: 600;
  font-size: 14px;
  color: var(--paper);
}
.stakes-v2-quote-role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(245, 239, 228, 0.6);
  margin-top: 2px;
}
.stakes-v2-quote-role em { font-family: var(--serif); font-style: italic; font-size: 12px; color: var(--paper); letter-spacing: 0; }

@media (max-width: 1023px) {
  .stakes-grid-v2 { grid-template-columns: repeat(2, 1fr); }
  .stakes-v2-quote { grid-column: span 2; padding: 36px 36px; }
  .stakes-v2-quote-text { font-size: 24px; }
  .stakes-v2-num { font-size: 64px; }
}
@media (max-width: 767px) {
  .stakes { padding: 80px 0; }
  .stakes-grid-v2 { grid-template-columns: 1fr; }
  .stakes-v2-quote { grid-column: span 1; padding: 32px 24px; grid-template-columns: 1fr; }
  .stakes-v2-quote-mark { grid-row: 1; font-size: 80px; margin-top: 0; }
  .stakes-v2-quote-text { font-size: 20px; }
  .stakes-v2-quote-author { grid-column: 1; }
  .stakes-trustbar { padding: 20px 22px; gap: 18px; }
  .stakes-trustbar-logos { gap: 18px; }
  .stakes-logo { font-size: 16px; }
  .stakes-v2-num { font-size: 56px; }
}

/* ─────────────────────────────────────────────────────────────
   COMPARE — purifier vs BreatheWise
   ───────────────────────────────────────────────────────────── */
.compare { background: var(--g100); padding: 120px 0; }
.compare-table {
  margin-top: 56px;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(42, 42, 42, 0.06);
}
.compare-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  background: var(--hero-black);
  color: var(--paper);
}
.compare-head-cell { padding: 28px 28px 24px; }
.compare-head-empty { background: var(--hero-black); }
.compare-head-them { border-left: 1px solid rgba(245, 239, 228, 0.1); }
.compare-head-us {
  background: var(--green);
  position: relative;
}
.compare-head-us::before {
  content: 'BREATHEWISE';
  position: absolute;
  top: 8px; right: 16px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: rgba(245, 239, 228, 0.5);
}
.compare-head-label {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.compare-head-sub {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(245, 239, 228, 0.55);
}

.compare-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  border-top: 1px solid rgba(42, 42, 42, 0.06);
}
.compare-row-label {
  padding: 22px 28px;
  font-family: var(--font);
  font-weight: 500;
  font-size: 15px;
  color: var(--black);
  background: var(--paper);
  display: flex;
  align-items: center;
}
.compare-cell {
  padding: 22px 28px;
  font-family: var(--font);
  font-size: 14.5px;
  color: var(--g600);
  display: flex;
  align-items: center;
  gap: 10px;
  border-left: 1px solid rgba(42, 42, 42, 0.06);
  position: relative;
}
.compare-cell::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
}
.compare-no { color: var(--danger); }
.compare-no::before { background: var(--danger); opacity: 0.18; border: 2px solid var(--danger); }
.compare-partial { color: var(--warning); }
.compare-partial::before { background: var(--warning); opacity: 0.25; border: 2px solid var(--warning); }
.compare-yes { color: var(--green); font-weight: 500; }
.compare-yes::before { background: var(--green); }

.compare-row-final { background: var(--paper-deep); border-top-width: 2px; border-top-color: var(--black); }
.compare-row-label-final {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  background: var(--paper-deep);
}
.compare-row-final .compare-cell {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 17px;
  background: var(--paper-deep);
}
.compare-row-final .compare-yes::before { background: var(--green); }

.compare-foot {
  margin: 32px auto 0;
  max-width: 720px;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.4;
  color: var(--g600);
}

@media (max-width: 1023px) {
  .stakes-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-head, .compare-row { grid-template-columns: 1fr 1fr 1fr; }
  .compare-head-label { font-size: 18px; }
  .compare-row-label { font-size: 14px; padding: 18px 18px; }
  .compare-cell { font-size: 13px; padding: 18px 18px; }
}
@media (max-width: 767px) {
  .stakes { padding: 80px 0; }
  .stakes-grid { grid-template-columns: 1fr; }
  .stakes-card-num { font-size: 52px; }
  .compare { padding: 80px 0; }
  .compare-table { border-radius: 16px; }
  .compare-head { grid-template-columns: 1fr; }
  .compare-head-them, .compare-head-us { border-left: none; border-top: 1px solid rgba(245,239,228,0.1); }
  .compare-row { grid-template-columns: 1fr; }
  .compare-row-label { background: var(--hero-black); color: var(--paper); padding: 14px 20px; font-size: 13px; font-family: var(--mono); letter-spacing: 0.08em; text-transform: uppercase; }
  .compare-cell { border-left: none; padding: 16px 20px; }
  .compare-cell::after {
    content: attr(data-label);
    margin-left: auto;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    color: var(--g400);
  }
}
@media (max-width: 1023px) {
  .hero-v2-inner { padding: 0 40px; }
  .hero-v2-headline { font-size: 80px; }
  .hero-v2-bottom { flex-direction: column; align-items: stretch; gap: 48px; }
  .hero-v2-proof { text-align: left; border-left: none; border-top: 1px solid rgba(42,42,42,0.18); padding-left: 0; padding-top: 24px; }
  .data-number { font-size: 60px; }
  .section-headline { font-size: 44px; }
}
@media (max-width: 767px) {
  .hero-v2 { padding: 100px 0 60px; min-height: auto; }
  .hero-v2-inner { padding: 0 20px; }
  .hero-v2-headline { font-size: 52px; margin-bottom: 48px; }
  .hero-v2-meta-row { margin-bottom: 56px; }
  .hero-v2-proof-num { font-size: 64px; }
  .data-number { font-size: 48px; }
  .contact-headline { font-size: 36px; }
  .nav-logo { font-size: 19px; }
  .section-headline { font-size: 34px; }
}
