/* ── Splash / loading screen ──────────────────────────────── */

.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(216, 58, 46, 0.35), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(255, 208, 143, 0.18), transparent 50%),
    #0b0909;
  opacity: 1;
  transition: opacity 380ms ease, visibility 0s linear 380ms;
}

.splash.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  text-align: center;
  padding: 0 1.5rem;
  animation: splash-rise 600ms ease 80ms both;
}

.splash__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.splash__icon {
  width: 3rem;
  height: 3rem;
  animation: splash-pulse 1.6s ease-in-out infinite;
}

.splash__wordmark {
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  color: #f6f1eb;
}

.splash__line {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(246, 241, 235, 0.85);
  max-width: 18rem;
  line-height: 1.4;
}

.splash__bar {
  width: 11rem;
  max-width: 70vw;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.splash__bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #ff7d66, #ffd08f);
  border-radius: inherit;
  animation: splash-load 2700ms ease-out forwards;
}

@keyframes splash-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.85; }
}

@keyframes splash-rise {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes splash-load {
  from { width: 0%; }
  to { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .splash__icon,
  .splash__bar-fill,
  .splash__inner {
    animation: none;
  }
  .splash__bar-fill {
    width: 100%;
  }
}

:root {
  --bg: #0b0909;
  --bg-soft: #171212;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --text: #f6f1eb;
  --muted: rgba(246, 241, 235, 0.76);
  --line: rgba(255, 255, 255, 0.12);
  --accent: #d83a2e;
  --accent-strong: #ff5a45;
  --accent-soft: rgba(216, 58, 46, 0.16);
  --gold: #ffd08f;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --device-width: min(100vw, 29rem);
  --display: "Anton", Impact, sans-serif;
  --body: "Manrope", "Segoe UI", sans-serif;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: var(--body);
  background:
    radial-gradient(circle at top left, rgba(216, 58, 46, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 208, 143, 0.12), transparent 24%),
    linear-gradient(180deg, #080707 0%, #120d0d 55%, #080707 100%);
}

body.nav-open {
  overflow: hidden;
}

body.share-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.page-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.96), transparent 92%);
}

.desktop-stage {
  display: none;
}

.phone-frame {
  width: var(--device-width);
  margin: 0 auto;
}

.phone-frame__device {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(255, 90, 69, 0.1), transparent 25%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
}

.phone-frame__speaker {
  display: none;
}

.story-section,
.toast {
  width: min(calc(100% - 1rem), 100%);
  margin-left: auto;
  margin-right: auto;
}

.story-section {
  padding-bottom: 0.95rem;
}

.story-sidebar {
  position: fixed;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  z-index: 30;
  pointer-events: none;
}

.story-sidebar__nav {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: min(55vh, 24rem);
  pointer-events: auto;
}

.story-sidebar__rail,
.story-sidebar__fill {
  position: absolute;
  left: 50%;
  width: 0.18rem;
  border-radius: 999px;
  transform: translateX(-50%);
  pointer-events: none;
}

.story-sidebar__rail {
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.2);
}

.story-sidebar__fill {
  top: 0;
  height: 0%;
  background: linear-gradient(180deg, rgba(255, 208, 143, 0.92), rgba(255, 90, 69, 1));
  box-shadow: 0 0 16px rgba(255, 90, 69, 0.25);
  transition: height 180ms ease;
  transform-origin: top center;
}

.story-sidebar__car {
  position: absolute;
  left: 50%;
  top: -18%;
  transform: translate(-50%, -50%);
  width: 1.05rem;
  height: 1.9rem;
  z-index: 3;
  pointer-events: none;
  color: var(--accent-strong);
  filter: drop-shadow(0 0 7px rgba(255, 90, 69, 0.75));
  opacity: 0;
  transition:
    top 420ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 280ms ease;
}

.story-sidebar__car.is-active {
  opacity: 1;
}

.story-sidebar__car svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 767.98px) {
  .story-sidebar__car {
    width: 0.82rem;
    height: 1.5rem;
  }
}

.story-sidebar__dot {
  position: relative;
  z-index: 1;
  width: 0.9rem;
  height: 0.9rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease;
  opacity: 0.72;
}

.story-sidebar__dot:hover,
.story-sidebar__dot:focus-visible {
  transform: scale(1.16);
  opacity: 1;
  background: rgba(255, 255, 255, 0.45);
}

.story-sidebar__dot.is-active {
  transform: scale(1.24);
  opacity: 1;
  background: var(--accent-strong);
  box-shadow:
    0 0 0 0.28rem rgba(255, 90, 69, 0.14),
    0 0 18px rgba(255, 90, 69, 0.3);
}

