:root {
  --ink: #1a1a2e;
  --body-text: #2a2a3e;
  --muted: #6b6b7e;
  --soft-text: #7a7a8e;
  --line: #e7e8eb;
  --paper: #ffffff;
  --surface: #ffffff;
  --navy: #1b365d;
  --blue: #4b6fa5;
  --ia-blue: #9fb4d5;
  --blue-hover: #3d5d8a;
  --gray-bg: #e7e8eb;
  --pale-blue: #f0f4f8;
  --ice-blue: #eef2f8;
  --warm-white: #faf8f6;
  --soft-blue: #e7e8eb;
  --shadow: 0 18px 52px rgba(27, 54, 93, 0.1);
  --deep-shadow: 0 28px 86px rgba(27, 54, 93, 0.14);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-cinema: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 6px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

[id] {
  scroll-margin-top: 96px;
}

.chapter[id] {
  scroll-margin-top: 0;
}

body {
  margin: 0;
  color: var(--body-text);
  background: linear-gradient(180deg, var(--navy) 0, var(--navy) calc(100svh + 120px), #fff calc(100svh + 120px));
  font-family: Montserrat, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: clip;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  padding: 16px clamp(20px, 5vw, 64px);
  border-bottom: 1px solid rgba(27, 54, 93, 0.1);
  background: rgba(231, 232, 235, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand span {
  white-space: nowrap;
}

.product-wordmark {
  color: var(--ink);
  font-size: clamp(0.94rem, 1.4vw, 1.08rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
}

.product-wordmark span {
  color: var(--blue);
}

.product-wordmark span {
  font-weight: inherit;
}

.brand-logo {
  width: 150px;
  height: auto;
}

.brand-logo-link,
.trust-logo-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  line-height: 0;
}

.brand-logo-link:focus-visible,
.trust-logo-link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 6px;
}

.footer-logo {
  width: 170px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 650;
}

.site-nav a {
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover {
  color: var(--blue);
}

.nav-cta {
  padding: 10px 15px;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: #fff;
}

.nav-toggle {
  display: none;
}

.floating-menu {
  position: fixed;
  top: clamp(14px, 2vw, 24px);
  right: clamp(14px, 2vw, 24px);
  left: auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: auto;
  min-height: 56px;
  gap: 0;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius);
  box-shadow: 0 18px 54px rgba(27, 54, 93, 0.16);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 320ms var(--ease-out), transform 320ms var(--ease-out),
    background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.floating-menu > .brand {
  display: none;
}

.floating-menu.is-visible,
.floating-menu.is-scrolled {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-menu.is-scrolled {
  border-color: rgba(27, 54, 93, 0.12);
  background: rgba(231, 232, 235, 0.94);
}

.floating-menu .nav-toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(27, 54, 93, 0.22);
  border-radius: calc(var(--radius) - 2px);
  background: transparent;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease;
}

.floating-menu .nav-toggle:hover {
  border-color: rgba(27, 54, 93, 0.38);
  background: rgba(27, 54, 93, 0.06);
}

.floating-menu .nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform 240ms cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-menu .nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.floating-menu .nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.floating-menu .site-nav {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2px;
  padding: 8px;
  min-width: min(300px, calc(100vw - 28px));
  border-radius: 16px;
  background: linear-gradient(160deg, #0f2245 0%, #0c1d3e 100%);
  border: 1px solid rgba(159, 180, 213, 0.18);
  box-shadow:
    0 2px 0 rgba(159, 180, 213, 0.08) inset,
    0 28px 72px rgba(8, 18, 42, 0.46),
    0 8px 22px rgba(8, 18, 42, 0.24);
  /* Animation */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.97);
  transform-origin: top right;
  transition:
    opacity 200ms cubic-bezier(0.2, 0, 0, 1.1),
    visibility 200ms,
    transform 200ms cubic-bezier(0.2, 0, 0, 1.1);
  pointer-events: none;
}

.floating-menu .site-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.floating-menu .site-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  border-radius: 10px;
  color: rgba(210, 220, 235, 0.85);
  font-size: 0.94rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 160ms ease, color 160ms ease, padding-left 160ms ease;
}

.floating-menu .site-nav a::after {
  content: '→';
  opacity: 0;
  font-weight: 400;
  font-size: 0.85em;
  transform: translateX(-4px);
  transition: opacity 160ms ease, transform 160ms ease;
  flex-shrink: 0;
}

.floating-menu .site-nav a:hover {
  background: rgba(159, 180, 213, 0.11);
  color: #fff;
  padding-left: 18px;
}

.floating-menu .site-nav a:hover::after {
  opacity: 0.6;
  transform: translateX(0);
}

.floating-menu .site-nav .nav-cta {
  margin-top: 4px;
  padding: 13px 14px;
  background: rgba(159, 180, 213, 0.13);
  color: #9fb4d5;
  font-weight: 700;
  font-size: 0.9rem;
  position: relative;
}

.floating-menu .site-nav .nav-cta::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 6px;
  right: 6px;
  height: 1px;
  background: rgba(159, 180, 213, 0.14);
}

.floating-menu .site-nav .nav-cta::after {
  display: none;
}

.floating-menu .site-nav .nav-cta:hover {
  background: rgba(159, 180, 213, 0.22);
  color: #fff;
  padding-left: 14px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(26px, 4.4vw, 64px);
  min-height: min(760px, calc(100svh - 86px));
  padding: clamp(44px, 5.8vw, 74px) clamp(20px, 5vw, 64px) clamp(38px, 5vw, 62px);
  overflow: hidden;
  background: var(--warm-white);
}

.hero-copy {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.count-headline {
  color: var(--blue);
  font-variant-numeric: tabular-nums;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 920px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(3rem, 5vw, 5.15rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.blue-phrase {
  color: var(--blue);
}

.strike-word {
  position: relative;
  display: inline-block;
}

.strike-word::after {
  content: "";
  position: absolute;
  left: -0.04em;
  right: -0.04em;
  top: 55%;
  height: 0.12em;
  background: var(--ink);
  transform: translateY(-50%);
}

h2 {
  margin-bottom: 20px;
  color: var(--ink);
  font-size: clamp(2.4rem, 4.6vw, 5.2rem);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 24px;
  color: var(--soft-text);
  font-size: clamp(1.02rem, 1.34vw, 1.18rem);
}

.lede-accent {
  color: #9fb4d5;
  font-weight: 800;
}

.story-hero .lede-accent {
  color: #9fb4d5;
  font-weight: 800;
}

.hero-actions,
.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
  transition: transform 200ms var(--ease-out), background 180ms ease, color 180ms ease,
    border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 12px 28px rgba(27, 54, 93, 0.16);
}

.button-primary:hover {
  background: var(--blue-hover);
}

.pulse-button {
  animation: soft-pulse 2.4s ease-in-out infinite;
}

.button-secondary {
  border-color: var(--line);
  background: #fff;
}

.button-secondary:hover {
  border-color: rgba(75, 111, 165, 0.34);
  background: var(--ice-blue);
}

.hero-owner {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
}

.hero-owner::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--blue);
}

.hero-owner strong {
  color: var(--navy);
}

.hero-metrics {
  margin: 26px 0 0;
  padding: 0;
}

.hero-metrics div {
  min-width: 132px;
  padding-right: 24px;
  border-right: 1px solid var(--line);
}

.hero-metrics div:last-child {
  border-right: 0;
}

.hero-metrics dt {
  font-size: 1.38rem;
  font-weight: 850;
}

.hero-metrics dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -26px -24px auto auto;
  width: 42%;
  height: 58%;
  border-top: 1px solid rgba(75, 111, 165, 0.22);
  border-right: 1px solid rgba(75, 111, 165, 0.22);
  pointer-events: none;
}

.product-window {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  margin-left: auto;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 18px 48px rgba(27, 54, 93, 0.09);
}

.window-top {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
}

.window-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--line);
}

.window-top strong {
  margin-left: 10px;
}

.case-summary {
  display: grid;
  gap: 6px;
  padding: 18px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--navy);
  color: #fff;
}

.case-summary span {
  width: fit-content;
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffffb8;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.case-summary strong {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.12;
}

.case-summary small {
  color: #ffffff99;
  font-size: 0.62em;
}

.case-summary em {
  color: #ffffffbf;
  font-size: 0.84rem;
  font-style: normal;
}

.case-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  padding: 16px;
  background: var(--line);
}

.case-details div {
  padding: 14px;
  background: #fff;
}

.case-details span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.case-details strong {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.05;
}

.alert-list {
  padding: 0 16px 16px;
  overflow: hidden;
}

.alert-row {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 74px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.alert-row strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.alert-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.alert-row b {
  padding: 5px 8px;
  background: var(--pale-blue);
  color: var(--navy);
  font-size: 0.76rem;
}

[data-alert-row] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 420ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    background 360ms ease, color 360ms ease;
}

[data-alert-row].row-visible {
  opacity: 1;
  transform: translateY(0);
}

.bulletin-row.selected {
  transition: opacity 420ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    background 480ms ease 200ms, color 480ms ease 200ms;
}

.risk-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
}

.risk-dot.high {
  background: var(--navy);
}

.risk-dot.medium {
  background: var(--blue);
}

.risk-dot.low {
  background: #9b9bae;
}

.section {
  padding: clamp(70px, 9vw, 124px) clamp(20px, 5vw, 64px);
}

.risk-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 0.82fr);
  gap: clamp(30px, 7vw, 92px);
  align-items: start;
  background: #fff;
  border-top: 1px solid var(--line);
}

.risk-card {
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--line);
  background: var(--pale-blue);
}

.risk-card strong {
  display: block;
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(3rem, 7vw, 7.2rem);
  line-height: 0.95;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}

.risk-card p {
  color: var(--body-text);
  font-size: 1.03rem;
}

.plans-heading p,
.contact-copy p,
.report-copy p,
.timeline p {
  color: var(--muted);
}

.report-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 0.78fr);
  gap: clamp(34px, 7vw, 94px);
  align-items: center;
  background: var(--warm-white);
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  background: var(--blue);
}

.report-preview {
  display: grid;
  place-items: center;
}

.report-paper {
  width: min(100%, 430px);
  min-height: 520px;
  padding: 30px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(27, 54, 93, 0.12);
}

.paper-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.paper-header span {
  width: 46px;
  height: 46px;
  background: var(--navy);
}

.paper-header strong,
.paper-header small {
  display: block;
}

.paper-header small {
  color: var(--muted);
}

.paper-alert {
  margin: 30px 0;
  padding: 18px;
  background: var(--ice-blue);
}

.paper-alert b {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
}

.paper-lines,
.paper-columns {
  display: grid;
  gap: 12px;
}

.paper-lines span {
  display: block;
  height: 14px;
  background: var(--line);
}

.paper-lines span:nth-child(2) {
  width: 82%;
}

.paper-lines span:nth-child(3) {
  width: 64%;
}

.paper-columns {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}

.paper-columns span {
  height: 118px;
  background: var(--ice-blue);
}

