/* Aqurio — components.css (deferred load)
 * All page sections, deeply aligned with the Netlify wireframe reference.
 */

/* ───────── MEGA-MENU ───────── */
.mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  width: 960px;
  max-width: calc(100vw - 32px);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  overflow: hidden;
  z-index: 400;
}
.nav__item.is-open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-menu__body { display: flex; }
.mega-menu__sidebar {
  width: 240px;
  flex-shrink: 0;
  background: var(--color-fill);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mega-menu__sidebar h3 {
  font-size: 14px;
  font-weight: var(--weight-bold);
  color: var(--color-text);
  line-height: 1.3;
  margin-bottom: 8px;
}
.mega-menu__sidebar p {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.45;
  margin-bottom: 12px;
}
.mega-menu__sidebar-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  margin-bottom: 8px;
}
.mega-menu__sidebar-link::after {
  content: "→";
  color: var(--color-text-muted);
  margin-left: 2px;
  transition: transform 0.15s ease;
}
.mega-menu__sidebar-link:hover::after { transform: translateX(2px); }
.mega-menu__sidebar-list { display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }
.mega-menu__sidebar-list a {
  font-size: 12px;
  color: var(--color-text);
}
.mega-menu__sidebar-list a::after {
  content: " →";
  color: var(--color-text-muted);
  display: inline-block;
  margin-left: 4px;
  transition: transform 0.15s ease;
}
.mega-menu__sidebar-list a:hover { color: var(--color-bg-dark); }
.mega-menu__sidebar-list a:hover::after { transform: translateX(2px); color: var(--color-text); }

.mega-menu__right {
  flex: 1;
  padding: 28px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}
.mega-menu__cols {
  display: flex;
  gap: 28px;
}
.mega-menu__col {
  flex: 1 1 0;
  min-width: 0;
  padding-right: 24px;
  border-right: 1px solid var(--color-border);
}
.mega-menu__col:last-child { border-right: none; padding-right: 0; }
.mega-menu__col-label {
  font-size: 9px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-label);
  margin-bottom: 14px;
}
.mega-menu__item { margin-bottom: 16px; }
.mega-menu__item:last-child { margin-bottom: 0; }
.mega-menu__item-title {
  display: block;
  font-size: 13px;
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  line-height: 1.35;
  margin-bottom: 4px;
}
.mega-menu__item-desc {
  display: block;
  font-size: 11px;
  color: var(--color-text-muted);
  line-height: 1.45;
}
.mega-menu__cta-bar {
  border-top: 1px solid var(--color-fill);
  padding-top: 12px;
  font-size: 12px;
}
.mega-menu__cta-bar a {
  color: var(--color-text);
  font-weight: var(--weight-semibold);
}
.mega-menu__cta-bar a:hover { text-decoration: underline; }

.mega-menu__promo { display: flex; flex-direction: column; gap: 10px; }
.mega-menu__promo-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  background: var(--gradient-energy);
  opacity: 0.6;
  position: relative;
}
.mega-menu__promo-title {
  font-size: 13px;
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  line-height: 1.3;
}
.mega-menu__promo-desc {
  font-size: 11px;
  color: var(--color-text-muted);
  line-height: 1.4;
}
.mega-menu__promo-link {
  font-size: 12px;
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  align-self: flex-start;
  border-bottom: 1.5px solid var(--color-fill-dark);
  padding-bottom: 2px;
}

@media (max-width: 1100px) {
  .mega-menu { width: 720px; }
  .mega-menu__cols { flex-wrap: wrap; }
  .mega-menu__col { flex: 1 1 45%; border-right: none; padding-right: 0; }
}

/* ───────── SECTION BASE ───────── */
.section { padding: 96px 24px; }
.section__inner { max-width: var(--container-max); margin: 0 auto; }
.section--surface { background: var(--color-surface); }
.section--bg { background: var(--color-bg); }
.section--dark { background: var(--color-bg-dark-2); color: var(--color-text-on-dark); }
.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}
.section--dark .section__eyebrow { color: var(--color-mint); }
.section__heading {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: var(--weight-bold);
  color: var(--color-text);
  max-width: 22ch;
  margin-bottom: 16px;
}
.section--dark .section__heading { color: #fff; }
.section__heading em { color: var(--color-coral); font-style: italic; font-weight: inherit; }
.section__sub {
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-text-muted);
  max-width: 60ch;
}
.section--dark .section__sub { color: rgba(255, 255, 255, 0.65); }

