/* ══════════════════════════════════════════════
   Digital Anchor Force — 2050 Investor Portal
   White + Orange · Futuristic Minimal
   ══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ── DESIGN TOKENS ───────────────────────── */
:root {
  --orange:       #F97316;
  --orange-d:     #EA580C;
  --orange-dd:    #C2410C;
  --orange-lg:    #FFF7ED;
  --orange-mid:   #FFEDD5;
  --orange-a:     rgba(249,115,22,0.12);

  --blue:         #2563EB;
  --blue-lg:      #EFF6FF;
  --green:        #16A34A;
  --green-lg:     #F0FDF4;
  --purple:       #9333EA;
  --purple-lg:    #FAF5FF;
  --gold:         #D97706;
  --gold-lg:      #FFFBEB;

  --white:        #FFFFFF;
  --bg:           #F9FAFB;
  --surface:      #FFFFFF;
  --border:       rgba(0,0,0,0.06);
  --border-mid:   rgba(0,0,0,0.1);

  --txt:          #0F172A;
  --txt-2:        #334155;
  --txt-3:        #64748B;
  --txt-4:        #94A3B8;

  --wa:           #25D366;
  --wa-d:         #128C7E;

  /* shadows — layered for depth */
  --sh-xs: 0 1px 2px rgba(0,0,0,0.04);
  --sh-sm: 0 2px 8px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --sh-md: 0 4px 16px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.05);
  --sh-lg: 0 12px 32px rgba(0,0,0,0.09), 0 4px 8px rgba(0,0,0,0.06);
  --sh-xl: 0 24px 48px rgba(0,0,0,0.11), 0 8px 16px rgba(0,0,0,0.07);

  --nav-pill-h: 72px;
  --header-h:   56px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;
  --r-2xl: 36px;
  --trans: cubic-bezier(0.76, 0, 0.24, 1);
}

/* ── RESET ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { height: 100%; -webkit-tap-highlight-color: transparent; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--txt);
  height: 100%;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
strong { font-weight: 700; }
button { font-family: inherit; }

/* ── AURORA BACKGROUND ────────────────────── */
.aurora {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0; overflow: hidden;
}

.aurora-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: drift 12s ease-in-out infinite;
}

.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(37,99,235,0.06) 0%, transparent 70%);
  bottom: 100px; left: -80px;
  animation-delay: -4s;
}

.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(249,115,22,0.05) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -8s;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -20px) scale(1.05); }
  66%       { transform: translate(-20px, 15px) scale(0.97); }
}

/* DOT GRID */
.dot-grid {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(0,0,0,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

/* ── PROGRESS BAR ─────────────────────────── */
.progress-bar {
  position: fixed; top: var(--header-h); left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-d));
  width: 20%; /* 1/5 */
  transition: width 0.55s var(--trans);
  z-index: 500;
  box-shadow: 0 0 8px rgba(249,115,22,0.5);
}

/* ── HEADER ──────────────────────────────── */
.top-bar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 16px; z-index: 400;
  box-shadow: var(--sh-sm);
}

.top-brand { display: flex; align-items: center; gap: 10px; }

.brand-logo-img {
  width: 36px; height: 36px;
  object-fit: contain;
  border-radius: 10px;
}

.brand-logo-fallback {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--orange), var(--orange-d));
  border-radius: 10px;
  display: none; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size:10px;
}

.brand-words { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-size: 13px; font-weight: 700; color: var(--txt); letter-spacing: -0.01em; }
.brand-tag { font-size: 10px; color: var(--txt-3); font-weight: 500; }

.wa-top-btn {
  display: flex; align-items: center; gap: 7px;
  background: var(--wa);
  color: white; padding: 8px 14px; border-radius: 50px;
  font-size: 13px; font-weight: 700; text-decoration: none;
  box-shadow: 0 4px 14px rgba(37,211,102,0.35);
  transition: all 0.25s ease; white-space: nowrap;
}
.wa-top-btn:hover { background: var(--wa-d); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,211,102,0.45); }
.wa-icon { width: 18px; height: 18px; flex-shrink: 0; }
.wa-btn-label { display: none; }
@media (min-width: 480px) { .wa-btn-label { display: inline; } }

/* ── DECK & SLIDES ───────────────────────────── */
.deck {
  position: fixed;
  top: var(--header-h);
  bottom: calc(var(--nav-pill-h) + 20px);
  left: 0; right: 0; z-index: 1;
  overflow: hidden;
}

.slide {
  position: absolute; inset: 0;
  overflow-y: auto; overflow-x: hidden;
  background: transparent;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.6s var(--trans), opacity 0.45s ease;
  will-change: transform, opacity;
  -webkit-overflow-scrolling: touch;
}

.slide.active { transform: translateX(0); opacity: 1; }
.slide.exit-left { transform: translateX(-25%); opacity: 0; }

.slide-inner {
  position: relative; z-index: 2;
  padding: 18px 16px 28px;
  max-width: 1100px; margin: 0 auto;
  min-height: 100%;
  display: flex; flex-direction: column; gap: 16px;
}

/* ── SECTION HEADER ──────────────────────── */
.section-head { display: flex; flex-direction: column; gap: 4px; }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 6px;
}
.section-eyebrow svg { flex-shrink: 0; stroke: var(--orange); }

.section-h2 {
  font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(26px, 6vw, 38px);
  font-weight: 700; letter-spacing: -0.02em; color: var(--txt);
}

.section-p { font-size: 16px; color: var(--txt-3); font-weight: 500; }

/* ── GLASS / NEO CARDS ───────────────────── */
.neo-card {
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-xl);
  padding: 22px 18px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--sh-md);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.neo-card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-2px);
}

