/* ════════════════════════════════════════════════════════════
   ZYGNALS · INVESTOR DECK — extra styles
   ════════════════════════════════════════════════════════════ */

/* ── INVESTOR COVER OVERRIDE (longer title) ─── */
.cover .cover__title { font-size: 132px; }
.cover .cb__k { font-size: 52px; }
.cover .cb__k i { font-size: 0.6em; }

/* ── RETURNS (Slide 14) ─────────────────────────── */
.returns {
  margin-top: 12px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
}
.returns__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 24px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}
.returns__head strong { color: var(--accent); font-weight: 600; }
.returns__horizon { color: var(--accent); }
.returns__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.ret {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 18px 22px;
  color: #fff;
}
.ret--mid {
  background: rgba(56,182,255,0.12);
  border-color: rgba(56,182,255,0.4);
}
.ret--peak {
  background: linear-gradient(160deg, rgba(56,182,255,0.18), rgba(56,182,255,0.06));
  border-color: rgba(56,182,255,0.5);
}
.ret__tag {
  font-size: 24px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
  display: block;
}
.ret__tag--good { color: var(--accent); }
.ret__amount {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--accent);
}
.ret__amount i { font-style: normal; font-size: 32px; font-weight: 600; }
.ret__val {
  font-size: 24px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 14px;
}
.ret__val strong { color: #fff; font-weight: 700; font-size: 28px; }
.ret p {
  font-size: 24px;
  color: rgba(255,255,255,0.65);
  line-height: 1.35;
  margin: 0;
}
.returns__note {
  font-size: 24px;
  color: rgba(255,255,255,0.45);
  text-align: center;
  margin-top: 10px;
  line-height: 1.3;
}

/* ── BILL STRIP (Slide 15) ──────────────────────── */
.bill-strip {
  margin-top: 10px;
  padding: 14px 20px;
  background: var(--ink);
  border-radius: 14px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.bill-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 50%, rgba(56,182,255,0.18), transparent 60%);
  pointer-events: none;
}
.bill-strip__head {
  font-size: 24px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
  position: relative;
}
.bill-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  position: relative;
}
.bill {
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
}
.bill--mid {
  background: rgba(56,182,255,0.08);
  border-color: rgba(56,182,255,0.3);
}
.bill--peak {
  background: linear-gradient(160deg, rgba(56,182,255,0.18), rgba(56,182,255,0.04));
  border-color: rgba(56,182,255,0.5);
}
.bill__tag {
  font-size: 24px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
  display: block;
}
.bill__tag--good { color: var(--accent); }
.bill__amt {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.bill__amt i { font-style: normal; font-size: 24px; font-weight: 500; opacity: 0.6; }
.bill__sub {
  font-size: 24px;
  color: rgba(255,255,255,0.45);
  line-height: 1.2;
}

/* ── STAT STACK ─────────────────────────────────── */
.stat-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stat-block {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 32px;
  display: grid;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.stat-block--ghost {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.stat-block--ghost::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(56,182,255,0.2), transparent 60%);
}
.stat-block__k {
  position: relative;
  font-size: 72px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-block__k--accent { color: var(--accent); }
.stat-block__l {
  position: relative;
  font-size: 24px;
  color: var(--ink-3);
}
.stat-block--ghost .stat-block__l { color: rgba(255,255,255,0.6); }

/* ── METRIC STACK (Modelo de negocio) ──────────── */
.metric-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.metric-block {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 32px;
  display: grid;
  gap: 8px;
}
.metric-block--accent {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  position: relative;
  overflow: hidden;
}
.metric-block--accent::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 30%, rgba(56,182,255,0.25), transparent 55%);
}
.metric-block__k {
  position: relative;
  font-size: 72px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}
.metric-block__k i { font-style: normal; color: var(--accent); font-weight: 500; }
.metric-block__l {
  position: relative;
  font-size: 24px;
  color: var(--ink-3);
}
.metric-block--accent .metric-block__l { color: var(--accent); }
.metric-block__d {
  position: relative;
  font-size: 24px;
  color: var(--ink-3);
  line-height: 1.4;
}
.metric-block--accent .metric-block__d { color: rgba(255,255,255,0.75); }