/* ───────── SOCIAL PROOF (between hero and overlap) ───────── */
.proof {
  background: var(--color-surface);
  padding: 48px 24px;
  border-bottom: 1px solid var(--color-border);
}
.proof__label {
  text-align: center;
  font-size: 10px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-label);
  margin-bottom: 28px;
}
.proof__carousel {
  display: flex;
  align-items: center;
  gap: 48px;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  margin-bottom: 28px;
  padding: 12px 0;
}
.proof__track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: proof-marquee 30s linear infinite;
}
.proof__carousel:hover .proof__track { animation-play-state: paused; }
@keyframes proof-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.proof__logo {
  flex-shrink: 0;
  height: 32px;
  padding: 0 18px;
  background: var(--color-fill);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
}

/* ───────── OVERLAP CTA CARD (event promo) ───────── */
.overlap {
  background: var(--color-surface);
  padding: 0 24px;
  margin-top: -32px;
  position: relative;
  z-index: 5;
}
.overlap__card {
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  border: 1px solid var(--color-border);
}
.overlap__eyebrow {
  font-size: 10px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-coral);
}
.overlap__title {
  font-size: 22px;
  font-weight: var(--weight-bold);
  line-height: 1.2;
  margin: 4px 0 6px;
  color: var(--color-text);
}
.overlap__body {
  flex: 1;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.overlap__cta { flex-shrink: 0; }

@media (max-width: 720px) {
  .overlap__card { flex-direction: column; align-items: flex-start; padding: 24px; }
  .overlap__cta { width: 100%; }
}

/* ───────── STATS STRIP (dark band) ───────── */
.stats {
  background: var(--color-bg-dark-2);
  color: var(--color-text-on-dark);
  padding: 64px 24px;
}
.stats__row {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stats__item { text-align: left; }
.stats__value {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: var(--weight-bold);
  line-height: 1;
  letter-spacing: -0.02em;
  background: var(--gradient-energy);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}
.stats__label {
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 720px) {
  .stats__row { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
}

/* ───────── PILLARS (3 with serif numerals + rail) ───────── */
.pillars {
  background: var(--color-bg);
  padding: 120px 24px;
  position: relative;
}
.pillars__inner { max-width: 1100px; margin: 0 auto; position: relative; }
.pillars__head { max-width: 720px; margin: 0 auto 80px; text-align: center; }
.pillars__head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: var(--weight-bold);
  color: var(--color-text);
}
.pillars__head h2 em { color: var(--color-coral); font-style: italic; font-weight: inherit; }
.pillars__head p {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-top: 16px;
}
.pillars__stack { position: relative; }
.pillars__rail {
  position: absolute;
  left: 50%;
  top: 56px;
  bottom: 56px;
  width: 1px;
  background: var(--color-border);
  transform: translateX(-0.5px);
  pointer-events: none;
  overflow: hidden;
}
.pillars__rail::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: var(--rail-fill, 0%);
  background: linear-gradient(to bottom, transparent 0%, #FF5A6F 12%, #FF5A6F 88%, transparent 100%);
  transition: height 0.12s linear;
}
.pillars__rail::before {
  content: "";
  position: absolute;
  left: -3px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #FF5A6F;
  box-shadow: 0 0 0 4px rgba(255, 90, 111, 0.18);
  top: var(--rail-fill, 0%);
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.pillars.has-rail-fill .pillars__rail::before { opacity: 1; }

.pillar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 56px 0;
  position: relative;
}
.pillar:not(:last-child) { border-bottom: 1px dashed var(--color-border); }
.pillar--reverse > :first-child { order: 2; }

.pillar__body { display: flex; flex-direction: column; gap: 14px; }
.pillar__numeral {
  font-family: var(--font-serif);
  font-size: clamp(64px, 7vw, 96px);
  line-height: 1;
  font-weight: var(--weight-bold);
  letter-spacing: -0.03em;
  color: var(--color-text);
  font-feature-settings: 'lnum';
  font-variant-numeric: lining-nums;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  position: relative;
}
.pillar__numeral::before {
  content: "";
  width: 12px; height: 12px;
  background: var(--color-coral);
  border-radius: 50%;
  align-self: center;
  flex-shrink: 0;
  transform: scale(0);
  transition: transform 0.5s cubic-bezier(.34, 1.56, .64, 1) 0.15s;
}
.pillar.in-view .pillar__numeral::before { transform: scale(1); }
.pillar__numeral::after {
  content: "";
  position: absolute;
  left: 24px; right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--color-coral);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.8s cubic-bezier(.2, .7, .3, 1) 0.25s;
}
.pillar.in-view .pillar__numeral::after { transform: scaleX(1); }

.pillar__body > * {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.pillar.in-view .pillar__body > * { opacity: 1; transform: translateY(0); }
.pillar.in-view .pillar__body > *:nth-child(1) { transition-delay: 0.05s; }
.pillar.in-view .pillar__body > *:nth-child(2) { transition-delay: 0.15s; }
.pillar.in-view .pillar__body > *:nth-child(3) { transition-delay: 0.25s; }
.pillar.in-view .pillar__body > *:nth-child(4) { transition-delay: 0.35s; }
.pillar.in-view .pillar__body > *:nth-child(5) { transition-delay: 0.45s; }

.pillar__eyebrow {
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.pillar h3 {
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: var(--weight-bold);
  color: var(--color-text);
}
.pillar__lead { font-size: 17px; line-height: 1.55; color: var(--color-text); }
.pillar__proof {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}
.pillar__proof li {
  font-size: 13px;
  color: var(--color-text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.pillar__proof li::before {
  content: "→";
  color: var(--color-coral);
  font-weight: var(--weight-bold);
  flex-shrink: 0;
}

.pillar__visual {
  position: relative;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Pillar 1 — Staff tile grid */
.pv-staff { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; width: 100%; max-width: 360px; }
.pv-staff__tile {
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--color-surface-3);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--color-text-muted);
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.35s ease, transform 0.45s cubic-bezier(.34, 1.56, .64, 1), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.pillar__visual.animate .pv-staff__tile { opacity: 1; transform: scale(1); }
.pillar__visual.animate .pv-staff__tile:nth-child(1) { transition-delay: 0s; }
.pillar__visual.animate .pv-staff__tile:nth-child(2) { transition-delay: 0.05s; }
.pillar__visual.animate .pv-staff__tile:nth-child(3) { transition-delay: 0.1s; }
.pillar__visual.animate .pv-staff__tile:nth-child(4) { transition-delay: 0.15s; }
.pillar__visual.animate .pv-staff__tile:nth-child(5) { transition-delay: 0.2s; }
.pillar__visual.animate .pv-staff__tile:nth-child(6) { transition-delay: 0.28s; }
.pillar__visual.animate .pv-staff__tile:nth-child(7) { transition-delay: 0.33s; }
.pillar__visual.animate .pv-staff__tile:nth-child(8) { transition-delay: 0.38s; }
.pillar__visual.animate .pv-staff__tile:nth-child(9) { transition-delay: 0.43s; }
.pillar__visual.animate .pv-staff__tile:nth-child(10) { transition-delay: 0.48s; }
.pillar__visual.animate .pv-staff__tile:nth-child(11) { transition-delay: 0.58s; }
.pillar__visual.animate .pv-staff__tile:nth-child(12) { transition-delay: 0.66s; }
.pillar__visual.animate .pv-staff__tile:nth-child(13) { transition-delay: 0.74s; }
.pillar__visual.animate .pv-staff__tile:nth-child(14) { transition-delay: 0.82s; }
.pillar__visual.animate .pv-staff__tile:nth-child(15) { transition-delay: 0.9s; }
.pv-staff__tile.filled { background: var(--color-bg-dark); border: none; color: rgba(255, 255, 255, 0.6); }
.pv-staff__tile.aqurio {
  background: var(--color-coral);
  border: none;
  color: #fff;
  font-weight: var(--weight-bold);
  animation: pv-pulse 2.4s ease-in-out infinite;
}
@keyframes pv-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 90, 111, 0.5); }
  50%      { box-shadow: 0 0 0 8px rgba(255, 90, 111, 0); }
}
.pillar__visual.without-aqurio .pv-staff__tile.aqurio {
  background: transparent;
  border: 1.5px solid var(--color-coral);
  color: var(--color-coral);
  animation: none;
}
.pillar__visual.without-aqurio .pv-staff__tile.aqurio::before { content: "✕"; font-weight: var(--weight-bold); }
.pv-staff__caption {
  grid-column: 1 / -1;
  font-size: 11px;
  color: var(--color-text-muted);
  margin-top: 4px;
  letter-spacing: 0.04em;
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transition: opacity 0.4s ease 1s;
}
.pillar__visual.animate .pv-staff__caption { opacity: 1; }
.pv-staff__toggle {
  grid-column: 1 / -1;
  margin-top: 14px;
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  cursor: pointer;
  transition: all 0.2s ease;
  width: max-content;
}
.pv-staff__toggle:hover { background: var(--color-surface-3); }
.pv-staff__toggle-track {
  position: relative;
  width: 26px; height: 14px;
  background: var(--color-fill);
  border-radius: var(--radius-pill);
  transition: background 0.2s ease;
}
.pv-staff__toggle-track::after {
  content: "";
  position: absolute;
  top: 1px; left: 1px;
  width: 12px; height: 12px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}
.pv-staff__toggle.active .pv-staff__toggle-track { background: var(--color-coral); }
.pv-staff__toggle.active .pv-staff__toggle-track::after { transform: translateX(12px); }

/* Pillar 2 — Coverage bars + slider */
.pv-coverage { width: 100%; max-width: 380px; display: flex; flex-direction: column; gap: 18px; }
.pv-cov__row { display: flex; flex-direction: column; gap: 6px; }
.pv-cov__label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: var(--weight-semibold);
  color: var(--color-text);
}
.pv-cov__label span:last-child { font-variant-numeric: tabular-nums; color: var(--color-text-muted); }
.pv-cov__track {
  height: 10px;
  background: var(--color-surface-3);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.pv-cov__fill {
  height: 100%;
  border-radius: var(--radius-pill);
  background: var(--color-fill-dark);
  width: 0;
  transition: width 1.4s cubic-bezier(.2, .7, .3, 1);
}
.pv-cov__fill--aqurio { background: var(--color-bg-dark); }
.pillar__visual.animate .pv-cov__fill { width: var(--w, 50%); }
.pv-cov__note {
  font-size: 11px;
  color: var(--color-text-muted);
  font-style: italic;
  padding-top: 4px;
  border-top: 1px dashed var(--color-border);
}
.pv-cov__slider {
  margin-top: 8px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
}
.pv-cov__slider-label {
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.pv-cov__slider-label b {
  font-size: 14px;
  color: var(--color-text);
  letter-spacing: 0;
  text-transform: none;
  font-variant-numeric: tabular-nums;
}
.pv-cov__slider input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--color-coral) 0%, var(--color-coral) var(--pct, 8%), var(--color-fill) var(--pct, 8%), var(--color-fill) 100%);
  border-radius: var(--radius-pill);
  outline: none;
}
.pv-cov__slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--color-coral);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.15s ease;
}
.pv-cov__slider input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
.pv-cov__slider input[type="range"]::-moz-range-thumb {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--color-coral);
  cursor: pointer;
}
.pv-cov__miss {
  margin-top: 12px;
  font-size: 13px;
  color: var(--color-text);
  line-height: 1.4;
}
.pv-cov__miss b { color: var(--color-coral); font-weight: var(--weight-bold); font-variant-numeric: tabular-nums; }