.card-label-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 16px; font-weight: 700; color: var(--txt);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}
.card-icon { width: 20px; height: 20px; flex-shrink: 0; stroke: var(--orange); }

/* ── GRAD TEXT ───────────────────────────── */
.grad-text {
  background: linear-gradient(135deg, var(--orange), var(--orange-d));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── ANIMATED SPIN IN ────────────────────── */
.spin-in {
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  transition: opacity 0.55s ease var(--sd, 0s), transform 0.55s var(--trans) var(--sd, 0s);
}
.slide.active .spin-in { opacity: 1; transform: translateY(0) scale(1); }

/* ── CTA GLOW BUTTON ─────────────────────── */
.cta-glow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px;
  background: linear-gradient(135deg, var(--orange), var(--orange-d));
  color: white; border: none; border-radius: 50px;
  font-family: inherit; font-size: 14px; font-weight: 700;
  cursor: pointer; transition: all 0.3s ease;
  box-shadow: 0 6px 24px rgba(249,115,22,0.38);
  width: fit-content; position: relative; overflow: hidden;
}
.cta-glow::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.25), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.cta-glow:hover::before { opacity: 1; }
.cta-glow:hover { box-shadow: 0 10px 32px rgba(249,115,22,0.52); transform: translateY(-2px); }
.cta-glow:active { transform: translateY(0); }


/* ══════════════════════════════════════════════
   SLIDE 1 — BENTO GRID
   ══════════════════════════════════════════════ */

.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 12px;
}

/* Hero tile takes full width on mobile */
.tile-hero {
  grid-column: 1 / -1;
  display: flex; flex-direction: column; gap: 14px;
}

.tile-sm { display: flex; flex-direction: column; gap: 8px; }
.tile-addr { display: flex; align-items: flex-start; gap: 12px; grid-column: 1 / -1; }
.tile-rate { grid-column: 1 / -1; }
.tile-stats { grid-column: 1 / -1; }
.tile-certified { }

/* TILE STYLES */
.bento-tile {
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-xl);
  padding: 20px 18px;
  backdrop-filter: blur(14px);
  box-shadow: var(--sh-md);
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.bento-tile:hover { box-shadow: var(--sh-lg); transform: translateY(-2px); border-color: rgba(249,115,22,0.2); }

.tile-eyebrow {
  display: flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 6px;
}
.eyebrow-icon { width: 14px; height: 14px; stroke: var(--orange); }

.tile-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 700; line-height: 1.0;
  letter-spacing: -0.03em; color: var(--txt);
}

.tile-lead { font-size: 14px; color: var(--txt-2); line-height: 1.6; }
.tile-lead strong { color: var(--txt); }

/* ICON WRAP */
.tile-icon-wrap {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--ic) 12%, white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tile-icon-wrap svg { width: 20px; height: 20px; stroke: var(--ic); }

.tile-mini-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--txt-4);
}
.tile-mini-val { font-size: 14px; font-weight: 700; color: var(--txt); line-height: 1.4; }
.tile-green { color: var(--green) !important; }

/* Rate tile */
.rate-label-sm { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; }
.rate-formula {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
}
.rate-formula svg { stroke: var(--txt-3); }
.rate-from, .rate-to { font-size: clamp(20px, 4vw, 28px); font-weight: 700; color: var(--txt); }
.rate-to { color: var(--orange-d); }
.rate-unit { font-size: 11px; font-weight: 600; color: var(--txt-3); margin-left: 2px; }

/* Cert tile ring */
.cert-ring {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(22,163,74,0.1), rgba(22,163,74,0.05));
  border: 2px solid rgba(22,163,74,0.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 6px;
}
.cert-ring svg { width: 22px; height: 22px; stroke: var(--green); }

/* Stats strip */
.tile-stats {
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--orange-d), var(--orange));
  border: none;
  padding: 16px;
}
.stat-chip { flex: 1; text-align: center; }
.stat-n {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(18px, 4vw, 24px); font-weight: 700; color: white;
}
.stat-l { font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 0.04em; margin-top: 2px; }
.stat-sep { width: 1px; background: rgba(255,255,255,0.2); align-self: stretch; margin: 4px 0; }


/* ══════════════════════════════════════════════
   SLIDE 2 — CALCULATOR
   ══════════════════════════════════════════════ */

.calc-two-col {
  display: flex; flex-direction: column; gap: 14px;
}

/* Slider */
.slider-block { display: flex; flex-direction: column; gap: 10px; }
.slider-top-row { display: flex; justify-content: space-between; align-items: center; }
.slider-label {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; color: var(--txt-2);
}
.slider-label svg { stroke: var(--orange); }
.slider-readout { font-size: 14px; font-weight: 800; color: var(--orange); font-family: 'Space Grotesk', sans-serif; }

.slider-wrap { position: relative; height: 22px; display: flex; align-items: center; }

.neo-slider {
  -webkit-appearance: none;
  width: 100%; height: 5px;
  border-radius: 3px;
  background: #E5E7EB;
  outline: none; cursor: pointer; border: none;
  position: relative; z-index: 2;
}
.neo-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-d));
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(249,115,22,0.45), 0 0 0 4px rgba(249,115,22,0.12);
  border: 3px solid white;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.neo-slider::-webkit-slider-thumb:active {
  transform: scale(1.25);
  box-shadow: 0 4px 16px rgba(249,115,22,0.6), 0 0 0 8px rgba(249,115,22,0.12);
}
.neo-slider::-moz-range-thumb {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--orange); border: 3px solid white;
  box-shadow: 0 2px 8px rgba(249,115,22,0.45);
  cursor: pointer;
}