.story-sidebar__label {
  position: absolute;
  top: 50%;
  right: calc(100% + 0.85rem);
  transform: translateY(-50%) translateX(0.35rem);
  padding: 0.38rem 0.62rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(10, 8, 8, 0.92);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.story-sidebar__dot:hover .story-sidebar__label,
.story-sidebar__dot:focus-visible .story-sidebar__label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.story-feed {
  padding: 1rem 0.5rem 2.3rem;
}

.intro-screen {
  min-height: calc(100vh - 1rem);
  display: grid;
  align-items: stretch;
  margin-bottom: 0.9rem;
}

.intro-card {
  min-height: calc(100vh - 1rem);
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 0.95rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.9rem;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 208, 143, 0.15), transparent 22%),
    radial-gradient(circle at 88% 18%, rgba(255, 90, 69, 0.28), transparent 24%),
    radial-gradient(circle at 50% 110%, rgba(255, 90, 69, 0.18), transparent 38%),
    linear-gradient(180deg, #140d0d 0%, #250f11 40%, #100c0c 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.intro-card__topline,
.comparison-rotator__meta,
.intro-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.intro-badge {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}

.intro-card__explainer {
  margin: 0.4rem 0 0.2rem;
  padding: 0.9rem 1rem;
  border-left: 2px solid var(--accent);
  background: rgba(216, 58, 46, 0.06);
  border-radius: 0 0.75rem 0.75rem 0;
}

.intro-card__explainer-lead {
  margin: 0 0 0.45rem;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
}

.intro-card__explainer-body {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--muted);
}

.intro-card__explainer-body strong {
  color: var(--text);
  font-weight: 700;
}

.comparison-rotator {
  position: relative;
  min-height: 0;
  padding: 0.25rem 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 0.8rem;
  cursor: pointer;
  outline: none;
  user-select: none;
  touch-action: pan-y;
}

.comparison-rotator:focus-visible {
  box-shadow: 0 0 0 0.22rem rgba(255, 90, 69, 0.26);
  border-radius: 1.4rem;
}

