/* ============================================
   HeyMark 2.0 — Internal product deck
   Off-white / ink, amber→magenta accents only.
   Self-contained: no shared base import.
   ============================================ */

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

/* --- Tokens --- */
:root {
  --bg:        #fbfaf7;   /* off-white, brand background */
  --surface:   #ffffff;
  --ink:       #0e0e0e;
  --ink-2:     #5a5a5a;
  --ink-3:     #9a9a9a;
  --line:      rgba(14,14,14,0.08);
  --line-2:    rgba(14,14,14,0.14);

  --amber:     #ffa916;
  --magenta:   #ff0173;
  --gradient:  linear-gradient(90deg, #ffa916 0%, #ff0173 100%);
  --gradient-soft: linear-gradient(90deg, rgba(255,169,22,0.12), rgba(255,1,115,0.12));

  --font: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 1px 2px rgba(14,14,14,0.04), 0 8px 30px rgba(14,14,14,0.05);
  --shadow-lg: 0 18px 50px rgba(14,14,14,0.10);
  --header-h: 56px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  font-size: 17px;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }

/* --- Auth overlay (light) --- */
.auth-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(251,250,247,0.96);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
}
.auth-overlay.fade-out { opacity: 0; transition: opacity 0.4s; }
.auth-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 22px; padding: 3rem 2.5rem; text-align: center;
  box-shadow: var(--shadow-lg); max-width: 380px; width: 90%;
}
.auth-lock { width: 38px; height: 38px; color: var(--magenta); margin: 0 auto 1.2rem; }
.auth-title { font-size: 1.35rem; font-weight: 700; margin-bottom: 0.3rem; letter-spacing: -0.02em; }
.auth-subtitle { color: var(--ink-3); font-size: 0.9rem; margin-bottom: 1.5rem; }
.auth-form { display: flex; flex-direction: column; gap: 0.75rem; }
.auth-input {
  padding: 0.8rem 1rem; border-radius: 12px; border: 1px solid var(--line-2);
  background: var(--bg); font-family: var(--font); font-size: 0.95rem;
  outline: none; color: var(--ink); transition: border-color 0.2s;
}
.auth-input:focus { border-color: var(--magenta); }
.auth-submit {
  padding: 0.8rem; border: none; border-radius: 12px; cursor: pointer;
  background: var(--gradient); color: #fff; font-family: var(--font);
  font-weight: 600; font-size: 0.95rem; transition: transform 0.2s, filter 0.2s;
}
.auth-submit:hover { transform: translateY(-1px); filter: saturate(1.1); }
.auth-error { color: #e0142f; font-size: 0.82rem; opacity: 0; transition: opacity 0.3s; }
.auth-error.visible { opacity: 1; }

/* --- Header --- */
.deck-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200; height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 40px);
  background: rgba(251,250,247,0.72);
  backdrop-filter: blur(16px) saturate(1.4); -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--line);
}
.deck-header__brand { display: flex; align-items: center; gap: 0.6rem; }
.deck-header__logo-img { width: 24px; height: 24px; }
.deck-header__name { font-weight: 700; font-size: 0.92rem; letter-spacing: -0.01em; }
.deck-header__divider { width: 1px; height: 15px; background: var(--line-2); }
.deck-header__sub { font-size: 0.8rem; color: var(--ink-3); font-weight: 500; }
.deck-header__back {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.8rem; color: var(--ink-2); font-weight: 500;
  padding: 0.4rem 0.75rem; border-radius: 9px; border: 1px solid var(--line);
  transition: all 0.2s; text-decoration: none; background: var(--surface);
}
.deck-header__back:hover { color: var(--ink); border-color: var(--line-2); }
.deck-header__back svg { width: 14px; height: 14px; }
@media (max-width: 600px) { .deck-header__sub, .deck-header__divider { display: none; } }