.slider-bounds { display: flex; justify-content: space-between; }
.bound-pill {
  font-size: 10px; font-weight: 700;
  background: var(--orange-mid); color: var(--orange-d);
  padding: 2px 8px; border-radius: 50px;
}
.bound-max { font-size: 10px; color: var(--txt-4); font-weight: 600; padding-top: 3px; }

/* Info pills */
.info-pill-row { display: flex; gap: 8px; flex-wrap: wrap; }
.info-pill {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 12px; border-radius: 50px;
  font-size: 12px; font-weight: 600;
}
.info-pill svg { flex-shrink: 0; }
.blue-pill { background: var(--blue-lg); color: var(--blue); border: 1px solid rgba(37,99,235,0.15); }
.blue-pill svg { stroke: var(--blue); }
.orange-pill { background: var(--orange-lg); color: var(--orange-d); border: 1px solid rgba(249,115,22,0.2); }
.orange-pill svg { stroke: var(--orange-d); }

/* Payback alert */
.payback-alert {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px;
  background: var(--orange-lg);
  border: 1.5px solid rgba(249,115,22,0.2);
  border-radius: var(--r-md);
}
.alert-icon-col {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--orange), var(--orange-d));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.alert-svg { width: 18px; height: 18px; stroke: white; }
.alert-title { font-size: 13px; font-weight: 700; color: var(--orange-d); margin-bottom: 4px; }
.alert-body p { font-size: 12px; color: var(--txt-2); line-height: 1.5; }
.alert-body p em { color: var(--orange-d); font-style: normal; font-weight: 700; }

/* Output card */
.output-neo { background: #F8FFFA !important; border-color: rgba(22,163,74,0.15) !important; }

/* Equity Ring */
.equity-ring-wrap {
  display: flex; justify-content: center; align-items: center;
  position: relative; height: 130px; margin: 4px auto;
}
.eq-ring-svg { width: 120px; height: 120px; transform: rotate(-90deg); }
.eq-fill { transition: stroke-dashoffset 0.7s var(--trans); }
.eq-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px;
}
.eq-pct {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px; font-weight: 700; color: var(--orange-d);
  transition: all 0.3s ease;
}
.eq-label { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--txt-4); }

/* Output rows */
.out-rows { display: flex; flex-direction: column; gap: 2px; }
.out-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}
.out-row:last-of-type { border-bottom: none; }

.highlight-out {
  background: var(--green-lg);
  border-radius: var(--r-md);
  padding: 12px 12px;
  margin: 4px -4px;
  border: 1.5px solid rgba(22,163,74,0.2) !important;
  border-bottom: 1.5px solid rgba(22,163,74,0.2) !important;
}

.out-row-left { display: flex; align-items: flex-start; gap: 10px; flex: 1; }
.out-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 4px; }
.out-title { font-size: 12px; font-weight: 700; color: var(--txt-2); }
.out-formula { font-size: 10px; color: var(--txt-4); font-family: 'Space Grotesk', monospace; margin-top: 2px; }

.out-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(14px, 3.5vw, 18px); font-weight: 700;
  white-space: nowrap; transition: all 0.3s ease;
}
.blue-amt   { color: var(--blue); }
.purple-amt { color: var(--purple); }
.green-amt  { color: var(--green); font-size: clamp(16px, 4vw, 20px); }

/* Recovery */
.recovery-block { display: flex; flex-direction: column; gap: 6px; margin-top: 4px; }
.rec-header { display: flex; justify-content: space-between; font-size: 12px; font-weight: 700; color: var(--txt-2); }
.rec-pct { color: var(--orange); }
.rec-bar { height: 7px; border-radius: 4px; background: #E5E7EB; overflow: hidden; }
.rec-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--orange), var(--orange-d)); transition: width 0.6s var(--trans); box-shadow: 0 0 8px rgba(249,115,22,0.4); }
.rec-note { font-size: 11px; color: var(--txt-4); }

/* WA CTA full */
.wa-cta-full {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px; border-radius: var(--r-lg);
  background: var(--wa); color: white;
  font-size: 13px; font-weight: 700; text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
  line-height: 1.3; text-align: center;
}
.wa-cta-full:hover { background: var(--wa-d); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,211,102,0.4); }
.wa-cta-full svg { flex-shrink: 0; }


/* ══════════════════════════════════════════════
   SLIDE 3 — PARTNERSHIP
   ══════════════════════════════════════════════ */

.deal-grid {
  display: flex; flex-direction: column; gap: 12px;
}

.deal-card {
  background: rgba(255,255,255,0.92);
  border: 1.5px solid var(--border-mid);
  border-radius: var(--r-xl);
  padding: 20px 18px;
  box-shadow: var(--sh-md);
  display: flex; flex-direction: column; gap: 12px;
  transition: all 0.3s ease;
}
.deal-card:hover { box-shadow: var(--sh-lg); transform: translateY(-2px); }
.deal-op { border-color: rgba(249,115,22,0.2); background: rgba(255,250,245,0.95); }
.deal-cap { border-color: rgba(37,99,235,0.15); background: rgba(248,250,255,0.95); }

.deal-badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 13px; border-radius: 50px;
  font-size: 11px; font-weight: 700; width: fit-content;
}
.op-badge { background: var(--orange-mid); color: var(--orange-d); border: 1px solid rgba(249,115,22,0.25); }
.op-badge svg { stroke: var(--orange-d); }
.cap-badge { background: var(--blue-lg); color: var(--blue); border: 1px solid rgba(37,99,235,0.2); }
.cap-badge svg { stroke: var(--blue); }

