/* ================================================================
   BOLLSEN Sleep Dispatch — Loop Dream vs Life+ Comparison v2
   Aesthetic: Data-journalism teardown (FiveThirtyEight × lab report)
   Fonts: DM Serif Display (display) + IBM Plex Sans (body) + IBM Plex Mono (data)
   Palette: Warm paper / deep ink / signal blue / amber / loop-neutral
   ================================================================ */

/* ----------------------------------------------------------------
   DESIGN TOKENS
   ---------------------------------------------------------------- */
:root {
  /* Base palette — warm paper, not pure white */
  --paper:          #F5F0E8;
  --paper-mid:      #EDE7D9;
  --paper-dark:     #E2D9C8;
  --ink:            #1C1917;
  --ink-mid:        #3D3530;
  --ink-light:      #6B6158;
  --rule:           #D4C9B6;

  /* BOLLSEN signal blue — measured, scientific */
  --bollsen:        #1B5E8A;
  --bollsen-dark:   #124168;
  --bollsen-light:  #E8F1F8;
  --bollsen-mid:    #4A8CB5;

  /* Loop neutral — warm grey, not hostile */
  --loop:           #8A7F72;
  --loop-light:     #F0EBE3;
  --loop-dark:      #5C5248;

  /* Amber accent — callouts, flags, alerts */
  --amber:          #D4820A;
  --amber-light:    #FDF3E0;
  --amber-dark:     #A35F00;

  /* Status colours */
  --win:            #1B7A3E;
  --win-light:      #E6F4EC;
  --warn:           #C0452A;
  --warn-light:     #FBE9E6;
  --neutral:        #5A6170;
  --neutral-light:  #F0F2F5;

  /* Type scale */
  --font-display:   'DM Serif Display', Georgia, serif;
  --font-body:      'IBM Plex Sans', system-ui, sans-serif;
  --font-mono:      'IBM Plex Mono', 'Courier New', monospace;

  /* Spacing */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  32px;
  --space-lg:  64px;
  --space-xl:  96px;
  --space-2xl: 140px;

  /* Layout */
  --max-prose:  680px;
  --max-wide:   960px;
  --max-full:   1200px;

  /* Motion */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Background texture — subtle noise grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 1;
}

/* ----------------------------------------------------------------
   ACCESSIBILITY
   ---------------------------------------------------------------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  padding: 12px 20px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transform: translateY(-100%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--bollsen);
  outline-offset: 3px;
  border-radius: 2px;
}

button, a {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* ----------------------------------------------------------------
   REDUCED MOTION
   ---------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ----------------------------------------------------------------
   SCROLL REVEAL
   ---------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.reveal-stagger.revealed > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: none; }
.reveal-stagger.revealed > *:nth-child(2) { transition-delay: 0.12s; opacity: 1; transform: none; }
.reveal-stagger.revealed > *:nth-child(3) { transition-delay: 0.19s; opacity: 1; transform: none; }
.reveal-stagger.revealed > *:nth-child(4) { transition-delay: 0.26s; opacity: 1; transform: none; }

/* ----------------------------------------------------------------
   STICKY BAR
   ---------------------------------------------------------------- */
.sticky-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--ink);
  border-bottom: 1px solid var(--ink-mid);
  transform: translateY(-100%);
  transition: transform 0.35s var(--ease-out);
}

.sticky-bar.is-visible {
  transform: translateY(0);
}

.sticky-bar__inner {
  max-width: var(--max-full);
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-bar__rating {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(245, 240, 232, 0.75);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.sticky-bar__stars {
  color: #D4A017;
  font-size: 12px;
  letter-spacing: 1px;
}

.sticky-bar__cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: var(--bollsen);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
  white-space: nowrap;
  min-height: 36px;
  transition: background-color 0.2s ease;
}

.sticky-bar__cta:hover {
  background: var(--bollsen-dark);
}

/* ----------------------------------------------------------------
   MASTHEAD
   ---------------------------------------------------------------- */
.masthead {
  border-bottom: 2px solid var(--ink);
  background: var(--ink);
}

.masthead__inner {
  max-width: var(--max-full);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.masthead__meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.masthead__pub {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--paper);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.masthead__divider {
  color: rgba(245, 240, 232, 0.35);
}

.masthead__vol {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(245, 240, 232, 0.5);
  letter-spacing: 0.08em;
}

.masthead__nav {
  font-size: 12px;
}

.masthead__breadcrumb {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(245, 240, 232, 0.5);
  font-family: var(--font-mono);
  font-size: 11px;
}

.masthead__breadcrumb a {
  color: rgba(245, 240, 232, 0.7);
  text-decoration: none;
}

.masthead__breadcrumb a:hover {
  color: var(--paper);
}

/* ----------------------------------------------------------------
   HERO — THE BIG DUEL
   ---------------------------------------------------------------- */
.hero {
  background: var(--ink);
  padding: var(--space-xl) 24px var(--space-lg);
  position: relative;
  overflow: hidden;
}

/* Decorative horizontal rule lines — lab report aesthetic */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bollsen) 0%, var(--bollsen-mid) 50%, transparent 100%);
}