/* Pillar 3 — Timeline scrubber */
.pv-timeline { width: 100%; max-width: 380px; }
.pv-tl__track {
  position: relative;
  height: 4px;
  background: var(--color-surface-3);
  border-radius: var(--radius-pill);
  margin: 24px 16px 12px;
  cursor: ew-resize;
  touch-action: none;
}
.pv-tl__fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--color-coral);
  border-radius: var(--radius-pill);
  transition: width 1.6s cubic-bezier(.2, .7, .3, 1);
}
.pillar__visual.animate .pv-tl__fill { width: 100%; }
.pillar__visual.is-scrubbing .pv-tl__fill { transition: none; }
.pv-tl__handle {
  position: absolute;
  top: 50%;
  left: var(--scrub, 100%);
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid var(--color-coral);
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 12px rgba(255, 90, 111, 0.3);
  cursor: grab;
  z-index: 2;
  transition: transform 0.15s ease;
}
.pv-tl__handle:hover { transform: translate(-50%, -50%) scale(1.15); }
.pv-tl__handle:active { cursor: grabbing; transform: translate(-50%, -50%) scale(1.05); }
.pv-tl__handle::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--color-coral);
}
.pv-tl__labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  padding: 0 8px;
}
.pv-tl__labels .is-end { color: var(--color-text); font-weight: var(--weight-bold); }
.pv-tl__caption {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 12px;
  color: var(--color-text-muted);
}
.pv-tl__caption b { font-size: 20px; font-weight: var(--weight-bold); color: var(--color-text); letter-spacing: -0.01em; }
.pv-tl__readout {
  margin-top: 18px;
  padding: 12px 14px;
  background: var(--color-surface-3);
  border-radius: 8px;
  border-left: 3px solid var(--color-coral);
  font-size: 12px;
  color: var(--color-text);
  line-height: 1.45;
  min-height: 50px;
}
.pv-tl__readout b {
  display: block;
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

@media (max-width: 900px) {
  .pillars__rail { display: none; }
  .pillar { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
  .pillar--reverse > :first-child { order: 0; }
  .pillar__visual { min-height: 0; }
}

/* ───────── PLATFORM REVEAL (scroll-pinned, 4 beats) ───────── */
.reveal {
  background: var(--color-surface);
  padding: 80px 0 40px;
}
.reveal__intro {
  max-width: 760px;
  margin: 0 auto 24px;
  padding: 0 24px;
  text-align: center;
}
.reveal__intro h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: var(--weight-bold);
  color: var(--color-text);
  margin-bottom: 12px;
}
.reveal__intro h2 em { color: var(--color-coral); font-style: italic; font-weight: inherit; }
.reveal__intro p { font-size: 16px; color: var(--color-text-muted); line-height: 1.55; }

.reveal__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  align-items: flex-start;
}
.reveal__beats { display: flex; flex-direction: column; }
.reveal__beat {
  min-height: calc(100vh - 108px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 16px 0;
}
.reveal__step {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.reveal__step-num {
  width: 24px; height: 24px;
  border: 1.5px solid var(--color-border);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  transition: all 0.35s ease;
}
.reveal__beat.is-active .reveal__step-num {
  background: var(--color-bg-dark);
  color: #fff;
  border-color: var(--color-bg-dark);
}
.reveal__beat h3 {
  font-size: 36px;
  font-weight: var(--weight-bold);
  line-height: 1.1;
  color: var(--color-text);
  letter-spacing: -0.01em;
}
.reveal__beat p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-muted);
  max-width: 480px;
}
.reveal__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.reveal__tag {
  font-size: 11px;
  font-weight: var(--weight-semibold);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--color-surface-3);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}
