/* ============================================================
   Tytl × Aon — Property Intelligence Infrastructure
   ============================================================ */

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--tytl-midnight);
  color: var(--fg-1);
  font-family: var(--font-body);
  overflow: hidden;
  height: 100vh;
}

/* Aon accent - used sparingly */
:root {
  --aon-red: #E41133;
  --aon-red-dark: #B70E29;
  --slide-pad-x: clamp(48px, 6vw, 112px);
  --slide-pad-y: clamp(48px, 6vh, 96px);
}

/* ---------- Deck shell ---------- */
.deck {
  position: fixed; inset: 0;
  overflow: hidden;
  z-index: 1;
}
.track {
  position: absolute; inset: 0;
  transition: transform 900ms cubic-bezier(0.7, 0, 0.2, 1);
  will-change: transform;
}
.slide {
  position: relative;
  width: 100vw; height: 100vh;
  overflow: hidden;
  display: flex; flex-direction: column;
  padding: var(--slide-pad-y) var(--slide-pad-x);
}
.slide.dark  { background: var(--tytl-midnight); color: var(--tytl-white); }
.slide.light { background: var(--tytl-white);    color: var(--fg-1); }
.slide.lime  { background: var(--tytl-lime);     color: var(--tytl-midnight); }
.slide.muted { background: var(--tytl-black-05); color: var(--fg-1); }

/* Dark-slide heading color override (defeats h2's default midnight color) */
.slide.dark h1,
.slide.dark h2,
.slide.dark h3,
.slide.dark h4,
.slide.dark .display,
.slide.dark .h-hero,
.slide.dark .h-1,
.slide.dark .h-2,
.slide.dark .h-3,
.slide.dark .h-4 { color: var(--tytl-white); }
.slide.lime h1, .slide.lime h2, .slide.lime h3, .slide.lime h4 { color: var(--tytl-midnight); }

/* Top chrome */
.top-chrome {
  position: fixed; top: 0; left: 0; right: 0;
  padding: 22px var(--slide-pad-x);
  display: flex; align-items: center; justify-content: space-between;
  z-index: 100;
  pointer-events: none;
}
.top-chrome > * { pointer-events: auto; }
.brandlock {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-display);
  font-weight: var(--fw-display);
  color: var(--tytl-white);
  letter-spacing: -0.01em;
}
.brandlock .tytl-mark { height: 22px; display: block; width: auto; }
.brandlock .aon-mark  { height: 22px; display: block; width: auto; transform: translateY(-2px); }
.brandlock .x {
  color: rgba(255,255,255,0.5);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
}
.brandlock .aon {
  font-family: var(--font-display);
  font-weight: var(--fw-display);
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--aon-red);
}
.top-chrome .session {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tytl-white);
  display: flex; gap: 12px; align-items: center;
}
.top-chrome .session .dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--tytl-lime);
  box-shadow: 0 0 0 3px rgba(183,244,2,0.2);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(183,244,2,0.2); }
  50%      { box-shadow: 0 0 0 6px rgba(183,244,2,0); }
}

/* Bottom chrome - counter + nav hint */
.bottom-chrome {
  position: fixed; bottom: 0; left: 0; right: 0;
  padding: 22px var(--slide-pad-x);
  display: flex; align-items: center; justify-content: space-between;
  z-index: 100;
  pointer-events: none;
}
.bottom-chrome > * { pointer-events: auto; }
.counter {
  font-family: var(--font-display);
  font-weight: var(--fw-display);
  font-size: 22px;
  color: var(--tytl-white);
  letter-spacing: -0.01em;
  display: flex; gap: 6px; align-items: baseline;
}
.counter .sep { opacity: 0.4; font-size: 16px; }
.counter .total { opacity: 0.4; font-size: 16px; }
.nav-hint {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tytl-white);
  display: flex; gap: 18px; align-items: center;
}
.nav-hint .scroll-icon {
  width: 18px; height: 26px;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  position: relative;
}
.nav-hint .scroll-icon::after {
  content: ""; position: absolute;
  left: 50%; top: 5px;
  width: 2px; height: 6px;
  background: currentColor;
  transform: translateX(-50%);
  border-radius: 999px;
  animation: scrollHint 1.8s ease-in-out infinite;
}
@keyframes scrollHint {
  0%   { transform: translate(-50%, 0); opacity: 1; }
  60%  { transform: translate(-50%, 8px); opacity: 0; }
  100% { transform: translate(-50%, 0); opacity: 0; }
}

