/* Zyses narrative landing — white / black / red */

:root {
  --bg: #ffffff;
  --bg-elevated: #ffffff;
  --bg-soft: #f4f4f5;
  --surface: #fafafa;
  --text: #111113;
  --text-muted: #52525b;
  --border: rgba(17, 17, 19, 0.12);
  --red: #e10600;
  --red-hover: #c10500;
  --red-soft: rgba(225, 6, 0, 0.1);
  --radius: 16px;
  --radius-sm: 12px;
  --header-h: 68px;
  --container: 1140px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "IBM Plex Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(1000px 480px at 90% -5%, rgba(225, 6, 0, 0.05), transparent 55%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.has-cursor {
  cursor: none;
}

body.has-cursor a,
body.has-cursor button {
  cursor: none;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 700;
}

p {
  margin: 0;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 100;
  background: var(--red);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 8px;
}

.skip-link:focus {
  top: 1rem;
}

/* Custom cursor (desktop fine pointers only) */
.cursor {
  display: none;
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 90;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: transform;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(225, 6, 0, 0.45);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), border-color 0.2s ease;
}

body.cursor-hover .cursor-ring {
  width: 56px;
  height: 56px;
  border-color: var(--red);
}

@media (hover: hover) and (pointer: fine) {
  .cursor {
    display: block;
  }
}

/* Progress */
.progress-rail {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 50;
  background: transparent;
}

.progress-rail-fill {
  height: 100%;
  width: 0%;
  background: var(--red);
  transform-origin: left center;
}

/* Scene side nav */
.scene-nav {
  display: none;
  position: fixed;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 35;
  flex-direction: column;
  gap: 0.65rem;
}

.scene-nav a {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(17, 17, 19, 0.25);
  background: transparent;
  transition: transform 0.25s var(--ease), background 0.2s ease, border-color 0.2s ease;
}

.scene-nav a.is-active {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.25);
}

@media (min-width: 1100px) {
  .scene-nav {
    display: flex;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  transition:
    transform 0.25s var(--ease),
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.25s ease;
}

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

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 28px rgba(225, 6, 0, 0.22);
}

.btn-primary:hover {
  background: var(--red-hover);
  box-shadow: 0 14px 32px rgba(225, 6, 0, 0.3);
}

.btn-ghost {
  border: 1px solid rgba(17, 17, 19, 0.2);
  color: var(--text);
  background: transparent;
}

.btn-ghost:hover {
  border-color: rgba(17, 17, 19, 0.4);
  background: rgba(17, 17, 19, 0.04);
}

.btn-sm {
  min-height: 40px;
  padding: 0.45rem 1rem;
  font-size: 0.875rem;
  box-shadow: none;
}

.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  background: var(--bg);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.25s var(--ease);
}

.icon-btn:hover {
  background: var(--bg-soft);
  border-color: rgba(17, 17, 19, 0.28);
  transform: translateY(-1px);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(255, 255, 255, 0.95);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  width: min(100% - 2rem, var(--container));
}

.brand-logo,
.footer-brand img {
  height: 34px;
  width: auto;
  border-radius: 6px;
}

.footer-brand img {
  height: 32px;
}

.nav-desktop {
  display: none;
  justify-content: center;
  gap: 1.5rem;
}