.reveal__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  align-self: flex-start;
  margin-top: 8px;
  padding-bottom: 3px;
  border-bottom: 1.5px solid var(--color-fill-dark);
  transition: gap 0.15s ease;
}
.reveal__cta:hover { gap: 10px; }

.reveal__stage {
  position: sticky;
  top: 108px;
  height: calc(100vh - 108px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.reveal__frame-wrap {
  position: relative;
  width: 100%;
  height: min(640px, calc(100vh - 180px));
  min-height: 460px;
  max-width: 520px;
  margin: 0 auto;
}
.reveal__frame {
  position: absolute;
  inset: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
}
.reveal__frame.is-active { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.reveal__frame-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-surface-3);
}
.reveal__frame-chrome .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--color-fill); }
.reveal__frame-chrome .url {
  margin-left: 12px;
  font-size: 11px;
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

/* Frame 1 — Incoming call */
.frame-call { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; flex: 1; text-align: center; padding: 24px 12px; }
.frame-call__avatar {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-surface-3), var(--color-fill));
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--color-text-muted);
  position: relative;
}
.frame-call__avatar::before,
.frame-call__avatar::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid var(--color-coral);
  opacity: 0;
  animation: frame-pulse 1.8s ease-out infinite;
}
.frame-call__avatar::after { animation-delay: 0.9s; }
@keyframes frame-pulse {
  0% { transform: scale(0.9); opacity: 0.7; }
  80% { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}
.frame-call__caller { font-size: 18px; font-weight: var(--weight-semibold); color: var(--color-text); }
.frame-call__meta { font-size: 12px; color: var(--color-text-muted); }
.frame-call__meta .live-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--color-coral);
  border-radius: 50%;
  margin-right: 6px;
  animation: frame-blink 1.2s ease-in-out infinite;
  vertical-align: middle;
}
@keyframes frame-blink { 0%, 100% { opacity: 0.35; } 50% { opacity: 1; } }
.frame-waveform { display: flex; align-items: center; justify-content: center; gap: 4px; height: 36px; }
.frame-waveform span {
  width: 3px;
  background: var(--color-coral);
  border-radius: 2px;
  animation: frame-wave 1s ease-in-out infinite;
}
.frame-waveform span:nth-child(1) { animation-delay: 0s; height: 30%; }
.frame-waveform span:nth-child(2) { animation-delay: 0.1s; height: 60%; }
.frame-waveform span:nth-child(3) { animation-delay: 0.2s; height: 90%; }
.frame-waveform span:nth-child(4) { animation-delay: 0.3s; height: 70%; }
.frame-waveform span:nth-child(5) { animation-delay: 0.4s; height: 40%; }
.frame-waveform span:nth-child(6) { animation-delay: 0.5s; height: 75%; }
.frame-waveform span:nth-child(7) { animation-delay: 0.6s; height: 50%; }
@keyframes frame-wave {
  0%, 100% { transform: scaleY(1); }
  50%      { transform: scaleY(1.6); }
}