/* Progress bar */
.progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(255,255,255,0.08);
  z-index: 101;
}
.progress .bar {
  height: 100%;
  background: var(--tytl-lime);
  width: 0%;
  transition: width 900ms cubic-bezier(0.7, 0, 0.2, 1);
}

/* On light slides, chrome inverts to dark */
.slide.light ~ * { }
.light-chrome .top-chrome,
.light-chrome .bottom-chrome { color: var(--tytl-midnight); }
.light-chrome .top-chrome .session,
.light-chrome .bottom-chrome .nav-hint,
.light-chrome .counter { color: var(--tytl-midnight); }
.light-chrome .side-nav button { background: rgba(7,48,52,0.25); }
.light-chrome .side-nav button.active { background: var(--tytl-midnight); }
.light-chrome .brandlock .x { color: rgba(7,48,52,0.5); }
/* Re-add side nav header comment to keep file structure */
.side-nav {
  position: fixed; right: 32px; top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 10px;
  z-index: 100;
}
.side-nav button {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background-color 240ms ease, transform 240ms ease;
}
.side-nav button:hover { background: rgba(255,255,255,0.6); }
.side-nav button.active {
  background: var(--tytl-lime);
}

/* ---------- Slide entry animations ---------- */
.slide [data-anim] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.slide.active [data-anim] {
  opacity: 1;
  transform: translateY(0);
}
.slide.active [data-anim="1"] { transition-delay: 100ms; }
.slide.active [data-anim="2"] { transition-delay: 220ms; }
.slide.active [data-anim="3"] { transition-delay: 340ms; }
.slide.active [data-anim="4"] { transition-delay: 460ms; }
.slide.active [data-anim="5"] { transition-delay: 580ms; }
.slide.active [data-anim="6"] { transition-delay: 700ms; }
.slide.active [data-anim="7"] { transition-delay: 820ms; }
.slide.active [data-anim="8"] { transition-delay: 940ms; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tytl-lime);
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
}
.eyebrow .num {
  color: rgba(255,255,255,0.5);
  font-feature-settings: "tnum";
}
.light .eyebrow { color: var(--tytl-midnight); }
.light .eyebrow .num { color: var(--tytl-black-50); }

/* ---------- Display type ---------- */
.display {
  font-family: var(--font-display);
  font-weight: var(--fw-display);
  letter-spacing: -0.02em;
  line-height: 0.95;
}
.h-hero   { font-size: clamp(72px, 8.6vw, 160px); }
.h-1      { font-size: clamp(48px, 5.4vw, 96px);  line-height: 0.98; }
.h-2      { font-size: clamp(36px, 3.6vw, 64px);  line-height: 1.02; }
.h-3      { font-size: clamp(24px, 2.2vw, 38px);  line-height: 1.08; }
.h-4      { font-size: clamp(18px, 1.4vw, 22px);  line-height: 1.2; letter-spacing: -0.005em; }

.lede {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.5;
  color: rgba(255,255,255,0.72);
  max-width: 56ch;
  font-weight: 400;
}
.light .lede { color: var(--fg-2); }