/* --- Slide shell --- */
.slide {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--header-h) + clamp(32px, 6vh, 64px)) clamp(24px, 5vw, 72px) clamp(40px, 7vh, 72px);
  position: relative;
}
.slide:nth-child(even) { background: var(--surface); }
.slide__inner { width: 100%; max-width: 1080px; margin: 0 auto; }
.slide--wide .slide__inner { max-width: 1180px; }
.slide--center { text-align: center; }
.slide--center .slide__inner { display: flex; flex-direction: column; align-items: center; }

/* slide index kicker */
.kicker {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em;
  color: var(--ink-3); margin-bottom: 1.4rem; font-variant-numeric: tabular-nums;
}
.kicker b {
  background: var(--gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text; font-weight: 700;
}

/* --- Typography --- */
.s-title {
  font-size: clamp(2.1rem, 4.6vw, 3.5rem); font-weight: 700;
  line-height: 1.04; letter-spacing: -0.03em; color: var(--ink);
}
.s-title--xl { font-size: clamp(3rem, 8vw, 6rem); }
.s-lead {
  font-size: clamp(1.05rem, 1.7vw, 1.3rem); line-height: 1.55;
  color: var(--ink-2); max-width: 720px; margin-top: 1.2rem;
}
.slide--center .s-lead { margin-left: auto; margin-right: auto; }
.s-lead strong { color: var(--ink); font-weight: 600; }
.grad {
  background: var(--gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}

/* --- Chips (keyword pills) --- */
.chip-row { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1.6rem; }
.slide--center .chip-row { justify-content: center; }
.chip {
  font-size: 0.82rem; font-weight: 500; color: var(--ink-2);
  padding: 0.42rem 0.95rem; border-radius: 100px;
  border: 1px solid var(--line-2); background: var(--surface);
}
.chip--accent {
  color: var(--ink); border-color: transparent;
  background: var(--gradient-soft);
}

/* --- Logo wall (aligned, monochrome) --- */
.logo-wall {
  display: grid; gap: 0.9rem; margin: 2.4rem auto 0;
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
  max-width: 940px;
}
.logo-wall--tight { max-width: 820px; }
.logo-cell {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 14px; box-shadow: var(--shadow);
  height: 92px; display: flex; align-items: center; justify-content: center;
  padding: 1rem; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.logo-cell:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--line-2); }
.logo-cell img {
  max-height: 34px; max-width: 78%; width: auto; object-fit: contain;
  opacity: 0.86; filter: saturate(0);
}
.logo-cell__word {
  font-size: 1.02rem; font-weight: 600; letter-spacing: -0.01em; color: var(--ink);
}
.logo-cell__word span { color: var(--ink-3); font-weight: 500; }

/* --- Split layout (left/right) --- */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center; margin-top: 2.4rem;
}
.split--text-left { grid-template-columns: 1.05fr 1fr; }
.split__head { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 1rem; }
.split__caption { font-size: 0.9rem; color: var(--ink-2); margin-top: 1rem; line-height: 1.5; }
@media (max-width: 820px) { .split, .split--text-left { grid-template-columns: 1fr; } }

/* --- Mockup frames (placeholders for user assets) --- */
.frame {
  background: var(--surface); border: 1px solid var(--line-2);
  border-radius: 14px; box-shadow: var(--shadow-lg); overflow: hidden;
}
.frame__bar {
  height: 34px; display: flex; align-items: center; gap: 7px;
  padding: 0 14px; border-bottom: 1px solid var(--line); background: var(--bg);
}
.frame__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--line-2); }
.frame__body { position: relative; }
.frame--browser .frame__body { aspect-ratio: 16 / 9.4; }
.frame--portrait .frame__body { aspect-ratio: 3 / 4; }
.frame--square .frame__body { aspect-ratio: 1 / 1; }

/* placeholder fill inside frames / standalone */
.ph {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem; text-align: center; padding: 1.2rem;
  background:
    repeating-linear-gradient(135deg, rgba(14,14,14,0.014) 0 14px, transparent 14px 28px),
    var(--bg);
}
.ph__icon { color: var(--ink-3); opacity: 0.7; }
.ph__icon svg { width: 30px; height: 30px; }
.ph__label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em; color: var(--ink-2); text-transform: uppercase; }
.ph__file {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.64rem;
  color: var(--ink-3); background: rgba(14,14,14,0.04); padding: 0.15rem 0.5rem; border-radius: 5px;
}
.ph--accent { background:
    repeating-linear-gradient(135deg, rgba(255,1,115,0.03) 0 14px, transparent 14px 28px),
    var(--bg); }