.process {
  background: #fff;
}

.process h2 {
  max-width: 880px;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 34px;
  background: #fff;
}

.timeline div {
  position: relative;
  z-index: 3;
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  background: transparent;
}

.timeline div + div {
  border-left: 0;
}

.timeline::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 45px;
  left: 45px;
  width: calc(var(--timeline-progress, 0) * (100% - 90px));
  height: 2px;
  background: var(--blue);
  transform-origin: left center;
  transition: width 900ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.animation-ready [data-timeline-step] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 540ms ease, transform 540ms cubic-bezier(0.22, 1, 0.36, 1);
}

.animation-ready [data-timeline].is-visible [data-timeline-step] {
  opacity: 1;
  transform: translateY(0);
}

[data-timeline].is-visible [data-timeline-step]:nth-child(1) {
  transition-delay: 80ms;
}

[data-timeline].is-visible [data-timeline-step]:nth-child(2) {
  transition-delay: 220ms;
}

[data-timeline].is-visible [data-timeline-step]:nth-child(3) {
  transition-delay: 360ms;
}

[data-timeline].is-visible [data-timeline-step]:nth-child(4) {
  transition-delay: 500ms;
}

.timeline span {
  position: relative;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 58px;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
}

.plans {
  background: #fff;
  border-top: 1px solid var(--line);
}

.plans-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.plan-comparison {
  display: grid;
  gap: 6px;
}

.price-comparison {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 10px;
  align-self: stretch;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(27, 54, 93, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(111, 163, 232, 0.1), transparent 42%),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 58px rgba(27, 54, 93, 0.1);
  overflow: hidden;
}

.pcomp-refs {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}

.pcomp-ref {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 132px;
  padding: clamp(18px, 2.4vw, 24px);
  border: 1px solid rgba(27, 54, 93, 0.08);
  border-radius: calc(var(--radius) - 2px);
  background: #fff;
}

.pcomp-eyebrow {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.pcomp-ref p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  font-weight: 700;
  line-height: 1.25;
}

.pcomp-risk {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 274px;
  padding: clamp(24px, 3vw, 36px);
  border-radius: calc(var(--radius) - 2px);
  background:
    linear-gradient(135deg, rgba(111, 163, 232, 0.16), transparent 38%),
    var(--navy);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.pcomp-risk .pcomp-eyebrow {
  color: rgba(255, 255, 255, 0.45);
}

.pcomp-risk p {
  margin: 0;
  color: #fff;
  font-size: clamp(1.2rem, 2.2vw, 1.9rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.plan-comparison span {
  display: block;
}

.plan-comparison span:last-child {
  color: var(--ink);
  font-size: 1.14em;
  font-weight: 850;
}

.animation-ready .plan-comparison span,
.animation-ready .price-comparison span,
.animation-ready .price-comparison strong {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 480ms ease, transform 480ms ease;
}

.animation-ready .plan-comparison.is-visible span,
.animation-ready .price-comparison.is-visible span,
.animation-ready .price-comparison.is-visible strong {
  opacity: 1;
  transform: translateY(0);
}

.plan-comparison.is-visible span:nth-child(2),
.price-comparison.is-visible span:nth-child(2) {
  transition-delay: 160ms;
}

.plan-comparison.is-visible span:nth-child(3),
.price-comparison.is-visible strong {
  transition-delay: 320ms;
}

.included-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-column: 1 / -1;
  align-items: start;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.included-panel p {
  margin: 0;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 850;
  white-space: nowrap;
}

.included-panel ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.included-panel li {
  position: relative;
  padding-left: 14px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.4;
}

.included-panel li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}

.plan-grid,
.pricing-board {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column: 1 / -1;
  gap: 10px;
  margin-top: clamp(20px, 4vw, 40px);
  background: transparent;
  border-radius: var(--radius);
}

.plan {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: clamp(22px, 2.6vw, 30px);
  border: 1px solid rgba(27, 54, 93, 0.12);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(27, 54, 93, 0.07);
  transition: transform 260ms var(--ease-out), box-shadow 260ms ease, background 260ms ease;
}

.plan:hover {
  z-index: 2;
  transform: translateY(-4px);
  box-shadow: 0 28px 72px rgba(27, 54, 93, 0.12);
}

.plan::before {
  content: "";
  display: block;
  width: 38px;
  height: 3px;
  margin-bottom: 22px;
  background: var(--blue);
}

.plan::after {
  content: "01";
  position: absolute;
  right: clamp(22px, 3vw, 34px);
  top: clamp(20px, 3vw, 30px);
  color: rgba(27, 54, 93, 0.12);
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  font-weight: 900;
  line-height: 0.78;
}

.plan:nth-child(2)::after {
  content: "02";
}

.plan:nth-child(3)::after {
  content: "03";
}

.plan-head {
  position: relative;
  z-index: 1;
  min-height: 92px;
}

.plan h3 {
  max-width: 78%;
}

.plan strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 10px;
  color: var(--navy);
  font-size: clamp(2.1rem, 3.7vw, 3.7rem);
  line-height: 1;
  white-space: nowrap;
}

.plan span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.plan ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.plan li {
  position: relative;
  padding-left: 18px;
}

.plan li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  background: var(--blue);
}

.plan a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding-top: 24px;
  padding-bottom: 4px;
  border-bottom: 2px solid currentColor;
  color: var(--blue);
  font-weight: 850;
  transition: color 180ms ease, transform 180ms var(--ease-out);
}

.plan a:hover {
  transform: translateX(3px);
}

.featured-plan span,
.featured-plan li,
.featured-plan p {
  color: #ffffffb3;
}

.featured-plan li::before {
  background: #fff;
}

.featured-plan {
  background: var(--navy);
  color: #fff;
}

.featured-plan::before {
  background: #fff;
}

.featured-plan::after {
  color: rgba(255, 255, 255, 0.13);
}

.featured-plan strong,
.featured-plan a {
  color: #fff;
}

.pricing-notes {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  max-width: 980px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 0.78fr);
  gap: clamp(32px, 7vw, 96px);
  background: #fff;
  border-top: 1px solid var(--line);
}

.gtt-section,
.final-cta {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 0.92fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
  background: #fff;
  border-top: 1px solid var(--line);
}

.gtt-section p,
.final-cta p {
  color: var(--muted);
  font-size: 1.04rem;
}

.gtt-logo-card {
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--gray-bg);
}

.gtt-logo-card img {
  width: min(100%, 340px);
}

.faq-section {
  background: var(--warm-white);
  border-top: 1px solid var(--line);
}

.faq-section h2 {
  max-width: 780px;
}

.faq-list {
  display: grid;
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
}

.faq-list details {
  background: #fff;
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--ink);
  font-weight: 850;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--blue);
  font-size: 1.2rem;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
}

.final-cta {
  background: var(--navy);
  color: #fff;
}

.final-cta h2,
.final-cta .eyebrow {
  color: #fff;
}

.final-cta p {
  color: #ffffffb3;
}

.final-cta .button-primary {
  background: #fff;
  color: var(--navy);
}

.final-cta .button-secondary {
  background: transparent;
  border-color: #ffffff4d;
  color: #fff;
}

.final-cta .contact-form label {
  color: #fff;
}

.final-cta .contact-form input,
.final-cta .contact-form textarea {
  background: #ffffff0d;
  border-color: #ffffff33;
  color: #fff;
}

.final-cta .contact-form textarea::placeholder,
.final-cta .contact-form input::placeholder {
  color: #ffffff80;
}

.cta-note {
  margin-top: 18px;
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 500;
  padding: 13px 14px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(75, 111, 165, 0.3);
  border-color: var(--blue);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.trust-strip {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 940px);
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(34px, 4.6vw, 54px) clamp(28px, 7vw, 96px);
  border-top: 1px solid rgba(27, 54, 93, 0.08);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(27, 54, 93, 0.025), transparent 38%),
    linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.trust-description {
  justify-self: start;
  grid-column: 2;
  margin: 0;
  max-width: 940px;
  color: var(--muted);
  font-size: clamp(0.96rem, 1.04vw, 1.03rem);
  font-weight: 500;
  line-height: 1.62;
}

.trust-description strong {
  color: var(--navy);
}

.trust-audience {
  grid-column: 2;
  justify-self: start;
  max-width: 760px;
  margin: -34px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.55;
  opacity: 0.62;
}

.trust-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  justify-self: start;
  min-width: 0;
  white-space: nowrap;
}

.trust-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}

.trust-logo {
  width: auto;
  height: clamp(26px, 3vw, 34px);
  max-width: min(24vw, 208px);
  object-fit: contain;
  opacity: 0.92;
}

.site-footer {
  position: relative;
  display: grid;
  gap: 0;
  padding: 56px clamp(20px, 5vw, 64px) 36px;
  background: var(--navy);
  color: #fff;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(20px, 5vw, 64px);
  right: clamp(20px, 5vw, 64px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding-bottom: 44px;
}

.footer-brand {
  max-width: 360px;
}

.footer-brand > .brand {
  width: fit-content;
}

.footer-brand p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.88rem;
  line-height: 1.65;
}