/* ---------- Slide 1 / Title ---------- */
.s-title .stage {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.s-title .title-block {
  position: relative;
  z-index: 5;
  text-align: center;
}
.s-title .top-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--tytl-lime);
  margin-bottom: 36px;
  display: inline-flex; align-items: center; gap: 14px;
}
.s-title .top-eyebrow::before,
.s-title .top-eyebrow::after {
  content: ""; width: 36px; height: 1px;
  background: rgba(183,244,2,0.4);
}
.s-title .big {
  font-family: var(--font-display);
  font-weight: var(--fw-display);
  font-size: clamp(96px, 14vw, 240px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: var(--tytl-white);
  display: flex; align-items: center; justify-content: center;
  gap: clamp(24px, 3vw, 48px);
  flex-wrap: nowrap;
}
.s-title .hero-logo {
  display: block;
  height: clamp(96px, 13vw, 220px);
  width: auto;
  object-fit: contain;
}
.s-title .hero-logo.aon  { height: clamp(80px, 11vw, 190px); transform: translateY(-10px); }
.s-title .big .x {
  color: rgba(255,255,255,0.4);
  font-weight: 300;
  font-family: var(--font-body);
  font-size: clamp(48px, 5vw, 80px);
  font-style: normal;
  display: inline-block;
  flex-shrink: 0;
}
.s-title .big .aon {
  font-family: var(--font-display);
  font-weight: var(--fw-display);
  color: var(--aon-red);
  letter-spacing: -0.02em;
}
.s-title .subline {
  margin-top: 36px;
  font-size: clamp(18px, 1.6vw, 26px);
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
  max-width: 720px;
  margin-left: auto; margin-right: auto;
  font-weight: 400;
}
.s-title .subline em {
  color: var(--tytl-lime);
  font-style: normal;
  font-weight: 500;
}
.s-title .meta-row {
  position: absolute;
  bottom: var(--slide-pad-y);
  left: var(--slide-pad-x);
  right: var(--slide-pad-x);
  display: flex; justify-content: space-between; align-items: flex-end;
  z-index: 6;
}
.s-title .meta-row .meta {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.s-title .meta-row .meta b {
  color: var(--tytl-white);
  font-weight: 600;
  display: block;
}

/* Molecule canvas */
.molecule-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* ---------- Generic slide head ---------- */
.slide-head {
  max-width: 1100px;
  margin-bottom: clamp(40px, 4vw, 64px);
}
.slide-head .h-1 + .lede,
.slide-head .h-2 + .lede,
.slide .left .h-1 + .lede,
.slide .left .h-2 + .lede,
.slide .left .display + .lede {
  margin-top: 24px;
}
.slide .left .lede + .lede { margin-top: 14px; }

/* ---------- Slide 2 - Market Shift ---------- */
.s-market {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: stretch;
  padding-top: calc(var(--slide-pad-y) + 70px);
}
.s-market .left {
  display: flex; flex-direction: column;
  justify-content: center;
  min-height: 560px;
}
.s-market .right {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 560px;
}
.orbital-chips {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1;
}
.orbital-chips .core {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 160px; height: 160px;
  border-radius: 999px;
  background: var(--tytl-lime);
  display: flex; align-items: center; justify-content: center;
  color: var(--tytl-midnight);
  font-family: var(--font-display);
  font-weight: var(--fw-display);
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  box-shadow: 0 0 0 12px rgba(183,244,2,0.1), 0 0 80px rgba(183,244,2,0.25);
  z-index: 4;
  animation: corePulse 3.4s ease-in-out infinite;
}
@keyframes corePulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(183,244,2,0.35),
                0 0 0 12px rgba(183,244,2,0.1),
                0 0 80px rgba(183,244,2,0.25);
  }
  50% {
    box-shadow: 0 0 0 26px rgba(183,244,2,0),
                0 0 0 14px rgba(183,244,2,0.18),
                0 0 110px rgba(183,244,2,0.4);
  }
}