.ph--accent .ph__icon { color: var(--magenta); opacity: 0.6; }

/* drop-in asset image: covers the placeholder when the file exists, removed via onerror when missing */
.asset { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; z-index: 1; background: var(--surface); }

/* standalone placeholder (no frame) */
.ph-box { position: relative; border: 1px dashed var(--line-2); border-radius: 14px; overflow: hidden; }
.ph-box.frame--portrait, .ph-box.frame--browser, .ph-box.frame--square { /* uses aspect via modifier below */ }
.ph-box--portrait { aspect-ratio: 3 / 4; }
.ph-box--browser { aspect-ratio: 16 / 9.4; }
.ph-box--wide { aspect-ratio: 16 / 6; }

/* --- Topic graph (slide 4) — all nodes equal, neutral --- */
.graph {
  position: relative; width: 100%; max-width: 640px;
  aspect-ratio: 1 / 0.72; margin: 2.6rem auto 0;
}
.graph__edges {
  position: absolute; inset: 0; width: 100%; height: 100%;
  overflow: visible; pointer-events: none;
}
.graph__edges line {
  stroke: rgba(14,14,14,0.16); stroke-width: 1.3;
  vector-effect: non-scaling-stroke;
}
.gnode {
  position: absolute; transform: translate(-50%, -50%);
  padding: 0.6rem 1.05rem; border-radius: 11px;
  border: 1px solid var(--line-2); background: var(--surface); color: var(--ink);
  font-size: 0.86rem; font-weight: 500; white-space: nowrap;
  box-shadow: var(--shadow); z-index: 2;
}
@media (max-width: 600px) {
  .graph { max-width: 340px; aspect-ratio: 1 / 1; }
  .gnode { font-size: 0.72rem; padding: 0.45rem 0.7rem; }
}

/* --- 2x2 matrix (slide 10) --- */
.matrix-wrap { position: relative; width: 100%; max-width: 540px; margin: 2rem auto 1.9rem; }
.matrix {
  position: relative; aspect-ratio: 1 / 0.62;
  border-left: 2px solid var(--line-2); border-bottom: 2px solid var(--line-2);
}
.matrix::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: var(--line); }
.matrix::after  { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--line); }

.m-ylabel {
  position: absolute; left: -1.45rem; writing-mode: vertical-rl; transform: rotate(180deg);
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-3); white-space: nowrap;
}
.m-ylabel--high { top: 0; }
.m-ylabel--low  { bottom: 0; }
.m-xlabel {
  position: absolute; bottom: -1.75rem; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3);
}
.m-xlabel--low  { left: 0; }
.m-xlabel--high { right: 0; }

.m-pt {
  position: absolute; transform: translate(-50%, 50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.35rem;
  text-align: center; width: max-content; z-index: 2;
}
.m-pt__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--ink-3); }
.m-pt span { font-size: 0.78rem; font-weight: 600; color: var(--ink-2); max-width: 130px; line-height: 1.2; }
.m-pt--hm { z-index: 3; }
.m-pt--hm .m-pt__dot {
  width: 20px; height: 20px; background: var(--gradient);
  box-shadow: 0 0 0 6px rgba(255,1,115,0.12), 0 8px 24px rgba(255,1,115,0.3);
}
.m-pt--hm span { color: var(--ink); font-weight: 700; font-size: 0.95rem; }
@media (max-width: 600px) { .matrix-wrap { max-width: 380px; } .m-pt span { font-size: 0.7rem; } }