.footer-gtt {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-gtt span {
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-label {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 180ms ease;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.76rem;
}

.footer-legal a,
.footer-cookie-reset {
  color: rgba(255, 255, 255, 0.42);
  font-weight: 600;
  transition: color 180ms ease;
}

.footer-legal a:hover,
.footer-cookie-reset:hover {
  color: rgba(255, 255, 255, 0.75);
}

.footer-cookie-reset {
  appearance: none;
  border: 0;
  padding: 10px 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.footer-wordmark {
  color: #fff;
}

.footer-wordmark span {
  color: rgba(255, 255, 255, 0.6);
}

.terms-page {
  min-height: 100svh;
  padding: clamp(32px, 7vw, 84px);
  background:
    radial-gradient(ellipse 78% 44% at 50% 0%, rgba(228, 237, 250, 0.68) 0%, transparent 66%),
    linear-gradient(180deg, #f4f7fc 0%, #ffffff 44%);
}

.terms-back {
  display: inline-flex;
  margin-bottom: clamp(42px, 7vw, 76px);
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 800;
}

.terms-document {
  max-width: 820px;
}

.terms-document h1 {
  margin-bottom: 8px;
  color: var(--ink);
}

.terms-domain {
  margin: 0 0 clamp(34px, 5vw, 52px);
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.terms-document section {
  margin-top: clamp(28px, 4vw, 42px);
  padding-top: clamp(22px, 3vw, 30px);
  border-top: 1px solid rgba(27, 54, 93, 0.12);
}

.terms-document h2 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(1.25rem, 2.1vw, 1.8rem);
  line-height: 1.15;
}

.terms-document p,
.terms-document li {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.7;
}

.terms-document ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 18px;
  padding-left: 1.2em;
}

.terms-document strong {
  color: var(--navy);
  font-weight: 850;
}

.terms-links {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto 64px;
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.terms-links a {
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid rgba(27, 54, 93, 0.28);
  padding-bottom: 4px;
}

.terms-links a:hover {
  border-color: var(--ia-blue);
  color: var(--ia-blue);
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 16px max(24px, env(safe-area-inset-right)) calc(16px + env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left));
  color: rgba(255, 255, 255, 0.88);
  background: rgba(10, 22, 48, 0.94);
  border-top: 1px solid rgba(159, 180, 213, 0.12);
  border-radius: 0;
  box-shadow:
    0 -1px 0 rgba(159, 180, 213, 0.06) inset,
    0 -24px 48px rgba(6, 14, 32, 0.20);
  backdrop-filter: blur(24px) saturate(1.5);
}

.cookie-banner::before {
  content: "";
  width: 3px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--ia-blue), #2d5a9e);
  opacity: 0.75;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-copy strong {
  display: block;
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-copy p {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
  line-height: 1.45;
}

.cookie-copy a {
  display: inline-flex;
  margin-top: 5px;
  color: var(--ia-blue);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(159, 180, 213, 0.30);
}

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

.cookie-button {
  min-height: 40px;
  border: 1px solid transparent;
  padding: 0 17px;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.cookie-button-primary {
  color: var(--navy);
  background: rgba(159, 180, 213, 0.92);
  border-color: transparent;
}

.cookie-button-secondary {
  color: rgba(255, 255, 255, 0.60);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.cookie-button:hover {
  transform: translateY(-1px);
}

@keyframes alert-slide-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes soft-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.28);
  }

  50% {
    transform: scale(1.025);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
}

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

  .animation-ready [data-alert-row],
  .animation-ready [data-timeline-step],
  .animation-ready .plan-comparison span,
  .animation-ready .price-comparison span,
  .animation-ready .price-comparison strong,
  .animation-ready .chapter > .chapter-copy,
  .animation-ready .chapter > .time-panel,
  .animation-ready .chapter > .risk-visuals,
  .animation-ready .chapter > .bulletin-board,
  .animation-ready .chapter > .email-shell,
  .animation-ready .chapter > .report-card,
  .animation-ready .chapter > .price-lede,
  .animation-ready .chapter > .volume-pricing,
  .animation-ready .chapter > .included-panel,
  .animation-ready .chapter > .pricing-board,
  .animation-ready .chapter > .pricing-notes,
  .animation-ready .chapter > .decision-copy {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  [id] {
    scroll-margin-top: 82px;
  }

  .site-header {
    min-height: 68px;
  }

  /* On mobile the dropdown spans viewport width with 14px margins each side */
  .floating-menu .site-nav {
    width: calc(100vw - 28px);
    right: 0;
    left: auto;
    min-width: unset;
  }

  .hero,
  .risk-section,
  .report-section,
  .contact,
  .gtt-section,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    max-width: none;
  }

  .product-window {
    margin: 0;
    width: 100%;
  }

  .plan-grid,
  .pricing-board,
  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline div + div {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .timeline::before {
    top: 45px;
    bottom: 45px;
    left: 45px;
    width: 2px;
    height: calc(var(--timeline-progress, 0) * (100% - 90px));
    transition: height 900ms cubic-bezier(0.22, 1, 0.36, 1);
  }
}

@media (max-width: 640px) {
  .brand {
    gap: 8px;
  }

  .brand-logo {
    width: 118px;
  }

  .brand span {
    max-width: none;
  }

  .product-wordmark {
    font-size: 0.96rem;
  }

  .site-header {
    min-height: 76px;
  }

  h1 {
    font-size: clamp(2.2rem, 10vw, 3rem);
    line-height: 1.02;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-owner {
    align-items: flex-start;
  }

  .hero-owner::before {
    margin-top: 0.72em;
    flex: 0 0 22px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .cookie-banner {
    left: 0;
    right: 0;
    grid-template-columns: 1fr;
    gap: 12px;
    bottom: 0;
    width: 100%;
    max-height: calc(100dvh - 24px);
    padding: 16px 20px calc(16px + env(safe-area-inset-bottom));
    overflow: hidden;
    transform: none;
  }

  .cookie-banner::before {
    width: 36px;
    height: 3px;
    justify-self: center;
    background: rgba(159, 180, 213, 0.22);
  }

  .cookie-copy strong {
    margin-bottom: 5px;
    font-size: 0.68rem;
    text-align: center;
  }

  .cookie-copy p {
    max-width: none;
    font-size: 0.71rem;
    line-height: 1.4;
    text-align: center;
  }

  .cookie-copy a {
    display: flex;
    width: fit-content;
    margin: 7px auto 0;
    font-size: 0.64rem;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .cookie-button {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    padding-inline: 10px;
    white-space: nowrap;
  }

  .hero-metrics {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-metrics div {
    border-right: 0;
    border-bottom: 1px solid rgba(20, 33, 61, 0.18);
    padding: 0 0 14px;
  }

  .hero-metrics div:last-child {
    border-bottom: 0;
  }

  .case-details {
    grid-template-columns: 1fr;
  }

  .alert-row {
    grid-template-columns: 12px minmax(0, 1fr);
  }

  .alert-row b {
    grid-column: 2;
    width: fit-content;
  }

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

  .paper-columns span {
    height: 58px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-block: 32px;
    justify-content: stretch;
  }

  .trust-brand {
    justify-self: start;
    gap: 10px;
  }

  .trust-logo {
    height: 32px;
    max-width: 220px;
  }

  .trust-description {
    justify-self: start;
    grid-column: auto;
    max-width: 700px;
  }

  .trust-audience {
    grid-column: auto;
    margin-top: -6px;
    max-width: 700px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }

  .footer-legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* Narrative landing direction */
.story-hero {
  min-height: 100svh;
  min-height: 100dvh;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(260px, 1fr);
  align-items: center;
  gap: clamp(24px, 5vw, 92px);
  padding: clamp(44px, 6vw, 72px) clamp(22px, 6vw, 96px);
  background:
    radial-gradient(ellipse 72% 58% at 22% 38%, rgba(74, 112, 160, 0.42) 0%, transparent 66%),
    radial-gradient(ellipse 48% 40% at 78% 68%, rgba(27, 54, 93, 0.6) 0%, transparent 70%),
    var(--navy);
  color: #fff;
  overflow: hidden;
}

.story-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(16, 30, 62, 0.82) 0%, rgba(16, 30, 62, 0.56) 48%, rgba(16, 30, 62, 0.18) 100%);
}

.story-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(0deg, rgba(20, 44, 80, 0.72) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.mark-stream {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.mark-stream-track {
  display: flex;
  flex-direction: column;
  animation: mark-scroll 38s linear infinite;
}

.mark-row {
  display: grid;
  grid-template-columns: minmax(0, 2fr) 72px minmax(0, 1.6fr);
  gap: 0 clamp(16px, 2.4vw, 40px);
  align-items: center;
  padding: 9px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.13);
  font-size: clamp(0.64rem, 1vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mark-row:nth-child(3n) { color: rgba(255, 255, 255, 0.17); }

.story-hero .mark-row:nth-child(6n + 2) {
  animation: mark-row-glint 4.8s ease-in-out infinite;
}

.mark-row .mn {
  font-weight: 900;
  letter-spacing: 0.06em;
}

.mark-row .mc {
  color: rgba(255, 255, 255, 0.13);
  font-size: 0.7em;
  font-weight: 800;
  text-align: right;
}

.mark-row .ms {
  color: rgba(255, 255, 255, 0.055);
  font-weight: 600;
  letter-spacing: 0.02em;
}

@keyframes mark-scroll {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

@keyframes mark-row-glint {
  0%,
  72%,
  100% {
    color: rgba(255, 255, 255, 0.13);
    background: transparent;
  }

  82% {
    color: rgba(255, 255, 255, 0.3);
    background: rgba(159, 180, 213, 0.055);
  }
}

.hero-product-wordmark {
  margin: 0;
  color: #fff;
  font-size: clamp(4.5rem, 15vw, 15rem);
  font-weight: 900;
  line-height: 0.92;
  text-align: center;
}

.hero-product-wordmark span {
  color: #9fb4d5;
}

.hero-count-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: start;
  gap: 4px;
  width: max-content;
  max-width: 100%;
  margin: 0 0 clamp(24px, 4vh, 36px);
  padding: clamp(12px, 2vh, 16px) 0;
  opacity: 1;
}

.hero-wordmark {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.34em;
  width: auto;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.94rem, 1.18vw, 1.08rem);
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: clamp(18px, 3.3vh, 30px);
  opacity: 1;
  text-shadow: none;
  filter: none;
  transform: none;
  transition: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.hero-wordmark .wm-line {
  display: inline;
}

.hero-wordmark .wm-line-second {
  margin-top: 0;
}

.hero-wordmark .wm-ia {
  color: #9fb4d5;
}

.hero-count {
  color: #fff;
  font-size: clamp(1.9rem, 3.35vw, 3.7rem);
  font-weight: 850;
  line-height: 0.94;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}

.hero-count-label {
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(0.88rem, 1.08vw, 1rem);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: 0;
  text-align: left;
  text-transform: none;
  opacity: 1;
  transform: none;
}

.hero-count-wrap::before,
.hero-count-wrap::after {
  content: "";
  width: clamp(64px, 8vw, 96px);
  height: 1px;
  background: rgba(159, 180, 213, 0.42);
}

.hero-count-wrap::before {
  margin-bottom: 8px;
}

.hero-count-wrap::after {
  margin-top: 10px;
}

.hero-count-source {
  color: rgba(255, 255, 255, 0.42);
  font-size: clamp(0.68rem, 0.78vw, 0.76rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-align: left;
}

.story-hero-copy {
  position: relative;
  z-index: 4;
  display: grid;
  justify-items: start;
  align-content: center;
  min-height: calc(100svh - clamp(88px, 12vh, 132px));
  max-width: 760px;
  padding: clamp(42px, 7vh, 80px) 0 clamp(42px, 7vh, 80px);
  text-align: left;
  opacity: 1;
}

.story-hero-copy::before {
  content: none;
}

.story-hero .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.story-hero h1 {
  max-width: 760px;
  margin-bottom: clamp(20px, 3.2vh, 30px);
  color: #fff;
  font-size: clamp(2.78rem, 5.05vw, 5.45rem);
  line-height: 1.01;
  letter-spacing: 0;
  text-wrap: balance;
}

.story-hero h1 span {
  display: block;
}

.story-hero h1 .h1-line-1 {
  max-width: 740px;
  font-weight: 600;
}

.story-hero h1 .h1-line-2 {
  display: grid;
  gap: 0.04em;
  margin-top: 8px;
  color: #9fb4d5;
  font-weight: 900;
  line-height: 0.98;
}

.story-hero h1 .h1-line-2 span {
  display: block;
}

.story-hero h1 .h1-line-2 span:last-child {
  white-space: normal;
}

.story-hero p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
}

.hero-lede {
  max-width: 520px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(0.98rem, 1.14vw, 1.06rem);
  line-height: 1.55;
  text-wrap: pretty;
}

.hero-lede span {
  display: block;
}

.hero-lede span + span {
  margin-top: 0.48rem;
}

.hero-gtt-subtle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero-gtt-logo {
  width: 68px;
  height: auto;
  opacity: 0.45;
}

.story-hero .hero-product-name {
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(2.25rem, 6.2vw, 6rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: none;
}

.story-hero .hero-product-name span {
  color: #9fb4d5;
}


.story-hero .button-primary {
  background: #fff;
  color: var(--navy);
}

.story-hero .button-secondary {
  border: none;
  background: none;
  color: rgba(255, 255, 255, 0.68);
  padding-left: 0;
  padding-right: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
}

.story-hero .hero-owner {
  color: rgba(255, 255, 255, 0.62);
}

.story-hero .hero-owner::before {
  background: rgba(255, 255, 255, 0.42);
}

.story-hero .hero-owner strong {
  color: #fff;
}

.chapter {
  position: relative;
  isolation: isolate;
  min-height: 78svh;
  display: grid;
  align-items: center;
  gap: clamp(40px, 8vw, 110px);
  padding: clamp(80px, 10vw, 128px) clamp(28px, 7vw, 96px);
  overflow: hidden;
  border-top: 0;
}

.chapter-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.chapter-copy p {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.65;
}

.time-chapter,
.system-chapter,
.alert-chapter,
.price-chapter {
  background:
    radial-gradient(ellipse 78% 44% at 50% 0%, rgba(228, 237, 250, 0.68) 0%, transparent 66%),
    linear-gradient(180deg, #f4f7fc 0%, #ffffff 44%);
}

.time-chapter,
.alert-chapter,
.decision-chapter {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.86fr);
}

.chapter::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(27, 54, 93, 0.14), transparent);
}

.chapter::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: clamp(34px, 7vw, 96px);
  right: clamp(20px, 5vw, 64px);
  width: min(32vw, 420px);
  height: min(32vw, 420px);
  border: 1px solid rgba(75, 111, 165, 0.07);
  opacity: 0.35;
  pointer-events: none;
  transform: rotate(2deg);
}

.animation-ready .chapter > .chapter-copy,
.animation-ready .chapter > .time-panel,
.animation-ready .chapter > .risk-visuals,
.animation-ready .chapter > .bulletin-board,
.animation-ready .chapter > .report-card,
.animation-ready .chapter > .volume-pricing,
.animation-ready .chapter > .decision-copy {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 760ms var(--ease-cinema), transform 760ms var(--ease-cinema);
}

.animation-ready .chapter.is-visible > .chapter-copy,
.animation-ready .chapter.is-visible > .time-panel,
.animation-ready .chapter.is-visible > .risk-visuals,
.animation-ready .chapter.is-visible > .bulletin-board,
.animation-ready .chapter.is-visible > .report-card,
.animation-ready .chapter.is-visible > .price-lede,
.animation-ready .chapter.is-visible > .volume-pricing,
.animation-ready .chapter.is-visible > .included-panel,
.animation-ready .chapter.is-visible > .pricing-board,
.animation-ready .chapter.is-visible > .pricing-notes,
.animation-ready .chapter.is-visible > .decision-copy {
  opacity: 1;
  transform: translateY(0);
}

.animation-ready .chapter.is-visible > .time-panel,
.animation-ready .chapter.is-visible > .risk-visuals,
.animation-ready .chapter.is-visible > .bulletin-board,
.animation-ready .chapter.is-visible > .report-card,
.animation-ready .chapter.is-visible > .volume-pricing,
.animation-ready .chapter.is-visible > .pricing-board {
  transition-delay: 140ms;
}

.animation-ready .chapter.is-visible > .included-panel,
.animation-ready .chapter.is-visible > .pricing-notes {
  transition-delay: 240ms;
}

.time-chapter {
  min-height: auto;
  padding-top: clamp(64px, 8vw, 100px);
  padding-bottom: clamp(64px, 8vw, 100px);
  align-items: center;
}

.risk-visuals {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
  width: min(100%, 620px);
  justify-self: center;
}

.time-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  justify-items: start;
  gap: 14px;
  padding: 12px 14px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(27, 54, 93, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(27, 54, 93, 0.06);
  overflow: hidden;
}

.mvd-record {
  width: min(100%, 620px);
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(111, 163, 232, 0.16), transparent 34%),
    var(--navy);
  box-shadow: 0 26px 70px rgba(27, 54, 93, 0.22);
  overflow: hidden;
}

.mvd-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.mvd-system {
  min-width: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
}

.mvd-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 4px 7px;
  border: 1px solid rgba(52, 200, 119, 0.2);
  border-radius: 999px;
  background: rgba(52, 200, 119, 0.08);
  color: #b7f3cf;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.mvd-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34c877;
  box-shadow: 0 0 0 2px rgba(52, 200, 119, 0.22);
  animation: mvd-pulse 2s ease-in-out infinite;
}

@keyframes mvd-pulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(52, 200, 119, 0.22); }
  50% { box-shadow: 0 0 0 4px rgba(52, 200, 119, 0.12); }
}

.mvd-list {
  display: grid;
  gap: 0;
  padding: 8px 10px 10px;
}

.mvd-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 74px;
  padding: 11px 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mvd-item:first-child {
  border-top: 0;
}

.mvd-item.is-primary {
  margin-bottom: 4px;
  padding: 14px;
  border: 1px solid rgba(111, 163, 232, 0.34);
  border-left: 3px solid #6fa3e8;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.mvd-name {
  color: #fff;
  font-size: clamp(1rem, 1.7vw, 1.28rem);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.mvd-attrs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.mvd-attrs span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.75rem;
  font-weight: 700;
}

.mvd-attrs span:not(:last-child)::after {
  content: "·";
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.18);
}

.mvd-watch {
  color: #bcd3f3;
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.time-panel > .calendar-stack {
  margin-top: 0;
}

.time-panel > p {
  padding-bottom: 0;
}

.calendar-stack {
  position: relative;
  width: 54px;
  aspect-ratio: 0.76;
  margin-bottom: 0;
  perspective: 1200px;
  overflow: hidden;
  border-radius: var(--radius);
}

.calendar-page {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  padding-top: 0;
  border: 1px solid rgba(27, 54, 93, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(27, 54, 93, 0.035) 0 1px, transparent 1px 34px),
    #fff;
  background-size: 100% 34px, auto;
  box-shadow: 0 18px 44px rgba(27, 54, 93, 0.11);
  overflow: hidden;
}

.calendar-page-back {
  display: none;
  transform: translate(8px, 7px) rotate(1.2deg);
  background:
    linear-gradient(180deg, rgba(27, 54, 93, 0.03) 0 1px, transparent 1px 34px),
    #e6ebf2;
}

.calendar-page-mid {
  display: none;
  transform: translate(4px, 4px) rotate(0.6deg);
  background:
    linear-gradient(180deg, rgba(27, 54, 93, 0.03) 0 1px, transparent 1px 34px),
    #f2f5fa;
}

.calendar-page-front,
.calendar-page-falling {
  z-index: 2;
}

.calendar-page-front {
  z-index: 3;
}

.calendar-page span {
  color: var(--navy);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 0.78;
  font-variant-numeric: tabular-nums;
  transition: color 260ms ease;
}

.calendar-page em {
  color: var(--muted);
  font-size: 0.46rem;
  font-style: normal;
  font-weight: 900;
}

.calendar-page-front.is-critical span {
  color: #8c2f2a;
}

.calendar-page-front.is-critical {
  border-color: rgba(140, 47, 42, 0.24);
}

.calendar-page-falling {
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transform-origin: 50% 12%;
}

.calendar-page-falling.is-falling {
  animation: calendar-fall 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.time-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
}

.system-chapter {
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
}

.bulletin-board {
  position: relative;
  z-index: 2;
  overflow: hidden;
  min-height: 470px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(111, 163, 232, 0.14), transparent 36%),
    var(--navy);
  box-shadow: 0 28px 78px rgba(27, 54, 93, 0.22);
}

.bulletin-board::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, transparent, black 14%, black 88%, transparent);
}

.bulletin-topline {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 52px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(18, 38, 72, 0.72);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.66rem, 0.9vw, 0.78rem);
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.bulletin-topline span:first-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bulletin-topline b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 4px 7px;
  border: 1px solid rgba(52, 200, 119, 0.2);
  border-radius: 999px;
  background: rgba(52, 200, 119, 0.08);
  color: #b7f3cf;
  font-size: 0.68rem;
  line-height: 1;
  white-space: nowrap;
}