/* Radar sweep - single arm from core to outer edge */
.orbital-chips .radar {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 100%; height: 100%;
  border-radius: 999px;
  pointer-events: none;
  z-index: 2;
  background: conic-gradient(
    from 0deg,
    rgba(183,244,2,0) 0deg,
    rgba(183,244,2,0) 240deg,
    rgba(183,244,2,0.06) 320deg,
    rgba(183,244,2,0.28) 355deg,
    rgba(183,244,2,0.55) 360deg
  );
  -webkit-mask: radial-gradient(circle, transparent 16%, #000 16.2%, #000 100%);
          mask: radial-gradient(circle, transparent 16%, #000 16.2%, #000 100%);
  /* rotation is driven by JS so it stays in sync with the chip highlight */
}
/* Chip highlight when radar sweeps past */
.orbital-chips .chip {
  transition: background-color 120ms ease-out, border-color 120ms ease-out, color 120ms ease-out, box-shadow 600ms ease-out;
}
.orbital-chips .chip.lit {
  background: var(--tytl-lime);
  border-color: var(--tytl-lime);
  color: var(--tytl-midnight);
  box-shadow: 0 0 0 4px rgba(183,244,2,0.18), 0 0 28px rgba(183,244,2,0.5);
  transition: background-color 80ms ease-out, border-color 80ms ease-out, color 80ms ease-out, box-shadow 80ms ease-out;
}
.orbital-chips .chip.lit .bullet {
  background: var(--tytl-midnight);
}
.orbital-chips .ring {
  position: absolute;
  inset: 0;
  border: 1px dashed rgba(255,255,255,0.12);
  border-radius: 999px;
  animation: rotate 90s linear infinite;
}
.orbital-chips .ring.inner { inset: 18%; animation-duration: 60s; animation-direction: reverse; }
@keyframes rotate {
  to { transform: rotate(360deg); }
}
.orbital-chips .chip {
  position: absolute;
  padding: 10px 16px;
  background: var(--tytl-midnight-90);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  color: var(--tytl-white);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  z-index: 3;
  animation: float 6s ease-in-out infinite;
}
.orbital-chips .chip .bullet {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--tytl-lime);
  margin-right: 8px;
  vertical-align: middle;
}
.orbital-chips .chip.red .bullet { background: var(--aon-red); }
.orbital-chips .chip.wisteria .bullet { background: var(--tytl-wisteria); }
.orbital-chips .chip.mint .bullet { background: var(--tytl-mint); }
@keyframes float {
  0%, 100% { transform: translate(var(--tx,0), var(--ty,0)); }
  50%      { transform: translate(calc(var(--tx,0) + 6px), calc(var(--ty,0) - 8px)); }
}

/* ---------- Slide 3 — Who is Tytl ---------- */
.s-who {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: stretch;
  padding-top: calc(var(--slide-pad-y) + 50px);
}
.s-who .left {
  display: flex; flex-direction: column;
  justify-content: center;
  min-height: 560px;
}
.s-who .right {
  padding-top: 0;
  min-height: 560px;
  display: flex; flex-direction: column;
  justify-content: center;
}
.s-who .pill-list {
  list-style: none; margin: 36px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.s-who .pill-list li {
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--tytl-midnight-90);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}
.s-who .pill-list li.accent {
  background: rgba(183,244,2,0.12);
  border-color: rgba(183,244,2,0.3);
  color: var(--tytl-lime);
}
.s-who .screenshot {
  position: relative;
  aspect-ratio: 16 / 11;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: var(--tytl-midnight-90);
  box-shadow: var(--shadow-pop);
  border: 1px solid rgba(255,255,255,0.08);
}

/* ---------- Film strip (slide 3) ---------- */
.filmstrip {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  background: #0A0A0A;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-pop);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column;
}
.filmstrip-perfs {
  position: relative;
  height: 36px;
  flex-shrink: 0;
  background:
    /* perforation holes - evenly spaced rectangles */
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 22px,
      #F4F4F4 22px,
      #F4F4F4 42px,
      transparent 42px,
      transparent 64px
    );
  -webkit-mask:
    linear-gradient(#000, #000) center / 100% 14px no-repeat;
          mask:
    linear-gradient(#000, #000) center / 100% 14px no-repeat;
}
.filmstrip-window {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: var(--tytl-midnight-90);
}
.filmstrip-window .video-fill {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  background: #000;
}
.screenshot-frame {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  background:
    repeating-linear-gradient(0deg,rgba(255,255,255,.03) 0,rgba(255,255,255,.03) 1px,transparent 1px,transparent 32px),
    repeating-linear-gradient(90deg,rgba(255,255,255,.03) 0,rgba(255,255,255,.03) 1px,transparent 1px,transparent 32px),
    linear-gradient(135deg, var(--tytl-midnight-90), var(--tytl-midnight-80));
}
.screenshot-frame::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 32px;
  background: rgba(0,0,0,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.screenshot-frame::after {
  content: "";
  position: absolute; top: 12px; left: 14px;
  width: 8px; height: 8px; border-radius: 999px;
  background: rgba(255,255,255,0.18);
  box-shadow: 14px 0 0 rgba(255,255,255,0.18), 28px 0 0 rgba(255,255,255,0.18);
}
image-slot {
  display: block;
  width: 100%; height: 100%;
}
.video-fill {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--tytl-midnight);
}

/* ---------- Slide 4 — Scale ---------- */
.s-scale {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: calc(var(--slide-pad-y) + 102px);
}
.s-scale .slide-head { margin-bottom: 8px; }
.s-scale .row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.s-scale .stat {
  position: relative;
  padding: 32px;
  background: var(--tytl-midnight-90);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column; gap: 8px;
  overflow: hidden;
}
.s-scale .stat.lime {
  background: var(--tytl-lime);
  border: none;
  color: var(--tytl-midnight);
}
.s-scale .stat .big-num {
  font-family: var(--font-display);
  font-weight: var(--fw-display);
  font-size: clamp(56px, 6vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.03em;
}
.s-scale .stat .label {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-top: auto;
  line-height: 1.4;
}
.s-scale .stat.lime .label { color: var(--tytl-midnight); opacity: 0.7; }
.s-scale .logos-wall {
  background: var(--tytl-midnight-90);
  border-radius: 20px;
  padding: 36px 40px;
  border: 1px solid rgba(255,255,255,0.06);
}
.s-scale .logos-wall .label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}
.s-scale .logos-wall .row-logos {
  display: flex; flex-wrap: wrap; gap: 16px 56px;
  align-items: center;
}
.s-scale .logos-wall .row-logos .logo {
  font-family: var(--font-display);
  font-weight: var(--fw-display);
  font-size: clamp(20px, 1.8vw, 28px);
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
}

/* ---------- Slide 5 - Property-Level Intelligence ---------- */
.s-property {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: stretch;
  padding-top: calc(var(--slide-pad-y) + 50px);
}
.s-property .left {
  padding-right: 24px;
  display: flex; flex-direction: column;
  justify-content: center;
  min-height: 620px;
}
.s-property .right {
  position: relative;
  display: flex; align-items: center;
  min-height: 620px;
  width: 100%;
}
.s-property .strategic {
  margin-top: 24px;
  padding: 18px 22px;
  background: rgba(183,244,2,0.08);
  border-left: 3px solid var(--tytl-lime);
  border-radius: 0 10px 10px 0;
  color: var(--tytl-white);
  font-family: var(--font-display);
  font-weight: var(--fw-display);
  font-size: clamp(16px, 1.3vw, 20px);
  letter-spacing: -0.005em;
  line-height: 1.25;
}
.s-property .strategic em { color: var(--tytl-lime); font-style: normal; }

/* Capability table (slide 5 right column) */
.cap-table {
  width: 100%;
  background: var(--tytl-midnight-90);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
}
.cap-table-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.18);
}
.cap-table-head .cap-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tytl-lime);
}
.cap-table-head .cap-count {
  font-family: var(--font-display);
  font-weight: var(--fw-display);
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
}
.cap-row {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 22px;
  border-top: 1px solid rgba(255,255,255,0.05);
  transition: background-color 200ms ease;
}
.cap-row:first-of-type { border-top: none; }
.cap-row:hover { background: rgba(183,244,2,0.04); }
.cap-glyph {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(228,17,51,0.12);
  color: var(--aon-red);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cap-glyph svg { width: 22px; height: 22px; }
.cap-text { min-width: 0; }
.cap-title {
  font-family: var(--font-display);
  font-weight: var(--fw-display);
  font-size: 15px;
  letter-spacing: -0.005em;
  color: var(--tytl-white);
  line-height: 1.15;
}
.cap-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 3px;
  line-height: 1.35;
}
.cap-metric {
  font-family: var(--font-display);
  font-weight: var(--fw-display);
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--tytl-lime);
  background: rgba(183,244,2,0.10);
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ---------- Slide 6 - Why Tytl Different ---------- */
.s-different {
  display: flex; flex-direction: column;
  gap: 24px;
  padding-top: calc(var(--slide-pad-y) + 60px);
}
.s-different .slide-head { margin-bottom: 8px; }
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.compare .col {
  padding: 22px 28px;
  background: var(--tytl-midnight-90);
  display: flex; flex-direction: column; gap: 10px;
}
.compare .col.tytl {
  background: var(--tytl-lime);
  color: var(--tytl-midnight);
}
.compare .col h3 {
  font-family: var(--font-display);
  font-weight: var(--fw-display);
  font-size: 22px;
  letter-spacing: -0.005em;
  margin: 0 0 8px;
  color: inherit;
}
.compare .col.midnight h3 { color: rgba(255,255,255,0.55); }
.compare .col .brand-h {
  margin: 0 0 4px;
  height: 32px;
  display: flex; align-items: center;
}
.compare .col .brand-h img {
  height: 30px;
  width: auto;
  display: block;
}
.compare .col .row-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; line-height: 1.35;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.compare .col.tytl .row-item {
  border-top-color: rgba(7,48,52,0.15);
  color: var(--tytl-midnight);
  font-weight: 500;
}
.compare .col.midnight .row-item {
  color: rgba(255,255,255,0.6);
}
.compare .col .row-item:first-of-type { border-top: none; }
.compare .col .glyph {
  flex-shrink: 0;
  width: 28px; height: 28px;
  margin-top: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: var(--fw-display);
  font-size: 22px;
  line-height: 1;
  background: transparent;
}
.compare .col.midnight .glyph.no {
  color: var(--aon-red);
}
.compare .col.tytl .glyph.yes {
  color: var(--tytl-midnight);
}
.compare .col .row-item { align-items: center; }