/* --- Timeline (slide 13) --- */
.timeline {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.75rem;
  margin: 2.6rem auto 0; width: 100%; max-width: 1080px; position: relative;
}
.timeline::before {
  content: ''; position: absolute; top: 22px; left: 8%; right: 8%; height: 2px;
  background: var(--line-2);
}
.tphase { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; z-index: 1; }
.tphase__dot {
  width: 44px; height: 44px; border-radius: 50%; background: var(--surface);
  border: 2px solid var(--line-2); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.95rem; color: var(--ink-2); margin-bottom: 0.85rem; box-shadow: var(--shadow);
}
.tphase--final .tphase__dot { background: var(--gradient); color: #fff; border-color: transparent; box-shadow: 0 8px 22px rgba(255,1,115,0.28); }
.tphase__name { font-size: 0.9rem; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
.tphase__num { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 0.2rem; }
@media (max-width: 760px) {
  .timeline { grid-template-columns: 1fr 1fr; gap: 1.4rem 0.75rem; }
  .timeline::before { display: none; }
}

/* --- Callout / note --- */
.note {
  max-width: 820px; margin: 1.8rem auto 0; text-align: left;
  background: var(--surface); border: 1px solid var(--line);
  border-left: 3px solid var(--magenta); border-radius: 0 12px 12px 0;
  padding: 1rem 1.25rem; font-size: 0.9rem; color: var(--ink-2); line-height: 1.55;
}
.note strong { color: var(--ink); font-weight: 600; }

/* --- Plan (3 pasos) --- */
.plan { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; margin: 2.8rem auto 0; max-width: 940px; }
.plan-card { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); padding: 1.8rem 1.5rem; text-align: left; }
.plan-card__n { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: var(--gradient); color: #fff; font-weight: 700; font-size: 1rem; margin-bottom: 1.1rem; }
.plan-card p { font-size: 1.08rem; font-weight: 500; color: var(--ink); line-height: 1.4; }
@media (max-width: 760px) { .plan { grid-template-columns: 1fr; max-width: 440px; } }

/* --- Revenue bars (tamaño de mercado) --- */
.bars { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1rem; }
.bar { display: grid; grid-template-columns: 108px 1fr 58px; align-items: center; gap: 0.7rem; }
.bar__name { font-size: 0.82rem; font-weight: 600; color: var(--ink); text-align: right; white-space: nowrap; }
.bar__track { height: 15px; background: rgba(14,14,14,0.05); border-radius: 8px; overflow: hidden; }
.bar__fill { display: block; height: 100%; background: var(--ink-2); border-radius: 8px; min-width: 5px; }
.bar--lead .bar__fill { background: var(--gradient); }
.bar__val { font-size: 0.78rem; font-weight: 600; color: var(--ink-2); white-space: nowrap; }

/* --- Pricing cards (tamaño de mercado) --- */
.price-cards { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 1rem; }
.price-card { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); padding: 1.1rem 1.25rem; }
.price-card__tag { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 0.45rem; }
.price-card__amt { font-size: 1.5rem; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }
.price-card__amt span { font-size: 0.88rem; font-weight: 500; color: var(--ink-3); }
.price-card p { font-size: 0.85rem; color: var(--ink-2); margin-top: 0.3rem; line-height: 1.45; }

/* --- Capability list (slide 12) --- */
.caps { display: flex; flex-direction: column; gap: 0.7rem; margin-top: 0.5rem; }
.cap { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.95rem; color: var(--ink-2); line-height: 1.45; }
.cap__mk { flex: 0 0 auto; width: 8px; height: 8px; border-radius: 50%; background: var(--gradient); margin-top: 0.5rem; }
.cap strong { color: var(--ink); font-weight: 600; }

/* --- Hero logo --- */
.hero-logo { width: clamp(110px, 16vw, 168px); height: auto; margin-bottom: 2rem; }

/* --- Feature cloud (slide 3) --- */
.cloud { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-top: 1.6rem; max-width: 720px; }
.cloud .chip { color: var(--ink-3); border-color: var(--line); }

/* --- Mark avatar (slide 12) --- */
.mark-badge {
  display: inline-flex; align-items: center; gap: 0.6rem; margin-top: 1.2rem;
  padding: 0.5rem 0.9rem 0.5rem 0.5rem; border-radius: 100px;
  background: var(--surface); border: 1px solid var(--line-2); box-shadow: var(--shadow);
}
.mark-badge img { width: 30px; height: 30px; }
.mark-badge span { font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.mark-badge span b { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* --- Two-col grid helper (slide 7) --- */
.cols2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.2rem, 3vw, 2.5rem); margin-top: 2.2rem; align-items: start; }
@media (max-width: 820px) { .cols2 { grid-template-columns: 1fr; } }
.col-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 1rem; }