.bulletin-topline b::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34c877;
  box-shadow: 0 0 0 3px rgba(52, 200, 119, 0.18);
  animation: mvd-pulse 1.7s ease-in-out infinite;
}

.bulletin-viewport {
  position: absolute;
  inset: 52px 0 0;
  overflow: hidden;
}

.bulletin-viewport::before,
.bulletin-viewport::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 4;
  pointer-events: none;
}

.bulletin-viewport::before {
  top: 0;
  height: 48px;
  background: linear-gradient(180deg, #1b365d, transparent);
}

.bulletin-viewport::after {
  bottom: 0;
  height: 64px;
  background: linear-gradient(0deg, #1b365d, transparent);
}

.bulletin-feed {
  display: grid;
  gap: 0;
  background: transparent;
}

.bulletin-board.is-scanning .bulletin-feed {
  animation: bulletin-feed-move 3s linear forwards;
}

.bulletin-col-heads {
  display: none;
}

.bulletin-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  min-height: 40px;
  padding: 6px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(27, 54, 93, 0.58);
  color: rgba(255, 255, 255, 0.82);
}

.b-score {
  min-width: 36px;
  color: rgba(255, 255, 255, 0.22);
  font-size: 0.7rem;
  font-weight: 850;
  font-style: normal;
  letter-spacing: 0.04em;
  text-align: right;
}

.b-score--mid {
  color: rgba(200, 220, 255, 0.55);
}

.b-score--hit {
  color: rgba(255, 255, 255, 0.22);
}

.bulletin-row span {
  font-size: clamp(0.88rem, 1.45vw, 1.28rem);
  font-weight: 900;
}

.bulletin-row em {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bulletin-row.muted {
  color: rgba(255, 255, 255, 0.48);
}

.bulletin-row.selected {
  position: relative;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
}

.bulletin-row.selected::before {
  content: "";
  position: absolute;
  inset: 5px 8px;
  z-index: 2;
  border: 2px solid rgba(232, 160, 74, 0.58);
  opacity: 0;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
}

.bulletin-row > * {
  position: relative;
  z-index: 3;
}

.bulletin-board.risk-detected .b-score--hit {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #e8a04a;
  font-size: 0.92rem;
  animation: risk-flag-in 420ms ease both;
}

.bulletin-board.risk-detected .b-score--hit::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e8a04a;
  box-shadow: 0 0 0 3px rgba(232, 160, 74, 0.22);
  animation: risk-pulse 1.45s ease-in-out infinite;
}

.bulletin-board.risk-detected .bulletin-row.selected {
  z-index: 6;
  background: #24416c;
  color: #fff;
}

.bulletin-board.risk-detected .bulletin-row.selected::before {
  animation: risk-box-draw 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.bulletin-board.risk-detected .bulletin-row.selected::after {
  content: "Similitud con marca vigilada: ALPHACOR";
  position: absolute;
  right: 14px;
  top: calc(100% + 5px);
  z-index: 10;
  max-width: min(280px, calc(100% - 28px));
  padding: 5px 10px 5px 22px;
  border: 1px solid rgba(232, 160, 74, 0.45);
  border-left: 3px solid #e8a04a;
  border-radius: 3px;
  background: rgba(232, 160, 74, 0.14);
  color: #e8a04a;
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.03em;
  white-space: normal;
  line-height: 1.5;
  vertical-align: top;
  backdrop-filter: blur(6px);
  box-shadow: inset 0 0 0 1px rgba(232, 160, 74, 0.1);
  animation: risk-flag-in 420ms ease 300ms both, risk-flag-breathe 1.8s ease-in-out 900ms infinite;
}

.bulletin-board.risk-detected .bulletin-row.selected::after {
  background:
    radial-gradient(circle at 11px 50%, #e8a04a 0 3px, transparent 4px),
    rgba(232, 160, 74, 0.14);
}

.bulletin-board.risk-detected .bulletin-row:not(.selected) {
  filter: blur(1.5px);
  opacity: 0.28;
  transition: filter 500ms ease, opacity 500ms ease;
}

.bulletin-board.risk-detected .bulletin-row.selected em {
  color: #ffffffc7;
}

.bulletin-row.kept {
  background: #203b64;
}

.scan-line {
  position: absolute;
  right: 0;
  left: 0;
  top: 52px;
  z-index: 4;
  height: 2px;
  background: #6fa3e8;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.28), 0 0 12px 3px rgba(111, 163, 232, 0.7), 0 16px 44px rgba(75, 111, 165, 0.4);
  opacity: 0;
}

.bulletin-board.is-scanning .scan-line {
  animation: scan-line-drop 2.78s linear forwards;
}

.alert-chapter {
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  align-items: center;
}

.alert-chapter .chapter-copy {
  order: -1;
}

/* ── Email shell ── */
.email-shell {
  position: relative;
  z-index: 2;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  background: #fff;
  box-shadow: var(--deep-shadow);
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
  transform-origin: 82% 0%;
}

.animation-ready .email-shell {
  opacity: 0;
  filter: blur(8px);
  box-shadow: 0 8px 24px rgba(27, 54, 93, 0.06);
  transform: translate3d(56px, -34px, 0) scale(0.74) rotate(-1deg);
}

.email-shell.is-playing {
  animation: report-window-open 1280ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes report-window-open {
  0% {
    opacity: 0;
    filter: blur(8px);
    box-shadow: 0 8px 24px rgba(27, 54, 93, 0.06);
    transform: translate3d(56px, -34px, 0) scale(0.74) rotate(-1deg);
  }

  34% {
    opacity: 1;
    filter: blur(1px);
    transform: translate3d(10px, -8px, 0) scale(0.94) rotate(-0.35deg);
  }

  68% {
    opacity: 1;
    filter: blur(0);
    box-shadow: 0 34px 90px rgba(27, 54, 93, 0.16);
    transform: translate3d(0, 1px, 0) scale(1.012) rotate(0deg);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    box-shadow: var(--deep-shadow);
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  }
}

.email-chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--warm-white);
}

.email-chrome-dots {
  display: flex;
  gap: 5px;
}

.email-chrome-dots span {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.email-chrome-dots span:nth-child(1) { background: #ff5f56; }
.email-chrome-dots span:nth-child(2) { background: #ffbd2e; }
.email-chrome-dots span:nth-child(3) { background: #27c93f; }

.email-chrome-title {
  flex: 1;
  text-align: center;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
}

.email-header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}

.email-avatar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.email-meta {
  flex: 1;
  min-width: 0;
}

.email-from {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.email-from > span {
  flex-shrink: 0;
}

.email-from em {
  min-width: 0;
  margin-left: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.email-subject {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.email-time {
  flex-shrink: 0;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 600;
}

.email-body {
  position: relative;
}

.email-generating {
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  display: none;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  opacity: 0;
  z-index: 3;
  pointer-events: none;
}

.email-shell.is-playing .email-generating {
  animation: email-gen-show 0.92s ease both;
}

@keyframes email-gen-show {
  0%   { opacity: 0; }
  25%  { opacity: 1; }
  75%  { opacity: 1; }
  100% { opacity: 0; }
}

.gen-dots {
  display: inline-flex;
  gap: 3px;
  vertical-align: middle;
}

.gen-dots i {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  font-style: normal;
  animation: dot-bounce 1.1s ease-in-out infinite;
}

.gen-dots i:nth-child(2) { animation-delay: 0.18s; }
.gen-dots i:nth-child(3) { animation-delay: 0.36s; }

@keyframes dot-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.38; }
  50%       { transform: translateY(-4px); opacity: 1; }
}

/* Report rows — hidden by default, revealed by animation */
.email-row-1,
.email-row-2,
.email-row-3,
.email-row-4,
.email-row-5,
.email-row-6 {
  opacity: 1;
  transform: translateY(0);
}

@keyframes email-row-in {
  from { opacity: 0; transform: translateY(7px); }
  to   { opacity: 1; transform: translateY(0); }
}

.report-card {
  position: relative;
  z-index: 2;
  padding: clamp(14px, 2.1vw, 22px);
  background: #fff;
}

.email-shell .report-card {
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.report-topline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 10px;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-topline b {
  flex-shrink: 0;
  padding: 3px 7px;
  border: 1.5px solid rgba(180, 30, 30, 0.55);
  border-radius: 3px;
  color: rgba(180, 30, 30, 0.72);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  transform: rotate(-2deg);
  display: inline-block;
  line-height: 1.4;
}

.report-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 10px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 2px);
  background: var(--line);
  overflow: hidden;
}

.report-meta span {
  display: grid;
  align-content: start;
  gap: 3px;
  min-width: 0;
  padding: 7px 9px;
  background: #fff;
  color: var(--muted);
}

.report-meta em {
  color: var(--muted);
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.report-meta strong {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.report-meta small {
  color: var(--soft-text);
  font-size: 0.56rem;
  font-weight: 700;
  line-height: 1.25;
}

.report-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 10px;
}

.report-summary div {
  min-height: 58px;
  padding: 8px 10px;
  border: 1px solid rgba(27, 54, 93, 0.1);
  border-radius: calc(var(--radius) - 2px);
  background: var(--warm-white);
}

.report-summary .summary-primary {
  background: var(--ice-blue);
}

.report-summary .summary-high {
  border-color: rgba(232, 160, 74, 0.32);
  background: rgba(232, 160, 74, 0.1);
}

.report-summary strong,
.report-summary span {
  display: block;
}

.report-summary strong {
  color: var(--navy);
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
  line-height: 1;
}

.report-summary .summary-high strong {
  color: #8c2f2a;
}

.report-summary span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.2;
}

.report-alert {
  padding: 12px 14px;
  border-radius: calc(var(--radius) - 1px);
  background: var(--navy);
  color: #fff;
}

.risk-stamp {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 5px 8px;
  border: 1px solid rgba(232, 160, 74, 0.4);
  border-radius: calc(var(--radius) - 2px);
  background: rgba(232, 160, 74, 0.12);
  color: #e8a04a;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.report-card h2 {
  margin-bottom: 10px;
  font-size: clamp(1.28rem, 2.1vw, 2.2rem);
}

.report-alert h2 {
  margin-bottom: 0;
  color: #fff;
}

.report-card h2 small {
  color: #9fb4d5;
  font-size: 0.45em;
}

.report-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-bottom: 0;
  background: var(--line);
}

.report-fields div {
  padding: 8px 11px;
  background: var(--warm-white);
}

.report-fields span {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.report-fields strong {
  color: var(--navy);
  font-size: 0.92rem;
}

.report-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.report-legal {
  margin-top: 0;
  padding: 16px 18px;
  border-left: 3px solid var(--navy);
  border-radius: calc(var(--radius) - 2px);
  background: var(--ice-blue);
}

.report-legal-label {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-legal p:last-child {
  margin: 0;
  color: var(--body-text);
  font-size: 0.86rem;
  line-height: 1.6;
}

.price-chapter {
  grid-template-columns: minmax(300px, 0.85fr) minmax(320px, 1fr);
  align-items: start;
  gap: clamp(28px, 5vw, 72px);
}

.price-lede {
  max-width: 620px;
  position: sticky;
  top: clamp(80px, 10vh, 120px);
}

.price-lede h2 {
  max-width: 520px;
}

.price-subtitle {
  max-width: 520px;
  margin-top: 20px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  font-weight: 400;
  line-height: 1.65;
}

.pricing-logic {
  max-width: 480px;
  margin-top: clamp(20px, 3.5vw, 28px);
  padding-top: 20px;
  border-top: 1px solid rgba(27, 54, 93, 0.14);
  color: var(--navy);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: -0.01em;
}

/* ── Volume pricing card ── */
.volume-pricing {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0;
  align-self: start;
  border-radius: 8px;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(100, 148, 210, 0.28) 0%, transparent 60%),
    linear-gradient(160deg, #0e2347 0%, #142c58 55%, #0d2040 100%);
  box-shadow:
    0 2px 0 rgba(159, 180, 213, 0.2) inset,
    0 56px 90px rgba(10, 22, 48, 0.36),
    0 12px 28px rgba(10, 22, 48, 0.18);
  overflow: hidden;
}

.volume-pricing::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.028;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.volume-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: clamp(20px, 2.6vw, 28px) clamp(22px, 2.8vw, 32px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.volume-header span {
  color: #9fb4d5;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.volume-header strong {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.76rem;
  font-weight: 600;
  text-align: right;
}

.volume-row {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: clamp(18px, 2.3vw, 24px) clamp(22px, 2.8vw, 32px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.volume-row:last-of-type {
  border-bottom: none;
}

.volume-row-featured {
  background: rgba(159, 180, 213, 0.1);
  border-top: 1px solid rgba(159, 180, 213, 0.16);
  border-bottom: 1px solid rgba(159, 180, 213, 0.16);
}

.volume-row-featured::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #9fb4d5, #7098c8);
  border-radius: 0 2px 2px 0;
}

.volume-badge {
  position: absolute;
  top: 0;
  right: clamp(22px, 2.8vw, 32px);
  padding: 4px 10px;
  border-radius: 0 0 8px 8px;
  background: #9fb4d5;
  color: #0d2040;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.volume-range strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.28vw, 1.16rem);
  font-weight: 900;
}

.volume-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}

.volume-price strong {
  color: #fff;
  font-size: clamp(2.25rem, 3.65vw, 3.95rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.03em;
  text-align: right;
  white-space: nowrap;
}

.volume-price strong sup {
  font-size: 0.44em;
  font-weight: 700;
  vertical-align: super;
  opacity: 0.6;
}

.volume-price em {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 600;
  text-align: right;
}

.volume-price-custom strong {
  font-size: clamp(1.5rem, 2.6vw, 2.6rem);
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: -0.02em;
}

.volume-terms {
  display: grid;
  gap: 7px;
  padding: clamp(16px, 2.2vw, 22px) clamp(22px, 2.8vw, 32px);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.71rem;
  font-weight: 600;
  line-height: 1.5;
}

.volume-terms strong {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
}

.volume-terms-link {
  color: rgba(159, 180, 213, 0.7);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 160ms ease;
}

.volume-terms-link:hover {
  color: #9fb4d5;
}

.volume-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 clamp(22px, 2.8vw, 32px) clamp(22px, 2.8vw, 32px);
  padding: 16px 20px;
  border-radius: var(--radius);
  background: #9fb4d5;
  color: #0d2040;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  animation: volume-cta-pulse 2.4s ease-in-out infinite;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.volume-cta:hover {
  background: #b8cde4;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(159, 180, 213, 0.28);
  animation: none;
}

@keyframes volume-cta-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(159, 180, 213, 0.38);
  }
  50% {
    transform: scale(1.022);
    box-shadow: 0 0 0 10px rgba(159, 180, 213, 0);
  }
}

/* ── Promo launch strip (inside volume-pricing card) ── */
.promo-strip {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(232, 160, 74, 0.055);
  animation: promo-ambient 6s ease-in-out infinite;
}

@keyframes promo-ambient {
  0%, 100% { background: rgba(232, 160, 74, 0.042); }
  50%       { background: rgba(232, 160, 74, 0.078); }
}

.promo-strip::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #f0b468, #c6791b);
  border-radius: 0 2px 2px 0;
  box-shadow: 2px 0 14px rgba(232, 160, 74, 0.32);
}

.promo-strip::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(232, 160, 74, 0.55) 0%, rgba(232, 160, 74, 0.12) 45%, transparent 72%);
  pointer-events: none;
}

.promo-strip-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: clamp(20px, 2.6vw, 28px) clamp(22px, 2.8vw, 32px) clamp(18px, 2.4vw, 24px);
}

.promo-strip-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.promo-strip-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px;
  border: 1px solid rgba(232, 160, 74, 0.28);
  border-radius: 999px;
  background: rgba(232, 160, 74, 0.1);
  color: #e8a04a;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  width: fit-content;
}

