/* ─────────────────────────────────────────────────────────────
   OneWallet · Pitch Deck · Brand-aligned (onewallet.fr)
   ───────────────────────────────────────────────────────────── */

:root {
  /* Palette officielle OneWallet — light */
  --bg:           #fbfcfd;
  --bg-2:         #f2f5f7;
  --bg-3:         #e7ecf0;
  --cream:        #f2f4f6;

  --ink:          #14181f;
  --ink-2:        #17324d;          /* bleu nuit titres */
  --ink-3:        #1a2c45;
  --muted:        #5d6a72;
  --line:         rgba(20, 24, 31, 0.10);
  --line-soft:    rgba(20, 24, 31, 0.06);

  --accent:       #1a7f7a;          /* teal forêt — accent principal */
  --accent-2:     #2b8b7c;
  --accent-3:     #247d74;
  --positive:     #1a7f7a;
  --gold:         #e0a04f;          /* or chaud — accent secondaire */
  --gold-2:       #d5ae52;
  --negative:     #b54b3b;

  --brand-navy:   #0B1F3B;          /* bleu nuit du logo */
  --brand-teal:   #1F8A70;          /* vert du logo */
  --brand-gold:   #D5AE52;          /* or du logo */
  --brand-paper:  #F9FBFF;

  /* Gradients */
  --grad-cta:     linear-gradient(135deg, #17324d 0%, #244a70 58%, #2b8b7c 100%);
  --grad-cta-h:   linear-gradient(135deg, #11263c 0%, #1f4264 58%, #247d74 100%);
  --grad-hi:      linear-gradient(120deg, rgba(26,127,122,0.15), rgba(224,160,79,0.20));
  --grad-orbit-t: rgba(26, 127, 122, 0.14);
  --grad-orbit-g: rgba(224, 160, 79, 0.16);
  --grad-spot-t:  rgba(26, 127, 122, 0.12);
  --grad-spot-g:  rgba(224, 160, 79, 0.18);

  /* Glass / surfaces */
  --glass:        rgba(255, 255, 255, 0.78);
  --glass-strong: rgba(255, 255, 255, 0.92);
  --chip:         rgba(255, 255, 255, 0.85);
  --chip-shadow:  0 10px 24px rgba(18, 34, 52, 0.10);
  --soft-shadow:  0 18px 48px -22px rgba(18, 34, 52, 0.22);

  /* Typo */
  --display:  "DM Serif Display", "Times New Roman", serif;
  --body:     "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:     ui-monospace, "JetBrains Mono", "SF Mono", monospace;

  /* Métrique */
  --slide-w:  1440px;
  --slide-h:  810px;
  --pad-x:    96px;
  --pad-y:    72px;

  --radius-md: 16px;
  --radius-lg: 28px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #0B1117;
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
  height: 100vh;
}

body { display: grid; place-items: center; }

/* ─── DECK ──────────────────────────────────────── */
.deck {
  position: relative;
  width: var(--slide-w);
  height: var(--slide-h);
  max-width: 96vw;
  max-height: 96vh;
  aspect-ratio: 16 / 9;
}

.slide {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 12% 18%, var(--grad-orbit-t) 0%, transparent 60%),
    radial-gradient(50% 40% at 92% 14%, var(--grad-orbit-g) 0%, transparent 65%),
    radial-gradient(45% 38% at 80% 92%, var(--grad-spot-t) 0%, transparent 70%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  color: var(--ink);
  padding: var(--pad-y) var(--pad-x);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 480ms cubic-bezier(.4,0,.2,1),
              transform 600ms cubic-bezier(.4,0,.2,1);
  box-shadow:
    0 40px 100px -30px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  border-radius: 4px;
}

.slide.is-active { opacity: 1; pointer-events: auto; transform: translateY(0); }

.slide.is-active > .body > *,
.slide.is-active > .cover-body > * {
  animation: rise 700ms cubic-bezier(.2,.8,.2,1) both;
}
.slide.is-active .kicker  { animation-delay:  60ms; }
.slide.is-active .display { animation-delay: 140ms; }
.slide.is-active .lede    { animation-delay: 280ms; }

.slide.is-active .stat:nth-child(1),
.slide.is-active .pillar:nth-child(1),
.slide.is-active .features li:nth-child(1),
.slide.is-active .tl-item:nth-child(1),
.slide.is-active .price-card:nth-child(1),
.slide.is-active .trac-cell:nth-child(1),
.slide.is-active .member:nth-child(1) { animation-delay: 360ms; }

.slide.is-active .stat:nth-child(2),
.slide.is-active .pillar:nth-child(2),
.slide.is-active .features li:nth-child(2),
.slide.is-active .tl-item:nth-child(2),
.slide.is-active .price-card:nth-child(2),
.slide.is-active .trac-cell:nth-child(2),
.slide.is-active .member:nth-child(2) { animation-delay: 440ms; }

.slide.is-active .stat:nth-child(3),
.slide.is-active .pillar:nth-child(3),
.slide.is-active .features li:nth-child(3),
.slide.is-active .tl-item:nth-child(3),
.slide.is-active .price-card:nth-child(3),
.slide.is-active .trac-cell:nth-child(3),
.slide.is-active .member:nth-child(3) { animation-delay: 520ms; }

.slide.is-active .features li:nth-child(4),
.slide.is-active .trac-cell:nth-child(4) { animation-delay: 600ms; }
.slide.is-active .features li:nth-child(5) { animation-delay: 680ms; }

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── ORBITES (déco arrière-plan) ──────────────────────────────────────── */
.orbits {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.orbits::before, .orbits::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.85;
}
.orbits::before {
  width: 520px; height: 520px;
  top: -180px; left: -100px;
  background: radial-gradient(circle, rgba(26,127,122,0.32), transparent 70%);
}
.orbits::after {
  width: 460px; height: 460px;
  bottom: -160px; right: -120px;
  background: radial-gradient(circle, rgba(224,160,79,0.28), transparent 70%);
}

/* ─── META HEADER ──────────────────────────────────────── */
.meta {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-family: var(--body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.brand-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: none;
  letter-spacing: 0;
}
.brand-mark svg {
  width: 22px; height: 22px;
  border-radius: 6px;
  display: block;
}
.brand-mark .brand-name {
  font-family: var(--display);
  font-weight: 400;
  font-size: 16px;
  color: var(--ink-2);
  letter-spacing: -0.01em;
}
.meta-dot { color: var(--line); }
.meta-kind { color: var(--ink-2); font-weight: 600; }
.meta-spacer { flex: 1; }
.meta-date { color: var(--muted); font-feature-settings: "tnum"; }

/* ─── BODY & GRID ──────────────────────────────────────── */
.body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 0;
}
.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 56px;
  align-items: start;
}
.col-span-5 { grid-column: span 5; }
.col-span-6 { grid-column: span 6; }
.col-span-7 { grid-column: span 7; }

/* ─── KICKER (chip) ──────────────────────────────────────── */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(26, 127, 122, 0.08);
  border: 1px solid rgba(26, 127, 122, 0.22);
  padding: 6px 12px;
  border-radius: 100px;
  margin: 0 0 22px;
}
.kicker::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(26, 127, 122, 0.15);
}
.kicker.centered { margin: 0 auto 32px; }