/* reveal helper for GSAP */
.reveal { will-change: transform, opacity; }

@media (max-width: 600px) {
  body { font-size: 16px; }
  .logo-cell { height: 78px; }
  /* override inline fixed-column walls so nothing overflows on phones */
  .logo-wall { grid-template-columns: repeat(2, 1fr) !important; max-width: 100% !important; justify-content: stretch !important; }
  .logo-cell__word { font-size: 0.84rem !important; }
  .cols2, .col-stack { grid-template-columns: 1fr !important; }
  .col-stack { grid-template-columns: 1fr 1fr !important; }
}

/* ============================================================
   VC deck — components added on top of the heymark-2-0 system
   ============================================================ */

/* --- Hero footer (pie) --- */
.hero-foot { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); margin-top: 2rem; }

/* --- Slide 2 · Team / founders --- */
.seal-row { display: flex; justify-content: center; margin: 1.6rem 0 0; }
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin: 2.4rem auto 0; max-width: 1000px; width: 100%; }
.founder { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); padding: 2rem 1.6rem 1.8rem; text-align: center; transition: transform 0.25s, box-shadow 0.25s; }
.founder:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.founder__photo { width: 116px; height: 116px; border-radius: 50%; object-fit: cover; margin: 0 auto 1.1rem; border: 3px solid var(--surface); box-shadow: 0 6px 20px rgba(14,14,14,0.14); }
.founder__name { font-size: 1.18rem; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); }
.founder__role { display: inline-block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; margin: 0.45rem 0 0.85rem; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.founder__note { font-size: 0.92rem; color: var(--ink-2); line-height: 1.45; }
.founder__note b { color: var(--ink); font-weight: 600; }
.team-extra { display: flex; align-items: center; justify-content: center; gap: 0.85rem; flex-wrap: wrap; margin-top: 3.6rem; font-size: 0.9rem; color: var(--ink-2); }
.team-extra b { color: var(--ink); font-weight: 600; }
.team-extra__avatars { display: flex; }
.team-extra__avatars img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; border: 2px solid var(--bg); margin-left: -9px; box-shadow: var(--shadow); }
.team-extra__avatars img:first-child { margin-left: 0; }
@media (max-width: 820px) { .team { grid-template-columns: 1fr; max-width: 400px; } }