.promo-dot {
  flex-shrink: 0;
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e8a04a;
  animation: promo-dot-pulse 1.8s ease-in-out infinite;
}

@keyframes promo-dot-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 160, 74, 0.55); }
  55%       { box-shadow: 0 0 0 5px rgba(232, 160, 74, 0); }
}

.promo-strip-desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.3;
}

.promo-strip-counter {
  display: flex;
  align-items: baseline;
  gap: 7px;
  flex-shrink: 0;
  white-space: nowrap;
}

.promo-strip-counter strong {
  color: #e8a04a;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 28px rgba(232, 160, 74, 0.45), 0 0 60px rgba(232, 160, 74, 0.18);
}

.promo-strip-counter em {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.promo-strip-track {
  position: relative;
  height: 8px;
  background: rgba(232, 160, 74, 0.1);
  overflow: hidden;
}

.promo-strip-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--promo-fill, 73%);
  background: linear-gradient(90deg, #9e5510 0%, #d4892a 50%, #e8a04a 80%, #f0b468 100%);
  overflow: hidden;
}

.promo-strip-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 25%,
    rgba(255, 255, 255, 0.28) 50%,
    transparent 75%
  );
  animation: promo-shimmer 3.2s ease-in-out infinite;
  animation-play-state: paused;
}