/* ─── DISPLAY (titres) ──────────────────────────────────────── */
.display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.022em;
  line-height: 0.98;
  color: var(--ink-2);
  margin: 0 0 28px;
}
.display--xl { font-size: 124px; line-height: 0.94; }
.display--l  { font-size: 84px; }
.display--m  { font-size: 60px; }

.display em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.display .gold  { color: var(--gold-2); font-style: italic; }
.display .hot   { color: var(--negative); font-style: italic; }
.display .ital  { font-style: italic; }
.display .navy  { color: var(--brand-navy); }
.display.centered { text-align: center; }
.display .period {
  display: inline-block;
  width: 0.18em; height: 0.18em;
  border-radius: 50%;
  background: var(--accent);
  vertical-align: 0.05em;
  margin-left: 0.06em;
}

/* ─── LEDE ──────────────────────────────────────── */
.lede {
  font-family: var(--body);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink-3);
  max-width: 720px;
  margin: 0;
}
.lede--narrow { max-width: 480px; font-size: 19px; }
.lede em { font-style: italic; color: var(--accent); font-weight: 500; }
.lede .accent { color: var(--accent); font-weight: 600; }
.lede .gold   { color: var(--gold-2); font-weight: 600; }

/* ─── COVER ──────────────────────────────────────── */
.cover .cover-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.cover-rule {
  width: 64px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 28px;
}
.cover .display { margin-bottom: 36px; }
.cover .lede { font-size: 24px; max-width: 780px; color: var(--ink-2); }