/* --- Slide 3 · Big data band --- */
.databand { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin: 3rem auto 0; max-width: 1000px; width: 100%; }
.db { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); padding: 2rem 1.1rem; text-align: center; }
.db__num {
  font-size: clamp(2.3rem, 5vw, 3.5rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  font-variant-numeric: tabular-nums;
}
.db__label { font-size: 0.84rem; font-weight: 600; color: var(--ink-2); margin-top: 0.75rem; }
@media (max-width: 760px) { .databand { grid-template-columns: 1fr 1fr; } }

/* --- Slide 4 · Quadrant hover cards + market strip --- */
.matrix-wrap--lg { max-width: 600px; margin-top: 1.5rem; }
.m-pt--int { cursor: pointer; }
.m-pt--int .m-pt__dot { transition: transform 0.2s, box-shadow 0.2s; }
.m-pt--int:hover .m-pt__dot { transform: scale(1.35); box-shadow: 0 0 0 6px rgba(14,14,14,0.06); }
.m-pt__card {
  position: absolute; bottom: calc(100% + 13px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: 212px; background: var(--surface); border: 1px solid var(--line-2);
  border-radius: 12px; box-shadow: var(--shadow-lg); padding: 0.85rem 0.95rem; text-align: left;
  opacity: 0; pointer-events: none; transition: opacity 0.2s, transform 0.2s; z-index: 30;
}
.m-pt--int:hover, .m-pt--int:focus-within { z-index: 50; }
.m-pt--int:hover .m-pt__card, .m-pt--int:focus-within .m-pt__card { opacity: 1; transform: translateX(-50%) translateY(0); }
.m-pt--hm .m-pt__card { bottom: auto; top: calc(100% + 13px); transform: translateX(-50%) translateY(-6px); }
.m-pt--hm:hover .m-pt__card, .m-pt--hm:focus-within .m-pt__card { transform: translateX(-50%) translateY(0); }
.m-pt__arr { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); }
.m-pt__arr small { display: block; font-size: 0.62rem; font-weight: 700; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.15rem; }
.m-pt__desc { font-size: 0.78rem; color: var(--ink-2); line-height: 1.42; margin-top: 0.45rem; }
.m-pt__zone { font-size: 0.64rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--magenta); margin-top: 0.55rem; }
/* Postiz — el competidor más cercano: punto más marcado (tinta) */
.m-pt--postiz .m-pt__dot { width: 13px; height: 13px; background: var(--ink); }
.m-pt--postiz span { color: var(--ink); font-weight: 700; }
.mstat-row { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(1.6rem, 6vw, 4rem); margin: 1.9rem auto 0; }
.mstat { text-align: center; }
.mstat__val { font-size: clamp(1.9rem, 4.2vw, 3rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.mstat__label { font-size: 0.82rem; font-weight: 600; color: var(--ink-2); margin-top: 0.5rem; }

/* --- Slide 5 · Linear precedent + moat tiles --- */
.linear-mark { display: inline-flex; align-items: center; gap: 0.7rem; margin: 0.4rem auto 1.5rem; }
.linear-mark img { width: clamp(40px, 7vw, 58px); height: auto; }
.linear-mark span { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; letter-spacing: -0.03em; color: var(--ink); }
/* Linear precedent — logo solo (cuadrado), sin wordmark de texto */
.linear-logo { width: clamp(60px, 9vw, 80px); margin: 0.6rem auto 0; }
.linear-logo img { width: 100%; height: auto; display: block; }
/* Linear — logo inline, al lado del texto del título */
.linear-title { display: flex; align-items: center; justify-content: center; gap: 0.55rem; flex-wrap: wrap; }
.linear-title img { width: clamp(1.9rem, 4vw, 3rem); height: auto; position: relative; top: 0.02em; }
.linear-stat { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; }
.linear-stat .grad { font-weight: 700; }
.linear-sub { font-size: 0.92rem; color: var(--ink-2); margin-top: 0.7rem; }
.linear-sub b { color: var(--ink); font-weight: 600; }
.moat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; max-width: 720px; width: 100%; margin: 2.4rem auto 0; }
.moat-tile { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); padding: 1.5rem 1.1rem; text-align: center; }
.moat-tile__icon { width: 32px; height: 32px; margin: 0 auto 0.7rem; color: var(--magenta); }
.moat-tile__icon svg { width: 100%; height: 100%; }
.moat-tile__name { font-size: 0.98rem; font-weight: 700; color: var(--ink); }
.moat-tile__desc { font-size: 0.8rem; color: var(--ink-2); margin-top: 0.3rem; line-height: 1.4; }
@media (max-width: 640px) { .moat-row { grid-template-columns: 1fr; max-width: 340px; } }