.chapter.is-visible .promo-strip-fill::after {
  animation-play-state: running;
  animation-delay: 1.8s;
}

@keyframes promo-shimmer {
  0%   { transform: translateX(-160%); opacity: 0; }
  8%   { opacity: 1; }
  60%  { transform: translateX(160%); opacity: 1; }
  68%  { opacity: 0; }
  100% { transform: translateX(160%); opacity: 0; }
}

.promo-strip-segs {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent calc(100% / 30 - 1.5px),
    rgba(12, 26, 55, 0.62) calc(100% / 30 - 1.5px),
    rgba(12, 26, 55, 0.62) calc(100% / 30)
  );
  pointer-events: none;
}

.animation-ready .promo-strip-fill {
  width: 0;
  transition: width 1400ms cubic-bezier(0.22, 1, 0.36, 1) 500ms;
}

.animation-ready .chapter.is-visible .promo-strip-fill {
  width: var(--promo-fill, 73%);
}

@media (max-width: 680px) {
  .promo-strip-row {
    flex-wrap: wrap;
    gap: 12px 16px;
    padding: clamp(16px, 4.5vw, 22px) clamp(20px, 5.5vw, 28px) clamp(14px, 4vw, 18px);
  }

  .promo-strip-left {
    flex: 1 1 100%;
  }

  .promo-strip-counter {
    flex: 1 1 100%;
    flex-direction: row;
    align-items: baseline;
    justify-content: flex-start;
    gap: 8px;
    white-space: normal;
  }

  .promo-strip-counter strong {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .promo-strip {
    animation: none;
  }

  .animation-ready .promo-strip-fill {
    width: var(--promo-fill, 73%);
    transition: none;
  }

  .promo-strip-fill::after {
    animation: none;
  }
}

/* ── Features strip ── */
.volume-includes {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 20px;
  padding: clamp(20px, 2.5vw, 28px) clamp(22px, 3vw, 30px);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(27, 54, 93, 0.07) 0%, rgba(27, 54, 93, 0.03) 100%);
  border: 1px solid rgba(27, 54, 93, 0.13);
}

.volume-includes-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.volume-includes-label::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

.volume-feature-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px 28px;
  min-width: 0;
}

.volume-feature-group {
  min-width: 0;
}

.volume-feature-group strong {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 850;
}

.volume-feature-group strong::before {
  content: "";
  flex-shrink: 0;
  width: 3px;
  height: 14px;
  border-radius: 2px;
  background: var(--blue);
  opacity: 0.6;
}

.volume-features-grid {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.volume-features-grid li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.77rem;
  font-weight: 500;
  line-height: 1.5;
}

.volume-features-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(75, 111, 165, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M2 5l2.5 2.5 3.5-4' stroke='%234b6fa5' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

@media (min-width: 981px) {
  .time-chapter .chapter-copy {
    order: 2;
  }

  .time-chapter .risk-visuals {
    order: 1;
  }

  .alert-chapter .email-shell {
    order: 1;
  }

  .alert-chapter .chapter-copy {
    order: 2;
  }
}

@media (min-width: 981px) and (max-height: 820px) and (orientation: landscape) {
  .story-hero {
    min-height: 100svh;
    min-height: 100dvh;
    padding-top: clamp(30px, 5vh, 46px);
    padding-bottom: clamp(30px, 5vh, 46px);
  }

  .story-hero-copy {
    min-height: auto;
    padding: 0;
  }

  .hero-wordmark {
    margin-bottom: clamp(12px, 2vh, 18px);
  }

  .hero-count-wrap {
    margin-bottom: clamp(16px, 2.8vh, 24px);
    padding: clamp(8px, 1.4vh, 12px) 0;
  }

  .hero-count-wrap::before {
    margin-bottom: 6px;
  }

  .hero-count-wrap::after {
    margin-top: 7px;
  }

  .story-hero h1 {
    margin-bottom: clamp(14px, 2.4vh, 20px);
    font-size: clamp(2.55rem, 4.7vw, 4.7rem);
    line-height: 1.01;
  }

  .hero-lede {
    margin-bottom: clamp(18px, 3vh, 26px);
    line-height: 1.48;
  }
}

.decision-chapter {
  display: flex;
  justify-content: center;
  align-items: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(159, 180, 213, 0.18), transparent 34%),
    var(--navy);
  color: #fff;
}

.decision-copy {
  max-width: min(900px, calc(100vw - 40px));
  text-align: center;
}

.decision-actions {
  justify-content: center;
}

.decision-chapter h2 {
  color: #fff;
  font-size: clamp(2.8rem, 5.6vw, 6.6rem);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.decision-chapter .eyebrow {
  color: #fff;
}

.decision-chapter p {
  color: rgba(255, 255, 255, 0.72);
}

.decision-chapter .button-primary {
  background: #fff;
  color: var(--navy);
}

.decision-chapter .button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #fff;
}

.decision-chapter::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
}

.decision-chapter::after {
  border-color: rgba(255, 255, 255, 0.12);
}

@media (prefers-reduced-motion: reduce) {
  .animation-ready .chapter > .chapter-copy,
  .animation-ready .chapter > .time-panel,
  .animation-ready .chapter > .risk-visuals,
  .animation-ready .chapter > .bulletin-board,
  .animation-ready .chapter > .email-shell,
  .animation-ready .chapter > .report-card,
  .animation-ready .chapter > .price-lede,
  .animation-ready .chapter > .pricing-board,
  .animation-ready .chapter > .pricing-notes,
  .animation-ready .chapter > .decision-copy {
    opacity: 1;
    transform: none;
  }
}

@keyframes hero-label-arrive {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@keyframes hero-count-cinema {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.08);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes hero-copy-arrive {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes calendar-fall {
  0% {
    opacity: 1;
    transform: translateY(0) rotateX(0deg) rotateZ(0deg);
  }

  42% {
    opacity: 0.92;
    transform: translateY(18%) rotateX(7deg) rotateZ(-1deg);
  }

  100% {
    opacity: 0;
    transform: translateY(72%) rotateX(16deg) rotateZ(-2deg);
  }
}

@keyframes bulletin-feed-move {
  0% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0.4, 0, 1, 1);
  }

  46% {
    transform: translateY(-426px);
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  }

  64% {
    transform: translateY(-348px);
    animation-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  78% {
    transform: translateY(-358px);
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  }

  88% {
    transform: translateY(-354px);
  }

  100% {
    transform: translateY(-354px);
  }
}

@keyframes scan-line-drop {
  0% {
    opacity: 0;
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0.4, 0, 1, 1);
  }

  6% {
    opacity: 1;
  }

  46% {
    opacity: 1;
    transform: translateY(152px);
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  }

  64% {
    opacity: 0.9;
    transform: translateY(137px);
  }

  78% {
    opacity: 1;
    transform: translateY(142px);
  }

  92% {
    opacity: 0;
    transform: translateY(142px);
  }

  100% {
    opacity: 0;
    transform: translateY(142px);
  }
}