.nav-desktop a {
  font-size: 0.9rem;
  color: var(--text-muted);
  position: relative;
  transition: color 0.2s ease;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1.5px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-desktop a:hover {
  color: var(--text);
}

.nav-desktop a:hover::after {
  transform: scaleX(1);
}

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

.header-actions .btn {
  display: none;
}

.nav-toggle {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: grid;
  place-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.25s var(--ease);
}

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

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

.mobile-nav {
  position: absolute;
  inset: var(--header-h) 0 auto;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.25rem 1.5rem;
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav nav {
  display: grid;
  gap: 0.35rem;
}

.mobile-nav a {
  padding: 0.85rem 0.5rem;
  border-bottom: 1px solid var(--border);
}

.mobile-nav .btn {
  margin-top: 0.75rem;
  border-bottom: 0;
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
  }

  .header-actions .btn {
    display: inline-flex;
  }

  .nav-toggle,
  .mobile-nav {
    display: none !important;
  }
}

/* Sections */
.section {
  padding: clamp(4.5rem, 9vw, 7rem) 0;
}

.section-intro {
  max-width: 40rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-intro h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  margin-bottom: 0.75rem;
}

.section-intro p {
  color: var(--text-muted);
  max-width: 52ch;
  font-size: 1.05rem;
}

/* ========== SCENE 1: HERO ========== */
.scene-hero {
  position: relative;
  min-height: 100dvh;
}

.hero-pin {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: 0 0 clamp(3rem, 7vw, 5rem);
  overflow: hidden;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 9, 0.4) 0%, rgba(8, 8, 9, 0.58) 50%, rgba(8, 8, 9, 0.86) 100%),
    linear-gradient(90deg, rgba(8, 8, 9, 0.75) 0%, rgba(8, 8, 9, 0.35) 58%, rgba(8, 8, 9, 0.25) 100%);
}

.ops-diagram {
  position: absolute;
  right: -4%;
  top: 12%;
  width: min(58vw, 620px);
  height: auto;
  opacity: 0.9;
  pointer-events: none;
}

.ops-diagram .node {
  fill: rgba(255, 255, 255, 0.75);
}

.ops-diagram .chaos-line {
  stroke: rgba(225, 6, 0, 0.45);
  stroke-width: 1.5;
  stroke-dasharray: 6 8;
}

.ops-diagram .flow-card {
  fill: rgba(255, 255, 255, 0.08);
  stroke: rgba(255, 255, 255, 0.35);
  stroke-width: 1.5;
}

.ops-diagram .flow-card.hub {
  fill: rgba(225, 6, 0, 0.22);
  stroke: var(--red);
}

.ops-diagram .struct-line {
  stroke: rgba(255, 255, 255, 0.45);
  stroke-width: 1.5;
}

.structure-layer {
  opacity: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--header-h) + 1.25rem);
  max-width: 40rem;
  color: #fff;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.15rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}

.brand-mark img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
}

.hero-content h1 {
  font-size: clamp(2.05rem, 4.8vw, 3.4rem);
  max-width: 14ch;
  margin-bottom: 1rem;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  max-width: 40ch;
  margin-bottom: 1.75rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-content .btn-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero-content .btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.16);
}

.scroll-hint {
  display: none;
  margin-top: 2.5rem;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.scroll-hint-line {
  width: 36px;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
  position: relative;
  overflow: hidden;
}

.scroll-hint-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: translateX(-100%);
  animation: hint-sweep 1.6s var(--ease) infinite;
}

@keyframes hint-sweep {
  to {
    transform: translateX(100%);
  }
}

@media (min-width: 900px) {
  .scroll-hint {
    display: inline-flex;
  }
}

@media (max-width: 699px) {
  .ops-diagram {
    opacity: 0.35;
    width: 90vw;
    right: -20%;
    top: 8%;
  }
}

.load-item {
  opacity: 0;
  transform: translateY(24px);
}

body.is-loaded .load-item {
  animation: load-up 0.85s var(--ease) forwards;
}

body.is-loaded .load-item:nth-child(1) {
  animation-delay: 0.05s;
}
body.is-loaded .load-item:nth-child(2) {
  animation-delay: 0.16s;
}
body.is-loaded .load-item:nth-child(3) {
  animation-delay: 0.28s;
}
body.is-loaded .load-item:nth-child(4) {
  animation-delay: 0.4s;
}
body.is-loaded .load-item:nth-child(5) {
  animation-delay: 0.52s;
}

@keyframes load-up {
  to {
    opacity: 1;
    transform: none;
  }
}

/* ========== SCENE 2: CRED ========== */
.cred-layout {
  display: grid;
  gap: 2.5rem;
  max-width: 52rem;
}

.cred-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cred-badge {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  background: var(--surface);
  transition: transform 0.3s var(--ease), border-color 0.2s ease, box-shadow 0.3s ease;
}

.cred-badge:hover {
  transform: translateY(-3px);
  border-color: rgba(225, 6, 0, 0.35);
  box-shadow: 0 12px 28px rgba(17, 17, 19, 0.06);
}