.comparison-rotator__count,
.comparison-rotator__hint {
  color: rgba(246, 241, 235, 0.72);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.comparison-rotator__stage {
  display: grid;
  align-content: center;
  gap: 0.75rem;
  min-height: 17rem;
  padding: 0.5rem 0.1rem;
}

.comparison-rotator__lead,
.comparison-rotator__turn {
  margin: 0;
  color: #ffd6af;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.comparison-rotator__headline,
.comparison-rotator__traffic {
  margin: 0;
  font-family: var(--display);
  line-height: 0.94;
  text-transform: uppercase;
}

.comparison-rotator__headline {
  font-size: clamp(3rem, 14vw, 5rem);
  color: #fff7ee;
  text-wrap: balance;
}

.comparison-rotator__divider {
  width: 100%;
  height: 0.36rem;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent 22%),
    linear-gradient(90deg, rgba(255, 90, 69, 0.96), rgba(255, 208, 143, 0.92));
  box-shadow: 0 0 18px rgba(255, 90, 69, 0.28);
}

.comparison-rotator__traffic {
  font-size: clamp(1.8rem, 8vw, 2.6rem);
  color: #ff9f89;
  text-wrap: balance;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.comparison-rotator__biased,
.comparison-rotator__fixed {
  display: block;
  line-height: 1.05;
}

.comparison-rotator__biased {
  color: rgba(246, 241, 235, 0.55);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 90, 69, 0.6);
  text-decoration-thickness: 2px;
}

.comparison-rotator__fixed {
  color: var(--accent-strong);
}

.comparison-rotator__divider-text {
  display: inline-block;
  font-family: var(--body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  align-self: flex-start;
  padding: 0.18rem 0.55rem;
  border: 1px solid rgba(255, 208, 143, 0.35);
  border-radius: 999px;
}

.comparison-rotator__progress {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  gap: 0.3rem;
}

.comparison-rotator__dot {
  height: 0.28rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  transition: transform 220ms ease, background-color 220ms ease, opacity 220ms ease;
  opacity: 0.7;
}

.comparison-rotator__dot.is-active {
  background: linear-gradient(90deg, #ff6049, #ffd08f);
  transform: scaleY(1.25);
  opacity: 1;
}

.comparison-rotator.is-transitioning .comparison-rotator__lead,
.comparison-rotator.is-transitioning .comparison-rotator__headline,
.comparison-rotator.is-transitioning .comparison-rotator__turn,
.comparison-rotator.is-transitioning .comparison-rotator__traffic {
  animation: comparisonSwap 500ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.comparison-rotator.is-transitioning .comparison-rotator__lead     { animation-delay: 0ms; }
.comparison-rotator.is-transitioning .comparison-rotator__headline { animation-delay: 50ms; }
.comparison-rotator.is-transitioning .comparison-rotator__turn     { animation-delay: 100ms; }
.comparison-rotator.is-transitioning .comparison-rotator__traffic  { animation-delay: 150ms; }



.intro-button,
.intro-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.85rem 1rem;
  border-radius: 1.15rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.intro-button {
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #fff8f2;
}

.intro-button--ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}

.intro-cta {
  gap: 0.55rem;
  width: 100%;
  border: 1px solid rgba(255, 90, 69, 0.46);
  background: linear-gradient(135deg, rgba(216, 58, 46, 0.92), rgba(255, 132, 93, 0.92));
  color: #fff9f4;
  box-shadow: 0 18px 38px rgba(216, 58, 46, 0.28);
}

.intro-button:hover,
.intro-button:focus-visible,
.intro-cta:hover,
.intro-cta:focus-visible {
  transform: translateY(-1px);
}

.story-section {
  padding-bottom: 0.95rem;
  scroll-margin-top: 2rem;
}

.story-card,
.comparison-card,
.stat-card,
.case-card,
.demo-note {
  border: 1px solid var(--line);
  border-radius: 1.7rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

.story-card {
  padding: 1.15rem;
}

.story-card--hero {
  background:
    radial-gradient(circle at top right, rgba(255, 90, 69, 0.22), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
}

.story-card--nested {
  margin-top: 0.9rem;
  padding: 1rem;
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: none;
}

.story-card--quote {
  text-align: center;
}

.story-card h1,
.story-card h2,
.story-card h3,
.comparison-card h3,
.stat-card__value,
.quote-block__text,
.share-story__title {
  margin: 0 0 1.1rem;
  font-family: var(--display);
  line-height: 1.02;
  letter-spacing: 0.01em;
}

.story-card h1 {
  font-size: clamp(3rem, 12vw, 4.8rem);
  margin-bottom: 1.25rem;
}

.share-story__title {
  font-size: clamp(1.5rem, 6vw, 2.3rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.story-card h2 {
  font-size: clamp(2.2rem, 9vw, 3.2rem);
  margin-bottom: 1.1rem;
}

.story-card h3,
.comparison-card h3 {
  font-size: clamp(1.5rem, 7vw, 2.1rem);
  margin-bottom: 0.85rem;
}

/* Mixed-size hierarchy for long headlines: wrap secondary words in <span class="hl-soft">.
   Key words stay full-size and capitalised; connectives shrink and lowercase. */
.story-card h1 .hl-soft,
.story-card h2 .hl-soft,
.share-story__title .hl-soft {
  font-size: 0.55em;
  font-family: var(--body);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.01em;
  color: var(--muted);
  display: inline-block;
  vertical-align: middle;
  line-height: 1.2;
}

.story-card h1 .hl-accent,
.story-card h2 .hl-accent {
  color: var(--accent-strong);
}

.story-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.eyebrow,
.mini-label,
.comparison-card__label,
.quote-block__meta,
.share-story__eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lede,
.section-copy,
.chart-caption,
.story-card p,
.comparison-card li,
.stat-card__detail,
.share-story__body {
  color: var(--muted);
  line-height: 1.62;
}

.section-share-trigger {
  min-height: 2.3rem;
  padding: 0.52rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 700;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.section-share-trigger:hover,
.section-share-trigger:focus-visible {
  background: rgba(216, 58, 46, 0.2);
  border-color: rgba(255, 90, 69, 0.75);
  color: #fff6ef;
  box-shadow: 0 0 0 0.2rem rgba(216, 58, 46, 0.18);
  transform: translateY(-1px);
}

.hero-stack {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.hero-stack__tile {
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.03);
}

.hero-stack__tile span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.demo-note {
  margin-top: 0.95rem;
  padding: 1rem 1.05rem;
  background:
    linear-gradient(135deg, rgba(255, 208, 143, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.02);
}

.demo-note strong {
  display: block;
  margin-bottom: 0.35rem;
}

.card-head {
  display: flex;
  justify-content: space-between;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 0.95rem;
}

.demo-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.36rem 0.68rem;
  border-radius: 999px;
  background: rgba(255, 208, 143, 0.14);
  color: #ffd38f;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trend-chart {
  position: relative;
  min-height: 14rem;
  padding: 1rem 0.55rem 0.35rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
}

.trend-chart__grid {
  position: absolute;
  inset: 0.9rem 0.55rem 2rem;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 100% 25%, 20% 100%;
  border-radius: 1rem;
}

.trend-chart__svg {
  position: relative;
  width: 100%;
  height: auto;
}

.trend-chart__axis {
  display: flex;
  justify-content: space-between;
  padding: 0 0.55rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.table-scroll {
  overflow-x: auto;
}

.impact-table {
  width: 100%;
  min-width: 34rem;
  border-collapse: collapse;
}

.impact-table th,
.impact-table td {
  padding: 0.85rem 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  vertical-align: top;
}

.impact-table th {
  color: #fff6ef;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.impact-table td {
  color: var(--muted);
  font-size: 0.9rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.1rem;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tag--high {
  background: rgba(255, 90, 69, 0.18);
  color: #ff9d8d;
}

.tag--mid {
  background: rgba(255, 208, 143, 0.16);
  color: #ffd08f;
}

.bar-list {
  display: grid;
  gap: 0.8rem;
}

.bar-list__row {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr) auto;
  gap: 0.65rem;
  align-items: center;
}

.bar-list__row span:first-child {
  color: var(--muted);
  font-size: 0.88rem;
}

.bar-list__track {
  height: 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.bar-list__track span,
.bar-list__fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 90, 69, 0.9), rgba(255, 208, 143, 0.95));
}

.bar-list__fill {
  width: var(--bar-pct, 0%);
}

.split-grid,
.stats-grid,
.case-stack {
  display: grid;
  gap: 0.9rem;
}

.comparison-card {
  padding: 1rem;
}

.comparison-card ul {
  margin: 0.9rem 0 0;
  padding-left: 1.05rem;
}

.comparison-card--accent {
  background:
    radial-gradient(circle at top right, rgba(255, 90, 69, 0.2), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
}

.quote-block__text {
  font-size: clamp(2rem, 9vw, 3rem);
}

.focus-snippet {
  margin: 0.85rem 0;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.03);
}

.focus-snippet__label {
  margin: 0 0 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.focus-snippet__list {
  margin: 0 0 0.7rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.3rem;
  font-size: 0.85rem;
  color: var(--text);
}

.focus-snippet__list span {
  display: inline-block;
  min-width: 5.5rem;
  font-weight: 700;
  color: var(--accent-strong);
}

.focus-snippet__result {
  margin: 0;
  padding-top: 0.65rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text);
}

.focus-snippet__result span {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--gold);
}

.stat-card {
  position: relative;
  padding: 1rem;
}

.stat-card .demo-chip {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
}

.stat-card__label {
  margin: 0 0 0.45rem;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stat-card__value {
  margin-bottom: 0.4rem;
  font-size: clamp(2.7rem, 12vw, 4rem);
}

.case-card {
  overflow: hidden;
}

.case-card__media {
  position: relative;
  min-height: 11.5rem;
  background-color: #1a0f0f;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.case-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    to bottom,
    rgba(8, 7, 7, 0.18) 0%,
    rgba(8, 7, 7, 0.52) 100%
  );
  pointer-events: none;
}

.case-card__media--alt {
  background-color: #0f1218;
}

.case-card__body {
  padding: 1rem;
}

.future-modules {
  display: grid;
  gap: 0.65rem;
  margin: 0.9rem 0 0;
  padding-left: 1rem;
}

.future-modules li {
  color: var(--muted);
}

.action-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.action-list__item {
  display: grid;
  gap: 0.22rem;
  padding: 0.9rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
}

.action-list__item span {
  color: var(--muted);
}

/* ── Headline game ─────────────────────────────────────────── */

.headline-game {
  display: grid;
  gap: 1rem;
  margin-top: 0.5rem;
}

.game-progress {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.game-progress__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transition: background 200ms;
}

.game-progress__dot.is-done {
  background: var(--accent-strong);
}

.game-progress__dot.is-current {
  background: var(--gold);
  width: 0.65rem;
  height: 0.65rem;
}

.game-round-label {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.game-original {
  padding: 1rem 1.1rem;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.02);
}

.game-original__label {
  margin: 0 0 0.4rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.game-original__text {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.1rem, 5vw, 1.45rem);
  line-height: 1.2;
  color: rgba(246, 241, 235, 0.55);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 90, 69, 0.45);
  text-decoration-thickness: 2px;
}

.game-input-label {
  display: block;
  margin: 0.5rem 0 0.35rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.game-input {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 208, 143, 0.3);
  border-radius: 0.9rem;
  background: rgba(255, 208, 143, 0.05);
  color: var(--text);
  font-family: var(--body);
  font-size: 0.95rem;
  line-height: 1.45;
  resize: vertical;
  min-height: 4.5rem;
  transition: border-color 150ms, background 150ms;
}

.game-input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 208, 143, 0.09);
}

.game-input.is-passed {
  border-color: #4ade80;
  background: rgba(74, 222, 128, 0.06);
  color: #d6fadf;
}

.game-feedback__reason {
  margin: 0.4rem 0 0.3rem;
  font-style: normal;
}

.game-feedback__score {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}

.game-result__meta {
  margin: -0.6rem 0 1.2rem;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.game-context {
  padding: 0.75rem 1rem;
  border-left: 3px solid var(--accent);
  background: rgba(216, 58, 46, 0.08);
  border-radius: 0 0.75rem 0.75rem 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

.game-context strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-strong);
}

.game-sentence {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem 0.5rem;
  min-height: 3.5rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.03);
  font-family: var(--display);
  font-size: clamp(1rem, 4vw, 1.25rem);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.game-blank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5rem;
  padding: 0.2rem 0.6rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.7em;
  font-family: var(--body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: border-color 150ms;
}

.game-blank.is-filled {
  border-bottom-color: var(--gold);
  color: var(--text);
  font-size: 1em;
  font-family: var(--display);
  padding: 0.15rem 0.4rem;
  background: rgba(255, 208, 143, 0.1);
  border-radius: 0.35rem 0.35rem 0 0;
  cursor: pointer;
}

.game-blank.is-filled:hover {
  background: rgba(255, 208, 143, 0.18);
}

.game-blank.score-high {
  border-bottom-color: #4ade80;
  background: rgba(74, 222, 128, 0.12);
  color: #4ade80;
  cursor: default;
}

.game-blank.score-mid {
  border-bottom-color: var(--gold);
  background: rgba(255, 208, 143, 0.12);
  color: var(--gold);
  cursor: default;
}

.game-blank.score-low {
  border-bottom-color: var(--accent-strong);
  background: rgba(255, 90, 69, 0.12);
  color: var(--accent-strong);
  cursor: default;
}

.game-suffix {
  color: var(--muted);
}

.game-hint {
  font-size: 0.75rem;
  color: var(--muted);
  font-style: italic;
}

.game-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  min-height: 3rem;
}

.game-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 150ms,
    border-color 150ms,
    opacity 150ms,
    transform 120ms;
  user-select: none;
}

.game-chip:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.game-chip:active {
  transform: translateY(0);
}

.game-chip.is-used {
  opacity: 0.25;
  pointer-events: none;
}

.game-actions {
  display: flex;
  gap: 0.75rem;
}

.game-btn {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 150ms, transform 120ms;
}

.game-btn:active {
  transform: scale(0.98);
}

.game-btn--check {
  background: var(--accent-strong);
  color: #fff;
}

.game-btn--check:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

.game-btn--next {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text);
}