/* --- Slide 6 · Focus pivot (drop vs focus) --- */
.pivot { display: grid; grid-template-columns: 1fr auto 1fr; gap: clamp(0.9rem, 2.5vw, 2rem); align-items: center; margin-top: 2.6rem; }
.pivot-col { border-radius: 18px; padding: 1.8rem 1.6rem; }
.pivot-col--drop { background: transparent; border: 1px dashed var(--line-2); }
.pivot-col--focus { background: var(--gradient-soft); border: 1px solid transparent; box-shadow: var(--shadow); }
.pivot-col__head { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1.2rem; }
.pivot-col--drop .pivot-col__head { color: var(--ink-3); }
.pivot-col--focus .pivot-col__head { color: var(--magenta); }
.pivot-list { display: flex; flex-direction: column; gap: 0.75rem; }
.pivot-item { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.95rem; line-height: 1.4; }
.pivot-item__mk { flex: 0 0 auto; width: 17px; height: 17px; margin-top: 0.12rem; }
.pivot-col--drop .pivot-item { color: var(--ink-3); }
.pivot-col--drop .pivot-item span { text-decoration: line-through; text-decoration-color: var(--line-2); }
.pivot-col--drop .pivot-item__mk { color: var(--ink-3); opacity: 0.6; }
.pivot-col--focus .pivot-item { color: var(--ink); font-weight: 500; }
.pivot-col--focus .pivot-item__mk { color: var(--magenta); }
.pivot-arrow { display: flex; align-items: center; justify-content: center; color: var(--magenta); }
.pivot-arrow svg { width: 42px; height: 42px; }
@media (max-width: 820px) { .pivot { grid-template-columns: 1fr; } .pivot-arrow { transform: rotate(90deg); margin: 0.2rem 0; } }

/* --- Slide 7 · Pricing band (horizontal) --- */
.price-cards--row { flex-direction: row; gap: 1rem; }
.price-cards--row .price-card { flex: 1; }
@media (max-width: 600px) { .price-cards--row { flex-direction: column; } }

/* --- Slide 8 · El modelo (tentativo) --- */
.model-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; max-width: 700px; width: 100%; margin: 2.8rem auto 0; }
.model-card { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); padding: 2.1rem 1.6rem; text-align: center; }
.model-card__tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); }
.model-card__amt { font-size: clamp(2.2rem, 4.6vw, 3rem); font-weight: 700; letter-spacing: -0.03em; color: var(--ink); line-height: 1; margin-top: 0.8rem; }
.model-card__amt span { font-size: 0.88rem; font-weight: 500; color: var(--ink-3); margin-left: 0.25rem; letter-spacing: 0; }
.model-card__desc { font-size: 0.9rem; color: var(--ink-2); margin-top: 0.75rem; line-height: 1.45; }
.model-margin { margin: 1.9rem auto 0; font-size: clamp(1.05rem, 2vw, 1.35rem); font-weight: 600; color: var(--ink); }
.model-margin .grad { font-weight: 700; }
@media (max-width: 600px) { .model-cards { grid-template-columns: 1fr; max-width: 340px; } }

/* Slide 9 · plan — mismas cards que el modelo, en 3 columnas + nota de cierre */
.model-cards--3 { grid-template-columns: repeat(3, 1fr); max-width: 860px; }
.model-note { margin: 2rem auto 0; max-width: 820px; font-size: clamp(0.95rem, 1.7vw, 1.15rem); color: var(--ink-2); line-height: 1.55; }
.model-note strong { color: var(--ink); font-weight: 600; }
.model-note .grad { font-weight: 700; }
@media (max-width: 640px) { .model-cards--3 { grid-template-columns: 1fr; max-width: 340px; } }

/* --- Slide 8 · Use of funds --- */
.funds { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; margin: 1.8rem auto 0; max-width: 960px; width: 100%; }
.fund-card { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); padding: 1.6rem 1.4rem; text-align: left; }
.fund-card__icon { width: 30px; height: 30px; color: var(--magenta); margin-bottom: 0.85rem; }
.fund-card__icon svg { width: 100%; height: 100%; }
.fund-card__name { font-size: 1.02rem; font-weight: 700; color: var(--ink); }
.fund-card__desc { font-size: 0.86rem; color: var(--ink-2); margin-top: 0.35rem; line-height: 1.45; }
@media (max-width: 760px) { .funds { grid-template-columns: 1fr; max-width: 440px; } }

/* --- Mobile fixes for VC components --- */
@media (max-width: 600px) {
  .matrix-wrap--lg { max-width: 100%; }
  .m-pt span { font-size: 0.64rem; max-width: 90px; }
  .m-pt__card { width: 168px; }
  .mstat-row { gap: 1.4rem; }
  .linear-mark span { font-size: 2rem; }
}