/* ---------- Slide 7 - Intelligence Layers ---------- */
.s-layers {
  display: flex; flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--slide-pad-y) + 50px);
  padding-bottom: var(--slide-pad-y);
}
.s-layers .slide-head { margin-bottom: 8px; }
.s-layers .columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
  align-items: stretch;
}
.layer-card {
  background: var(--tytl-midnight-90);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 28px;
  display: flex; flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.layer-card .icon-block {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(183,244,2,0.14);
  display: flex; align-items: center; justify-content: center;
  color: var(--tytl-lime);
}
.layer-card.aon .icon-block {
  background: rgba(228,17,51,0.15);
  color: var(--aon-red);
}
.layer-card.wist .icon-block {
  background: rgba(184,162,239,0.18);
  color: var(--tytl-wisteria);
}
.layer-card .icon-block svg { width: 22px; height: 22px; }
.layer-card h3 {
  font-family: var(--font-display);
  font-weight: var(--fw-display);
  font-size: 22px;
  letter-spacing: -0.005em;
  color: var(--tytl-white);
  margin: 0;
}
.layer-card .items {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 2px;
}
.layer-card .items li {
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255,255,255,0.75);
  padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: center; gap: 10px;
}
.layer-card .items li:first-child { border-top: none; }
.layer-card .items li::before {
  content: "";
  width: 4px; height: 4px; border-radius: 999px;
  background: var(--tytl-lime);
  flex-shrink: 0;
}
.layer-card.aon .items li::before { background: var(--aon-red); }
.layer-card.wist .items li::before { background: var(--tytl-wisteria); }