.game-btn--next:hover {
  background: rgba(255, 255, 255, 0.14);
}

.game-feedback {
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  font-size: 0.85rem;
  line-height: 1.55;
  display: none;
}

.game-feedback.is-visible {
  display: block;
}

.game-feedback--high {
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.25);
  color: #a7f3c0;
}

.game-feedback--mid {
  background: rgba(255, 208, 143, 0.1);
  border: 1px solid rgba(255, 208, 143, 0.25);
  color: var(--gold);
}

.game-feedback--low {
  background: rgba(255, 90, 69, 0.1);
  border: 1px solid rgba(255, 90, 69, 0.25);
  color: #ffa79a;
}

.game-feedback strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.game-result {
  text-align: center;
  padding: 1.5rem 1rem;
  display: none;
}

.game-result.is-visible {
  display: block;
}

.game-result__score {
  font-family: var(--display);
  font-size: 4rem;
  color: var(--accent-strong);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.game-result__label {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.game-result__sub {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.game-result__restart {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 150ms;
}

.game-result__restart:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* ── Share overlay ─────────────────────────────────────────── */

.share-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  /* scrollable so the sheet is always reachable on short viewports */
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.share-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.share-overlay__backdrop {
  /* fixed so the blur stays put when the sheet scrolls */
  position: fixed;
  inset: 0;
  background: rgba(4, 3, 3, 0.82);
  backdrop-filter: blur(14px);
}

.share-overlay__sheet {
  position: relative;
  width: 100%;
  max-width: 31rem;
  /* use dynamic viewport height so browser chrome is excluded */
  min-height: 100dvh;
  padding: 0.8rem 0.8rem max(1.2rem, env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* On short viewports, shrink the preview card so buttons stay visible */
@media (max-height: 680px) {
  .share-story__card {
    min-height: 16rem;
  }

  .share-story {
    flex: none;
    padding: 0.25rem 0;
  }
}

.share-overlay__header {
  display: grid;
  grid-template-columns: 2.25rem 1fr 2.25rem;
  align-items: center;
  color: #fff8f2;
  text-align: center;
}

.share-overlay__header p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
}

.share-overlay__close {
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff8f2;
  font-size: 1.4rem;
}

.share-story {
  flex: 1;
  display: grid;
  place-items: center;
}

.share-story__card {
  width: min(100%, 22rem);
  min-height: 30rem;
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 2rem;
  background:
    radial-gradient(circle at top right, rgba(255, 208, 143, 0.18), transparent 34%),
    radial-gradient(circle at bottom left, rgba(255, 90, 69, 0.28), transparent 28%),
    linear-gradient(180deg, #1b1414 0%, #3d1817 48%, #101010 100%);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
}

.share-story__card.is-system {
  background:
    radial-gradient(circle at top right, rgba(255, 208, 143, 0.18), transparent 34%),
    radial-gradient(circle at bottom left, rgba(255, 90, 69, 0.28), transparent 28%),
    linear-gradient(180deg, #1b1414 0%, #3d1817 48%, #101010 100%);
}

.share-story__card.is-trend {
  background:
    radial-gradient(circle at top left, rgba(255, 125, 102, 0.25), transparent 30%),
    linear-gradient(180deg, #28161a 0%, #5e2333 50%, #1a1313 100%);
}

.share-story__card.is-factors {
  background:
    radial-gradient(circle at top right, rgba(255, 208, 143, 0.22), transparent 32%),
    linear-gradient(180deg, #151919 0%, #1f3832 52%, #101010 100%);
}

.share-story__card.is-language {
  background:
    radial-gradient(circle at top right, rgba(255, 90, 69, 0.2), transparent 30%),
    linear-gradient(180deg, #171425 0%, #30285c 52%, #111010 100%);
}

.share-story__card.is-stats {
  background:
    radial-gradient(circle at top left, rgba(255, 208, 143, 0.22), transparent 26%),
    linear-gradient(180deg, #172019 0%, #2b5c2f 50%, #111010 100%);
}

.share-story__card.is-cases {
  background:
    radial-gradient(circle at top right, rgba(255, 90, 69, 0.2), transparent 26%),
    linear-gradient(180deg, #241717 0%, #54312a 50%, #101010 100%);
}

.share-story__card.is-action {
  background:
    radial-gradient(circle at top left, rgba(255, 208, 143, 0.22), transparent 28%),
    linear-gradient(180deg, #17131c 0%, #44255a 48%, #101010 100%);
}

.share-story__title {
  margin-top: 1rem;
  font-size: clamp(2.5rem, 12vw, 4rem);
}

.share-story__body {
  max-width: 15rem;
}

.share-story__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 248, 242, 0.76);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.share-story__brand-tag {
  display: flex;
  align-items: center;
  gap: 0.38rem;
}

.game-extra {
  margin-top: 1.25rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 208, 143, 0.25);
  border-radius: 1rem;
  background: rgba(255, 208, 143, 0.05);
  text-align: center;
}

.game-extra__label {
  margin: 0 0 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.game-extra__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(255, 208, 143, 0.4);
  text-underline-offset: 3px;
  transition: color 150ms;
}

.game-extra__link:hover,
.game-extra__link:focus {
  color: var(--text);
  text-decoration-color: var(--gold);
}

.share-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  padding: 0.25rem 0;
}

.share-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 4.6rem;
  padding: 0.8rem 0.4rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.05);
  color: #fff8f2;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition:
    transform 200ms cubic-bezier(0.16, 1, 0.3, 1),
    background-color 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease,
    color 200ms ease;
}

.share-btn svg {
  width: 1.45rem;
  height: 1.45rem;
  flex-shrink: 0;
}

/* ── Brand hover states ──────────────────────────────────────────────────── */

.share-btn--whatsapp:hover,
.share-btn--whatsapp:focus-visible {
  background: rgba(37, 211, 102, 0.15);
  border-color: rgba(37, 211, 102, 0.55);
  box-shadow: 0 0 22px rgba(37, 211, 102, 0.2);
  color: #7ffab5;
  transform: scale(1.05);
}

.share-btn--instagram:hover,
.share-btn--instagram:focus-visible {
  background: rgba(225, 48, 108, 0.15);
  border-color: rgba(225, 48, 108, 0.55);
  box-shadow: 0 0 22px rgba(225, 48, 108, 0.22);
  color: #f991b8;
  transform: scale(1.05);
}

.share-btn--tiktok:hover,
.share-btn--tiktok:focus-visible {
  background: rgba(238, 29, 82, 0.14);
  border-color: rgba(238, 29, 82, 0.5);
  box-shadow: 0 0 22px rgba(238, 29, 82, 0.2);
  color: #ff7096;
  transform: scale(1.05);
}

.share-btn--snapchat:hover,
.share-btn--snapchat:focus-visible {
  background: rgba(255, 252, 0, 0.1);
  border-color: rgba(255, 252, 0, 0.45);
  box-shadow: 0 0 22px rgba(255, 252, 0, 0.14);
  color: #fffd7a;
  transform: scale(1.05);
}

.share-btn--facebook:hover,
.share-btn--facebook:focus-visible {
  background: rgba(24, 119, 242, 0.15);
  border-color: rgba(24, 119, 242, 0.55);
  box-shadow: 0 0 22px rgba(24, 119, 242, 0.2);
  color: #82b8ff;
  transform: scale(1.05);
}

.share-btn--copy:hover,
.share-btn--copy:focus-visible {
  background: rgba(255, 208, 143, 0.12);
  border-color: rgba(255, 208, 143, 0.5);
  box-shadow: 0 0 22px rgba(255, 208, 143, 0.16);
  color: var(--gold);
  transform: scale(1.05);
}

.toast {
  position: fixed;
  left: 50%;
  top: 1rem;
  z-index: 90;
  width: min(calc(100vw - 2rem), 24rem);
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(10, 8, 8, 0.95);
  box-shadow: var(--shadow);
  transform: translate(-50%, -0.8rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ─── Floating global share button ──────────────────────────────────────── */

.global-share-btn {
  position: fixed;
  bottom: 1.75rem;
  right: 1.25rem;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.1rem 0.65rem 0.9rem;
  border: 1px solid rgba(255, 90, 69, 0.55);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(216, 58, 46, 0.92), rgba(255, 90, 69, 0.9));
  color: #fff9f4;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow:
    0 8px 24px rgba(216, 58, 46, 0.45),
    0 2px 8px rgba(0, 0, 0, 0.3);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
  backdrop-filter: blur(8px);
}

.global-share-btn:hover,
.global-share-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 14px 32px rgba(216, 58, 46, 0.55),
    0 4px 12px rgba(0, 0, 0, 0.35);
}

@media (min-width: 768px) {
  .global-share-btn {
    /* align to the inside-right edge of the phone frame */
    right: calc(50% - 13.25rem);
  }
}

/* ─── Stats section: Visual 1 — big number ──────────────────────────────── */

.stat-hero {
  text-align: center;
  padding: 1.5rem 1rem 1.2rem;
}

.stat-hero__number {
  margin: 0 0 0.55rem;
  line-height: 0.88;
}

.stat-hero__digits {
  font-family: var(--display);
  font-size: clamp(5rem, 26vw, 8rem);
  color: var(--accent-strong);
  text-shadow: 0 0 48px rgba(255, 90, 69, 0.45);
}

.stat-hero__pct {
  font-family: var(--display);
  font-size: clamp(2.5rem, 12vw, 4rem);
  color: var(--accent-strong);
  vertical-align: super;
}

.stat-hero__claim {
  margin: 0 0 0.6rem;
  font-size: clamp(1rem, 4.5vw, 1.2rem);
  font-weight: 700;
  line-height: 1.42;
  color: var(--text);
}

.stat-hero__context {
  margin: 0 0 1.1rem;
  font-size: 0.83rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.5;
}

.source-tag {
  margin: 0.65rem 0 0;
  font-size: 0.68rem;
  color: rgba(246, 241, 235, 0.45);
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.source-tag a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(255, 208, 143, 0.35);
  text-underline-offset: 2px;
  transition: color 150ms, text-decoration-color 150ms;
}

.source-tag a:hover,
.source-tag a:focus {
  color: var(--text);
  text-decoration-color: var(--gold);
}

.case-proof {
  margin: 0.85rem 0 0.5rem;
  padding: 0.75rem 0.9rem;
  border-left: 3px solid var(--gold);
  background: rgba(255, 208, 143, 0.07);
  border-radius: 0 0.6rem 0.6rem 0;
}

.case-proof__label {
  margin: 0 0 0.3rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.case-proof__text {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text);
}

.case-source {
  margin: 0.9rem 0 0;
  font-size: 0.78rem;
}

.case-source a {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(255, 208, 143, 0.35);
  border-radius: 999px;
  background: rgba(255, 208, 143, 0.06);
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  transition: background 150ms, border-color 150ms, color 150ms;
}

.case-source a:hover,
.case-source a:focus {
  background: rgba(255, 208, 143, 0.16);
  border-color: var(--gold);
  color: var(--text);
}

/* ─── Stats section: Visual 2 — word comparison bars ────────────────────── */

.word-bars {
  display: grid;
  gap: 1rem;
  margin-top: 0.35rem;
}

.word-bar {
  display: grid;
  gap: 0.35rem;
}

.word-bar__label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}

.word-bar__track {
  height: 2.5rem;
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.word-bar__fill {
  height: 100%;
  width: 0;
  border-radius: inherit;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 0.7rem;
  font-size: 0.82rem;
  font-weight: 800;
  color: #fff9f4;
  transition: width 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.word-bar:nth-child(2) .word-bar__fill { transition-delay: 160ms; }
.word-bar:nth-child(3) .word-bar__fill { transition-delay: 320ms; }

.word-bars.is-visible .word-bar__fill {
  width: var(--bar-w, 0%);
}

.word-bar__fill--high {
  background: linear-gradient(90deg, rgba(216, 58, 46, 0.95), rgba(255, 100, 69, 0.9));
}

.word-bar__fill--mid {
  background: linear-gradient(90deg, rgba(216, 90, 50, 0.78), rgba(255, 140, 80, 0.78));
}

.word-bar__fill--low {
  background: linear-gradient(90deg, rgba(255, 150, 90, 0.6), rgba(255, 200, 130, 0.6));
}

/* ─── Stats section: Visual 3 — agent blame bubbles ─────────────────────── */

.agent-blame__bubbles {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  margin: 1rem 0 0.85rem;
}

.agent-blame__bubble {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 90, 69, 0.38);
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.08), transparent 55%),
    linear-gradient(135deg, rgba(255, 90, 69, 0.28), rgba(216, 58, 46, 0.42));
  text-align: center;
  gap: 0.2rem;
  padding: 0.6rem;
}

.agent-blame__bubble--large {
  width: 8.5rem;
  height: 8.5rem;
  box-shadow: 0 0 32px rgba(255, 90, 69, 0.22);
}

.agent-blame__bubble--small {
  width: 4.25rem;
  height: 4.25rem;
}

.agent-blame__pct {
  display: block;
  font-family: var(--display);
  font-size: 1.85rem;
  color: var(--text);
  line-height: 1;
}

.agent-blame__bubble--small .agent-blame__pct {
  font-size: 0.95rem;
}

.agent-blame__desc {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  max-width: 5rem;
  line-height: 1.3;
}

.agent-blame__bubble--small .agent-blame__desc {
  font-size: 0.5rem;
  max-width: 3rem;
}

.agent-blame__multiplier {
  font-family: var(--display);
  font-size: clamp(2rem, 9vw, 3rem);
  color: var(--gold);
  text-shadow: 0 0 22px rgba(255, 208, 143, 0.45);
  line-height: 1;
}

.agent-blame__caption {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
  text-align: center;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 90, 69, 0.5);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(255, 90, 69, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 90, 69, 0);
  }
}

@keyframes comparisonSwap {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 768px) {
  body {
    display: flex;
    justify-content: center;
    padding: 2rem 0;
  }

  .desktop-stage {
    display: block;
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
  }

  .desktop-stage__ring {
    position: absolute;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .desktop-stage__ring--one {
    width: 36rem;
    height: 36rem;
    top: 8%;
    left: calc(50% - 25rem);
  }

  .desktop-stage__ring--two {
    width: 28rem;
    height: 28rem;
    right: calc(50% - 22rem);
    bottom: 10%;
  }

  .phone-frame {
    width: min(100vw - 2rem, 29rem);
  }

  .phone-frame__device {
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 2.5rem;
    box-shadow:
      0 0 0 0.35rem rgba(255, 255, 255, 0.04),
      0 32px 90px rgba(0, 0, 0, 0.45);
    overflow: hidden;
  }

  .phone-frame__speaker {
    display: block;
    position: absolute;
    top: 0.75rem;
    left: 50%;
    width: 7rem;
    height: 0.42rem;
    transform: translateX(-50%);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    z-index: 35;
  }
  .intro-screen,
  .intro-card {
    min-height: calc(100vh - 2.6rem);
  }
}

@media (max-width: 767.98px) {
  .story-sidebar {
    right: 0.4rem;
  }

  .story-sidebar__nav {
    height: min(45vh, 18rem);
  }

  .story-sidebar__label {
    display: none;
  }

  .story-sidebar__dot {
    width: 0.72rem;
    height: 0.72rem;
  }
}