.hero__inner {
  max-width: var(--max-wide);
  margin: 0 auto;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--space-md);
}

.eyebrow-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--bollsen-mid);
  background: rgba(27, 94, 138, 0.12);
  border: 1px solid rgba(74, 140, 181, 0.25);
  padding: 4px 10px;
  border-radius: 1px;
}

.eyebrow-sep {
  color: var(--ink-light);
}

/* THE RATING DUEL — big typographic moment */
.hero__data-duel {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: var(--space-md);
  padding: var(--space-md) 0;
  border-top: 1px solid rgba(245, 240, 232, 0.08);
  border-bottom: 1px solid rgba(245, 240, 232, 0.08);
}

.duel__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.duel__col--loop {
  align-items: flex-start;
}

.duel__col--bollsen {
  align-items: flex-end;
}

.duel__label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.duel__col--loop .duel__label {
  color: var(--loop);
}

.duel__col--bollsen .duel__label {
  color: var(--bollsen-mid);
}

.duel__number {
  font-family: var(--font-display);
  line-height: 1;
  font-size: clamp(72px, 14vw, 140px);
}

.duel__number--loop {
  color: var(--loop);
}

.duel__number--bollsen {
  color: var(--paper);
}

.duel__sub {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(245, 240, 232, 0.45);
}

.duel__vs {
  font-family: var(--font-display);
  font-size: clamp(20px, 4vw, 36px);
  color: rgba(245, 240, 232, 0.2);
  flex-shrink: 0;
  font-style: italic;
  align-self: center;
}

/* Rating bars */
.hero__rating-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--space-md);
}

.rbar {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rbar__track {
  flex: 1;
  height: 6px;
  background: rgba(245, 240, 232, 0.08);
  border-radius: 1px;
  overflow: hidden;
}

.rbar__fill {
  height: 100%;
  border-radius: 1px;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 1.2s var(--ease-out) 0.3s;
}

.rbar__fill--loop {
  background: var(--loop);
}

.rbar__fill--bollsen {
  background: var(--bollsen-mid);
}

.rbar__label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(245, 240, 232, 0.5);
  width: 42px;
  flex-shrink: 0;
  text-align: right;
}

/* Hero headline */
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 4.5vw, 48px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--paper);
  margin-bottom: var(--space-sm);
  max-width: 720px;
}

.hero__subheadline {
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(245, 240, 232, 0.5);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

/* Byline */
.byline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(245, 240, 232, 0.1);
}

.byline__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bollsen);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

.byline__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.byline__name {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--paper);
}

.byline__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(245, 240, 232, 0.45);
}

/* Hero CTA */
.hero__cta-block {
  margin-bottom: var(--space-sm);
}

.hero__cta-guarantee {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(245, 240, 232, 0.45);
  letter-spacing: 0.05em;
}

/* Trust pills */
.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(245, 240, 232, 0.6);
  background: rgba(245, 240, 232, 0.05);
  border: 1px solid rgba(245, 240, 232, 0.1);
  padding: 6px 12px;
  border-radius: 1px;
}

.trust-pill__icon {
  color: #D4A017;
}

/* ----------------------------------------------------------------
   HERO TWO-COLUMN GRID (Option A — FSD rebuild 2026-04-24)
   Left: narrative layers 1-7. Right: compact proof artifact (duel).
   Desktop: 55/45 split. Mobile: single column, CTA above fold.
   ---------------------------------------------------------------- */

/* Grid wrapper overrides the default centred stack */
.hero__inner--grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 0 48px;
  align-items: center;
  max-width: var(--max-full);
  padding: var(--space-md) 24px var(--space-md);
}