/* Frame 2 — Chat transcript */
.frame-chat { flex: 1; display: flex; flex-direction: column; gap: 10px; padding: 8px 4px; overflow-y: auto; }
.frame-chat__msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.frame-chat__msg.show { opacity: 1; transform: translateY(0); }
.frame-chat__msg.from-agent {
  align-self: flex-start;
  background: var(--color-surface-3);
  color: var(--color-text);
  border-bottom-left-radius: 4px;
}
.frame-chat__msg.from-patient {
  align-self: flex-end;
  background: var(--color-bg-dark);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.frame-chat__typing {
  align-self: flex-start;
  background: var(--color-surface-3);
  padding: 12px 14px;
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  display: inline-flex;
  gap: 4px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.frame-chat__typing.show { opacity: 1; }
.frame-chat__typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-text-muted);
  animation: typing-dot 1.2s infinite;
}
.frame-chat__typing span:nth-child(2) { animation-delay: 0.2s; }
.frame-chat__typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing-dot {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30%           { opacity: 1; transform: translateY(-3px); }
}

/* Frame 3 — SmartEngage feed */
.frame-engage { flex: 1; display: flex; flex-direction: column; gap: 6px; padding: 4px; overflow: hidden; }
.frame-engage__row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--color-surface-2);
  font-size: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.frame-engage__row.show { opacity: 1; transform: translateY(0); }