@keyframes risk-flag-in {
  from {
    opacity: 0;
    transform: translateX(10px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes risk-flag-in-centered {
  from {
    opacity: 0;
    transform: translate(-50%, 8px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes risk-box-draw {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }

  20% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes risk-pulse {
  0%, 100% {
    box-shadow: 0 0 0 3px rgba(232, 160, 74, 0.2), 0 0 0 0 rgba(232, 160, 74, 0);
  }

  50% {
    box-shadow: 0 0 0 3px rgba(232, 160, 74, 0.12), 0 0 0 7px rgba(232, 160, 74, 0.1);
  }
}

@keyframes risk-flag-breathe {
  0%, 100% {
    border-color: rgba(232, 160, 74, 0.38);
    box-shadow: inset 0 0 0 1px rgba(232, 160, 74, 0.08), 0 0 0 rgba(232, 160, 74, 0);
  }

  50% {
    border-color: rgba(232, 160, 74, 0.68);
    box-shadow: inset 0 0 0 1px rgba(232, 160, 74, 0.14), 0 0 18px rgba(232, 160, 74, 0.15);
  }
}

@media (max-width: 980px) {
  .story-hero,
  .chapter {
    min-height: auto;
  }

  .story-hero {
    min-height: 100svh;
    min-height: 100dvh;
    grid-template-columns: 1fr;
    align-items: start;
    padding: clamp(32px, 7vw, 56px) clamp(20px, 5vw, 40px);
  }

  .time-chapter,
  .system-chapter,
  .alert-chapter,
  .decision-chapter {
    grid-template-columns: 1fr;
  }

  .system-chapter .chapter-copy {
    order: -1;
  }

  .alert-chapter .chapter-copy {
    order: 1;
  }

  .alert-chapter .email-shell {
    order: 2;
  }

  .chapter::after {
    width: min(58vw, 320px);
    height: min(58vw, 320px);
    opacity: 0.34;
  }

  .risk-visuals {
    gap: 16px;
  }

  .mvd-record {
    width: 100%;
  }

  .mvd-item {
    min-height: 66px;
  }

  .pricing-board {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .price-chapter {
    grid-template-columns: 1fr;
  }

  .price-lede,
  .price-lede h2,
  .price-subtitle,
  .pricing-logic,
  .pricing-roi {
    max-width: none;
  }

  .pricing-roi {
    grid-column: auto;
  }

  .volume-pricing {
    width: 100%;
  }

  .price-lede {
    position: static;
  }

  .plan {
    min-height: auto;
  }

  .plan-head {
    min-height: auto;
  }

  .hero-wordmark {
    font-size: clamp(0.96rem, 1.8vw, 1.16rem);
  }

  .story-hero-copy {
    position: relative;
    justify-items: center;
    max-width: 680px;
    margin: 0 auto;
    min-height: auto;
    padding: clamp(44px, 8vh, 72px) 0 clamp(56px, 8vh, 80px);
    text-align: center;
  }

  .hero-count-wrap {
    justify-items: center;
  }

  .hero-count {
    font-size: clamp(2rem, 7vw, 3.25rem);
  }

  .hero-count-label {
    text-align: center;
  }

  .hero-count-source {
    text-align: center;
  }

  .story-hero .hero-actions {
    justify-content: center;
    align-items: center;
  }

  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  .trust-strip {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 12px;
    padding-inline: clamp(34px, 8vw, 72px);
    text-align: center;
  }

  .trust-brand,
  .trust-description,
  .trust-audience {
    justify-self: center;
  }

  .trust-description {
    grid-column: 1;
    max-width: 660px;
  }

  .trust-audience {
    grid-column: 1;
    margin-top: 0;
    max-width: 620px;
  }
}

@media (min-width: 981px) and (max-width: 1180px) and (orientation: portrait) {
  .story-hero {
    min-height: 100svh;
    min-height: 100dvh;
    grid-template-columns: 1fr;
    align-items: center;
    padding: clamp(52px, 7vh, 86px) clamp(42px, 7vw, 78px);
  }

  .story-hero-copy {
    justify-items: center;
    min-height: auto;
    max-width: 760px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
  }

  .hero-count-wrap {
    justify-items: center;
  }

  .hero-count-label,
  .hero-count-source {
    text-align: center;
  }

  .story-hero h1 {
    max-width: 720px;
    font-size: clamp(3.9rem, 6.95vw, 5rem);
    line-height: 1.01;
  }

  .hero-lede {
    max-width: 560px;
  }

  .story-hero .hero-actions {
    justify-content: center;
  }

  .time-chapter,
  .system-chapter,
  .alert-chapter,
  .price-chapter {
    grid-template-columns: minmax(0, 760px);
    justify-content: center;
    gap: clamp(28px, 4vh, 44px);
    min-height: auto;
    padding-top: clamp(72px, 8vh, 96px);
    padding-bottom: clamp(72px, 8vh, 96px);
  }

  .time-chapter .chapter-copy,
  .time-chapter .risk-visuals,
  .system-chapter .chapter-copy,
  .system-chapter .bulletin-board,
  .alert-chapter .chapter-copy,
  .alert-chapter .email-shell,
  .price-chapter .price-lede,
  .price-chapter .volume-pricing,
  .price-chapter .pricing-roi {
    max-width: 760px;
    width: 100%;
  }

  .time-chapter .risk-visuals {
    max-width: 620px;
  }

  .time-chapter .mvd-record {
    width: 100%;
  }

  .time-chapter .chapter-copy {
    order: 1;
  }

  .time-chapter .risk-visuals {
    order: 2;
  }

  .alert-chapter .chapter-copy {
    order: 1;
  }

  .alert-chapter .email-shell {
    order: 2;
  }

  .price-lede {
    position: static;
  }
}

@media (min-width: 641px) and (max-width: 980px) {
  .story-hero h1 {
    max-width: min(660px, 88vw);
    font-size: clamp(2.34rem, 7.9vw, 4rem);
    line-height: 1.02;
  }

  .story-hero h1 .h1-line-2 {
    font-size: 0.80em;
  }

  .hero-lede {
    max-width: 460px;
  }
}

@media (max-width: 640px) {
  .story-hero,
  .trust-strip,
  .chapter,
  .site-footer {
    width: 100vw;
    max-width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }

  .story-hero {
    min-height: 100svh;
    min-height: 100dvh;
    align-items: center;
    padding: clamp(18px, 5vh, 30px) 18px 0;
    overflow-x: clip;
  }

  .hero-wordmark {
    gap: 0.26em;
    margin-bottom: clamp(12px, 2.8vh, 18px);
    font-size: clamp(0.84rem, 3.9vw, 0.98rem);
  }

  .hero-wordmark .wm-line-second {
    margin-top: 0;
  }

  .story-hero-copy {
    position: relative;
    justify-items: center;
    width: 100%;
    max-width: 310px;
    margin: 0 auto;
    min-height: auto;
    padding: clamp(12px, 3vh, 28px) 0 clamp(24px, 6vh, 46px);
    text-align: center;
  }

  .hero-count {
    font-size: clamp(1.72rem, 7.4vw, 2.48rem);
  }

  .hero-count-wrap {
    justify-items: center;
    margin-bottom: clamp(14px, 3.2vh, 20px);
    padding: 10px 0;
  }

  .hero-count-label {
    font-size: clamp(0.8rem, 3.6vw, 0.92rem);
  }

  .hero-count-wrap::after {
    margin-top: 7px;
  }

  .hero-count-wrap::before,
  .hero-count-wrap::after {
    width: 58px;
    background: rgba(159, 180, 213, 0.34);
  }

  .hero-count-source {
    display: none;
  }

  .story-hero h1 {
    max-width: min(310px, 86vw);
    font-size: clamp(1.58rem, 6.45vw, 1.96rem);
    line-height: 1.04;
  }

  .story-hero h1 .h1-line-2 {
    margin-top: 5px;
    font-size: 0.93em;
  }

  .story-hero h1 .h1-line-2 span:last-child {
    font-size: 1em;
  }

  .hero-lede {
    max-width: min(300px, calc(100vw - 36px));
    margin-top: clamp(12px, 2.8vh, 18px);
    margin-bottom: clamp(20px, 4.6vh, 30px);
    font-size: clamp(0.9rem, 3.9vw, 1rem);
    line-height: 1.48;
  }

  .trust-strip {
    padding: 28px 20px 32px;
  }

  .trust-brand {
    align-items: center;
    flex-direction: row;
    gap: 10px;
    justify-self: start;
    max-width: 100%;
    white-space: nowrap;
  }

  .trust-logo {
    width: auto;
    height: 28px;
    max-width: min(56vw, 190px);
  }

  .trust-description {
    justify-self: start;
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .trust-audience {
    justify-self: start;
    font-size: 0.78rem;
    line-height: 1.5;
  }

  .story-hero .hero-actions,
  .decision-chapter .hero-actions {
    width: 100%;
  }

  .decision-copy {
    max-width: 350px;
  }

  .decision-chapter h2 {
    font-size: clamp(2.15rem, 10.6vw, 3.28rem);
    line-height: 1.05;
  }

  .story-hero .hero-actions {
    justify-content: center;
    align-items: center;
  }

  .story-hero .button-primary {
    width: min(100%, 300px);
    padding-right: 16px;
    padding-left: 16px;
    font-size: clamp(0.88rem, 4vw, 1rem);
  }

  /* ── Pricing card mobile fixes ── */
  .volume-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .volume-header strong {
    display: none;
  }

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

  .volume-price {
    align-items: flex-start;
    width: 100%;
  }

  .volume-price strong {
    font-size: clamp(2.2rem, 9.5vw, 3rem);
    text-align: left;
  }

  .volume-price em {
    text-align: left;
  }

  .volume-price-custom strong {
    font-size: clamp(1.5rem, 6.5vw, 2.2rem);
    text-align: left;
    color: rgba(255, 255, 255, 0.72);
  }

  .volume-badge {
    position: static;
    display: inline-block;
    border-radius: 4px;
    margin-bottom: 4px;
  }

  .volume-includes {
    gap: 14px;
  }

  .volume-feature-groups {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .mvd-item,
  .mvd-item.is-primary {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
  }

  .mvd-list {
    padding: 6px 8px 8px;
  }

  .mvd-header {
    min-height: 42px;
    gap: 8px;
    padding: 11px 10px;
  }

  .mvd-system,
  .mvd-status {
    font-size: 0.58rem;
    letter-spacing: 0.055em;
  }

  .mvd-status {
    padding: 3px 6px;
  }

  .mvd-item {
    min-height: 58px;
    padding: 8px 8px;
  }

  .mvd-item.is-primary {
    margin-bottom: 2px;
    padding: 10px;
  }

  .mvd-name {
    font-size: 0.98rem;
  }

  .mvd-attrs span {
    font-size: 0.64rem;
  }

  .mvd-watch {
    justify-self: end;
    font-size: 0.55rem;
  }

  .time-panel {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 12px;
    padding: 10px 12px;
  }

  .time-panel p {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .bulletin-board {
    min-height: 420px;
  }

  .bulletin-topline {
    gap: 8px;
    min-height: 48px;
    padding: 13px 14px;
    font-size: 0.62rem;
    letter-spacing: 0.04em;
  }

  .bulletin-topline b {
    gap: 5px;
  }

  .bulletin-topline b::before {
    width: 6px;
    height: 6px;
  }

  .bulletin-row,
  .price-comparison {
    grid-template-columns: 1fr;
  }

  .included-panel {
    margin-top: 14px;
    padding-top: 14px;
  }

  .included-panel ul {
    display: grid;
    gap: 5px;
  }

  .included-panel li {
    font-size: 0.72rem;
  }

  .price-comparison {
    margin-top: 24px;
  }

  .pcomp-ref,
  .pcomp-risk {
    min-height: auto;
    padding: 16px;
  }

  .price-comparison {
    padding: 8px;
    gap: 8px;
  }

  .pcomp-refs {
    gap: 8px;
  }

  .report-topline {
    flex-wrap: wrap;
    gap: 6px 10px;
    font-size: 0.62rem;
  }

  .report-meta {
    grid-template-columns: 1fr;
    margin-bottom: 8px;
  }

  .report-meta span {
    min-height: auto;
    padding: 7px 9px;
  }

  .report-summary {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }

  .report-summary div {
    min-height: 50px;
    padding: 7px 8px;
  }

  .report-summary span {
    font-size: 0.62rem;
  }

  .report-fields {
    grid-template-columns: repeat(2, 1fr);
  }

  .report-fields div {
    display: block;
    padding: 7px 8px;
  }

  .report-fields span {
    margin-bottom: 3px;
    font-size: 0.6rem;
  }

  .report-fields strong {
    font-size: 0.8rem;
  }

  .email-header {
    align-items: center;
    padding: 11px 14px;
  }

  .email-from {
    display: block;
    max-width: 100%;
  }

  .email-from em {
    display: block;
    margin-left: 0;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .email-subject {
    max-width: 100%;
  }

  .email-time {
    display: none;
  }

  .bulletin-row {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .bulletin-row.selected {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .bulletin-row.selected span {
    grid-column: 1;
    white-space: nowrap;
  }

  .bulletin-row.selected em {
    grid-column: 2;
  }

  .bulletin-row.selected .b-score--hit {
    grid-column: 3;
    grid-row: auto;
    align-self: center;
    justify-self: end;
  }

  .bulletin-board.risk-detected .bulletin-row.selected::after {
    content: "Similitud: ALPHACOR";
    right: auto;
    left: 50%;
    top: calc(100% + 4px);
    bottom: auto;
    width: max-content;
    max-width: calc(100% - 24px);
    padding: 4px 9px 4px 20px;
    font-size: 0.56rem;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
    transform: translateX(-50%);
    text-align: center;
    animation: risk-flag-in-centered 420ms ease 300ms both, risk-flag-breathe 1.8s ease-in-out 900ms infinite;
  }

  .bulletin-row em {
    margin-top: 0;
  }
}

@media (max-width: 640px) and (max-height: 700px) {
  .hero-wordmark {
    margin-bottom: 10px;
  }

  .hero-count-wrap {
    margin-bottom: 12px;
  }

  .hero-count-wrap::after {
    display: none;
  }

  .story-hero h1 {
    font-size: clamp(1.52rem, 6.3vw, 1.9rem);
  }

  .hero-lede {
    margin-bottom: 18px;
    line-height: 1.42;
  }

  .story-hero .button-primary {
    min-height: 46px;
  }
}

/* ── Pricing ROI ── */
.pricing-roi {
  max-width: 520px;
  margin: clamp(18px, 2.8vw, 28px) 0 0;
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--blue);
  background: rgba(255, 255, 255, 0.68);
  color: var(--body-text);
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  font-style: italic;
  line-height: 1.55;
  box-shadow: 0 1px 0 rgba(27, 54, 93, 0.06) inset;
}

/* ── Process Steps ── */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin-top: 1.7rem;
}

.process-step {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 1rem;
  align-items: flex-start;
}

.step-num {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(75, 111, 165, 0.18);
  border-radius: var(--radius);
  color: var(--blue);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.05em;
}

.step-body strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--navy);
  font-size: 0.98rem;
}

.step-body p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.94rem, 1.08vw, 1.02rem);
  line-height: 1.58;
}

/* ── Eyebrow label variant ── */
.eyebrow--label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  font-weight: 600;
}

/* ── FAQ Section ── */
.faq-chapter {
  min-height: auto;
  background:
    radial-gradient(ellipse 70% 42% at 50% 0%, rgba(228, 237, 250, 0.62) 0%, transparent 68%),
    linear-gradient(180deg, #f7f9fc 0%, #ffffff 72%);
}

.faq-inner {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.faq-inner .faq-list {
  margin-top: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(27, 54, 93, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 58px rgba(27, 54, 93, 0.06);
  overflow: hidden;
}

.faq-item {
  border-top: 1px solid rgba(27, 54, 93, 0.08);
}

.faq-item:first-child {
  border-top: 0;
}

.faq-question {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1.45rem;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}

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

.faq-question::after {
  content: '+';
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(75, 111, 165, 0.16);
  border-radius: var(--radius);
  color: var(--blue);
  font-size: 1.25rem;
  font-weight: 500;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-question:focus-visible,
.contact-form-toggle summary:focus-visible {
  outline: 2px solid rgba(75, 111, 165, 0.42);
  outline-offset: 4px;
  border-radius: var(--radius);
}

.faq-item[open] .faq-question::after {
  content: '\2212';
}

.faq-answer {
  padding: 0 4rem 1.35rem 1.45rem;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Logo carousel ── */
.social-chapter {
  min-height: clamp(270px, 34svh, 360px);
  overflow: hidden;
  padding-top: clamp(54px, 7vw, 78px);
  padding-bottom: clamp(54px, 7vw, 78px);
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.social-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.logo-carousel {
  margin-top: 1.45rem;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 14%, black 86%, transparent 100%);
}

.logo-carousel-track {
  display: flex;
  align-items: center;
  gap: clamp(34px, 4.8vw, 58px);
  width: max-content;
  padding-block: 12px;
  animation: logo-scroll 34s linear infinite;
}

.logo-carousel-track img {
  height: auto;
  max-height: clamp(38px, 4.6vw, 56px);
  width: auto;
  max-width: clamp(118px, 16vw, 196px);
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.42;
  transition: filter 320ms ease, opacity 320ms ease;
}

.logo-carousel-track img:hover {
  filter: grayscale(0);
  opacity: 1;
}

@keyframes logo-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .logo-carousel-track {
    animation: none;
  }
}

@media (max-width: 640px) {
  .logo-carousel-track {
    gap: clamp(24px, 6vw, 36px);
  }

  .logo-carousel-track img {
    max-height: clamp(36px, 9vw, 48px);
    max-width: clamp(110px, 30vw, 170px);
  }
}

/* ── Contact form toggle ── */
.contact-form-toggle {
  margin-top: 1.25rem;
}

.contact-form-toggle summary {
  cursor: pointer;
  list-style: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: transparent;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  transition: transform 200ms var(--ease-out), background 180ms ease, border-color 180ms ease;
}

.contact-form-toggle summary:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.05);
}

.contact-form-toggle summary::-webkit-details-marker {
  display: none;
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font: inherit;
  font-size: 0.92rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(159, 180, 213, 0.4);
  border-color: #9fb4d5;
}

.contact-form .button-primary {
  width: fit-content;
}

.decision-chapter .contact-form .button-secondary {
  width: fit-content;
  min-width: 180px;
}

.form-gotcha {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.form-success {
  margin: 0.75rem 0 0;
  padding: 0.75rem 1rem;
  border-left: 3px solid #34c877;
  background: rgba(52, 200, 119, 0.1);
  color: #b7f3cf;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.5;
}

.form-error {
  margin: 0.75rem 0 0;
  padding: 0.75rem 1rem;
  border-left: 3px solid #e8a04a;
  background: rgba(232, 160, 74, 0.1);
  color: #e8a04a;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.5;
}

/* ── Audience section ── */
.audience-chapter {
  min-height: auto;
  background: #fff;
  padding-top: clamp(72px, 8vw, 104px);
  padding-bottom: clamp(72px, 8vw, 104px);
}

.audience-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 1.85rem;
}

.audience-card {
  position: relative;
  min-height: 188px;
  padding: clamp(1.35rem, 2.3vw, 1.85rem);
  border: 1px solid rgba(27, 54, 93, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 253, 0.92));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 18px 34px rgba(27, 54, 93, 0.07),
    0 42px 84px rgba(27, 54, 93, 0.08);
  transform: translateY(0);
  transition: transform 220ms var(--ease-out), box-shadow 220ms ease, border-color 220ms ease;
}

.audience-card:hover {
  border-color: rgba(75, 111, 165, 0.18);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.96) inset,
    0 24px 44px rgba(27, 54, 93, 0.09),
    0 56px 100px rgba(27, 54, 93, 0.11);
  transform: translateY(-3px);
}

.audience-card::before {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--blue);
}

.audience-card strong {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 700;
}

.audience-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.audience-chapter::after,
.social-chapter::after,
.faq-chapter::after {
  display: none;
}

/* Add animation for new chapter sections */
.animation-ready .chapter > .faq-inner,
.animation-ready .chapter > .social-inner,
.animation-ready .chapter > .audience-inner {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 760ms var(--ease-cinema), transform 760ms var(--ease-cinema);
}

.animation-ready .chapter.is-visible > .faq-inner,
.animation-ready .chapter.is-visible > .social-inner,
.animation-ready .chapter.is-visible > .audience-inner {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced motion for new sections */
@media (prefers-reduced-motion: reduce) {
  .animation-ready .chapter > .faq-inner,
  .animation-ready .chapter > .social-inner,
  .animation-ready .chapter > .audience-inner {
    opacity: 1;
    transform: none;
  }
}

/* Pricing visual hierarchy improvements */
.price-lede .pricing-logic {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .pricing-roi {
    margin-top: 14px;
    padding: 0.72rem 0.85rem;
  }

  .volume-includes {
    padding: 18px;
  }

  .process-steps {
    gap: 1.25rem;
  }

  .process-step {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 0.85rem;
  }

  .step-num {
    width: 30px;
    height: 30px;
  }

  .social-chapter,
  .faq-chapter,
  .audience-chapter {
    padding-top: clamp(64px, 10vw, 100px);
    padding-bottom: clamp(64px, 10vw, 100px);
  }

  .audience-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .audience-card {
    min-height: auto;
    padding: 1.45rem;
  }

  .audience-card::before {
    margin-bottom: 18px;
  }

  .logo-carousel {
    margin-right: -20px;
    margin-left: -20px;
    mask-image: linear-gradient(90deg, transparent 0%, black 18%, black 82%, transparent 100%);
  }

  .logo-carousel-track {
    gap: 34px;
    animation-duration: 30s;
  }

  /* ── Pricing chapter: force single-column on small screens ── */
  .price-chapter {
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .price-chapter .volume-pricing {
    width: 100%;
    min-width: 0;
  }

  .price-chapter .pricing-roi {
    grid-column: 1;
    max-width: none;
  }
}

/* ── Pricing ROI: place in column 2 only on wide layouts ── */
@media (min-width: 981px) {
  .pricing-roi {
    grid-column: 2;
  }
}