.deal-avatar {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--orange-lg), var(--orange-mid));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid rgba(249,115,22,0.2);
}
.deal-avatar svg { width: 24px; height: 24px; stroke: var(--orange-d); }
.deal-cap-avatar { background: linear-gradient(135deg, var(--blue-lg), rgba(219,234,254,0.8)); border-color: rgba(37,99,235,0.15); }
.deal-cap-avatar svg { stroke: var(--blue); }

.deal-name { font-size: 17px; font-weight: 800; color: var(--txt); letter-spacing: -0.01em; }
.deal-role { font-size: 12px; color: var(--txt-3); font-weight: 600; }

.deal-items { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.deal-items li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--txt-2); line-height: 1.5;
}
.deal-items li svg { flex-shrink: 0; margin-top: 1px; stroke: var(--orange); width: 16px; height: 16px; }
.deal-cap .deal-items li svg { stroke: var(--blue); }
.deal-items li span { font-size: 11px; color: var(--txt-3); display: block; }

/* Salary box */
.salary-box {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px;
  background: var(--orange-lg);
  border: 1.5px solid rgba(249,115,22,0.25);
  border-radius: var(--r-md);
  font-size: 13px;
}
.salary-box svg { flex-shrink: 0; stroke: var(--orange); width: 16px; height: 16px; margin-top: 2px; }
.salary-box strong { display: block; font-size: 13px; color: var(--orange-d); font-weight: 700; }
.salary-box span { font-size: 11px; color: var(--txt-3); margin-top: 2px; display: block; }

/* Security box */
.security-box {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px;
  background: var(--green-lg);
  border: 1.5px solid rgba(22,163,74,0.2);
  border-radius: var(--r-md);
  font-size: 13px;
}
.security-box svg { flex-shrink: 0; stroke: var(--green); width: 16px; height: 16px; margin-top: 2px; }
.security-box strong { display: block; color: var(--green); font-weight: 700; }
.security-box span { font-size: 11px; color: var(--txt-3); margin-top: 2px; display: block; }

/* Equity gauge */
.equity-gauge {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-size: 14px; font-weight: 800; color: var(--orange-d);
  font-family: 'Space Grotesk', sans-serif;
}
.cap-gauge { color: var(--blue); }
.gauge-bar {
  flex: 1; height: 6px; border-radius: 3px; background: #E5E7EB; overflow: hidden;
  position: relative;
}
.gauge-bar::after {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0;
  width: var(--gw);
  background: linear-gradient(90deg, var(--orange), var(--orange-d));
  border-radius: 3px;
  box-shadow: 0 0 6px rgba(249,115,22,0.4);
}
.cap-bar::after { background: linear-gradient(90deg, var(--blue), #1E40AF); box-shadow: 0 0 6px rgba(37,99,235,0.35); }

/* Timeline */
.deal-timeline {
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-xl);
  padding: 18px 16px;
  box-shadow: var(--sh-md);
  display: flex; flex-direction: column; gap: 16px;
}
.tl-line { height: 2px; background: linear-gradient(90deg, var(--orange), var(--blue)); border-radius: 1px; }
.tl-phases { display: flex; flex-direction: column; gap: 12px; }
.tl-phase { display: flex; align-items: flex-start; gap: 12px; }
.phase-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0; margin-top: 4px;
  box-shadow: 0 0 0 3px rgba(249,115,22,0.2);
}
.phase-dot-green { background: var(--green); box-shadow: 0 0 0 3px rgba(22,163,74,0.2); }
.phase-title { font-size: 13px; font-weight: 700; color: var(--txt); }
.phase-desc { font-size: 12px; color: var(--txt-3); line-height: 1.4; margin-top: 2px; }


/* ══════════════════════════════════════════════
   SLIDE 4 — FOUNDER
   ══════════════════════════════════════════════ */

.founder-neo-grid {
  display: flex; flex-direction: column; gap: 14px;
}

.founder-neo-card {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 12px;
}

.founder-photo-frame {
  position: relative; width: 100px; height: 100px;
}

.photo-ring-anim {
  position: absolute; inset: -4px;
  border-radius: 50%;
  background: conic-gradient(var(--orange) 0deg, var(--orange-d) 120deg, transparent 120deg);
  animation: ring-spin 4s linear infinite;
}
@keyframes ring-spin { to { transform: rotate(360deg); } }

.founder-photo {
  position: relative; z-index: 1;
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover; object-position: center top;
  border: 3px solid white;
}

.founder-initials-fall {
  position: absolute; inset: 3px; z-index: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-d));
  display: none; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 800; color: white;
}

.founder-live-badge {
  position: absolute; bottom: 2px; right: -6px; z-index: 2;
  display: flex; align-items: center; gap: 4px;
  background: white; border: 1px solid var(--border-mid);
  padding: 3px 8px; border-radius: 50px;
  font-size: 10px; font-weight: 700; color: var(--green);
  box-shadow: var(--sh-sm);
  white-space: nowrap;
}

.founder-name-neo { font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 700; color: var(--txt); letter-spacing: -0.01em; }
.founder-title-neo { font-size: 12px; color: var(--orange); font-weight: 600; }
.founder-company-neo { font-size: 11px; color: var(--txt-4); }

.founder-badges-row { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; width: 100%; }

.f-badge-chip {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 50px;
  font-size: 12px; font-weight: 700;
  background: var(--orange-lg); color: var(--orange-d);
  border: 1px solid rgba(249,115,22,0.2);
  text-decoration: none; transition: all 0.2s ease;
}
.f-badge-chip svg { stroke: var(--orange-d); flex-shrink: 0; }
.f-badge-wa {
  background: var(--wa); color: white;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(37,211,102,0.3);
  cursor: pointer;
}
.f-badge-wa:hover { background: var(--wa-d); }
.f-badge-wa svg { fill: white; }