.cover-foot {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 96px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.cover-foot-col { display: flex; flex-direction: column; gap: 6px; }
.cover-foot-col .label {
  font-family: var(--body);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.cover-foot-col .value {
  font-family: var(--display);
  font-size: 19px;
  color: var(--ink-2);
  letter-spacing: -0.01em;
}

/* ─── FOOT ──────────────────────────────────────── */
.foot {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-family: var(--body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.foot-mark {
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.foot-mark::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.foot-page { color: var(--ink-2); font-weight: 700; font-feature-settings: "tnum"; }

/* ─── STATS (slide 02) ──────────────────────────────────────── */
.stat-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stat {
  background: var(--glass);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--chip-shadow);
}
.stat-num {
  font-family: var(--display);
  font-weight: 400;
  font-size: 60px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink-2);
}
.stat-num .gold-tone { color: var(--gold-2); }
.stat-unit {
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  color: var(--accent);
  margin-top: 2px;
}
.stat-cap {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.45;
}
.stat-cap sup { color: var(--accent); font-weight: 600; }
.footnote {
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin: 4px 0 0;
}

/* ─── PILLARS (slide 03) ──────────────────────────────────────── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 56px 0 40px;
}
.pillar {
  background: var(--glass-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 28px 32px;
  position: relative;
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
}
.pillar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,127,122,0.05) 0%, transparent 30%);
  pointer-events: none;
}
.pillar-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--gold-2);
  position: relative;
}
.pillar-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 36px;
  letter-spacing: -0.02em;
  margin: 8px 0 14px;
  color: var(--ink-2);
  position: relative;
}
.pillar-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-3);
  margin: 0;
  position: relative;
}

/* ─── QUOTE ──────────────────────────────────────── */
.quote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink-2);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 22px 32px;
  background: var(--grad-hi);
  border-radius: var(--radius-md);
  border: 1px solid rgba(26,127,122,0.18);
}
.quote .accent { color: var(--accent); font-weight: 400; }

.slide[data-slide="03"] .body {
  padding: 18px 0 14px;
}
.slide[data-slide="03"] .kicker.centered {
  margin-bottom: 18px;
}
.slide[data-slide="03"] .display {
  font-size: 76px;
  margin-bottom: 18px;
}
.slide[data-slide="03"] .pillars {
  margin: 34px 0 24px;
}
.slide[data-slide="03"] .pillar {
  padding: 24px 24px 26px;
}
.slide[data-slide="03"] .pillar-title {
  font-size: 34px;
  margin-bottom: 10px;
}
.slide[data-slide="03"] .pillar-text {
  line-height: 1.48;
}
.slide[data-slide="03"] .quote {
  font-size: 21px;
  line-height: 1.35;
  padding: 16px 28px;
}

/* ─── PRODUCT FEATURES (slide 04) ──────────────────────────────────────── */
.features {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}
.features li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 4px 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.features li:last-child { border-bottom: 1px solid var(--line); }
.f-tag {
  grid-row: span 2;
  font-family: var(--body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent);
}
.f-name {
  font-family: var(--display);
  font-size: 19px;
  color: var(--ink-2);
  letter-spacing: -0.01em;
}
.f-desc {
  grid-column: 2;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* ─── MOCKUP ──────────────────────────────────────── */
.mock {
  background: linear-gradient(180deg, var(--brand-paper) 0%, #ffffff 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 30px 60px -30px rgba(11, 31, 59, 0.32),
    0 1px 0 rgba(255, 255, 255, 0.6) inset;
  position: relative;
}
.mock::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 80% 0%, rgba(26,127,122,0.07), transparent 60%);
  pointer-events: none;
}
.mock-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.6);
}
.mock-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(20,24,31,0.18);
}
.mock-url {
  margin-left: 14px;
  font-size: 11px;
  color: var(--muted);
  font-feature-settings: "tnum";
}
.mock-body { padding: 26px 28px 28px; position: relative; }
.mock-row.mock-head {
  display: flex; justify-content: space-between; align-items: baseline;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.mock-h-1 { color: var(--muted); }
.mock-h-2 {
  color: var(--accent);
  background: rgba(26, 127, 122, 0.08);
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(26, 127, 122, 0.20);
}
.mock-amount {
  font-family: var(--display);
  font-weight: 400;
  font-size: 64px;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 12px 0 18px;
  color: var(--ink-2);
}
.mock-cents {
  font-size: 32px;
  color: var(--muted);
  font-style: italic;
  vertical-align: super;
}
.mock-flow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.mock-flow-cell { display: flex; flex-direction: column; gap: 2px; }
.mock-flow-l {
  font-size: 11px;
  letter-spacing: 0.10em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 600;
}
.mock-flow-v {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.02em;
  font-feature-settings: "tnum";
}
.mock-flow-v.positive { color: var(--positive); }
.mock-flow-v.negative { color: var(--negative); }
.mock-chart svg { width: 100%; height: 110px; display: block; }
.mock-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}
.mock-cell {
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
}
.mock-cell:nth-child(odd)  { padding-right: 24px; }
.mock-cell:nth-child(even) { padding-left: 24px; border-left: 1px solid var(--line); }
.mock-cell-l { font-size: 12px; color: var(--muted); font-weight: 500; }
.mock-cell-v {
  font-family: var(--display);
  font-size: 16px;
  color: var(--ink-2);
  font-feature-settings: "tnum";
}
.mock-cell:nth-last-child(-n+2) { border-bottom: none; }