.cred-headline {
  font-size: clamp(1.45rem, 2.8vw, 2.15rem);
  max-width: 28ch;
  line-height: 1.25;
}

.cred-bullets {
  display: grid;
  gap: 0;
}

.cred-bullets li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1.1rem 0;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 1.05rem;
  transform: translateX(-16px);
  opacity: 0;
}

.cred-bullets li:last-child {
  border-bottom: 1px solid var(--border);
}

.cred-bullets li.is-visible,
.cred-badge.is-visible {
  opacity: 1;
  transform: none;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  margin-top: 0.45rem;
  box-shadow: 0 0 0 6px var(--red-soft);
}

/* ========== SCENE 3: FRAMEWORK ========== */
.framework {
  display: grid;
  gap: 1.5rem;
}

.framework-hub {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(225, 6, 0, 0.3);
  background: linear-gradient(135deg, rgba(225, 6, 0, 0.08), rgba(225, 6, 0, 0.02));
  font-family: var(--font-display);
  font-weight: 700;
  width: fit-content;
}

.framework-hub img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.framework-stages {
  display: grid;
  gap: 0.65rem;
}

.stage-btn {
  width: 100%;
  text-align: left;
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  display: grid;
  gap: 0.3rem;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.3s var(--ease),
    box-shadow 0.3s ease;
}

.stage-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(17, 17, 19, 0.06);
}

.stage.is-active .stage-btn {
  border-color: rgba(225, 6, 0, 0.45);
  background: #fff;
  box-shadow: 0 14px 32px rgba(225, 6, 0, 0.1);
}

.stage-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}

.stage-line {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease), opacity 0.3s ease, margin 0.3s ease;
}

.stage.is-active .stage-line {
  max-height: 4rem;
  opacity: 1;
  margin-top: 0.15rem;
}

.framework-visual {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.framework-visual img {
  width: 100%;
  aspect-ratio: 975 / 725;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.framework-visual:hover img {
  transform: scale(1.03);
}

@media (min-width: 900px) {
  .framework {
    grid-template-columns: 1.05fr 0.95fr;
    grid-template-rows: auto 1fr;
    gap: 1.5rem 2rem;
  }

  .framework-hub {
    grid-column: 1;
  }

  .framework-stages {
    grid-column: 1;
  }

  .framework-visual {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: stretch;
  }

  .framework-visual img {
    height: 100%;
    min-height: 480px;
  }
}

/* ========== SCENE 4: CAPABILITIES ========== */
.carousel-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.carousel-counter {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.carousel-counter [data-slide-current] {
  color: var(--red);
}

.carousel-controls {
  display: flex;
  gap: 0.5rem;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 20px 50px rgba(17, 17, 19, 0.05);
}

.carousel-track {
  display: flex;
  transition: transform 0.6s var(--ease);
  will-change: transform;
}

.cap-card {
  flex: 0 0 100%;
  min-width: 100%;
  display: grid;
}

.cap-media {
  overflow: hidden;
  background: var(--bg-soft);
  min-height: 220px;
}

.cap-media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  max-height: 340px;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.cap-card.is-active .cap-media img {
  transform: scale(1.04);
}

.cap-body {
  padding: clamp(1.4rem, 3vw, 2.2rem);
}

.cap-index {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}

.cap-body h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  margin-bottom: 0.45rem;
}

.tagline {
  color: var(--text);
  font-weight: 500;
  margin-bottom: 0.85rem;
}

.how {
  color: var(--text-muted);
  max-width: 46ch;
  margin-bottom: 1.2rem;
}

.process-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--red);
  padding: 0.35rem 0;
  transition: gap 0.25s var(--ease);
}

.process-toggle:hover {
  gap: 0.75rem;
}

.chev {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s var(--ease);
}

.process-toggle[aria-expanded="true"] .chev {
  transform: rotate(-135deg);
}

.mini-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.mini-flow[hidden] {
  display: none;
}

.mini-flow span {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: var(--red-soft);
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 600;
}