/* Narrative column — all text layers */
.hero__narrative {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-right: 0;
}

.hero__narrative .hero__eyebrow {
  margin-bottom: 16px;
}

.hero__narrative .hero__headline {
  margin-bottom: 14px;
  font-size: clamp(22px, 2.8vw, 40px);
  max-width: 600px;
}

.hero__narrative .hero__subheadline {
  margin-bottom: 14px;
  font-size: 12px;
  line-height: 1.7;
}

.hero__narrative .byline {
  margin-bottom: 20px;
  padding-bottom: 0;
  border-bottom: none;
}

.hero__narrative .hero__cta-block {
  margin-bottom: 16px;
}

.hero__narrative .trust-pills {
  gap: 6px;
}

/* CTA button: full width on mobile, auto on desktop */
.hero__cta-btn {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 15px 24px;
  min-height: 52px;
}

@media (min-width: 768px) {
  .hero__cta-btn {
    width: auto;
  }
}

/* Proof column — compact duel */
.hero__proof {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: var(--space-md) 0 var(--space-sm);
  border-left: 1px solid rgba(245, 240, 232, 0.1);
  padding-left: 48px;
}

/* Compact duel: numerals at ~60% of original 140px = 84px max */
.hero__data-duel--compact {
  border-top: none;
  border-bottom: none;
  padding: 0;
  margin-bottom: 0;
}

.hero__data-duel--compact .duel__number {
  font-size: clamp(44px, 8vw, 84px);
}

/* Rating bars in compact proof col */
.hero__rating-bars--compact {
  margin-bottom: 0;
}

/* Proof note annotation */
.hero__proof-note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(245, 240, 232, 0.35);
  line-height: 1.65;
  padding-top: 10px;
  border-top: 1px solid rgba(245, 240, 232, 0.08);
}

/* ---- Mobile: collapse to single column, CTA must be above y=844 ---- */
@media (max-width: 767px) {
  .hero__inner--grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 20px 16px 16px;
  }

  /* On mobile: proof column goes BELOW narrative, after CTA */
  .hero__proof {
    order: 2;
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(245, 240, 232, 0.1);
    padding-top: var(--space-sm);
    margin-top: 8px;
  }

  .hero__narrative {
    order: 1;
  }

  /* Tighter spacing on mobile to keep CTA above y=844 */
  .hero__narrative .hero__eyebrow {
    margin-bottom: 10px;
  }

  .hero__narrative .hero__headline {
    font-size: clamp(20px, 5.5vw, 28px);
    margin-bottom: 10px;
    line-height: 1.25;
  }

  .hero__narrative .hero__subheadline {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .hero__narrative .byline {
    margin-bottom: 12px;
  }

  .hero__narrative .byline__avatar {
    width: 34px;
    height: 34px;
    font-size: 10px;
  }

  .hero__narrative .hero__cta-block {
    margin-bottom: 10px;
  }

  .hero__cta-btn {
    font-size: 15px;
    padding: 14px 20px;
    min-height: 48px;
  }

  /* Compact duel even smaller on mobile */
  .hero__data-duel--compact .duel__number {
    font-size: clamp(36px, 10vw, 56px);
  }

  /* Trust pills: wrap to 2 per row on narrow screens */
  .hero__narrative .trust-pills {
    gap: 5px;
  }

  .hero__narrative .trust-pill {
    font-size: 10px;
    padding: 4px 8px;
  }
}

/* ----------------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  min-height: 52px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.btn--primary {
  background: var(--bollsen);
  color: var(--paper);
  border-color: var(--bollsen);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.btn--primary:hover {
  background: var(--bollsen-dark);
  border-color: var(--bollsen-dark);
}

.btn--secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.btn--secondary:hover {
  border-color: var(--bollsen);
  background: var(--bollsen-light);
}

/* ----------------------------------------------------------------
   PROSE SECTIONS
   ---------------------------------------------------------------- */
.prose-section {
  padding: var(--space-lg) 24px;
  border-bottom: 1px solid var(--rule);
}

.prose-inner {
  max-width: var(--max-prose);
  margin: 0 auto;
}

.prose-lede {
  font-size: clamp(17px, 2.2vw, 20px);
  line-height: 1.65;
  color: var(--ink-mid);
  margin-bottom: var(--space-md);
  font-weight: 400;
}

.prose-inner p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-mid);
  margin-bottom: 20px;
}

.prose-inner p:last-child {
  margin-bottom: 0;
}