/* ─── TIMELINE (slide 05) ──────────────────────────────────────── */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.tl-item {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  position: relative;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--chip-shadow);
}
.tl-item::after {
  content: "";
  position: absolute;
  top: -1px; left: 24px; width: 36px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.tl-item:nth-child(2)::after { background: var(--gold-2); }
.tl-item:nth-child(3)::after { background: var(--brand-navy); }
.tl-year {
  font-family: var(--body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--accent);
  text-transform: uppercase;
}
.tl-item:nth-child(2) .tl-year { color: var(--gold-2); }
.tl-item:nth-child(3) .tl-year { color: var(--brand-navy); }
.tl-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.02em;
  margin: 14px 0 12px;
  color: var(--ink-2);
}
.tl-text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-3);
  margin: 0;
}

/* ─── MARKET (slide 06) ──────────────────────────────────────── */
.market {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 32px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--chip-shadow);
}
.market-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 20px;
  align-items: baseline;
  margin-bottom: 8px;
}
.market-tag {
  font-family: var(--body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
}
.market-num {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink-2);
}
.market-desc {
  grid-column: 2 / 4;
  font-size: 12px;
  color: var(--muted);
  margin-top: -6px;
}
.market-bar {
  height: 6px;
  background: var(--bg-3);
  border-radius: 6px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}