/* ---------- Slide 8 — Flood Exposure ---------- */
.s-flood {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 56px;
  align-items: stretch;
  padding-top: calc(var(--slide-pad-y) + 50px);
}
.s-flood .left {
  display: flex; flex-direction: column;
  justify-content: center;
  min-height: 560px;
}
.s-flood .right {
  position: relative;
  min-height: 560px;
  display: flex; align-items: center; justify-content: center;
}
.s-flood .right .filmstrip {
  width: 100%;
}
.filmstrip-window image-slot {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.s-flood .capabilities {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: flex; flex-direction: column; gap: 10px;
}
.s-flood .capabilities li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px;
  background: var(--tytl-midnight-90);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.s-flood .capabilities li svg { flex-shrink: 0; }

/* ---------- Slide 9 - Partnership ---------- */
.s-partnership {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
  padding-top: calc(var(--slide-pad-y) + 50px);
}
.s-partnership .left {
  display: flex; flex-direction: column;
  justify-content: center;
  min-height: 600px;
}
.s-partnership .right {
  display: flex; align-items: center; justify-content: center;
  min-height: 600px;
}
.connection-diagram {
  position: relative;
  aspect-ratio: 1 / 0.85;
  width: 100%;
}
.connection-diagram .node {
  position: absolute;
  display: flex; align-items: center; justify-content: center;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: var(--fw-display);
  letter-spacing: -0.005em;
  z-index: 3;
}
.connection-diagram .node.center {
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 180px; height: 180px;
  background: var(--tytl-lime);
  color: var(--tytl-midnight);
  font-size: 22px;
  line-height: 1.05;
  text-align: center;
  box-shadow: 0 0 0 12px rgba(183,244,2,0.1), 0 0 60px rgba(183,244,2,0.3);
  animation: nodePulse 3.4s ease-in-out infinite;
}
@keyframes nodePulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(183,244,2,0.35),
                0 0 0 12px rgba(183,244,2,0.1),
                0 0 60px rgba(183,244,2,0.3);
  }
  50% {
    box-shadow: 0 0 0 28px rgba(183,244,2,0),
                0 0 0 14px rgba(183,244,2,0.18),
                0 0 90px rgba(183,244,2,0.45);
  }
}
.connection-diagram .node.satellite {
  width: 134px; height: 134px;
  background: var(--tytl-midnight-90);
  color: var(--tytl-white);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 15px;
  text-align: center;
  padding: 14px;
  line-height: 1.18;
  box-shadow: var(--shadow-md);
}
.connection-diagram .node.sat-1 { top: 0; left: 50%; transform: translateX(-50%); }
.connection-diagram .node.sat-2 { right: 0; top: 50%; transform: translateY(-50%); }
.connection-diagram .node.sat-3 { bottom: 0; left: 50%; transform: translateX(-50%); }
.connection-diagram .node.sat-4 { left: 0; top: 50%; transform: translateY(-50%); }
.connection-diagram svg.lines {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}