.founder-metrics {
  display: flex; align-items: center; width: 100%;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 12px;
}
.fm-item { flex: 1; text-align: center; }
.fm-val { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 700; color: var(--orange); }
.fm-key { font-size: 10px; color: var(--txt-4); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.fm-div { width: 1px; background: var(--border-mid); align-self: stretch; margin: 2px 0; }

.founder-right-col { display: flex; flex-direction: column; gap: 12px; }

/* Certifications */
.cert-row {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 11px; border-radius: var(--r-md);
  background: var(--bg); border: 1px solid var(--border);
  transition: all 0.2s ease; margin-bottom: 8px;
}
.cert-row:last-child { margin-bottom: 0; }
.cert-row:hover { border-color: var(--orange); transform: translateY(-1px); box-shadow: var(--sh-sm); }

.cert-icon-bg {
  width: 42px; height: 42px;
  border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.cert-dev { background: var(--blue-lg); }
.cert-dev svg { stroke: var(--blue); }
.cert-mkt { background: var(--orange-lg); }
.cert-mkt svg { stroke: var(--orange-d); }

.cert-body { flex: 1; }
.cert-title-text { font-size: 13px; font-weight: 700; color: var(--txt); }
.cert-issuer-text { font-size: 11px; color: var(--txt-3); margin-top: 3px; }

.cert-verified {
  display: flex; align-items: center; gap: 4px;
  padding: 4px 10px; border-radius: 50px;
  font-size: 10px; font-weight: 700;
  white-space: nowrap; align-self: flex-start;
}
.cert-verified svg { flex-shrink: 0; }
.blue-verified { background: var(--blue-lg); color: var(--blue); border: 1px solid rgba(37,99,235,0.2); }
.blue-verified svg { stroke: var(--blue); }
.orange-verified { background: var(--orange-lg); color: var(--orange-d); border: 1px solid rgba(249,115,22,0.2); }
.orange-verified svg { stroke: var(--orange-d); }

/* Experience timeline */
.exp-timeline { display: flex; flex-direction: column; gap: 10px; }
.exp-tl-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--txt-2); line-height: 1.5;
}
.exp-tl-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0; margin-top: 5px;
  box-shadow: 0 0 0 3px rgba(249,115,22,0.15);
}

/* Arbitrage */
.arb-neo-display {
  display: flex; align-items: center; gap: 10px;
  padding: 16px; background: var(--bg);
  border-radius: var(--r-md); border: 1px solid var(--border);
  margin-bottom: 8px;
}
.arb-col { flex: 1; text-align: center; }
.arb-cur { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--txt-4); margin-bottom: 4px; }
.arb-big { font-family: 'Space Grotesk', sans-serif; font-size: clamp(18px, 4vw, 26px); font-weight: 700; color: var(--orange-d); }
.arb-sub { font-size: 10px; color: var(--txt-4); margin-top: 3px; }
.green-val { color: var(--green) !important; }

.arb-middle { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.arb-middle svg { stroke: var(--txt-3); }
.arb-rate-chip {
  background: var(--orange-lg); color: var(--orange-d);
  padding: 4px 10px; border-radius: 50px;
  font-size: 12px; font-weight: 800;
  border: 1px solid rgba(249,115,22,0.2);
}
.arb-note-neo { font-size: 12px; color: var(--txt-3); }
.arb-note-neo strong { color: var(--orange-d); }

/* Final CTA */
.final-cta-neo { display: flex; flex-direction: column; gap: 10px; }
.final-cta-q { font-size: 14px; font-weight: 700; color: var(--txt); text-align: center; }

.wa-mega-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--wa), var(--wa-d));
  color: white; border-radius: var(--r-lg);
  font-size: 14px; font-weight: 700; text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 28px rgba(37,211,102,0.35);
  text-align: center; line-height: 1.3;
  position: relative; overflow: hidden;
}
.wa-mega-btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.wa-mega-btn:hover::before { opacity: 1; }
.wa-mega-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(37,211,102,0.45); }
.wa-mega-btn:active { transform: translateY(-1px); }


/* ══════════════════════════════════════════════
   SLIDE 5 — DOCUMENTS
   ══════════════════════════════════════════════ */

.doc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.doc-card {
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-xl);
  padding: 18px;
  box-shadow: var(--sh-md);
  display: flex; flex-direction: column; gap: 12px;
  transition: all 0.3s ease;
}
.doc-card:hover { box-shadow: var(--sh-lg); transform: translateY(-2px); }
.doc-card-featured { border-color: rgba(37,99,235,0.2); background: rgba(248,250,255,0.95); }
.doc-cert-card { border-color: rgba(217,119,6,0.25); background: rgba(255,251,235,0.95); }

/* Doc image preview — auto expanded, full readable height */
.doc-img-slot {
  position: relative; width: 100%;
  height: auto;
  border-radius: var(--r-md); overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
  margin-bottom: 12px;
  /* no tap-to-expand needed, always shown fully */
}
.doc-preview-img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  object-position: top;
  display: block;
  background: white;
}
.doc-img-expand-hint { display: none; } /* hidden — auto expanded */

.doc-card-header { display: flex; align-items: flex-start; gap: 12px; }


.doc-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.doc-blue { background: var(--blue-lg); }
.doc-blue svg { stroke: var(--blue); }
.doc-green { background: var(--green-lg); }
.doc-green svg { stroke: var(--green); }
.doc-purple { background: var(--purple-lg); }
.doc-purple svg { stroke: var(--purple); }
.doc-gold { background: var(--gold-lg); }
.doc-gold svg { stroke: var(--gold); }

