/* ═══════════════════════════════════════════════════════════════
   VENEZIA — Marketing Strategy Deck 2026 · Styles
   ═══════════════════════════════════════════════════════════════ */

/* ── Design Tokens ───────────────────────────────────────── */
:root {
  --bg: #07090E;
  --bg2: #0C0F18;
  --surface: #111520;
  --surface2: #171C2C;
  --border: rgba(255, 255, 255, .07);
  --border2: rgba(255, 255, 255, .13);
  --text: #E8EBF4;
  --text-m: rgba(232, 235, 244, .55);
  --text-f: rgba(232, 235, 244, .25);
  --blue: #4D72FF;
  --blue2: #3A5AE0;
  --blue-g: rgba(77, 114, 255, .25);
  --green: #00C9A7;
  --red: #FF6B6B;
  --amber: #FFB347;
  --purple: #9B59B6;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  --topbar-h: 56px;
  --progress-h: 3px;
  --ease: cubic-bezier(.4, 0, .2, 1);
  --dur: .5s;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  height: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.6;
  overflow: hidden;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  user-select: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* ── Cursor glow ─────────────────────────────────────────── */
.cursor-glow {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(77, 114, 255, .06) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .4s;
}

/* ═══ DECK CHROME ═══════════════════════════════════════════ */
.deck-chrome {
  position: fixed;
  z-index: 100;
  inset: 0;
  pointer-events: none;
}

.deck-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--progress-h);
  background: rgba(255, 255, 255, .06);
}

.deck-progress__bar {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--blue2));
  width: 0;
  transition: width var(--dur) var(--ease);
}

.deck-topbar {
  position: absolute;
  top: var(--progress-h);
  left: 0;
  right: 0;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  pointer-events: auto;
  background: linear-gradient(180deg, rgba(7, 9, 14, .95) 0%, transparent 100%);
}

.deck-topbar__brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
  cursor: pointer;
  transition: opacity .3s var(--ease);
}

.deck-topbar__brand:hover {
  opacity: 0.7;
}

.deck-topbar__logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .18em;
}

.deck-topbar__logo-sub {
  font-size: 9px;
  letter-spacing: .14em;
  color: var(--text-m);
}

.deck-topbar__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-m);
}

.deck-topbar__sep {
  color: var(--text-f);
}



/* Side nav */
.deck-sidenav {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: auto;
}

.deck-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .1);
  transition: all .3s var(--ease);
}

.deck-dot:hover {
  background: rgba(255, 255, 255, .35);
  transform: scale(1.3);
}

.deck-dot.active {
  background: var(--dot-clr, var(--blue));
  border-color: var(--dot-clr, var(--blue));
  box-shadow: 0 0 10px var(--dot-clr, var(--blue-g));
  transform: scale(1.25);
}

/* Arrows */
.deck-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--border2);
  color: var(--text-m);
  display: grid;
  place-items: center;
  pointer-events: auto;
  transition: all .25s var(--ease);
}

.deck-arrow--prev {
  left: 20px;
}

.deck-arrow--next {
  right: 52px;
}

.deck-arrow:hover {
  background: rgba(255, 255, 255, .12);
  color: var(--text);
}

/* Block indicator */
.block-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-m);
}

.bi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.bi-sep {
  color: var(--text-f);
}

/* Keyboard hint */
.keyboard-hint {
  position: fixed;
  bottom: 24px;
  right: 72px;
  z-index: 101;
  font-size: 11px;
  color: var(--text-f);
  letter-spacing: .03em;
  transition: opacity 1s;
}

.keyboard-hint.hidden {
  opacity: 0;
}

kbd {
  padding: 1px 5px;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 3px;
  font-size: 10px;
  color: var(--text-m);
}

/* ═══ DECK + SLIDES ════════════════════════════════════════ */
.deck {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  padding-top: calc(var(--topbar-h) + var(--progress-h) + 8px);
  padding-bottom: 20px;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.slide.exit-left {
  opacity: 0;
  transform: translateX(-60px);
}

.slide.exit-right {
  opacity: 0;
  transform: translateX(60px);
}

.slide.enter-right {
  transform: translateX(60px);
}

.slide.enter-left {
  transform: translateX(-60px);
}

/* Background */
.slide__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.slide__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.25) saturate(.5);
}

.slide__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 9, 14, .97) 0%, rgba(7, 9, 14, .72) 50%, rgba(7, 9, 14, .92) 100%);
}

/* Content */
.slide__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  max-height: calc(100vh - var(--topbar-h) - var(--progress-h) - 28px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--surface2) transparent;
}