.market-bar span {
  display: block;
  height: 100%;
  background: var(--grad-cta);
  border-radius: 6px;
  transform-origin: left;
  animation: barfill 1.2s cubic-bezier(.4,0,.2,1) both;
  animation-delay: 600ms;
}
.market-row + .market-bar + .market-row + .market-bar span {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
}
.market-row + .market-bar + .market-row + .market-bar + .market-row + .market-bar span {
  background: linear-gradient(120deg, var(--gold-2), var(--gold));
}
@keyframes barfill {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* ─── PRICE FREE TIER (banner above grid) ──────────────────────────────────────── */
.price-free {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
  background: var(--glass-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px 28px;
  margin: 28px 0 16px;
  box-shadow: var(--chip-shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
}
.price-free-l { display: flex; flex-direction: column; gap: 4px; }
.price-free-flag {
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.price-free-amt {
  font-family: var(--display);
  font-style: italic;
  font-size: 36px;
  letter-spacing: -0.02em;
  color: var(--ink-2);
  line-height: 1;
}
.price-free-desc {
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-3);
  margin: 0;
}
.price-free-desc em {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}
.price-free-desc .accent { color: var(--accent); font-weight: 600; }

.price-blurb {
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0 0 4px;
}

/* ─── PRICING (slide 07) ──────────────────────────────────────── */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 16px 0 22px;
}
.price-card {
  background: var(--glass-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--chip-shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.price-card--feat {
  background:
    linear-gradient(180deg, rgba(26,127,122,0.06) 0%, rgba(255,255,255,0.94) 60%);
  border-color: rgba(26,127,122,0.32);
  box-shadow:
    0 24px 60px -24px rgba(26, 127, 122, 0.32),
    0 0 0 1px rgba(26, 127, 122, 0.18);
}
.price-flag {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--grad-cta);
  color: white;
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  box-shadow: 0 8px 18px rgba(23, 50, 77, 0.32);
}
.price-tier {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0;
  color: var(--gold-2);
}
.price-amt {
  font-family: var(--display);
  font-weight: 400;
  font-size: 52px;
  letter-spacing: -0.025em;
  color: var(--ink-2);
  line-height: 1;
}
.price-amt-mini { font-size: 12px; color: var(--muted); margin-top: 4px; }
.price-per {
  font-family: var(--body);
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  color: var(--muted);
  margin-left: 6px;
}
.price-list {
  list-style: none;
  padding: 0;
  margin: 4px 0;
  font-size: 13px;
  color: var(--ink-3);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.price-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}
.price-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}
.price-tag {
  margin-top: auto;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
}

.kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.kpi {
  padding-left: 24px;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.kpi:first-child { padding-left: 0; border-left: none; }
.kpi-l {
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.kpi-v {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink-2);
}

/* ─── TRACTION ──────────────────────────────────────── */
.traction {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 36px 0 28px;
}
.trac-cell {
  background: var(--glass-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: var(--chip-shadow);
}
.trac-num {
  font-family: var(--display);
  font-size: 56px;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--gold-2);
  line-height: 0.95;
}
.trac-l {
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-top: 6px;
}
.trac-c { font-size: 12px; color: var(--muted); line-height: 1.4; }
.placeholder-note {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-3);
  max-width: 800px;
  margin: 0;
  padding: 16px 22px;
  background: rgba(224, 160, 79, 0.10);
  border: 1px solid rgba(224, 160, 79, 0.32);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-md);
}

/* ─── MATRIX (slide 09) ──────────────────────────────────────── */
.matrix {
  position: relative;
  aspect-ratio: 1.2 / 1;
  background: var(--glass-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  margin-top: 16px;
  box-shadow: var(--chip-shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
}
.matrix::before, .matrix::after {
  content: "";
  position: absolute;
  background: var(--line);
}
.matrix::before { left: 50%; top: 24px; bottom: 24px; width: 1px; }
.matrix::after  { top: 50%; left: 24px; right: 24px; height: 1px; }
.matrix-axis {
  position: absolute;
  font-family: var(--body);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.matrix-y-top   { top: 14px; left: 50%; transform: translateX(-50%); }
.matrix-y-bot   { bottom: 14px; left: 50%; transform: translateX(-50%); }
.matrix-x-left  { left: 16px; top: 50%; transform: translateY(-50%) rotate(-90deg); transform-origin: left; }
.matrix-x-right { right: 16px; top: 50%; transform: translateY(-50%) rotate(-90deg); transform-origin: right; }
.dot {
  position: absolute;
  font-family: var(--display);
  font-size: 14px;
  color: var(--ink-2);
  padding: 6px 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 100px;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  box-shadow: var(--chip-shadow);
}
.dot::before {
  content: "";
  position: absolute;
  left: -4px; top: 50%;
  width: 8px; height: 8px;
  background: var(--muted);
  border-radius: 50%;
  transform: translateY(-50%);
  border: 2px solid white;
}
.dot.dot-self {
  background: var(--grad-cta);
  color: white;
  border-color: transparent;
  font-weight: 500;
  box-shadow: 0 14px 28px -8px rgba(23, 50, 77, 0.45);
}
.dot.dot-self::before { background: var(--gold); }

/* ─── TEAM ──────────────────────────────────────── */
.team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.team--duo {
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.member-meta {
  font-family: var(--body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.member-bio {
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 14px 0 0;
}
.member {
  background: var(--glass-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 28px;
  box-shadow: var(--chip-shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.member-init {
  font-family: var(--display);
  font-size: 18px;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: rgba(26, 127, 122, 0.10);
  border: 1px solid rgba(26, 127, 122, 0.28);
  border-radius: 50%;
  letter-spacing: 0.02em;
}
.member-name {
  font-family: var(--display);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--ink-2);
  margin: 16px 0 4px;
}
.member-role {
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
  color: var(--gold-2);
}

/* ─── USAGE / RAISE (slide 11) ──────────────────────────────────────── */
.amount-display {
  font-style: italic;
  color: var(--accent);
}
.usage-title {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 16px;
}
.usage {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 8px 22px;
  margin-bottom: 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.usage-row {
  display: grid;
  grid-template-columns: 200px 1fr 50px;
  gap: 20px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.usage-row:first-child { border-top: none; }
.usage-l {
  font-family: var(--display);
  font-size: 16px;
  color: var(--ink-2);
}
.usage-bar {
  height: 6px;
  background: var(--bg-3);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.usage-bar span {
  display: block;
  height: 100%;
  background: var(--grad-cta);
  border-radius: 6px;
  transform-origin: left;
  animation: barfill 1.1s cubic-bezier(.4,0,.2,1) both;
  animation-delay: 700ms;
}
.usage-row:nth-child(2) .usage-bar span { background: linear-gradient(120deg, var(--accent), var(--accent-2)); }
.usage-row:nth-child(3) .usage-bar span { background: linear-gradient(120deg, var(--gold-2), var(--gold)); }
.usage-row:nth-child(4) .usage-bar span { background: var(--negative); }
.usage-v {
  font-weight: 700;
  font-size: 12px;
  text-align: right;
  color: var(--ink-2);
  font-feature-settings: "tnum";
}

.milestones {
  list-style: none;
  padding: 0;
  margin: 0;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 8px 22px;
}
.milestones li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-3);
  align-items: baseline;
}
.milestones li:first-child { border-top: none; }
.milestones li span {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
}

/* ─── HUD ──────────────────────────────────────── */
.hud {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(11, 31, 59, 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 100px;
  padding: 8px 18px;
  z-index: 100;
  font-family: var(--body);
  font-weight: 500;
  font-size: 11px;
  color: rgba(242,245,247,0.7);
  letter-spacing: 0.10em;
  opacity: 0;
  transition: opacity 300ms;
  box-shadow: 0 18px 40px rgba(11, 31, 59, 0.45);
}
.hud.is-visible { opacity: 1; }
.hud-btn {
  background: transparent;
  border: none;
  color: rgba(242,245,247,0.85);
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 100px;
  transition: background 200ms, color 200ms;
}
.hud-btn:hover { background: rgba(255,255,255,0.10); color: white; }
.hud-counter { letter-spacing: 0.14em; font-feature-settings: "tnum"; }
.hud-sep { color: rgba(242,245,247,0.3); }

/* ─── OVERVIEW ──────────────────────────────────────── */
.overview {
  position: fixed;
  inset: 0;
  background: rgba(11, 31, 59, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 56px;
  overflow: auto;
}
.overview[hidden] { display: none; }
.overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  flex: 1;
}
.overview-thumb {
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(60% 50% at 12% 18%, rgba(26,127,122,0.20) 0%, transparent 60%),
    radial-gradient(50% 40% at 92% 14%, rgba(224,160,79,0.20) 0%, transparent 65%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 200ms, outline 200ms;
  outline: 2px solid transparent;
  outline-offset: 4px;
}
.overview-thumb:hover { transform: scale(1.02); outline-color: var(--accent); }
.overview-thumb-grain {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,127,122,0.04), rgba(224,160,79,0.04));
}
.overview-thumb-num {
  position: absolute;
  top: 14px; left: 16px;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--accent);
  z-index: 2;
}
.overview-thumb-title {
  position: absolute;
  bottom: 14px; left: 16px; right: 16px;
  font-family: var(--display);
  font-size: 15px;
  color: var(--ink-2);
  z-index: 2;
}
.overview-hint {
  text-align: center;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242,245,247,0.5);
  margin-top: 24px;
}

/* ─── TIP ──────────────────────────────────────── */
.tip {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 100;
  background: rgba(11, 31, 59, 0.86);
  color: rgba(242,245,247,0.7);
  font-family: var(--body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.06em;
  padding: 8px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: opacity 600ms 2s;
}
.tip span {
  color: white;
  background: rgba(255,255,255,0.12);
  padding: 1px 6px;
  border-radius: 4px;
  margin: 0 2px;
  font-weight: 600;
}
.tip.is-hidden { opacity: 0; pointer-events: none; }

/* ─── PRINT ──────────────────────────────────────── */
@media print {
  @page { size: 1440px 810px; margin: 0; }
  html, body { background: white; height: auto; overflow: visible; }
  .deck { width: 1440px; height: auto; max-width: none; max-height: none; aspect-ratio: auto; }
  .slide {
    position: relative;
    inset: auto;
    width: 1440px;
    height: 810px;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    page-break-after: always;
    box-shadow: none;
    animation: none !important;
  }
  .slide * { animation: none !important; }
  .hud, .tip, .overview { display: none !important; }
}

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1500px) {
  .deck { transform: scale(var(--scale, 1)); transform-origin: center; }
}