.doc-card-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--txt-4); margin-bottom: 3px; }
.doc-card-title { font-size: 15px; font-weight: 700; color: var(--txt); }

.doc-official-badge {
  margin-left: auto;
  padding: 4px 10px; border-radius: 50px;
  font-size: 10px; font-weight: 700;
  background: var(--blue-lg); color: var(--blue);
  border: 1px solid rgba(37,99,235,0.2);
  white-space: nowrap;
}
.doc-badge-gold { background: var(--gold-lg); color: var(--gold); border-color: rgba(217,119,6,0.25); }

.doc-body { display: flex; flex-direction: column; gap: 6px; }
.doc-meta-row {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 12px; font-size: 12px; padding: 5px 0;
  border-bottom: 1px solid var(--border);
}
.doc-meta-row:last-child { border-bottom: none; }
.doc-meta-row span { color: var(--txt-3); flex-shrink: 0; }
.doc-meta-row strong { color: var(--txt); font-weight: 700; text-align: right; }
.doc-active { color: var(--green) !important; }

.doc-stamp {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px; border-radius: var(--r-md);
  background: var(--blue-lg);
  border: 1px solid rgba(37,99,235,0.15);
  font-size: 11px; font-weight: 700; color: var(--blue);
}
.doc-stamp svg { stroke: var(--blue); width: 16px; height: 16px; }
.doc-stamp-green { background: var(--green-lg); color: var(--green); border-color: rgba(22,163,74,0.2); }
.doc-stamp-green svg { stroke: var(--green); }
.doc-stamp-purple { background: var(--purple-lg); color: var(--purple); border-color: rgba(147,51,234,0.2); }
.doc-stamp-purple svg { stroke: var(--purple); }
.doc-stamp-gold { background: var(--gold-lg); color: var(--gold); border-color: rgba(217,119,6,0.2); }
.doc-stamp-gold svg { stroke: var(--gold); }

.doc-footer-cta { display: flex; justify-content: center; }
.doc-wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px; border-radius: var(--r-lg);
  background: var(--wa); color: white;
  font-size: 13px; font-weight: 700; text-decoration: none;
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
  transition: all 0.25s ease;
  text-align: center;
}
.doc-wa-btn svg { fill: white; flex-shrink: 0; }
.doc-wa-btn:hover { background: var(--wa-d); transform: translateY(-2px); }


/* ══════════════════════════════════════════════
   FLOATING PILL NAV
   ══════════════════════════════════════════════ */

.nav-pill {
  position: fixed;
  bottom: 16px;
  left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 2px;
  padding: 6px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-mid);
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.08), 0 0 0 1px rgba(255,255,255,0.5);
  z-index: 500;
  transition: bottom 0.3s ease;
}

.pill-tab {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px;
  width: 52px; height: 44px;
  border: none; background: transparent;
  border-radius: 50px;
  cursor: pointer; transition: all 0.25s ease;
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.pill-icon { width: 20px; height: 20px; stroke: var(--txt-4); transition: stroke 0.25s ease; }
.pill-label { font-size: 9px; font-weight: 700; color: var(--txt-4); letter-spacing: 0.03em; transition: color 0.25s ease; display: none; }

.pill-tab.active {
  background: var(--orange-lg);
}
.pill-tab.active .pill-icon { stroke: var(--orange); }
.pill-tab.active .pill-label { color: var(--orange); }

.pill-tab:hover:not(.active) { background: var(--bg); }
.pill-tab:hover:not(.active) .pill-icon { stroke: var(--txt-2); }

/* Center hub tab — round button, gear icon only */
.pill-center-tab {
  width: 50px !important;
  height: 50px !important;
  padding: 0 !important;
  background: linear-gradient(135deg, var(--orange), var(--orange-d)) !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 16px rgba(249,115,22,0.45);
  margin: 0 3px;
  transition: all 0.25s ease;
  flex-direction: column !important;
  gap: 0 !important;
  animation: pill-pulse 2.5s ease-in-out infinite;
}
@keyframes pill-pulse {
  0%,100% { box-shadow: 0 4px 16px rgba(249,115,22,0.45); }
  50%      { box-shadow: 0 4px 28px rgba(249,115,22,0.75), 0 0 0 5px rgba(249,115,22,0.15); }
}
.pill-center-tab:hover {
  transform: scale(1.1) translateY(-1px);
  box-shadow: 0 6px 24px rgba(249,115,22,0.65) !important;
  animation: none;
}
.pill-center-icon {
  width: 22px; height: 22px;
  stroke: white; flex-shrink: 0;
  animation: gear-spin 8s linear infinite;
}
@keyframes gear-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.pill-center-tab:hover .pill-center-icon {
  animation: gear-spin 1.5s linear infinite;
}
.pill-center-label { display: none; }


/* ══════════════════════════════════════════════
   DESKTOP (>=768px)
   ══════════════════════════════════════════════ */

@media (min-width: 768px) {

  .pill-label { display: block; }
  .pill-tab { width: 70px; height: 50px; }

  .slide-inner { padding: 24px 32px 36px; gap: 20px; }

  /* Bento grid on desktop */
  .bento-grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .tile-hero { grid-column: 1 / 3; grid-row: 1 / 3; }
  .tile-sm { }
  .tile-addr { grid-column: auto; }
  .tile-rate { grid-column: auto; }
  .tile-stats { grid-column: 1 / -1; }

  /* Calc two col */
  .calc-two-col { flex-direction: row; align-items: flex-start; }
  .calc-two-col > * { flex: 1; }

  /* Deal grid */
  .deal-grid { flex-direction: row; align-items: start; }
  .deal-card { flex: 1; }
  .deal-timeline { flex: 0 0 180px; }

  /* Founder grid */
  .founder-neo-grid { flex-direction: row; align-items: flex-start; }
  .founder-neo-card { flex: 0 0 240px; }
  .founder-right-col { flex: 1; }

  /* Doc grid */
  .doc-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .doc-grid { grid-template-columns: 1fr 1fr; }
  .bento-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
  .tile-stats { grid-column: 1 / -1; }
}

/* ── SAFE AREAS ─────────────────────────── */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .nav-pill { bottom: calc(16px + env(safe-area-inset-bottom)); }
  .deck { bottom: calc(var(--nav-pill-h) + 20px + env(safe-area-inset-bottom)); }
}