/* Animation for children */
.anim {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

.slide.active .anim {
  opacity: 1;
  transform: translateY(0);
}

.slide.active .anim[data-d="80"] {
  transition-delay: 80ms;
}

.slide.active .anim[data-d="120"] {
  transition-delay: 120ms;
}

.slide.active .anim[data-d="180"] {
  transition-delay: 180ms;
}

.slide.active .anim[data-d="200"] {
  transition-delay: 200ms;
}

.slide.active .anim[data-d="280"] {
  transition-delay: 280ms;
}

.slide.active .anim[data-d="320"] {
  transition-delay: 320ms;
}

.slide.active .anim[data-d="360"] {
  transition-delay: 360ms;
}

/* ═══ SLIDE HEADER ═════════════════════════════════════════ */
.slide__header {
  margin-bottom: 28px;
}

.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-m);
  margin-bottom: 14px;
}

.slide-tag__block {
  width: 8px;
  height: 8px;
  border-radius: 2px;
}

.slide-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 3.5vw, 42px);
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--text);
}

.slide-title i {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  color: var(--text-m);
}

/* ═══ COVER SLIDE ══════════════════════════════════════════ */
.slide--cover .slide__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - var(--topbar-h) - var(--progress-h));
  padding-top: 20px;
  padding-bottom: 40px;
}

.cover-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-m);
  margin-bottom: 24px;
}

.ew-line {
  width: 48px;
  height: 1px;
  background: var(--border2);
}

.ew-badge {
  padding: 3px 10px;
  border-radius: 4px;
  background: var(--blue);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
}

.cover-title {
  margin-bottom: 20px;
}

.t-serif {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.15;
  color: var(--text-m);
  display: block;
}

.t-bold {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5.5vw, 76px);
  line-height: 1.0;
  letter-spacing: -.04em;
  color: var(--text);
  display: block;
}

.t-italic {
  font-style: italic;
}

.cover-sub {
  font-size: clamp(13px, 1.3vw, 16px);
  color: var(--text-m);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 560px;
}

.cover-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

/* Cover nav — section jump buttons */
.cover-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  max-width: 540px;
  margin-bottom: 20px;
}

.cover-nav__btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-align: left;
  transition: all .3s var(--ease);
  cursor: pointer;
}

.cover-nav__btn:hover {
  background: rgba(77, 114, 255, .08);
  border-color: rgba(77, 114, 255, .3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .3), 0 0 20px rgba(77, 114, 255, .1);
}

.cover-nav__btn--full {
  grid-column: 1 / -1;
  background: rgba(77, 114, 255, .04);
  border-color: rgba(77, 114, 255, .2);
  margin-top: 4px;
}

.cover-nav__icon {
  font-size: 20px;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .06);
  border-radius: 8px;
}

.cover-nav__label {
  flex: 1;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: .01em;
}

.cover-nav__arrow {
  font-size: 14px;
  color: var(--text-f);
  transition: all .3s var(--ease);
}

.cover-nav__btn:hover .cover-nav__arrow {
  color: var(--blue);
  transform: translateX(3px);
}

.cover-note {
  font-size: 12px;
  color: var(--text-f);
  font-style: italic;
}

/* ═══ FINAL SLIDE ══════════════════════════════════════════ */
.slide--final .slide__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: calc(100vh - var(--topbar-h) - var(--progress-h));
}

.final-content {
  max-width: 800px;
}

.final-eyebrow {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-m);
  margin-bottom: 32px;
}

.final-title {
  margin-bottom: 40px;
}

.final-title .t-serif {
  font-size: clamp(22px, 3vw, 38px);
}

.final-title .t-bold {
  font-size: clamp(30px, 4.5vw, 60px);
}

.final-ctas {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  margin-bottom: 48px;
}

.final-brand {
  opacity: .4;
}

.final-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: .2em;
}

.final-sub {
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--text-f);
  margin-top: 4px;
}