.prose-link {
  color: var(--bollsen);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.prose-link:hover {
  color: var(--bollsen-dark);
}

/* Prose H2 */
.prose-h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: var(--space-md);
  padding-top: var(--space-sm);
}

/* Section label block */
.section-label-block {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.section-label-num {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 500;
  color: var(--bollsen);
  line-height: 1;
}

.section-label-text {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-light);
  background: var(--paper-mid);
  padding: 4px 10px;
  border-radius: 1px;
}

/* ----------------------------------------------------------------
   COMPARISON TABLE
   ---------------------------------------------------------------- */
.comparison-section {
  padding: var(--space-lg) 24px;
  background: var(--paper-mid);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.comparison-inner {
  max-width: var(--max-wide);
  margin: 0 auto;
}

/* Section heading shared */
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.section-num {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--bollsen);
  font-weight: 500;
  letter-spacing: 0.08em;
}

/* Table wrap — scrollable on mobile */
.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--rule);
  border-radius: 2px;
  background: var(--paper);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 14px;
  min-width: 560px;
}

.comparison-table thead tr {
  background: var(--ink);
}

.comparison-table thead th {
  padding: 14px 20px;
  text-align: left;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(245, 240, 232, 0.7);
  border-right: 1px solid rgba(245, 240, 232, 0.08);
}

.comparison-table thead th.col-bollsen {
  color: var(--bollsen-mid);
}

.comparison-table thead th.col-loop {
  color: var(--loop);
}

.comparison-table tbody tr {
  border-bottom: 1px solid var(--rule);
}

.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background: var(--paper-dark);
}

.comparison-table tbody th,
.comparison-table tbody td {
  padding: 16px 20px;
  vertical-align: middle;
  border-right: 1px solid var(--rule);
  line-height: 1.4;
}

.comparison-table tbody th {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-light);
  background: var(--paper-mid);
  white-space: nowrap;
}

.comparison-table tbody td:last-child,
.comparison-table thead th:last-child {
  border-right: none;
}

/* Data emphasis */
.data-em {
  display: block;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 2px;
  font-variant-numeric: tabular-nums;
}

.data-em--win {
  color: var(--win);
}

.data-em--warn {
  color: var(--warn);
}

.data-sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-light);
  line-height: 1.4;
}

.data-sub--flag {
  color: var(--amber-dark);
  font-style: italic;
}

/* Verdict chips */
.verdict-chip {
  display: inline-block;
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 1px;
}

.verdict-chip--win {
  background: var(--win-light);
  color: var(--win);
  border: 1px solid rgba(27, 122, 62, 0.2);
}

.verdict-chip--neutral {
  background: var(--neutral-light);
  color: var(--neutral);
  border: 1px solid rgba(90, 97, 112, 0.2);
}

/* ----------------------------------------------------------------
   STAT CALLOUT
   ---------------------------------------------------------------- */
.stat-callout {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--warn-light);
  border-left: 4px solid var(--warn);
  padding: 20px 24px;
  margin-bottom: var(--space-md);
  border-radius: 0 2px 2px 0;
}

.stat-callout__num {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  color: var(--warn);
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

.stat-callout__text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-mid);
}

/* ----------------------------------------------------------------
   BREAKDOWN BAR
   ---------------------------------------------------------------- */
.breakdown-bar {
  background: var(--paper-mid);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 20px 24px;
  margin-bottom: var(--space-md);
}

.breakdown-bar__title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-light);
  margin-bottom: 16px;
}

.breakdown-bar__rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.breakdown-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.breakdown-row__label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-light);
  width: 120px;
  flex-shrink: 0;
}

.breakdown-row__track {
  flex: 1;
  height: 8px;
  background: var(--paper-dark);
  border-radius: 1px;
  overflow: hidden;
}

.breakdown-row__fill {
  height: 100%;
  border-radius: 1px;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 1s var(--ease-out) 0.4s;
}

.breakdown-row__fill--pos {
  background: var(--bollsen-mid);
}

.breakdown-row__fill--neg {
  background: var(--warn);
}

.breakdown-row__pct {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-light);
  width: 36px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.breakdown-row__pct--neg {
  color: var(--warn);
}

/* ----------------------------------------------------------------
   PATENT BOX
   ---------------------------------------------------------------- */