/* ── SCROLLBAR ──────────────────────────── */
.slide::-webkit-scrollbar { width: 3px; }
.slide::-webkit-scrollbar-track { background: transparent; }
.slide::-webkit-scrollbar-thumb { background: rgba(249,115,22,0.2); border-radius: 3px; }
.slide::-webkit-scrollbar-thumb:hover { background: rgba(249,115,22,0.4); }

/* ── HERO DUAL CTA ──────────────────────── */
.hero-cta-row { display: flex; gap: 10px; flex-wrap: wrap; }
.cta-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 18px;
  background: transparent;
  color: var(--orange-d); border: 2px solid rgba(249,115,22,0.35);
  border-radius: 50px;
  font-family: inherit; font-size: 13px; font-weight: 700;
  cursor: pointer; transition: all 0.25s ease;
}
.cta-ghost:hover { background: var(--orange-lg); border-color: var(--orange); transform: translateY(-1px); }
.cta-ghost svg { stroke: var(--orange-d); flex-shrink: 0; }

/* ── NAV: ALWAYS SHOW LABELS ─────────────── */
.pill-label { display: block !important; font-size: 8px; }
.pill-tab { width: 46px; height: 44px; }
.pill-center-tab { width: 50px !important; height: 50px !important; }

/* ══════════════════════════════════════════════
   SLIDE 2 — BUSINESS MODEL
   ══════════════════════════════════════════════ */

/* Step tab hint strip */
.tab-hint-strip {
  display: flex; align-items: center; justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  background: linear-gradient(90deg, var(--orange-lg), var(--orange-mid), var(--orange-lg));
  border: 1px dashed rgba(249,115,22,0.4);
  border-radius: 50px;
  margin-bottom: 2px;
}
.tab-hint-text {
  font-size: 13px; font-weight: 700;
  color: var(--orange-d);
  white-space: nowrap;
}
.tab-hint-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
  animation: hint-blink 1.4s ease-in-out infinite;
}
.tab-hint-dot:nth-child(2) { animation-delay: 0.2s; }
.tab-hint-dot:nth-child(3) { animation-delay: 0.4s; }
.tab-hint-dot:nth-child(5) { animation-delay: 0.2s; }
.tab-hint-dot:nth-child(6) { animation-delay: 0.4s; }
@keyframes hint-blink {
  0%,100% { opacity: 0.3; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.3); }
}

/* Step tabs */
.model-step-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.mst-btn {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 12px 6px; border-radius: var(--r-md);
  border: 2px solid var(--border-mid);
  background: var(--white); color: var(--txt-3);
  cursor: pointer; transition: all 0.25s ease;
  font-family: inherit;
  box-shadow: var(--sh-sm);
  position: relative;
}
.mst-btn:hover {
  background: var(--orange-lg);
  color: var(--orange-d);
  border-color: rgba(249,115,22,0.4);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}
.mst-active {
  background: linear-gradient(135deg, var(--orange), var(--orange-d)) !important;
  color: white !important;
  border-color: transparent !important;
  box-shadow: 0 4px 16px rgba(249,115,22,0.4) !important;
  transform: translateY(-2px);
}
.mst-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px; font-weight: 800;
  line-height: 1;
}
.mst-active .mst-num { color: white; }
.mst-txt {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
  line-height: 1;
}
.mst-active .mst-txt { color: rgba(255,255,255,0.9); }

/* Step cards */
.model-step-card {
  background: rgba(255,255,255,0.92);
  border: 1.5px solid var(--border-mid);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  transition: box-shadow 0.3s ease;
  animation: slideIn 0.4s var(--trans) both;
}
@keyframes slideIn { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:translateY(0); } }

.msc-header {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px;
  cursor: pointer; user-select: none;
}