/* ═══ BUTTONS ══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
  transition: all .3s var(--ease);
  cursor: pointer;
}

.btn--primary {
  background: var(--blue);
  color: #fff;
  border: 1px solid var(--blue);
}

.btn--primary:hover {
  background: var(--blue2);
  box-shadow: 0 0 40px var(--blue-g);
  transform: translateY(-1px);
}

.btn--secondary {
  background: var(--surface2);
  color: var(--text);
  border: 1px solid var(--border2);
}

.btn--secondary:hover {
  border-color: var(--text-m);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--text-m);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  border-color: var(--text-m);
  color: var(--text);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 14px;
}

/* ═══ TWO COLUMNS ══════════════════════════════════════════ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.col-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: all .3s var(--ease);
}

.col-card:hover {
  border-color: var(--border2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .3);
}

.col-card__icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.col-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.col-card h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.col-card ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.col-card li {
  font-size: 13px;
  color: var(--text-m);
  padding-left: 16px;
  position: relative;
}

.col-card li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

.col-card--green {
  border-color: rgba(0, 201, 167, .2);
}

.col-card--green h4 {
  color: var(--green);
}

.col-card--red {
  border-color: rgba(255, 107, 107, .2);
}

.col-card--red h4 {
  color: var(--red);
}

.col-card--accent {
  border-color: rgba(77, 114, 255, .2);
}

.col-card--accent h4 {
  color: var(--blue);
}

.col-card--accent2 {
  border-color: rgba(155, 89, 182, .2);
}

.col-card--accent2 h4 {
  color: var(--purple);
}

/* ═══ THREE CARDS ══════════════════════════════════════════ */
.three-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  transition: all .3s var(--ease);
}

.info-card:hover {
  border-color: var(--border2);
  transform: translateY(-2px);
}

.info-card__num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}

.info-card__label {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 6px;
}

.info-card h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.info-card p {
  font-size: 12px;
  color: var(--text-m);
  line-height: 1.5;
}

.info-card ul {
  margin-top: 6px;
}

.info-card li,
.form-fields li {
  font-size: 12px;
  color: var(--text-m);
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
}

.info-card--a {
  border-top: 2px solid var(--blue);
}

.info-card--b {
  border-top: 2px solid var(--green);
}

.info-card--c {
  border-top: 2px solid var(--amber);
}

/* ═══ FOUR PILLARS ═════════════════════════════════════════ */
.four-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.vp-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  transition: all .3s var(--ease);
}

.vp-card:hover {
  border-color: var(--border2);
  transform: translateY(-2px);
}

.vp-num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}

.vp-card h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.vp-card p {
  font-size: 12px;
  color: var(--text-m);
  line-height: 1.5;
}

/* ═══ INSIGHT BAR ══════════════════════════════════════════ */
.insight-bar {
  margin-top: 20px;
  padding: 14px 20px;
  background: rgba(77, 114, 255, .08);
  border: 1px solid rgba(77, 114, 255, .15);
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-m);
  line-height: 1.5;
}

/* ═══ MANIFEST ═════════════════════════════════════════════ */
.manifest-block {
  max-width: 800px;
}

.manifest-quote {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 300;
  line-height: 1.5;
  color: var(--text-m);
  border-left: 3px solid var(--blue);
  padding: 20px 0 20px 28px;
  margin-bottom: 24px;
}

.manifest-quote strong {
  color: var(--text);
  font-weight: 400;
}

.manifest-pillars {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.m-pill {
  padding: 8px 16px;
  border-radius: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-m);
}

/* ═══ ASSETS GRID ══════════════════════════════════════════ */
.assets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.asset-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all .3s var(--ease);
}

.asset-item:hover {
  transform: translateY(-2px);
  border-color: var(--border2);
}

.asset-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 10px;
}

.asset-item h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.asset-item p {
  font-size: 11px;
  color: var(--text-m);
  line-height: 1.4;
}

/* ═══ JOURNEY FLOW ═════════════════════════════════════════ */
.journey-flow {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.j-step {
  flex: 0 0 150px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  transition: all .3s var(--ease);
}

.j-step:hover {
  border-color: var(--border2);
  transform: translateY(-2px);
}

.j-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--blue);
  margin-bottom: 6px;
}

.j-step h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
}

.j-step p {
  font-size: 11px;
  color: var(--text-m);
  line-height: 1.4;
}

.j-arrow {
  color: var(--text-f);
  font-size: 20px;
  padding-top: 20px;
  flex-shrink: 0;
}

/* ═══ JTBD ═════════════════════════════════════════════════ */
.jtbd-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.jtbd-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 13px;
  color: var(--text-m);
}

.jtbd-check {
  color: var(--green);
  font-weight: 700;
  font-size: 14px;
}

/* ═══ AUDIT ════════════════════════════════════════════════ */
.audit-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.audit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-m);
}

.audit-status {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.audit-status.ok {
  background: rgba(0, 201, 167, .15);
  color: var(--green);
}

.audit-status.warn {
  background: rgba(255, 179, 71, .15);
  color: var(--amber);
}

/* ═══ STRENGTHS ════════════════════════════════════════════ */
.strengths-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.str-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
  text-align: center;
  transition: all .3s var(--ease);
}