.patent-box {
  background: var(--ink);
  border-radius: 2px;
  padding: 28px 32px;
  margin-bottom: var(--space-md);
  position: relative;
  overflow: hidden;
}

.patent-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bollsen), var(--bollsen-mid));
}

.patent-box__mono {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(245, 240, 232, 0.4);
  margin-bottom: 8px;
}

.patent-box__number {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 56px);
  color: var(--paper);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.patent-box__desc {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.6;
}

/* ----------------------------------------------------------------
   VERIFICATION COMPARE
   ---------------------------------------------------------------- */
.verify-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: var(--space-md);
}

.verify-col {
  padding: 20px;
  border-radius: 2px;
  border: 1px solid var(--rule);
}

.verify-col--loop {
  background: var(--loop-light);
  border-color: rgba(138, 127, 114, 0.25);
}

.verify-col--bollsen {
  background: var(--bollsen-light);
  border-color: rgba(27, 94, 138, 0.2);
}

.verify-col__brand {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.verify-col--loop .verify-col__brand {
  color: var(--loop-dark);
}

.verify-col--bollsen .verify-col__brand {
  color: var(--bollsen);
}

.verify-col__claim {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}

.verify-col__source {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-light);
  line-height: 1.5;
  margin-bottom: 14px;
}

.verify-badge {
  display: inline-block;
  padding: 5px 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 1px;
}

.verify-badge--verified {
  background: var(--win-light);
  color: var(--win);
  border: 1px solid rgba(27, 122, 62, 0.2);
}

.verify-badge--unverified {
  background: var(--amber-light);
  color: var(--amber-dark);
  border: 1px solid rgba(212, 130, 10, 0.2);
}

/* ----------------------------------------------------------------
   FIT SPECTRUM
   ---------------------------------------------------------------- */
.fit-spectrum {
  background: var(--paper-mid);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 20px 24px;
  margin-bottom: var(--space-md);
}

.fit-spectrum__bar {
  position: relative;
  padding-bottom: 12px;
}

.fit-spectrum__range {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-light);
  margin-bottom: 12px;
}

.fit-spectrum__buckets {
  margin-bottom: 10px;
}

.fit-spectrum__bucket {
  display: flex;
  gap: 4px;
}

.fit-spectrum__bucket--loop span {
  flex: 1;
  background: var(--loop);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 6px 4px;
  text-align: center;
  border-radius: 1px;
}

.fit-spectrum__ai-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--bollsen);
  background: var(--bollsen-light);
  padding: 8px 12px;
  border-radius: 1px;
  border: 1px solid rgba(27, 94, 138, 0.2);
}

.fit-spectrum__legend {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.fit-spectrum__legend-item {
  font-family: var(--font-mono);
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.fit-spectrum__legend-item::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 4px;
  border-radius: 1px;
}

.fit-spectrum__legend-item--loop::before {
  background: var(--loop);
}

.fit-spectrum__legend-item--bollsen::before {
  background: var(--bollsen);
}

/* ----------------------------------------------------------------
   PRICE STACK
   ---------------------------------------------------------------- */
.price-stack {
  border: 1px solid var(--rule);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: var(--space-md);
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}

.price-row:last-child {
  border-bottom: none;
}

.price-row--featured {
  background: var(--bollsen-light);
  border-left: 3px solid var(--bollsen);
}

.price-row__label {
  font-size: 14px;
  color: var(--ink-mid);
}

.price-row__amount {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.price-row__amount--high {
  color: var(--ink-light);
  font-size: 14px;
}

.price-row__amount--mid {
  color: var(--bollsen);
}

.price-row__amount--low {
  color: var(--win);
}

/* ----------------------------------------------------------------
   COST PER NIGHT CALLOUT
   ---------------------------------------------------------------- */
.cost-per-night {
  display: flex;
  align-items: baseline;
  gap: 12px;
  background: var(--bollsen-light);
  border: 1px solid rgba(27, 94, 138, 0.2);
  border-left: 4px solid var(--bollsen);
  padding: 20px 24px;
  margin-bottom: var(--space-md);
  border-radius: 0 2px 2px 0;
}

.cpn__num {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1;
  color: var(--bollsen);
  font-variant-numeric: tabular-nums;
}

.cpn__unit {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--bollsen-mid);
}

.cpn__label {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--bollsen-dark);
  line-height: 1.5;
}

/* ----------------------------------------------------------------
   ANNUAL COST COMPARE
   ---------------------------------------------------------------- */