.msc-num-wrap {
  width: 40px; height: 40px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.orange-bg { background: linear-gradient(135deg, var(--orange), var(--orange-d)); }
.blue-bg   { background: linear-gradient(135deg, #2563EB, #1D4ED8); }
.purple-bg { background: linear-gradient(135deg, #9333EA, #7C3AED); }
.green-bg  { background: linear-gradient(135deg, #16A34A, #15803D); }

.msc-num { font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 800; color: white; }

.msc-head-text { flex: 1; }
.msc-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--txt-4); }
.msc-title { font-size: 14px; font-weight: 700; color: var(--txt); line-height: 1.3; margin-top: 2px; }

.msc-body {
  padding: 0 18px 18px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.msc-lead { font-size: 13px; color: var(--txt-2); line-height: 1.6; margin-bottom: 14px; }
.msc-lead em { color: var(--orange-d); font-style: normal; font-weight: 700; }

/* Niche trio */
.niche-trio {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px; margin-bottom: 14px;
}
.niche-chip {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 12px 8px; border-radius: var(--r-md);
  background: var(--bg); border: 1px solid var(--border);
  text-align: center; transition: all 0.2s ease;
  font-size: 11px; font-weight: 700; color: var(--txt);
}
.niche-chip:hover { transform: translateY(-2px); box-shadow: var(--sh-sm); }
.niche-chip span { font-size: 10px; color: var(--txt-4); font-weight: 500; }
.niche-icon {
  width: 38px; height: 38px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
}
.ni-blue   { background: var(--blue-lg); }
.ni-blue svg { stroke: var(--blue); }
.ni-orange { background: var(--orange-lg); }
.ni-orange svg { stroke: var(--orange-d); }
.ni-green  { background: var(--green-lg); }
.ni-green svg { stroke: var(--green); }

/* Logic box */
.msc-logic-box {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 14px;
  background: var(--orange-lg);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: var(--r-md);
  font-size: 12px; color: var(--txt-2); line-height: 1.5;
  margin-top: 4px;
}
.msc-logic-box svg { flex-shrink: 0; margin-top: 2px; stroke: var(--orange); }
.msc-logic-box strong { color: var(--txt); }
.msc-logic-green {
  background: var(--green-lg);
  border-color: rgba(22,163,74,0.2);
}
.msc-logic-green svg { stroke: var(--green); }

/* Hunt steps */
.hunt-steps { display: flex; flex-direction: column; gap: 10px; }
.hunt-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 13px; color: var(--txt-2); line-height: 1.5;
}
.hunt-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--ic, #F97316);
  background: color-mix(in srgb, var(--hn-c, #F97316) 15%, white);
  color: var(--hn-c, #F97316);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; flex-shrink: 0;
  border: 1.5px solid color-mix(in srgb, var(--hn-c, #F97316) 30%, white);
}
.hunt-item strong { display: block; font-size: 13px; color: var(--txt); margin-bottom: 2px; }
.hunt-item span { font-size: 12px; color: var(--txt-3); }

/* Machine flow */
.machine-flow {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; padding: 16px; flex-wrap: wrap;
  background: var(--bg); border-radius: var(--r-lg);
  border: 1px solid var(--border); margin-bottom: 12px;
}
.mf-node {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 14px 12px; border-radius: var(--r-md);
  font-size: 11px; font-weight: 700; color: var(--txt);
  text-align: center; min-width: 72px;
  transition: transform 0.2s ease;
}
.mf-node:hover { transform: translateY(-2px); }
.mf-node small { font-size: 9px; color: var(--txt-4); font-weight: 500; }
.mf-node-orange { background: var(--orange-lg); border: 1px solid rgba(249,115,22,0.2); }
.mf-node-orange svg { stroke: var(--orange-d); }
.mf-node-blue   { background: var(--blue-lg); border: 1px solid rgba(37,99,235,0.15); }
.mf-node-blue svg   { stroke: var(--blue); }
.mf-node-green  { background: var(--green-lg); border: 1px solid rgba(22,163,74,0.2); }
.mf-node-green svg  { stroke: var(--green); }
.mf-arrow {
  color: var(--txt-4); font-size: 16px; flex-shrink: 0;
  display: flex; align-items: center;
}
.mf-arrow svg { stroke: var(--txt-4); }

/* Budget breakdown */
.budget-disclaimer {
  background: #FFFBEB; border: 1px solid rgba(217,119,6,0.2);
  border-radius: var(--r-md); padding: 10px 12px;
  font-size: 12px; color: var(--txt-2);
  margin-bottom: 12px;
}
.budget-disclaimer strong { color: var(--gold); }

.budget-breakdown { display: flex; flex-direction: column; gap: 6px; margin-bottom: 10px; }
.budget-row {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0;
}
.budget-icon-wrap {
  width: 34px; height: 34px; border-radius: 10px;
  background: color-mix(in srgb, var(--bic) 12%, white);
  border: 1px solid color-mix(in srgb, var(--bic) 20%, white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.budget-label { flex: 1; }
.budget-label strong { font-size: 13px; color: var(--txt); display: block; }
.budget-label span { font-size: 11px; color: var(--txt-4); }
.budget-amount { font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 700; white-space: nowrap; }
.budget-amount small { font-size: 10px; color: var(--txt-4); }

.budget-bar-wrap {
  height: 4px; border-radius: 2px; background: #E5E7EB;
  margin: 0 0 4px; overflow: hidden;
}
.budget-bar {
  height: 100%; border-radius: 2px;
  width: var(--bw, 0);
  background: var(--bc, #F97316);
  animation: growBar 1s var(--trans) both;
  animation-play-state: paused;
}
.slide.active .budget-bar { animation-play-state: running; }
@keyframes growBar { from { width: 0; } to { width: var(--bw); } }

.budget-total-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0 0;
  border-top: 2px solid var(--border-mid);
  font-size: 13px; font-weight: 700; color: var(--txt);
}
.budget-total-row strong { color: var(--orange-d); font-size: 15px; }
.budget-note {
  font-size: 12px; color: var(--txt-3); line-height: 1.5;
  padding: 10px 12px; border-radius: var(--r-md);
  background: var(--orange-lg); border: 1px dashed rgba(249,115,22,0.3);
}
.budget-note strong { color: var(--orange-d); }

/* Model WA CTA */
.model-wa-cta {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 18px; border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--wa), var(--wa-d));
  color: white; text-decoration: none;
  font-size: 13px; font-weight: 700;
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
  transition: all 0.25s ease; text-align: center;
}
.model-wa-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,211,102,0.4); }
.model-wa-cta svg { fill: white; flex-shrink: 0; }