.str-item:hover {
  transform: translateY(-2px);
  border-color: var(--border2);
}

.str-item span {
  font-size: 24px;
  display: block;
  margin-bottom: 8px;
}

.str-item h4 {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-m);
}

/* ═══ GROWTH LIST ══════════════════════════════════════════ */
.growth-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.growth-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all .3s var(--ease);
}

.growth-item:hover {
  border-color: var(--blue);
  transform: translateX(4px);
}

.g-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(77, 114, 255, .15);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.growth-item p {
  font-size: 13px;
  color: var(--text-m);
}

/* ═══ QUICK WINS ═══════════════════════════════════════════ */
.qw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.qw-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  transition: all .3s var(--ease);
}

.qw-item:hover {
  border-color: var(--green);
  transform: translateY(-2px);
}

.qw-time {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  background: rgba(0, 201, 167, .12);
  color: var(--green);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
  margin-bottom: 8px;
}

.qw-item p {
  font-size: 12px;
  color: var(--text-m);
  line-height: 1.4;
}

/* ═══ PHASES ROW ═══════════════════════════════════════════ */
.phases-row {
  display: flex;
  align-items: stretch;
  gap: 8px;
}

.phase-card {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  transition: all .3s var(--ease);
}

.phase-card:hover {
  transform: translateY(-2px);
  border-color: var(--border2);
}

.phase-num {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-f);
  margin-bottom: 4px;
}

.phase-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.phase-label {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 8px;
}

.phase-card p {
  font-size: 12px;
  color: var(--text-m);
  line-height: 1.4;
}

.phase-card--1 {
  border-top: 2px solid var(--blue);
}

.phase-card--1 .phase-label {
  color: var(--blue);
}

.phase-card--2 {
  border-top: 2px solid var(--green);
}

.phase-card--2 .phase-label {
  color: var(--green);
}

.phase-card--3 {
  border-top: 2px solid var(--purple);
}

.phase-card--3 .phase-label {
  color: var(--purple);
}

.phase-arrow {
  color: var(--text-f);
  font-size: 24px;
  display: flex;
  align-items: center;
}

/* ═══ MONTH TASKS ══════════════════════════════════════════ */
.month-tasks {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mt-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.mt-item span {
  font-size: 20px;
}

.mt-item p {
  font-size: 13px;
  color: var(--text-m);
}

/* ═══ FORMATS ROW ══════════════════════════════════════════ */
.formats-row,
.cta-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.format-tag {
  padding: 6px 14px;
  border-radius: 20px;
  background: var(--surface2);
  border: 1px solid var(--border);
  font-size: 11px;
  color: var(--text-m);
}

/* ═══ CHANNELS COMPACT ═════════════════════════════════════ */
.channels-compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.ch-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  transition: all .3s var(--ease);
}

.ch-item:hover {
  border-color: var(--border2);
  transform: translateY(-2px);
}

.ch-icon {
  font-size: 22px;
  margin-bottom: 6px;
  display: block;
}

.ch-item h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 3px;
}

.ch-item p {
  font-size: 11px;
  color: var(--text-m);
}

/* ═══ FUNNEL VERTICAL ══════════════════════════════════════ */
.funnel-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.fv-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  width: 100%;
  max-width: 600px;
  transition: all .3s var(--ease);
}

.fv-step:hover {
  border-color: var(--blue);
  transform: scale(1.02);
}

.fv-step--final {
  border-color: var(--green);
  background: rgba(0, 201, 167, .06);
}

.fv-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.fv-text {
  font-size: 13px;
  color: var(--text-m);
}

.fv-text strong {
  color: var(--text);
}

.fv-line {
  width: 2px;
  height: 16px;
  background: var(--border2);
}

/* ═══ IA GRID ══════════════════════════════════════════════ */
.ia-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.ia-item {
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 12px;
  color: var(--text-m);
  text-align: center;
  transition: all .3s var(--ease);
}

.ia-item:hover {
  border-color: var(--border2);
  transform: translateY(-1px);
}

.ia-item--hero {
  grid-column: span 4;
  background: var(--surface2);
  border-color: var(--border2);
  font-weight: 600;
  color: var(--text);
  font-size: 14px;
}

.ia-item--accent {
  border-color: rgba(77, 114, 255, .3);
  color: var(--blue);
}

.ia-item--accent2 {
  border-color: rgba(155, 89, 182, .3);
  color: var(--purple);
}

.ia-item--cta {
  grid-column: span 4;
  background: rgba(77, 114, 255, .08);
  border-color: rgba(77, 114, 255, .2);
  font-weight: 600;
  color: var(--blue);
}