.carousel-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.carousel-dot {
  min-width: 40px;
  height: 34px;
  padding: 0 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.carousel-dot[aria-selected="true"] {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

@media (min-width: 900px) {
  .cap-card {
    grid-template-columns: 1.1fr 1fr;
    min-height: 440px;
  }

  .cap-media,
  .cap-media img {
    min-height: 100%;
    max-height: none;
    height: 100%;
  }
}

/* ========== SCENE 5: OUTCOMES ========== */
.outcome-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

.outcome {
  padding: 1.4rem 0.2rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.25s ease, transform 0.35s var(--ease);
}

.outcome:hover {
  background: var(--surface);
}

.outcome-icon {
  display: inline-flex;
  color: var(--red);
  margin-bottom: 0.75rem;
  transition: transform 0.35s var(--ease);
}

.outcome:hover .outcome-icon {
  transform: translateY(-3px);
}

.outcome h3 {
  font-size: 1.12rem;
  margin-bottom: 0.35rem;
}

.outcome p {
  color: var(--text-muted);
  font-size: 0.96rem;
  max-width: 32ch;
}

@media (min-width: 700px) {
  .outcome-grid {
    grid-template-columns: repeat(2, 1fr);
    border-left: 1px solid var(--border);
  }

  .outcome {
    border-right: 1px solid var(--border);
    padding: 1.7rem 1.4rem;
  }
}

@media (min-width: 1000px) {
  .outcome-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ========== SCENE 6: INSIGHTS ========== */
.insights-rail {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 0 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.insights-track {
  display: flex;
  gap: 1.15rem;
  width: max-content;
  padding: 0.25rem calc((100vw - min(100vw - 2rem, var(--container))) / 2);
}

.insight-tile {
  width: min(78vw, 340px);
  scroll-snap-align: start;
  display: grid;
  gap: 0.9rem;
  transition: transform 0.35s var(--ease);
}

.insight-tile:hover {
  transform: translateY(-6px);
}

.insight-media {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  aspect-ratio: 975 / 725;
  background: var(--bg-soft);
}

.insight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.insight-tile:hover .insight-media img {
  transform: scale(1.05);
}

.insight-tile h3 {
  font-size: 1.15rem;
  max-width: 18ch;
}

.insight-cta-tile {
  background: linear-gradient(145deg, #111113, #2a2a2e);
  color: #fff;
  border-radius: var(--radius);
  min-height: 280px;
  place-items: end start;
  padding: 1.5rem;
}

.insight-cta-inner span {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
}

.insight-cta-inner strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
}

/* ========== SCENE 7: CTA ========== */
.cta-panel {
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(225, 6, 0, 0.28);
  background:
    radial-gradient(600px 280px at 100% 0%, rgba(225, 6, 0, 0.1), transparent 55%),
    linear-gradient(160deg, #fff, #f6f6f7 60%);
  position: relative;
  overflow: hidden;
}

.journey-line {
  width: min(100%, 420px);
  height: auto;
  color: var(--red);
  margin-bottom: 1.5rem;
  opacity: 0.85;
}

.journey-line circle:not(.journey-end) {
  fill: #fff;
  stroke: var(--red);
  stroke-width: 2;
}

.journey-end {
  fill: var(--red);
}

.cta-panel h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.55rem);
  max-width: 16ch;
  margin-bottom: 0.85rem;
}

.cta-panel > p {
  color: var(--text-muted);
  max-width: 52ch;
  margin-bottom: 1.75rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
  background: var(--bg-soft);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  margin-top: 1rem;
  color: var(--text-muted);
  max-width: 34ch;
  font-size: 0.95rem;
}

.footer-col {
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.footer-col h3 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-base {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-legal {
  display: flex;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

/* Reveal defaults (JS / GSAP enhance) */
[data-reveal],
[data-stagger] {
  opacity: 0;
  transform: translateY(28px);
}

[data-reveal].is-visible,
[data-stagger].is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

@media (prefers-reduced-motion: reduce) {
  .load-item,
  [data-reveal],
  [data-stagger],
  .cred-bullets li,
  .cred-badge {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }

  .scroll-hint-line::after,
  .carousel-track,
  .cap-media img,
  .insight-media img {
    animation: none !important;
    transition: none !important;
  }

  body.has-cursor {
    cursor: auto;
  }

  .cursor {
    display: none !important;
  }
}