/* ---------- Slide 10 — Strategic Value to Aon ---------- */
.s-strategic {
  display: flex; flex-direction: column;
  gap: 28px;
  padding-top: calc(var(--slide-pad-y) + 32px);
}
.s-strategic .slide-head { margin-bottom: 8px; }
.opp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 16px;
}
.opp-card {
  position: relative;
  padding: 24px 24px 28px;
  background: var(--tytl-white);
  border-radius: 16px;
  border: 1px solid var(--tytl-black-10);
  display: flex; flex-direction: column;
  gap: 12px;
  transition: 240ms cubic-bezier(0.2,0.8,0.2,1);
  cursor: default;
  min-height: 180px;
}
.opp-card:hover {
  transform: translateY(-4px);
  border-color: var(--aon-red);
  box-shadow: var(--shadow-md);
}
.opp-card .num {
  font-family: var(--font-display);
  font-weight: var(--fw-display);
  font-size: 32px;
  color: var(--aon-red);
  line-height: 1;
  letter-spacing: -0.02em;
}
.opp-card h4 {
  font-family: var(--font-display);
  font-weight: var(--fw-display);
  font-size: 19px;
  letter-spacing: -0.005em;
  color: var(--tytl-midnight);
  margin: auto 0 0;
  line-height: 1.1;
}
.opp-card.featured {
  background: var(--tytl-midnight);
  border-color: transparent;
  color: var(--tytl-white);
}
.opp-card.featured .num { color: var(--tytl-lime); }
.opp-card.featured h4 { color: var(--tytl-white); }

/* ---------- Slide 11 - Client Value ---------- */
.s-client {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: stretch;
  padding-top: calc(var(--slide-pad-y) + 50px);
}
.s-client .left {
  display: flex; flex-direction: column;
  justify-content: center;
  min-height: 600px;
}
.s-client .right {
  display: flex; align-items: center; justify-content: center;
  min-height: 600px;
}
.s-client .solutions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}
.solution-card {
  padding: 18px 20px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  display: flex; align-items: center; gap: 12px;
  line-height: 1.3;
}
.solution-card .marker {
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--tytl-lime);
  flex-shrink: 0;
}
/* Slide 11 - Value funnel */
.value-funnel {
  width: 100%; height: 600px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  position: relative;
  padding-top: 12px;
  margin-top: -125px;
}
.funnel-source {
  display: flex; justify-content: center;
  margin-bottom: 10px;
  margin-top: -10px;
}
.funnel-source img {
  height: 30px; width: auto; display: block;
}
.funnel-inputs, .funnel-outputs {
  display: flex; flex-wrap: wrap; justify-content: center;
  align-items: center;
  gap: 12px 10px;
  padding-top: 6px;
  max-width: 100%;
}
/* Each logo container — wrap the img inside a fixed box so we can crop with overflow */
.carrier-logo {
  height: 28px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);     /* force solid white */
  opacity: 0.95;
  flex-shrink: 0;
}
/* AIG comes with a rectangle border baked into the artwork - wrap & overflow-clip past it */
.carrier-wrap.aig {
  display: inline-block;
  width: 76px;
  height: 30px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.carrier-wrap.aig img {
  position: absolute;
  left: 50%; top: 50%;
  width: 200%;
  height: auto;
  transform: translate(-50%, -50%);
  filter: brightness(0) invert(1);
  opacity: 0.95;
  display: block;
}
.carrier-logo.allianz {
  height: 22px;
  width: auto;
  object-fit: contain;
}
.carrier-logo.axa    { height: 60px; }
.carrier-logo.zurich { height: 38px; margin-left: 8px; }
.carrier-logo.aviva  { height: 26px; }
.carrier-logo.chubb  { height: 26px; }
.carrier-logo.hiscox { height: 30px; }
.data-chip {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--tytl-lime);
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(183,244,2,0.08);
  border: 1px solid rgba(183,244,2,0.28);
  white-space: nowrap;
}
.funnel-shape {
  flex: 1;
  position: relative;
  margin: 4px 0;
}
.funnel-shape svg {
  width: 100%; height: 100%;
  display: block;
}
.funnel-waist {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: var(--tytl-white);
  border-radius: 8px;
  padding: 10px 16px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(228,17,51,0.25), 0 0 0 6px rgba(228,17,51,0.05);
  z-index: 3;
}
.funnel-waist img { height: 24px; width: auto; display: block; }