/* ═══ TOV ══════════════════════════════════════════════════ */
.tov-principles {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 4px;
}

.tov-item {
  padding: 12px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-m);
  border-left: 3px solid var(--blue);
}

.tov-formula {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  margin-top: 8px;
}

/* ═══ KPI GRID ═════════════════════════════════════════════ */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.kpi-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}

.kpi-section h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}

.kpi-items {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.kpi-items span {
  font-size: 12px;
  color: var(--text-m);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

/* ═══ PRICING ══════════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  position: relative;
  transition: all .3s var(--ease);
}

.price-card:hover {
  transform: translateY(-3px);
  border-color: var(--border2);
}

.price-card--featured {
  border-color: var(--blue);
  background: rgba(77, 114, 255, .05);
}

.price-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px;
  background: var(--blue);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
  border-radius: 20px;
  text-transform: uppercase;
}

.price-tier {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 14px;
}

.price-card li {
  font-size: 12px;
  color: var(--text-m);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  padding-left: 14px;
  position: relative;
}

.price-card li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 11px;
}

/* ═══ RISKS TABLE ══════════════════════════════════════════ */
.risks-table {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-radius: 12px;
  overflow: hidden;
}

.risk-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.risk-row span {
  padding: 14px 18px;
  background: var(--surface);
  font-size: 13px;
  color: var(--text-m);
}

.risk-row--header span {
  background: var(--surface2);
  font-weight: 600;
  color: var(--text);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.risk-row:not(.risk-row--header) span:first-child {
  border-left: 2px solid var(--red);
}

.risk-row:not(.risk-row--header) span:last-child {
  border-left: 2px solid var(--green);
}

/* ═══ TOC OVERLAY ══════════════════════════════════════════ */
.toc-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(7, 9, 14, .85);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: all .3s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}

.toc-overlay.open {
  opacity: 1;
  visibility: visible;
}

.toc-panel {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 16px;
  padding: 32px;
  max-width: 700px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.toc-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 24px;
  color: var(--text-m);
}

.toc-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

.toc-block {
  margin-bottom: 16px;
}

.toc-block__title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  margin-bottom: 6px;
}

.toc-item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 12px;
  color: var(--text-m);
  transition: all .2s;
}

.toc-item:hover {
  background: rgba(255, 255, 255, .06);
  color: var(--text);
}

/* ═══ RESPONSIVE ═══════════════════════════════════════════ */
@media (max-width: 900px) {

  .two-col,
  .three-cards,
  .four-pillars,
  .assets-grid,
  .channels-compact,
  .kpi-grid,
  .pricing-grid,
  .strengths-grid,
  .qw-grid {
    grid-template-columns: 1fr 1fr;
  }

  .phases-row {
    flex-direction: column;
  }

  .phase-arrow {
    transform: rotate(90deg);
    align-self: center;
  }

  .ia-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ia-item--hero,
  .ia-item--cta {
    grid-column: span 2;
  }

  .deck-arrow--next {
    right: 20px;
  }

  .deck-sidenav {
    display: none;
  }

  .slide__content {
    padding: 0 24px;
  }
}

@media (max-width: 600px) {

  .two-col,
  .three-cards,
  .four-pillars,
  .assets-grid,
  .channels-compact,
  .kpi-grid,
  .pricing-grid,
  .strengths-grid,
  .qw-grid,
  .ia-grid {
    grid-template-columns: 1fr;
  }

  .ia-item--hero,
  .ia-item--cta {
    grid-column: span 1;
  }

  .journey-flow {
    flex-direction: column;
    align-items: stretch;
  }

  .j-arrow {
    transform: rotate(90deg);
    align-self: center;
    padding: 0;
  }

  .j-step {
    flex: none;
  }

  .cover-ctas {
    flex-direction: column;
  }

  .cover-nav {
    grid-template-columns: 1fr;
  }

  .deck-topbar__meta {
    display: none;
  }

  .slide__content {
    padding: 0 16px;
  }

  .keyboard-hint {
    display: none;
  }

  .deck-arrow {
    display: none;
    /* Mobile users swipe or tap edges */
  }

  .deck-topbar {
    padding: 0 16px;
  }

  .block-indicator {
    left: 16px;
    bottom: 16px;
  }

  .slide-title {
    font-size: 26px;
  }

  .t-bold {
    font-size: 32px;
  }

  .t-serif {
    font-size: 24px;
  }

  .cover-nav__icon {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }

  .cover-nav__btn {
    padding: 10px 12px;
  }
}