.annual-cost {
  display: grid;
  grid-template-columns: auto-fit;
  grid-template-columns: minmax(140px, 1fr) minmax(160px, 1.2fr) minmax(140px, 1fr);
  gap: 12px;
  margin-bottom: var(--space-md);
}

.annual-cost__col {
  padding: 18px 16px;
  border: 1px solid var(--rule);
  border-radius: 2px;
  text-align: center;
  background: var(--paper);
}

.annual-cost__col--bollsen {
  border-color: var(--bollsen);
  background: var(--bollsen-light);
}

.annual-cost__col--audiologist {
  background: var(--paper-mid);
}

.annual-cost__label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-light);
  margin-bottom: 8px;
}

.annual-cost__amount {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
}

.annual-cost__col--bollsen .annual-cost__amount {
  color: var(--bollsen);
}

.annual-cost__col--loop .annual-cost__amount {
  color: var(--loop-dark);
}

.annual-cost__note {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-light);
}

/* ----------------------------------------------------------------
   INLINE CTA
   ---------------------------------------------------------------- */
.inline-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--rule);
}

.inline-cta__note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-light);
  letter-spacing: 0.04em;
}

/* ----------------------------------------------------------------
   CONCESSION SECTION
   ---------------------------------------------------------------- */
.concession-section {
  background: var(--paper-mid);
}

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

.concession-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 18px 20px;
}

.concession-card__icon {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--loop);
  margin-bottom: 8px;
  line-height: 1;
}

.concession-card__title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.concession-card__text {
  font-size: 13px;
  color: var(--ink-light);
  line-height: 1.55;
}

/* ----------------------------------------------------------------
   PULL QUOTE
   ---------------------------------------------------------------- */
.pull-quote-section {
  background: var(--ink);
  padding: var(--space-xl) 24px;
}

.pull-quote-inner {
  max-width: var(--max-prose);
  margin: 0 auto;
}

.pull-quote {
  border: none;
}

.pull-quote__text {
  font-family: var(--font-display);
  font-size: clamp(26px, 4.5vw, 44px);
  color: var(--paper);
  line-height: 1.3;
  font-style: italic;
  margin-bottom: var(--space-md);
  position: relative;
  padding-left: 24px;
}

.pull-quote__text::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  background: var(--bollsen-mid);
  border-radius: 2px;
}

.pull-quote__footer {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 24px;
}

.pull-quote__attribution {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: rgba(245, 240, 232, 0.7);
  font-style: normal;
}

.pull-quote__context {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(245, 240, 232, 0.35);
  line-height: 1.5;
}

/* ----------------------------------------------------------------
   PRESS BAR
   ---------------------------------------------------------------- */
.press-section {
  padding: var(--space-md) 24px;
  border-bottom: 1px solid var(--rule);
}

.press-inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.press-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-light);
  flex-shrink: 0;
}

.press-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.press-logo {
  display: flex;
  align-items: center;
}

.press-logo__name {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-light);
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* ----------------------------------------------------------------
   FAQ
   ---------------------------------------------------------------- */
.faq-section {
  padding: var(--space-lg) 24px;
  border-bottom: 1px solid var(--rule);
}

.faq-inner {
  max-width: var(--max-wide);
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: 2px;
  overflow: hidden;
  margin-top: var(--space-md);
}

.faq-item {
  border-bottom: 1px solid var(--rule);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item__question {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  background: var(--paper);
  transition: background-color 0.15s ease;
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__question::marker {
  display: none;
}

.faq-item__question:hover {
  background: var(--paper-mid);
}

.faq-item__arrow {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 300;
  color: var(--bollsen);
  flex-shrink: 0;
  transition: transform 0.2s ease;
  line-height: 1.2;
}

.faq-item[open] .faq-item__arrow {
  transform: rotate(45deg);
}

.faq-item[open] .faq-item__question {
  background: var(--bollsen-light);
  border-bottom: 1px solid rgba(27, 94, 138, 0.15);
}

.faq-item__answer {
  padding: 20px 24px;
  background: var(--paper);
}

.faq-item__answer p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-mid);
  margin-bottom: 14px;
}

.faq-item__answer p:last-child {
  margin-bottom: 0;
}

/* ----------------------------------------------------------------
   FINAL CTA
   ---------------------------------------------------------------- */
.final-cta {
  padding: var(--space-xl) 24px;
  background: var(--paper-mid);
  border-top: 2px solid var(--ink);
}