.frame-engage__row-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--color-fill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: var(--weight-bold);
  color: var(--color-text-muted);
  flex-shrink: 0;
}
.frame-engage__row-name { font-weight: var(--weight-semibold); color: var(--color-text); }
.frame-engage__row-msg { color: var(--color-text-muted); flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.frame-engage__row-time { font-size: 11px; color: var(--color-text-label); flex-shrink: 0; }

/* Frame 4 — Dashboard counters */
.frame-dash { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.frame-dash__tile {
  padding: 16px;
  background: var(--color-surface-2);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}
.frame-dash__tile-label {
  font-size: 10px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.frame-dash__tile-value {
  font-size: 28px;
  font-weight: var(--weight-bold);
  color: var(--color-text);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.frame-dash__tile-trend {
  font-size: 11px;
  color: var(--color-mint);
  font-weight: var(--weight-semibold);
}
.frame-dash__tile.full-width { grid-column: 1 / -1; }
.frame-dash__chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 50px;
  margin-top: 8px;
}
.frame-dash__chart span {
  flex: 1;
  background: linear-gradient(to top, var(--color-coral), var(--color-yellow));
  border-radius: 3px 3px 0 0;
}

@media (max-width: 1000px) {
  .reveal__grid { grid-template-columns: 1fr; gap: 40px; }
  .reveal__beat { min-height: auto; padding: 32px 0; }
  .reveal__stage { position: relative; top: 0; height: auto; }
  .reveal__frame-wrap { height: 480px; }
}

/* ───────── SOLUTIONS (tabbed) ───────── */
.solutions {
  background: var(--color-surface-3);
  padding: 96px 24px;
}
.solutions__inner { max-width: var(--container-max); margin: 0 auto; }
.solutions__head { max-width: 720px; margin-bottom: 40px; }
.solutions__head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: var(--weight-bold);
  color: var(--color-text);
  margin-bottom: 12px;
}
.solutions__head h2 em { color: var(--color-coral); font-style: italic; font-weight: inherit; }
.solutions__head p { font-size: 16px; color: var(--color-text-muted); line-height: 1.55; }
.solutions__tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 32px;
  overflow-x: auto;
}
.solutions__tab {
  padding: 14px 18px;
  font-size: 13px;
  font-weight: var(--weight-semibold);
  color: var(--color-text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  white-space: nowrap;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.solutions__tab:hover { color: var(--color-text); }
.solutions__tab.is-active { color: var(--color-text); border-bottom-color: var(--color-coral); }
.solutions__panel {
  display: none;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: stretch;
}
.solutions__panel.is-active { display: grid; }
.solutions__list { display: flex; flex-direction: column; gap: 8px; }
.solutions__list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  font-size: 13px;
  color: var(--color-text);
  cursor: pointer;
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.solutions__list-item:hover { border-color: var(--color-coral); transform: translateX(2px); }
.solutions__list-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.solutions__list-dot--purple { background: var(--color-violet); }
.solutions__list-dot--blue { background: var(--color-indigo); }
.solutions__list-dot--green { background: var(--color-mint); }
.solutions__list-dot--navy { background: var(--color-teal); }
.solutions__list-dot--coral { background: var(--color-coral); }
.solutions__list-item-arrow { margin-left: auto; opacity: 0.4; }

.solutions__detail {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.solutions__detail h3 {
  font-size: 24px;
  font-weight: var(--weight-bold);
  line-height: 1.2;
  color: var(--color-text);
}
.solutions__detail p { font-size: 14px; color: var(--color-text-muted); line-height: 1.55; }
.solutions__detail-cta {
  align-self: flex-start;
  margin-top: 8px;
  font-size: 13px;
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  border-bottom: 1.5px solid var(--color-fill-dark);
  padding-bottom: 2px;
}

@media (max-width: 800px) {
  .solutions__panel.is-active { grid-template-columns: 1fr; }
}

/* ───────── INTEGRATIONS (dark band, split layout) ───────── */
.integrations {
  background: var(--color-bg-dark-2);
  color: var(--color-text-on-dark);
  padding: 96px 24px;
}
.integrations__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: center;
}
.integrations__copy { max-width: 40ch; }
.integrations__eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-mint);
  margin-bottom: 16px;
}
.integrations__heading {
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: var(--weight-bold);
  color: #fff;
  margin-bottom: 16px;
}
.integrations__heading em { color: var(--color-coral); font-style: italic; font-weight: inherit; }
.integrations__sub {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 24px;
}
.integrations__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: var(--weight-semibold);
  color: var(--color-coral);
  padding-bottom: 2px;
  border-bottom: 1.5px solid rgba(255, 90, 111, 0.5);
}
.integrations__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.integration-tile {
  aspect-ratio: 5 / 3;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: var(--weight-semibold);
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
  padding: 6px;
  text-align: center;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.integration-tile:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 1080px) {
  .integrations__inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 600px) {
  .integrations__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ───────── CUSTOMER STORIES (asymmetric) ───────── */
.stories {
  background: var(--color-bg);
  padding: 96px 24px;
}
.stories__inner { max-width: var(--container-max); margin: 0 auto; }
.stories__head { max-width: 720px; margin-bottom: 40px; }
.stories__head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: var(--weight-bold);
  color: var(--color-text);
  margin-bottom: 12px;
}
.stories__head h2 em { color: var(--color-coral); font-style: italic; font-weight: inherit; }
.stories__grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 24px;
}
.stories__featured {
  background: var(--color-bg-dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  min-height: 360px;
}
.stories__featured-quote {
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.4;
  font-weight: var(--weight-medium);
  color: #fff;
}
.stories__featured-quote::before {
  content: "\201C";
  display: block;
  font-size: 56px;
  line-height: 1;
  color: var(--color-coral);
  margin-bottom: 8px;
}
.stories__featured-author { display: flex; align-items: center; gap: 14px; }
.stories__featured-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-coral), var(--color-yellow));
  flex-shrink: 0;
}
.stories__featured-meta { display: flex; flex-direction: column; }
.stories__featured-name { font-weight: var(--weight-semibold); color: #fff; font-size: 14px; }
.stories__featured-role { font-size: 12px; color: rgba(255, 255, 255, 0.6); }
.stories__stats { display: flex; flex-direction: column; gap: 16px; }
.stories__stat {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.stories__stat-value {
  font-size: 36px;
  font-weight: var(--weight-bold);
  letter-spacing: -0.02em;
  color: var(--color-text);
  line-height: 1;
}
.stories__stat-label { font-size: 13px; color: var(--color-text-muted); line-height: 1.4; }

.stories__strip {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.stories__card {
  flex-shrink: 0;
  width: 320px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stories__card-quote { font-size: 14px; color: var(--color-text); line-height: 1.5; }
.stories__card-author { font-size: 12px; color: var(--color-text-muted); font-weight: var(--weight-semibold); }

@media (max-width: 900px) {
  .stories__grid { grid-template-columns: 1fr; }
  .stories__featured { min-height: auto; }
}

/* ───────── RESOURCES (cards with filter tabs) ───────── */
.resources {
  background: var(--color-surface);
  padding: 96px 24px;
}
.resources__inner { max-width: var(--container-max); margin: 0 auto; }
.resources__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.resources__head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: var(--weight-bold);
  color: var(--color-text);
  margin-bottom: 12px;
}
.resources__head p { font-size: 16px; color: var(--color-text-muted); }
.resources__tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.resources__tab {
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: var(--weight-semibold);
  color: var(--color-text-muted);
  background: var(--color-surface-3);
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: all var(--t-fast);
}
.resources__tab:hover { color: var(--color-text); }
.resources__tab.is-active { background: var(--color-text); color: #fff; border-color: var(--color-text); }
.resources__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.resource-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.resource-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.resource-card__img {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--color-surface-3), var(--color-fill));
  position: relative;
}
.resource-card__body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.resource-card__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-coral);
  align-self: flex-start;
}
.resource-card__title {
  font-size: 16px;
  font-weight: var(--weight-semibold);
  line-height: 1.35;
  color: var(--color-text);
  flex: 1;
}
.resource-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  margin-top: 4px;
}
.resource-card__cta::after { content: "→"; transition: transform var(--t-fast); }
.resource-card:hover .resource-card__cta::after { transform: translateX(3px); }