/* ── SOLUTION GRID ─────────────────────────────── */
.sol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.sol-grid article {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px;
  position: relative;
}
.sol__n {
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 24px;
  display: block;
}
.sol-grid h3 {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 12px;
}
.sol-grid p {
  font-size: 24px;
  color: var(--ink-3);
  line-height: 1.45;
  margin: 0;
}
.sol-grid p strong { color: var(--ink); font-weight: 600; }

/* ── PIPELINE ──────────────────────────────────── */
.pipeline {
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin-top: 32px;
}
.pipe {
  flex: 1;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 160px;
  justify-content: center;
}
.pipe--accent {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  position: relative;
  overflow: hidden;
}
.pipe--accent::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(56,182,255,0.2), transparent 60%);
}
.pipe__n {
  position: relative;
  font-size: 24px;
  color: var(--accent);
}
.pipe__t {
  position: relative;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.pipe__d {
  position: relative;
  font-size: 24px;
  color: var(--ink-3);
  line-height: 1.4;
}
.pipe--accent .pipe__d { color: rgba(255,255,255,0.7); }
.pipe__arrow {
  display: flex;
  align-items: center;
  color: var(--accent);
  font-size: 24px;
  font-weight: 300;
}

/* ── ECON GRID ─────────────────────────────────── */
.econ-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 12px 0 20px;
}
.econ {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px;
  position: relative;
  overflow: hidden;
}
.econ--accent {
  background: var(--accent-3);
  border-color: var(--accent);
}
.econ--dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.econ--ghost {
  background: #fff;
  border-style: dashed;
}
.econ__l {
  font-size: 24px;
  color: var(--ink-3);
  margin-bottom: 10px;
  display: block;
}
.econ--accent .econ__l { color: var(--accent-2); }
.econ--dark .econ__l { color: var(--accent); }
.econ__k {
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.econ__k i {
  font-style: normal;
  font-size: 24px;
  font-weight: 500;
  opacity: 0.5;
}
.econ--accent .econ__k i { color: var(--accent-2); opacity: 1; }
.econ__d {
  font-size: 24px;
  color: var(--ink-3);
  line-height: 1.4;
}
.econ--dark .econ__d { color: rgba(255,255,255,0.65); }
.econ--accent .econ__d { color: var(--accent-2); }

/* ── ECON TABLE ────────────────────────────────── */
.econ-table {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.econ-table__h, .econ-table__r {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 16px;
  align-items: baseline;
  padding: 10px 28px;
  font-size: 24px;
}
.econ-table__h {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  font-size: 24px;
}
.econ-table__h .num { text-align: right; }
.econ-table__r { border-top: 1px solid var(--line); }
.econ-table__r .num { text-align: right; font-variant-numeric: tabular-nums; font-weight: 500; }
.econ-table__r .muted { color: var(--ink-3); font-size: 24px; }
.econ-table__r--total {
  background: var(--accent-3);
  font-size: 24px;
}
.econ-table__r--total .muted { color: var(--accent-2); }

/* ── MOAT GRID ─────────────────────────────────── */
.moat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}
.moat-grid article {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px;
}
.moat__n {
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 18px;
  display: block;
}
.moat-grid h3 {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 14px;
}
.moat-grid p {
  font-size: 24px;
  color: var(--ink-3);
  line-height: 1.45;
  margin: 0;
}
.moat-grid p strong { color: var(--ink); font-weight: 600; }

/* ── VERT 4-COL OVERRIDE ───────────────────────── */
.vert-grid--4 {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* ── Y1 TABLE ──────────────────────────────────── */
.y1-table {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 24px;
}
.y1-table__h, .y1-table__r {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 14px 28px;
  font-size: 24px;
}
.y1-table__h {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  font-size: 24px;
}
.y1-table__h .num { text-align: right; }
.y1-table__r { border-top: 1px solid var(--line); }
.y1-table__r .num { text-align: right; font-variant-numeric: tabular-nums; }
.y1-table__r .accent { color: var(--accent); font-weight: 600; }
.y1-table__r--total {
  background: var(--accent-3);
  font-size: 24px;
}
.y1-table__r--total .accent { font-size: 26px; }

.y1-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.y1-summary > div {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.y1-summary > div .mono { font-size: 24px; color: var(--ink-3); }
.y1-summary > div strong {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}
.y1-summary--mid {
  background: var(--ink) !important;
  color: #fff;
  border-color: var(--ink) !important;
  position: relative;
  overflow: hidden;
}
.y1-summary--mid::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(56,182,255,0.25), transparent 60%);
}
.y1-summary--mid .mono { color: var(--accent) !important; position: relative; }
.y1-summary--mid strong { color: #fff; position: relative; }

/* ── WHY GRID 4-COL ────────────────────────────── */
.why-grid--4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.why-card--dark {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.08);
  color: #fff;
}
.why-card--dark h3 { color: #fff; }
.why-card--dark p { color: rgba(255,255,255,0.65); }
.why-card--dark p strong { color: #fff; }
.why-card--dark .why-card__n { color: var(--accent); }

/* ── TEAM GRID ─────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.team-grid--3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.team__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.team__avatar .mono { font-size: 24px; }
.team__role {
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 0;
}
.team h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
}
.team p {
  font-size: 24px;
  color: var(--ink-3);
  line-height: 1.35;
  margin: 0;
}
.team__contrib {
  font-size: 24px;
  color: var(--accent);
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  line-height: 1.4;
}

/* ── TERMS ROW ─────────────────────────────────── */
.terms-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.terms-row > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.terms-row span { font-size: 24px; color: rgba(255,255,255,0.5); }
.terms-row strong {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--accent);
  font-family: var(--font-display);
}

/* ── ASK STACK ─────────────────────────────────── */
.ask-stack { display: flex; flex-direction: column; gap: 16px; }
.ask {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 32px;
}
.ask__t {
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}
.ask p {
  font-size: 24px;
  color: rgba(255,255,255,0.8);
  line-height: 1.45;
  margin: 0;
}
.ask p strong { color: #fff; }

/* ── FUNDS ─────────────────────────────────────── */
.funds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 16px;
}
.fund {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 18px;
  align-items: center;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 18px;
}
.fund__pct {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  font-family: var(--font-display);
}
.fund__pct i { font-style: normal; color: var(--accent); font-weight: 500; }
.fund__t {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 2px;
  line-height: 1.2;
}
.fund__l { font-size: 24px; color: var(--ink-3); line-height: 1.25; }
.fund:last-child { grid-column: 1 / -1; }
.fund:last-child .fund__t { display: inline-block; margin-right: 12px; }
.fund__bar {
  height: 8px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.fund__bar span {
  display: block;
  height: 100%;
  width: var(--w, 0%);
  background: var(--accent);
  border-radius: 999px;
}

/* ── MILESTONES ────────────────────────────────── */
.milestones {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 32px;
  position: relative;
}
.milestones::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, var(--line) 50%, transparent 50%);
  background-size: 8px 1px;
}
.ms {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 24px 28px;
  position: relative;
  padding-top: 100px;
}
.ms::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 24px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--bg-soft), 0 0 0 5px var(--line);
}
.ms__when {
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
  position: absolute;
  top: 50px;
  left: 24px;
}
.ms h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0 0 10px;
}
.ms p {
  font-size: 24px;
  color: var(--ink-3);
  line-height: 1.4;
  margin: 0;
}
.ms--peak {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  position: relative;
  overflow: hidden;
}
.ms--peak h3 { color: #fff; }
.ms--peak p { color: rgba(255,255,255,0.7); }
.ms--peak::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 90%, rgba(56,182,255,0.3), transparent 60%);
  pointer-events: none;
}
.ms--peak::before { box-shadow: 0 0 0 4px var(--ink), 0 0 0 5px var(--accent); }

/* ── CTA SLIDE (Investor) ─────────────────────── */
.cta-meta {
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 24px;
}