.final-cta__inner {
  max-width: var(--max-prose);
  margin: 0 auto;
  text-align: center;
}

.final-cta__data-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

.final-cta__data-item {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.final-cta__data-sep {
  color: var(--rule);
}

.final-cta__headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.2;
}

.final-cta__subline {
  font-size: 17px;
  color: var(--bollsen);
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.6;
}

.final-cta__body {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
  text-align: left;
}

/* Bundle tiers */
.bundle-tiers {
  display: grid;
  grid-template-columns: minmax(200px, 1fr) minmax(220px, 1.15fr) minmax(200px, 1fr);
  gap: 12px;
  margin-bottom: var(--space-md);
  text-align: left;
}

.bundle-tier {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.bundle-tier--featured {
  border-color: var(--bollsen);
  border-width: 2px;
}

.bundle-tier__badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: var(--bollsen);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 1px;
  white-space: nowrap;
}

.bundle-tier__name {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-light);
}

.bundle-tier__price {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.bundle-tier--featured .bundle-tier__price {
  color: var(--bollsen);
}

.bundle-tier__desc {
  font-size: 12px;
  color: var(--ink-light);
  line-height: 1.5;
  flex: 1;
}

.bundle-tier .btn {
  width: 100%;
  font-size: 13px;
  padding: 12px 16px;
  min-height: 44px;
}

.final-cta__guarantee {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-light);
  letter-spacing: 0.06em;
}

/* ----------------------------------------------------------------
   FOOTER
   ---------------------------------------------------------------- */
.page-footer {
  background: var(--ink);
  padding: var(--space-md) 24px;
  border-top: 1px solid rgba(245, 240, 232, 0.1);
}

.page-footer__inner {
  max-width: var(--max-full);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-footer__brand {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: rgba(245, 240, 232, 0.8);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-footer__legal {
  font-size: 12px;
  color: rgba(245, 240, 232, 0.35);
  line-height: 1.65;
  max-width: 760px;
}

.page-footer__copyright {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(245, 240, 232, 0.25);
}

/* ----------------------------------------------------------------
   MOBILE RESPONSIVE
   ---------------------------------------------------------------- */
@media (max-width: 768px) {
  :root {
    --space-lg:  40px;
    --space-xl:  64px;
    --space-2xl: 96px;
  }

  .hero {
    padding: 40px 20px 40px;
  }

  .hero__data-duel {
    gap: 12px;
    padding: 20px 0;
  }

  .duel__number {
    font-size: clamp(64px, 18vw, 100px);
  }

  .hero__headline {
    font-size: clamp(24px, 6vw, 34px);
  }

  .byline {
    flex-wrap: wrap;
  }

  .comparison-section,
  .prose-section,
  .faq-section,
  .final-cta {
    padding-left: 20px;
    padding-right: 20px;
  }

  .verify-compare {
    grid-template-columns: 1fr;
  }

  .concession-grid {
    grid-template-columns: 1fr;
  }

  .annual-cost {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .bundle-tiers {
    grid-template-columns: 1fr;
  }

  .bundle-tier--featured .bundle-tier__badge {
    position: static;
    transform: none;
    display: inline-block;
    margin-bottom: 4px;
  }

  .press-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .press-logos {
    gap: 20px;
  }

  .masthead__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .sticky-bar__rating {
    display: none;
  }

  .stat-callout {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .stat-callout__num {
    font-size: 48px;
  }

  .cost-per-night {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
  }

  .cpn__num {
    font-size: 56px;
  }

  .breakdown-row__label {
    width: 90px;
    font-size: 10px;
  }

  .final-cta__data-row {
    flex-direction: column;
    gap: 6px;
  }

  .final-cta__data-sep {
    display: none;
  }

  .trust-pills {
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .hero__data-duel {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0;
  }

  .duel__col--bollsen {
    align-items: flex-start;
  }

  .duel__vs {
    display: none;
  }

  .duel__number {
    font-size: clamp(72px, 22vw, 110px);
  }
}

/* ----------------------------------------------------------------
   PRINT
   ---------------------------------------------------------------- */
@media print {
  .sticky-bar,
  .hero__cta-block,
  .inline-cta,
  .final-cta .btn,
  .bundle-tiers {
    display: none;
  }

  body {
    background: #F5F0E8;
    color: #1C1917;
  }

  .hero {
    background: #111;
    color: white;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}