/* ---------- Slide 12 — Flexible Delivery ---------- */
.s-delivery {
  display: flex; flex-direction: column;
  padding-top: calc(var(--slide-pad-y) + 32px);
}
.s-delivery .slide-head { margin-bottom: 8px; }
.s-delivery .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
  flex: 1;
  margin-top: 24px;
}
.delivery-card {
  position: relative;
  padding: 24px;
  border-radius: 16px;
  background: var(--tytl-midnight-90);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
  min-height: 200px;
}
.delivery-card.span-2 { grid-column: span 2; }
.delivery-card.lime {
  background: var(--tytl-lime);
  border: none;
  color: var(--tytl-midnight);
}
.delivery-card.aon-tint {
  background: var(--aon-red);
  border-color: var(--aon-red);
  color: var(--tytl-white);
}
.delivery-card.aon-tint .label { color: rgba(255,255,255,0.7); }
.delivery-card.aon-tint h4    { color: var(--tytl-white); }
.delivery-card.aon-tint p     { color: rgba(255,255,255,0.78); }
.delivery-card.aon-tint .icon-mini {
  background: rgba(255,255,255,0.15);
  color: var(--tytl-white);
}

.delivery-card.white {
  background: var(--tytl-white);
  border-color: transparent;
  color: var(--tytl-midnight);
}
.delivery-card.white .label { color: rgba(7,48,52,0.55); }
.delivery-card.white h4    { color: var(--tytl-midnight); }
.delivery-card.white p     { color: rgba(7,48,52,0.65); }
.delivery-card.white .icon-mini {
  background: rgba(7,48,52,0.08);
  color: var(--tytl-midnight);
}
.delivery-card .label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.delivery-card.lime .label { color: rgba(7,48,52,0.6); }
.delivery-card h4 {
  font-family: var(--font-display);
  font-weight: var(--fw-display);
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--tytl-white);
  margin: 12px 0 0;
}
.delivery-card.lime h4 { color: var(--tytl-midnight); }
.delivery-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.45;
  margin: 12px 0 0;
}
.delivery-card.lime p { color: var(--tytl-midnight); opacity: 0.75; }
.delivery-card .icon-mini {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.85);
  align-self: flex-start;
}
.delivery-card.lime .icon-mini { background: rgba(7,48,52,0.1); color: var(--tytl-midnight); }

/* ---------- Slide 13 — Closing ---------- */
.s-closing {
  align-items: center; justify-content: center; text-align: center;
  position: relative;
}
.s-closing .closing-stage {
  position: relative;
  z-index: 5;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
}
.s-closing .together {
  font-family: var(--font-display);
  font-weight: var(--fw-display);
  font-size: clamp(48px, 5.4vw, 96px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--tytl-white);
}
.s-closing .together em {
  color: var(--tytl-lime);
  font-style: normal;
}
.s-closing .brand-row {
  display: flex; align-items: center; gap: 32px;
  font-family: var(--font-display);
  font-weight: var(--fw-display);
  font-size: 40px;
  letter-spacing: -0.01em;
}
.s-closing .brand-row .tytl-mark { height: 56px; width: auto; }
.s-closing .brand-row .aon-mark  { height: 50px; width: auto; transform: translateY(-6px); }
.s-closing .brand-row .x {
  color: rgba(255,255,255,0.4);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 24px;
}
.s-closing .brand-row .aon {
  color: var(--aon-red);
  font-size: 56px;
  letter-spacing: 0.02em;
}
.s-closing .closing-line {
  font-size: clamp(16px, 1.35vw, 22px);
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
  max-width: 720px;
  font-weight: 400;
}
.s-closing .signoff {
  display: flex; gap: 32px; margin-top: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.s-closing .signoff div b {
  display: block;
  color: var(--tytl-lime);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* Ambient particles - always behind everything */
.ambient {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

/* ---------- Tweaks panel will live in default position ---------- */

/* Hide scroll bars */
::-webkit-scrollbar { display: none; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .track { transition-duration: 400ms; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
}