@media (max-width: 900px) {
  .resources__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .resources__grid { grid-template-columns: 1fr; }
}

/* ───────── FINAL CTA ───────── */
.final-cta {
  background: var(--gradient-final);
  color: var(--color-text-on-dark);
  padding: 96px 24px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(255, 90, 111, 0.22), transparent 55%),
    radial-gradient(ellipse at 70% 30%, rgba(46, 196, 182, 0.18), transparent 55%);
  pointer-events: none;
}
.final-cta__inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}
.final-cta__headline {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: var(--weight-bold);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.final-cta__headline em { color: var(--color-coral); font-style: italic; font-weight: inherit; }
.final-cta__sub {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  max-width: 56ch;
  margin: 0 auto 32px;
}
.final-cta__ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.final-cta__footnote {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
}

/* ───────── FOOTER ───────── */
.footer {
  background: #06080B;
  color: rgba(255, 255, 255, 0.65);
  padding: 64px 24px 24px;
}
.footer__inner { max-width: var(--container-max); margin: 0 auto; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__brand-logo { display: inline-flex; align-items: center; gap: 8px; font-weight: var(--weight-bold); font-size: 18px; color: #fff; margin-bottom: 16px; }
.footer__brand-logo svg { width: 28px; height: 28px; }
.footer__tagline { font-size: 13px; line-height: 1.55; margin-bottom: 20px; max-width: 32ch; }
.footer__newsletter-label { font-size: 12px; font-weight: var(--weight-semibold); color: #fff; margin-bottom: 10px; }
.footer__newsletter-form {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 20px;
  max-width: 340px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  padding: 4px 4px 4px 18px;
}
.footer__newsletter-input {
  flex: 1;
  min-width: 0;
  padding: 8px 0;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 13px;
}
.footer__newsletter-input::placeholder { color: rgba(255, 255, 255, 0.45); }
.footer__newsletter-btn {
  flex-shrink: 0;
  padding: 9px 18px;
  background: #fff;
  border-radius: 9999px;
  color: #0a0a0a;
  font-size: 13px;
  font-weight: var(--weight-semibold);
  border: none;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast);
  white-space: nowrap;
}
.footer__newsletter-btn:hover { background: #f0f0f0; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: background var(--t-fast), color var(--t-fast);
}
.footer__social a:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }
.footer__social svg { width: 16px; height: 16px; fill: currentColor; }
.footer__col-label {
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 18px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 13px; color: rgba(255, 255, 255, 0.65); transition: color var(--t-fast); }
.footer__col a:hover { color: #fff; }
.footer__compliance {
  padding: 20px 0;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer__compliance-label {
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-right: 8px;
}
.footer__compliance .badge {
  font-size: 10px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}
.footer__legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer__legal a { color: rgba(255, 255, 255, 0.5); font-size: 12px; transition: color var(--t-fast); }
.footer__legal a:hover { color: #fff; }
.footer__region {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  padding: 6px 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
}
.footer__region:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }

@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
}
@media (max-width: 700px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ───────── REVEAL UTILITY (scroll-triggered fade) ───────── */
.reveal-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-fade.in-view { opacity: 1; transform: translateY(0); }
