/* Tadam Investor Site — extends colors_and_type.css */
@import url("colors_and_type.css");

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: #fff;
  color: var(--tadam-fg-1);
  font-family: var(--tadam-font-sans);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ────────────────────────── Layout ────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 64px;
}
@media (max-width: 900px)  { .container { padding-inline: 32px; } }
@media (max-width: 600px)  { .container { padding-inline: 24px; } }

section { padding-block: 128px; }
@media (max-width: 900px) { section { padding-block: 80px; } }

.bg-cream { background: #F5F5F5; }
.bg-white { background: #fff; }

/* ────────────────────────── Top nav ───────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  height: 56px;
  display: flex; align-items: center;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color .2s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled { border-bottom-color: var(--tadam-border); }
.nav .container {
  display: flex; align-items: center; gap: 32px;
  width: 100%;
}
.nav .wordmark {
  font-size: 22px; font-weight: 700;
  color: var(--tadam-dark-gray);
  letter-spacing: -0.5px;
}
.nav .links {
  display: flex; gap: 24px;
  margin-inline: auto;
  font-size: 14px; font-weight: 500;
  color: var(--tadam-medium-gray);
}
.nav .links a { transition: color .15s ease; }
.nav .links a:hover { color: var(--tadam-dark-gray); }

/* Hamburger button (mobile only) */
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  margin-left: 8px;
  background: transparent; border: none; padding: 0;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--tadam-dark-gray);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav .container { gap: 12px; }
  .nav-toggle { display: inline-flex; }
  /* Hide the inline CTA on mobile — it lives inside the dropdown instead */
  .nav .container > .btn-tadam { display: none; }
  .nav .links {
    display: none;
    position: absolute;
    top: 56px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 8px 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--tadam-border);
    font-size: 16px;
  }
  .nav.open .links { display: flex; }
  .nav .links a {
    padding: 14px 24px;
    color: var(--tadam-dark-gray);
  }
}

/* ────────────────────────── Buttons ───────────────────────── */
.btn-tadam, .btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  height: 48px; padding-inline: 24px;
  border-radius: 999px;
  font-size: 15px; font-weight: 600;
  border: none; cursor: pointer;
  transition: filter .15s ease, transform .1s ease;
  white-space: nowrap;
}
.btn-tadam {
  background: var(--tadam-primary);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 22px rgba(37,99,235,.25);
}
.btn-tadam:hover { filter: brightness(0.95); }
.btn-tadam:active { transform: scale(.98); }

.btn-tadam.lg { height: 56px; padding-inline: 32px; font-size: 16px; }
.btn-outline {
  background: #fff;
  color: var(--tadam-dark-gray);
  border: 1.5px solid var(--tadam-border);
  text-transform: none;
  letter-spacing: 0;
}
.btn-outline:hover { border-color: var(--tadam-border-strong); }
.btn-outline.lg { height: 56px; padding-inline: 32px; font-size: 16px; }

.nav .btn-tadam { height: 36px; padding-inline: 16px; font-size: 12px; box-shadow: none; }

/* ────────────────────────── Back-to-top ───────────────────── */
.back-to-top {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 48px; height: 48px;
  border-radius: 999px;
  border: none;
  background: var(--tadam-primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(37,99,235,.35);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, filter .15s ease;
  z-index: 90;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover { filter: brightness(.95); }
.back-to-top:active { transform: scale(.95); }
@media (max-width: 600px) {
  .back-to-top { right: 16px; bottom: 16px; width: 44px; height: 44px; }
}
@media (prefers-reduced-motion: reduce) {
  .back-to-top { transition: opacity .15s ease; }
}

/* ────────────────────────── Type ─────────────────────────── */
h1, h2, h3, h4 { margin: 0; color: var(--tadam-dark-gray); font-weight: 700; letter-spacing: -0.5px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--tadam-light-gray);
}
.display {
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.05;
  letter-spacing: -1.5px;
}
/* Hero typographic hierarchy: TADAM (biggest) → THE TIME IS NOW → subline. */
.hero-title {
  font-size: clamp(56px, 8vw, 112px);
  letter-spacing: -2.5px;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 4px;
}
.hero-second {
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -1px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--tadam-dark-gray);
  margin-top: 12px;
}
.hero-third {
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.3;
  font-weight: 500;
  color: var(--tadam-light-gray);
  margin-top: 16px;
  max-width: 560px;
}
.h-section {
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.1;
  letter-spacing: -1px;
}
.h-stat {
  font-size: clamp(64px, 10vw, 120px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -3px;
  color: var(--tadam-dark-gray);
  font-variant-numeric: tabular-nums;
}
.subhead {
  font-size: 20px;
  line-height: 1.5;
  color: var(--tadam-medium-gray);
  font-weight: 400;
  margin-top: 24px;
  max-width: 560px;
}
.lead {
  font-size: 22px; line-height: 1.5;
  color: var(--tadam-medium-gray);
  margin-top: 24px;
  max-width: 720px;
}
.body { font-size: 17px; line-height: 1.6; color: var(--tadam-medium-gray); }
.label-meta {
  font-size: 13px; color: var(--tadam-light-gray);
  font-weight: 500; line-height: 1.4;
}
.fill { color: var(--tadam-warning); font-weight: 600; }

/* ────────────────────────── Hero ──────────────────────────── */
/* Hero section overrides the global `section { padding-block: 128px }` so the
   eyebrow sits a normal distance below the sticky nav instead of ~224px of
   white space. Bottom padding is handled by .hero so the next section's top
   padding still creates the usual section separation. */
.hero-section { padding-block: 0; }
.hero {
  padding-block: 32px 96px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 1000px) { .hero { grid-template-columns: 1fr; gap: 40px; padding-block: 24px 72px; } }
.hero > * { min-width: 0; }
.hero .ctas { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.hero .trust {
  margin-top: 56px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  font-size: 13px;
  color: var(--tadam-dark-gray);
}
.hero .trust .trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, .04);
  border: 1px solid rgba(15, 23, 42, .07);
  white-space: nowrap;
  letter-spacing: .1px;
}
.hero .trust .trust-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--tadam-primary);
  box-shadow: 0 0 0 0 rgba(37, 99, 235, .55);
  animation: hc-pulse 1.8s ease-out infinite;
  flex-shrink: 0;
}
.hero .trust span { white-space: nowrap; }
.hero .trust .dot { display: none; }

/* Phone mockup */
.phone-stage {
  display: flex; justify-content: center; align-items: center;
  background: #F5F5F5;
  border-radius: 32px;
  padding: 48px 32px;
  min-height: 560px;
  max-width: 100%;
}
@media (max-width: 600px) {
  .phone-stage { padding: 32px 16px; min-height: 0; border-radius: 24px; }
}
.phone {
  position: relative;
  width: 280px; height: 580px;
  max-width: 100%;
  background: #1A1A1A;
  border-radius: 44px;
  padding: 8px;
  box-shadow: 0 24px 60px rgba(26,26,26,.18);
}
@media (max-width: 360px) {
  .phone { width: 240px; height: 500px; border-radius: 36px; }
  .phone-screen { border-radius: 30px; }
}
.phone-screen {
  position: relative;
  width: 100%; height: 100%;
  background: #fff;
  border-radius: 36px;
  overflow: hidden;
}
.phone-notch {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 26px; background: #1A1A1A; border-radius: 99px;
  z-index: 30;
}
.phone-frame {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
}
.phone-frame.active { opacity: 1; }

/* Map background */
.map-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(transparent 49.5%, rgba(180,200,225,.5) 49.5%, rgba(180,200,225,.5) 50.5%, transparent 50.5%) 0 0/56px 56px,
    linear-gradient(90deg, transparent 49.5%, rgba(180,200,225,.5) 49.5%, rgba(180,200,225,.5) 50.5%, transparent 50.5%) 0 0/56px 56px,
    radial-gradient(ellipse at 50% 60%, #DDE7F6 0%, #E8EEF8 70%);
}
.map-pin {
  position: absolute; width: 24px; height: 24px;
  background: var(--tadam-primary);
  border: 4px solid #fff; border-radius: 999px;
  box-shadow: 0 6px 14px rgba(37,99,235,.45);
}

/* ────────────────────────── Generic cards ─────────────────── */
.card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(26,26,26,.06);
}
.card-flat {
  background: #F5F5F5;
  border-radius: 16px;
  padding: 32px;
}

/* ────────────────────────── Two-column ────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.two-col.tight { gap: 48px; }
@media (max-width: 900px) { .two-col, .two-col.tight { grid-template-columns: 1fr; gap: 48px; } }

/* ────────────────────────── Funnel diagram ────────────────── */
.funnel {
  display: flex; gap: 8px; align-items: center;
  flex-wrap: wrap;
  margin-top: 24px;
}
.funnel-node {
  background: #E7E7E7; color: var(--tadam-medium-gray);
  padding: 10px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 500;
}
.funnel-node.bad { background: var(--tadam-error); color: #fff; }
.funnel-node.good { background: var(--tadam-primary); color: #fff; }
.funnel-arrow { color: var(--tadam-soft-gray); font-size: 14px; }

/* ────────────────────────── Solution dots list ────────────── */
.solution-dots {
  list-style: none;
  margin: 32px auto 0;
  padding: 0;
  max-width: 720px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
  text-align: left;
}
@media (max-width: 640px) { .solution-dots { grid-template-columns: 1fr; } }
.solution-dots li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 17px;
  color: var(--tadam-dark-gray);
  line-height: 1.45;
}
.solution-dots .sd-dot {
  flex: 0 0 auto;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--tadam-primary);
  margin-top: 9px;
}
.solution-dots strong { font-weight: 700; }

/* ────────────────────────── Problem story acts ────────────── */
.story-act { margin-top: 88px; }
.story-act-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.6px;
  color: var(--tadam-primary);
  background: rgba(37,99,235,.08);
  padding: 6px 12px; border-radius: 999px;
  margin-bottom: 16px;
}
.story-act-h { font-size: clamp(28px, 3vw, 40px); letter-spacing: -.8px; line-height: 1.15; max-width: 880px; }
.story-act-lead { font-size: 19px; color: var(--tadam-medium-gray); margin-top: 12px; max-width: 760px; line-height: 1.55; }

/* Act 1 — split */
.story-split {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--tadam-border);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
}
@media (max-width: 820px) {
  .story-split { grid-template-columns: 1fr; }
  .story-vs { flex-direction: row !important; padding: 16px !important; }
  .story-vs-line { width: 40px !important; height: 1px !important; }
}
.story-side { padding: 32px; display: flex; flex-direction: column; gap: 12px; }
.story-side-demand { background: #FFF8F1; }
.story-side-supply { background: #F1F5FF; }
.story-side-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--tadam-medium-gray);
}
.story-side-demand .story-side-tag { color: #C2410C; }
.story-side-supply .story-side-tag { color: #2563EB; }
.story-avatar { font-size: 40px; line-height: 1; }
.story-quote { font-size: 22px; font-weight: 600; color: var(--tadam-dark-gray); line-height: 1.35; letter-spacing: -.3px; }
.story-meta { font-size: 13px; color: var(--tadam-medium-gray); }
.story-vs {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 24px 12px; gap: 12px;
  background: #fff;
}
.story-vs-line { width: 1px; height: 60px; background: var(--tadam-border); flex: 1; }
.story-vs-label { font-size: 11px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--tadam-light-gray); white-space: nowrap; }

/* Act 2 — journey */
.journey-grid {
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 720px;
}
@media (max-width: 600px) { .journey-grid { grid-template-columns: 1fr; } }
.journey-col {
  background: #fff;
  border: 1px solid var(--tadam-border);
  border-radius: 14px;
  padding: 18px 20px;
}
.journey-col-title { font-size: 11px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--tadam-medium-gray); margin-bottom: 10px; }
.journey-steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0; position: relative; }
.journey-steps::before {
  content: ""; position: absolute; left: 44px; top: 10px; bottom: 10px;
  width: 1.5px; background: var(--tadam-border);
}
.journey-steps li {
  display: grid; grid-template-columns: 40px 1fr; gap: 16px;
  align-items: center;
  padding: 7px 0;
  position: relative;
}
.journey-steps li::before {
  content: ""; position: absolute; left: 44px; top: 50%; transform: translate(-50%, -50%);
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--tadam-soft-gray); border: 1.5px solid #fff;
  box-shadow: 0 0 0 1.5px var(--tadam-soft-gray);
}
.journey-steps li.js-fail::before { background: #EF4444; box-shadow: 0 0 0 1.5px #EF4444; }
.journey-steps .js-time { font-size: 11px; font-weight: 700; color: var(--tadam-medium-gray); font-variant-numeric: tabular-nums; }
.journey-steps .js-text { font-size: 13px; color: var(--tadam-dark-gray); line-height: 1.35; }
.journey-steps li.js-fail .js-text { color: #EF4444; font-weight: 600; }
.journey-steps li.js-fail .js-time { color: #EF4444; }

/* Act 3 — stats */
.story-stats {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .story-stats { grid-template-columns: 1fr; } }
.story-stat {
  background: #fff;
  border: 1px solid var(--tadam-border);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
}
.story-donut { width: 140px; height: 140px; margin: 0 auto 16px; display: block; }
.story-stat-text { font-size: 16px; color: var(--tadam-dark-gray); line-height: 1.5; margin: 0 auto; max-width: 280px; font-weight: 500; }
.story-stat .label-meta { margin-top: 14px; font-size: 11px; }

.story-bars {
  height: 180px;
  display: flex; align-items: flex-end; justify-content: center; gap: 28px;
  margin: 0 auto 16px;
}
.story-bar { display: flex; flex-direction: column; align-items: center; gap: 8px; width: 80px; height: 100%; justify-content: flex-end; }
.story-bar-fill {
  width: 100%; min-height: 40px;
  border-radius: 12px 12px 4px 4px;
  display: flex; align-items: flex-start; justify-content: center; padding-top: 10px;
  position: relative;
}
.story-bar-num { color: #fff; font-size: 18px; font-weight: 700; letter-spacing: -.3px; }
.story-bar:nth-child(2) .story-bar-num { color: var(--tadam-medium-gray); }
.story-bar-lbl { font-size: 12px; font-weight: 600; color: var(--tadam-medium-gray); }

/* Act 4 — funnel compare */
.funnel-compare {
  margin-top: 32px;
  display: flex; flex-direction: column; gap: 20px;
}
.funnel-row {
  background: #fff;
  border: 1px solid var(--tadam-border);
  border-radius: 20px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.funnel-row-tadam { background: linear-gradient(135deg, rgba(37,99,235,.06), rgba(37,99,235,.02)); border-color: rgba(37,99,235,.18); }
.funnel-row-label {
  font-size: 11px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--tadam-medium-gray);
  flex: 0 0 auto;
  min-width: 80px;
}
.funnel-row-tadam .funnel-row-label { color: var(--tadam-primary); }
.funnel-row .funnel { margin-top: 0; flex: 1 1 auto; }
.funnel-row-meta {
  font-size: 12px; color: var(--tadam-light-gray); font-weight: 500;
  flex: 0 0 auto;
  white-space: nowrap;
  margin-left: auto;
}
@media (max-width: 900px) {
  .funnel-row { flex-direction: column; align-items: flex-start; }
  .funnel-row-meta { margin-left: 0; white-space: normal; }
}

/* ────────────────────────── Hidden network (problem) ────────── */
.hidden-net {
  margin-top: 56px;
  display: block;
}
.hn-stage {
  background: #fff;
  border: 1px solid var(--tadam-border);
  border-radius: 24px;
  padding: 32px 32px 24px;
  position: relative;
  overflow: hidden;
}
.hn-svg { width: 100%; height: auto; display: block; max-width: 1100px; margin: 0 auto; }
.hn-dot circle {
  fill: #2563EB;
  opacity: 0;
  animation: hn-pop .6s ease-out forwards;
  animation-delay: var(--d, 0s);
}
.hn-dot text {
  font-size: 11px;
  font-weight: 600;
  fill: var(--tadam-dark-gray);
  text-anchor: middle;
  opacity: 0;
  animation: hn-fade .6s ease-out forwards;
  animation-delay: calc(var(--d, 0s) + .3s);
}
.hn-dot.is-2 circle { fill: #6F8AE8; }
.hn-dot.is-3 circle { fill: #B6C2EA; }
.hn-dot.is-2 text, .hn-dot.is-3 text { fill: var(--tadam-medium-gray); font-weight: 500; }
.hn-you circle { filter: drop-shadow(0 4px 10px rgba(37,99,235,.35)); }
@keyframes hn-pop { from { opacity:0; transform: scale(.4); transform-origin: center; } to { opacity:1; transform: scale(1); } }
@keyframes hn-fade { to { opacity: 1; } }
.hn-legend {
  display: flex; flex-wrap: wrap; gap: 14px 22px;
  font-size: 12px; color: var(--tadam-medium-gray);
  margin-top: 12px; padding-top: 16px;
  border-top: 1px solid var(--tadam-border);
}
.hn-legend-item { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }

/* Mobile: widen the network area + bump SVG label sizes so they're readable */
@media (max-width: 640px) {
  .hn-stage { padding: 16px 8px 14px; border-radius: 18px; }
  .hidden-net { margin-top: 32px; margin-left: -8px; margin-right: -8px; }
  .hn-svg text { font-size: 22px; }
  .hn-dot text { font-size: 22px; }
  .hn-dot circle { r: 14; }
  .hn-dot.is-2 circle { r: 12; }
  .hn-dot.is-3 circle { r: 11; }
  .hn-legend { font-size: 13px; gap: 10px 18px; }
}
.hn-sw { width: 10px; height: 10px; border-radius: 999px; }
.hn-sw-1 { background: #2563EB; }
.hn-sw-2 { background: #6F8AE8; }
.hn-sw-3 { background: #B6C2EA; }
.hn-side { display: flex; flex-direction: column; gap: 16px; }
.hn-card {
  background: #fff;
  border: 1px solid var(--tadam-border);
  border-radius: 16px;
  padding: 20px 22px;
}
.hn-card-num {
  font-size: 40px; font-weight: 700; line-height: 1;
  color: var(--tadam-primary); letter-spacing: -1.5px;
  margin-bottom: 8px; font-variant-numeric: tabular-nums;
}
.hn-card p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--tadam-medium-gray); }

/* ────────────────────────── Solution tiles ────────────────── */
.tiles-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
@media (max-width: 900px) { .tiles-3 { grid-template-columns: 1fr; } }
.tile-head {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 18px;
}
.tile-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(37,99,235,.08);
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
}
.tile-num {
  font-size: 44px; font-weight: 800;
  color: var(--tadam-primary);
  letter-spacing: -1.5px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.tile h3 { font-size: 20px; margin-bottom: 16px; letter-spacing: -.3px; }
.tile-bullets {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.tile-bullets li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  color: var(--tadam-medium-gray);
  line-height: 1.45;
}
.tile-bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--tadam-primary);
}

/* ────────────────────────── Walkthrough (auto-slider) ─────── */
.walk-slider {
  margin: 64px auto 0;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.walk-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 19;
  background: #0E1116;
  border-radius: 36px;
  padding: 8px;
  box-shadow: 0 30px 60px -20px rgba(15,30,80,.35), 0 0 0 1px rgba(0,0,0,.04);
}
.walk-slide {
  position: absolute;
  inset: 8px;
  border-radius: 28px;
  overflow: hidden;
  opacity: 0;
  transform: scale(.985);
  transition: opacity .55s ease, transform .55s ease;
  pointer-events: none;
}
.walk-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.walk-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.walk-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 520px;
}
.walk-step {
  appearance: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font: inherit;
}
.walk-step-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--tadam-light-gray);
  font-variant-numeric: tabular-nums;
  letter-spacing: .5px;
}
.walk-step-lbl {
  font-size: 13px;
  font-weight: 600;
  color: var(--tadam-light-gray);
  letter-spacing: -.1px;
  transition: color .25s ease;
}
.walk-step-bar {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--tadam-border);
  border-radius: 99px;
  overflow: hidden;
  margin-top: 4px;
}
.walk-step-bar-fill {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--tadam-primary);
  border-radius: inherit;
  transition: width .15s linear;
}
.walk-step.is-active .walk-step-num,
.walk-step.is-active .walk-step-lbl { color: var(--tadam-dark-gray); }
.walk-step.is-active .walk-step-num { color: var(--tadam-primary); }

/* legacy walkthrough kept for any other references — hidden if empty */
.walkthrough { display: none; }

/* ────────────────────────── How it works ──────────────────── */
.howitworks {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  margin-top: 64px;
}
@media (max-width: 900px) { .howitworks { grid-template-columns: 1fr; } }
.flow-side h3 {
  font-size: 24px; margin-bottom: 32px;
  display: flex; align-items: center; gap: 12px;
}
.flow-side .pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--tadam-primary-50);
  color: var(--tadam-primary);
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.flow-step {
  display: grid; grid-template-columns: 48px 1fr; gap: 20px;
  margin-bottom: 32px;
  align-items: start;
}
.flow-step-num {
  width: 40px; height: 40px;
  background: var(--tadam-dark-gray); color: #fff;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 600;
}
.flow-side.supplier .flow-step-num { background: var(--tadam-primary); }
.flow-step h4 { font-size: 17px; margin-bottom: 6px; }
.flow-step p { margin: 0; font-size: 15px; color: var(--tadam-medium-gray); line-height: 1.5; }

/* ────────────────────────── Market stats ──────────────────── */
.stat-block {
  display: grid; grid-template-columns: 1fr 2fr; gap: 48px;
  align-items: baseline;
  padding-block: 40px;
  border-bottom: 1px solid var(--tadam-border);
}
.stat-block:last-of-type { border-bottom: none; }
@media (max-width: 700px) { .stat-block { grid-template-columns: 1fr; gap: 16px; } }
.stat-block .h-stat { font-size: clamp(56px, 8vw, 96px); }
.stat-block .body { font-size: 18px; }

/* ────────────────────────── Geo rollout (flag cards) ──────── */
.rollout {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
}
.rollout-card {
  background: #fff;
  border: 1px solid var(--tadam-light-gray);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.rollout-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, .08);
}
.rollout-now {
  background: linear-gradient(180deg, #fff 0%, rgba(37, 99, 235, .04) 100%);
  border-color: rgba(37, 99, 235, .25);
}
.rollout-next {
  background: #fff;
  border-style: dashed;
  border-color: rgba(37, 99, 235, .22);
}
.rollout-head {
  display: flex;
  align-items: center;
  gap: 16px;
}
.rollout-flag {
  width: 60px;
  height: 40px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .12);
  flex-shrink: 0;
}
.rollout-flag svg { display: block; width: 100%; height: 100%; }
.rollout-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin: 0 0 4px;
}
.rollout-eyebrow-now { color: var(--tadam-primary); }
.rollout-eyebrow-next { color: #8D8D8D; }
.rollout-title {
  font-size: 28px;
  font-weight: 600;
  margin: 0;
  letter-spacing: -.4px;
  color: var(--tadam-dark-gray);
}
.rollout-cities {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rollout-city {
  display: grid;
  grid-template-columns: 16px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .6);
  border: 1px solid var(--tadam-light-gray);
}
.rollout-city.is-live {
  background: rgba(37, 99, 235, .08);
  border-color: rgba(37, 99, 235, .35);
}
.rollout-city.is-pilot {
  background: rgba(37, 99, 235, .04);
  border-color: rgba(37, 99, 235, .25);
}
.rollout-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--tadam-light-gray);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--tadam-light-gray);
}
.rollout-city.is-live .rollout-dot {
  background: var(--tadam-primary);
  box-shadow: 0 0 0 2px var(--tadam-primary), 0 0 0 6px rgba(37, 99, 235, .18);
  animation: rollout-pulse 2.4s ease-in-out infinite;
}
.rollout-city.is-pilot .rollout-dot {
  background: var(--tadam-primary);
  box-shadow: 0 0 0 2px var(--tadam-primary);
}
.rollout-city.is-next .rollout-dot,
.rollout-city.is-future .rollout-dot {
  background: #fff;
  border: 2px solid var(--tadam-primary);
  box-shadow: none;
}
.rollout-city.is-future .rollout-dot {
  border-color: #C7CDD6;
}
@keyframes rollout-pulse {
  0%, 100% { box-shadow: 0 0 0 2px var(--tadam-primary), 0 0 0 6px rgba(37, 99, 235, .18); }
  50%      { box-shadow: 0 0 0 2px var(--tadam-primary), 0 0 0 10px rgba(37, 99, 235, .04); }
}
.rollout-city-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--tadam-dark-gray);
}
.rollout-status {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: .2px;
}
.rollout-status-live {
  background: var(--tadam-primary);
  color: #fff;
}
.rollout-status-next {
  background: rgba(37, 99, 235, .12);
  color: var(--tadam-primary);
}
.rollout-status-pilot {
  background: rgba(37, 99, 235, .12);
  color: var(--tadam-primary);
}
.rollout-status-future {
  background: var(--tadam-light-gray);
  color: #6B7280;
}
.rollout-foot {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #5B6472;
  padding-top: 4px;
  border-top: 1px solid var(--tadam-light-gray);
  padding-top: 16px;
}
.rollout-bridge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 8px;
  align-self: center;
}
.rollout-bridge-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #8D8D8D;
}
@media (max-width: 880px) {
  .rollout {
    grid-template-columns: 1fr;
  }
  .rollout-bridge {
    transform: rotate(90deg);
    padding: 8px 0;
  }
}

/* ────────────────────────── Take-rate bar ─────────────────── */
.takerate {
  margin-top: 32px;
}
.takerate-bar {
  display: flex; height: 56px; border-radius: 999px; overflow: hidden;
  font-size: 14px; font-weight: 600;
  box-shadow: 0 4px 12px rgba(26,26,26,.06);
}
.takerate-bar > div {
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.takerate-legend {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: 20px;
}
.takerate-legend .label-meta { display: block; }
.takerate-legend .amt {
  font-size: 22px; font-weight: 700;
  color: var(--tadam-dark-gray);
  font-variant-numeric: tabular-nums;
}
.takerate-legend .swatch {
  display: inline-block; width: 12px; height: 12px; border-radius: 4px;
  margin-right: 8px; vertical-align: middle;
}
@media (max-width: 700px) { .takerate-legend { grid-template-columns: repeat(2, 1fr); } }

/* ────────────────────────── Unit economics table ──────────── */
.ue-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
  font-variant-numeric: tabular-nums;
}
.ue-table th, .ue-table td {
  padding: 16px 12px;
  text-align: end;
  border-bottom: 1px solid var(--tadam-border);
  font-size: 15px;
}
.ue-table th:first-child, .ue-table td:first-child { text-align: start; color: var(--tadam-medium-gray); font-weight: 500; }
.ue-table thead th { font-size: 12px; color: var(--tadam-light-gray); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; }
.ue-table td { font-weight: 600; color: var(--tadam-dark-gray); }
.ue-table .target { color: var(--tadam-primary); }

/* ────────────────────────── Traction grid ─────────────────── */
.product-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: 32px;
}
@media (max-width: 900px) { .product-row { grid-template-columns: repeat(2, 1fr); } }
.product-card {
  padding: 20px;
  border: 1px solid var(--tadam-border);
  border-radius: 16px;
  text-align: start;
}
.product-card .icon { width: 32px; height: 32px; margin-bottom: 12px; color: var(--tadam-primary); }
.product-card h4 { font-size: 15px; margin-bottom: 4px; }
.product-card .label-meta { font-size: 12px; }
.product-card .badge {
  display: inline-block; padding: 2px 8px; border-radius: 999px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.5px;
  background: rgba(34,197,94,.12); color: var(--tadam-success);
  text-transform: uppercase;
  margin-top: 8px;
}
.product-card .badge.dev {
  background: rgba(245, 158, 11, .14);
  color: #B45309;
}

/* Use-of-funds cards (extend product-card visuals with a big % stat) */
.use-row { margin-top: 32px; }
.use-card .use-pct {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1;
  color: var(--tadam-primary);
  margin: 4px 0 8px;
  font-variant-numeric: tabular-nums;
}
.use-card h4 { font-size: 16px; margin-bottom: 6px; color: var(--tadam-dark-gray); }
.use-card .label-meta { font-size: 13px; line-height: 1.5; color: var(--tadam-medium-gray); }

/* Roadmap timeline */
.roadmap {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  position: relative;
}
.roadmap-step {
  position: relative;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid var(--tadam-border);
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(26,26,26,.04);
}
.roadmap-step::before {
  /* Dashed connecting line between cards */
  content: "";
  position: absolute;
  top: 50%; right: -48px;
  width: 48px; height: 0;
  border-top: 2px dashed var(--tadam-border-strong, #cfd4dc);
  transform: translateY(-50%);
}
.roadmap-step:last-child::before { display: none; }
.roadmap-dot {
  width: 14px; height: 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.roadmap-step.is-now .roadmap-dot {
  background: var(--tadam-primary);
  box-shadow: 0 0 0 4px rgba(37,99,235,.18);
}
.roadmap-step.is-next .roadmap-dot {
  background: transparent;
  border: 2px solid var(--tadam-primary);
}
.roadmap-body { display: flex; flex-direction: column; gap: 6px; }
.roadmap-date {
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--tadam-primary);
}
.roadmap-title {
  font-size: 22px; font-weight: 700;
  color: var(--tadam-dark-gray);
  letter-spacing: -.4px;
  line-height: 1.2;
}
.roadmap-desc {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--tadam-medium-gray);
}
@media (max-width: 700px) {
  .roadmap { grid-template-columns: 1fr; gap: 24px; }
  .roadmap-step::before {
    top: auto; right: auto;
    bottom: -24px; left: 28px;
    width: 0; height: 24px;
    border-top: 0;
    border-left: 2px dashed var(--tadam-border-strong, #cfd4dc);
    transform: none;
  }
}

.volume-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 48px;
  padding-block: 32px;
  border-block: 1px solid var(--tadam-border);
}
@media (max-width: 900px) { .volume-row { grid-template-columns: repeat(2, 1fr); } }
.volume-stat .num { font-size: 56px; font-weight: 700; letter-spacing: -2px; line-height: 1; font-variant-numeric: tabular-nums; }
.volume-stat .lbl { font-size: 13px; color: var(--tadam-light-gray); margin-top: 6px; }

.team-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(0, 250px)); gap: 24px;
  justify-content: center;
  margin-top: 48px;
}
/* 3 team members: show 3-across when they fit, else stack one-per-row —
   never a 2+1 orphan row. 880px is just below the 3-across threshold. */
@media (max-width: 880px) { .team-row { grid-template-columns: 1fr; } }
.team-card { text-align: center; }
.team-avatar {
  width: 128px; height: 128px; border-radius: 999px;
  background: #F5F5F5;
  margin: 0 auto 16px;
  overflow: hidden;
  position: relative;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(1) contrast(1.05); transition: filter .35s ease, transform .35s ease; }

/* Real app screens dropped into phone + walkthrough frames */
.phone-frame .screen-img,
.walk-frame .screen-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.walk-frame { position: relative; overflow: hidden; }
.phone-frame { overflow: hidden; }
.team-link {
  display: block; width: 100%; height: 100%; border-radius: inherit; position: relative;
  outline: none; -webkit-tap-highlight-color: transparent;
}
.team-link::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: rgba(37, 99, 235, 0); transition: background .25s ease;
  pointer-events: none;
}
.team-link::before {
  content: ""; position: absolute; right: 6px; bottom: 6px;
  width: 28px; height: 28px; border-radius: 999px;
  background: var(--tadam-primary) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M19 3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14zM8.34 9.67H5.67v8.66h2.67V9.67zM7 5.67a1.55 1.55 0 1 0 0 3.1 1.55 1.55 0 0 0 0-3.1zM18.34 13.6c0-2.5-1.34-3.66-3.13-3.66-1.44 0-2.08.79-2.44 1.34V9.67h-2.66v8.66h2.66v-4.66c0-1.23.23-2.42 1.76-2.42 1.5 0 1.51 1.4 1.51 2.5v4.58h2.3V13.6z'/></svg>") center / 16px no-repeat;
  opacity: 0; transform: translateY(4px) scale(.85);
  transition: opacity .25s ease, transform .25s ease;
  box-shadow: 0 6px 16px rgba(37, 99, 235, .35);
  pointer-events: none;
}
.team-link:hover img, .team-link:focus-visible img { filter: grayscale(0) contrast(1.05); transform: scale(1.04); }
.team-link:hover::after, .team-link:focus-visible::after { background: rgba(37, 99, 235, .08); }
.team-link:hover::before, .team-link:focus-visible::before { opacity: 1; transform: translateY(0) scale(1); }
.team-link:focus-visible { box-shadow: 0 0 0 3px rgba(37, 99, 235, .35); }
.team-card h4 { font-size: 17px; }
.team-card .role { font-size: 13px; color: var(--tadam-light-gray); margin-top: 2px; }
.team-card .cred { font-size: 13px; color: var(--tadam-medium-gray); margin-top: 8px; line-height: 1.4; }

.quote-block {
  margin-top: 64px;
  padding: 48px;
  background: #F5F5F5;
  border-radius: 24px;
  text-align: center;
}
.quote-block p {
  font-size: 22px; line-height: 1.4;
  color: var(--tadam-dark-gray);
  font-weight: 500;
  margin: 0 auto;
  max-width: 720px;
}
.quote-block .label-meta { margin-top: 20px; }

/* ────────────────────────── Why now ───────────────────────── */
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  margin-top: 64px;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; } }
.why-col.card-infra {
  background: linear-gradient(180deg, rgba(37, 99, 235, .04), rgba(37, 99, 235, .02));
  border: 1px solid rgba(37, 99, 235, .18);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.why-col.card-infra::before {
  content: "AI = infrastructure";
  position: absolute; top: 14px; right: 16px;
  font-size: 10px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--tadam-primary); opacity: .7;
}
.why-col.card-infra h4 { color: var(--tadam-primary); }
.why-col.card-infra strong { color: var(--tadam-dark-gray); }
.why-col h4 { font-size: 22px; margin-bottom: 16px; line-height: 1.25; }
.why-col p { font-size: 16px; color: var(--tadam-medium-gray); line-height: 1.6; margin: 0; }
.why-col .icon-circle {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--tadam-primary-50);
  color: var(--tadam-primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.why-col .stat-line {
  margin-top: 24px; padding-top: 16px;
  border-top: 1px solid var(--tadam-border);
  font-size: 14px; color: var(--tadam-medium-gray);
}

/* ────────────────────────── Stack ─────────────────────────── */
.stack-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  margin-top: 64px;
}
@media (max-width: 900px) { .stack-row { grid-template-columns: repeat(2, 1fr); } }
.stack-item h4 { font-size: 16px; margin-bottom: 8px; }
.stack-item p { font-size: 14px; color: var(--tadam-medium-gray); line-height: 1.5; margin: 0; }
.stack-icon { width: 40px; height: 40px; margin-bottom: 16px; color: var(--tadam-primary); }
.stack-closer {
  margin-top: 64px;
  font-size: 22px;
  font-weight: 500;
  color: var(--tadam-dark-gray);
  max-width: 720px;
}

/* ────────────────────────── Ask ───────────────────────────── */
.ask-section { text-align: center; }
.ask-section .h-section {
  max-width: 920px; margin-inline: auto;
  font-size: clamp(32px, 5vw, 64px);
}
.ask-uses {
  margin: 40px auto 0;
  max-width: 640px;
  font-size: 18px;
  color: var(--tadam-medium-gray);
  line-height: 1.7;
}
.ask-uses strong { color: var(--tadam-dark-gray); font-weight: 600; }
.ask-section .ctas {
  margin-top: 48px;
  display: flex; gap: 12px; justify-content: center; align-items: center; flex-wrap: wrap;
  text-align: center;
}
.ask-section .ctas .btn-tadam,
.ask-section .ctas .btn-outline {
  margin: 0 auto;
  flex: 0 0 auto;
}
@media (max-width: 640px) {
  .ask-section .ctas .btn-tadam.lg,
  .ask-section .ctas .btn-outline.lg {
    width: auto;
    max-width: 100%;
    white-space: normal;
    line-height: 1.2;
  }
}

/* ────────────────────────── Footer ────────────────────────── */
.footer {
  background: #F5F5F5;
  padding-block: 64px;
  text-align: center;
}
.footer .wordmark-lg {
  font-size: 28px; font-weight: 700;
  color: var(--tadam-medium-gray);
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.footer .body { font-size: 14px; }
.footer a { color: var(--tadam-primary); }
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
  max-width: 720px;
}
.footer-meta-item { display: inline; }
.footer-meta-sep { color: var(--tadam-light-gray); }

/* ────────────────────────── Phone scenes ──────────────────── */
.scene { position: absolute; inset: 0; }
.scene-greeting {
  position: absolute; top: 60px; left: 18px; right: 18px;
  z-index: 12;
}
.scene-greeting .hello { font-size: 20px; font-weight: 700; color: var(--tadam-dark-gray); }
.scene-greeting .ask  { font-size: 17px; font-weight: 600; color: var(--tadam-dark-gray); margin-top: 2px; }
.scene-greeting .av {
  position: absolute; top: 0; right: 0;
  width: 36px; height: 36px; border-radius: 999px;
  background: linear-gradient(135deg,#cdd9ec,#a8bee2);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 600; font-size: 12px;
}
.scene-search {
  position: absolute; bottom: 24px; left: 14px; right: 14px;
  height: 44px; background: #fff; border-radius: 999px;
  display: flex; align-items: center; padding: 0 14px; gap: 8px;
  box-shadow: 0 8px 20px rgba(26,26,26,.12);
  font-size: 12px; color: var(--tadam-light-gray);
  z-index: 14;
}
.scene-search .mic { margin-left: auto; width: 24px; height: 24px; border-radius: 999px; background: var(--tadam-primary); }
.scene-prompt {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: #fff; border-radius: 16px; padding: 12px 18px;
  font-size: 13px; font-weight: 600;
  box-shadow: 0 8px 24px rgba(26,26,26,.12);
  white-space: nowrap;
  z-index: 13;
}
.scene-match {
  position: absolute; bottom: 80px; left: 14px; right: 14px;
  background: #fff; border-radius: 14px; padding: 12px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 24px rgba(26,26,26,.14);
  z-index: 13;
}
.scene-match .av {
  width: 36px; height: 36px; border-radius: 999px;
  background: linear-gradient(135deg,#e8c4a8,#bf8d6b);
  flex-shrink: 0;
}
.scene-match .name { font-size: 13px; font-weight: 600; color: var(--tadam-dark-gray); }
.scene-match .name b { color: var(--tadam-primary); font-weight: 700; }
.scene-match .meta { font-size: 11px; color: var(--tadam-light-gray); margin-top: 2px; }
.scene-sheet {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: #fff;
  border-radius: 24px 24px 0 0;
  padding: 16px 16px 80px;
  z-index: 16;
  box-shadow: 0 -12px 32px rgba(26,26,26,.10);
}
.scene-sheet::before {
  content: ""; display: block;
  width: 32px; height: 4px;
  background: var(--tadam-border-strong); border-radius: 99px;
  margin: 0 auto 12px;
}
.scene-sheet .away { font-size: 12px; color: var(--tadam-primary); font-weight: 600; text-align: center; margin-bottom: 12px; }
.scene-sheet .row { display: flex; gap: 10px; align-items: center; }
.scene-sheet .row .av {
  width: 48px; height: 48px; border-radius: 999px;
  background: linear-gradient(135deg,#e8c4a8,#bf8d6b);
}
.scene-sheet .row .name { font-size: 17px; font-weight: 700; color: var(--tadam-dark-gray); }
.scene-sheet .row .rating { font-size: 11px; color: var(--tadam-soft-gray); margin-top: 2px; }
.scene-sheet .row .rating .star { color: var(--tadam-star-yellow); }
.scene-sheet .tadam-cta {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  height: 44px; background: var(--tadam-primary);
  color: #fff; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase;
  animation: pulse 1.5s ease-in-out;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,99,235,.4); }
  50%      { box-shadow: 0 0 0 12px rgba(37,99,235,0); }
}

/* Scene labels (mini map streets) */
.map-bg .street {
  position: absolute; font-size: 8px; color: #a8b8d2;
  font-family: var(--tadam-font-sans);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .phone-frame { transition: none; }
  .scene-sheet .tadam-cta { animation: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ────────────────────────── Videos section ────────────────── */
.video-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 48px;
}
.video-tab {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 999px;
  background: #fff; border: 1.5px solid var(--tadam-border);
  color: var(--tadam-medium-gray);
  font-size: 14px; font-weight: 500;
  cursor: pointer;
  transition: all .15s ease;
}
.video-tab:hover { border-color: var(--tadam-border-strong); color: var(--tadam-dark-gray); }
.video-tab.active {
  background: var(--tadam-dark-gray);
  color: #fff;
  border-color: var(--tadam-dark-gray);
}
.video-tab .tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 2px 8px; border-radius: 999px;
  background: var(--tadam-primary-50); color: var(--tadam-primary);
}
.video-tab.active .tag { background: rgba(255,255,255,.15); color: #fff; }
.video-tab.supplier .tag { background: rgba(0,191,166,.12); color: #00BFA6; }
.video-tab.active.supplier .tag { background: rgba(255,255,255,.15); color: #fff; }

.video-stage {
  position: relative;
  margin-top: 24px;
  background: #0a0a0a;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(26,26,26,.14);
  aspect-ratio: 16 / 9;
}
.video-stage iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0; display: block;
}
.video-caption {
  margin-top: 16px;
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--tadam-medium-gray);
}
.video-caption strong { color: var(--tadam-dark-gray); font-weight: 600; }

/* — Expand button (top-right of video stage) — */
.video-expand {
  position: absolute;
  top: 14px; right: 14px;
  width: 38px; height: 38px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .55); color: #fff;
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 5;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity .2s ease, background .15s ease, transform .15s ease;
}
.video-stage:hover .video-expand,
.video-stage:focus-within .video-expand { opacity: 1; }
.video-expand:hover { background: rgba(0, 0, 0, .8); transform: scale(1.06); }
.video-expand:focus-visible { outline: 2px solid #fff; outline-offset: 2px; opacity: 1; }

/* — Fullscreen overlay — */
.video-overlay {
  position: fixed; inset: 0;
  background: rgba(10,10,10,.94);
  display: none;
  align-items: center; justify-content: center;
  z-index: 1000;
  padding: 24px;
  padding-top: 80px;
}
.video-overlay.open { display: flex; }
.video-overlay-stage {
  position: relative;
  width: 100%;
  max-width: 1600px;
  max-height: 100%;
  aspect-ratio: 16 / 9;
  background: #0a0a0a;
  border-radius: 16px;
  overflow: hidden;
}
.video-overlay-stage iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Always-visible close pill, fixed to viewport so it never gets cut off */
.video-close {
  position: fixed; top: 20px; right: 20px;
  height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: #fff; color: #1a1a1a;
  border: none;
  display: flex; align-items: center; gap: 10px;
  z-index: 1010;
  cursor: pointer;
  font: 600 14px/1 -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  letter-spacing: .01em;
  box-shadow: 0 6px 24px rgba(0,0,0,.45);
  transition: transform .15s ease, box-shadow .15s ease;
}
.video-close:hover { transform: scale(1.04); box-shadow: 0 8px 28px rgba(0,0,0,.55); }
.video-close:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.video-close-label { display: inline-block; }
.video-close-esc {
  display: inline-block;
  padding: 3px 7px;
  border-radius: 4px;
  background: rgba(26,26,26,.08);
  color: rgba(26,26,26,.6);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
}
@media (max-width: 600px) {
  .video-close { padding: 0 14px; height: 44px; top: 14px; right: 14px; }
  .video-close-esc { display: none; }
  .video-chrome { padding: 18px 12px 10px; gap: 10px; }
  .video-chrome-time { min-width: 56px; font-size: 11px; }
  .video-chrome-btn { width: 32px; height: 32px; }
}

/* Walk frame mini scenes */
.walk-frame .mini-screen {
  position: absolute; inset: 12px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}

/* ════════════════════════════════════════════════════════════
   5-AGENT REVIEW ADDITIONS · 2026-05
   ════════════════════════════════════════════════════════════ */

/* ────────────────────────── Hero live counter ─────────────── */
.hero-counter {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(37, 99, 235, .08);
  border: 1px solid rgba(37, 99, 235, .18);
  font-size: 14px;
  color: var(--tadam-dark-gray);
}
.hero-counter-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--tadam-primary);
  box-shadow: 0 0 0 0 rgba(37, 99, 235, .6);
  animation: hc-pulse 1.8s ease-out infinite;
  flex-shrink: 0;
}
@keyframes hc-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 99, 235, .55); }
  70%  { box-shadow: 0 0 0 12px rgba(37, 99, 235, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}
.hero-counter-num {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--tadam-primary);
}
.hero-counter-label { color: var(--tadam-dark-gray); }
.hero-counter-meta { font-size: 11px; color: #8D8D8D; margin-left: 4px; }

/* ────────────────────────── Competitive table ─────────────── */
.vs-table {
  margin-top: 48px;
  background: #fff;
  border: 1px solid var(--tadam-light-gray);
  border-radius: 24px;
  overflow: hidden;
}
.vs-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--tadam-light-gray);
}
.vs-row:last-child { border-bottom: none; }
.vs-cell {
  padding: 18px 20px;
  font-size: 15px;
  color: var(--tadam-dark-gray);
  display: flex;
  align-items: center;
  border-right: 1px solid var(--tadam-light-gray);
}
.vs-cell:last-child { border-right: none; }
.vs-row.vs-head .vs-cell {
  font-weight: 700;
  font-size: 14px;
  background: #FAFAFA;
  line-height: 1.3;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 20px;
  padding-bottom: 20px;
  gap: 4px;
}
.vs-feature { font-weight: 600; background: #FAFAFA; }
.vs-tadam { background: rgba(37, 99, 235, .06); font-weight: 600; }
.vs-row.vs-head .vs-tadam {
  background: var(--tadam-primary);
  color: #fff;
  font-size: 16px;
}
.vs-sub { display: block; font-size: 11px; font-weight: 500; color: #8D8D8D; margin-top: 4px; letter-spacing: .2px; }
.vs-row.vs-head .vs-tadam .vs-sub { color: rgba(255,255,255,.7); }
.vs-yes { color: var(--tadam-primary); font-size: 20px; font-weight: 700; }
.vs-no  { color: #C7CDD6; font-size: 20px; }
.vs-mid { color: #8D8D8D; font-size: 20px; font-weight: 700; }
.vs-foot {
  margin-top: 24px;
  font-size: 14px;
  color: #5B6472;
  font-style: italic;
  max-width: 720px;
}
@media (max-width: 880px) {
  .vs-row { grid-template-columns: 1.2fr 1fr; }
  .vs-row .vs-cell:nth-child(2),
  .vs-row .vs-cell:nth-child(3),
  .vs-row .vs-cell:nth-child(4) { display: none; }
}

/* ────────────────────────── Cohort retention ──────────────── */
.cohort {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 32px;
  background: #fff;
  border: 1px solid var(--tadam-light-gray);
  border-radius: 24px;
  padding: 32px;
}
.cohort-chart {
  position: relative;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  height: 240px;
}
.cohort-y {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 11px;
  color: #8D8D8D;
  text-align: right;
  padding-bottom: 24px;
  font-variant-numeric: tabular-nums;
}
.cohort-bars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 14px;
  border-bottom: 1px solid var(--tadam-light-gray);
  padding-bottom: 24px;
  position: relative;
}
.cohort-bar {
  height: var(--h);
  background: linear-gradient(180deg, rgba(37, 99, 235, .22), rgba(37, 99, 235, .08));
  border-radius: 8px 8px 0 0;
  position: relative;
  border-top: 2px solid rgba(37, 99, 235, .4);
}
.cohort-bar-now {
  background: linear-gradient(180deg, var(--tadam-primary), rgba(37, 99, 235, .55));
  border-top-color: var(--tadam-primary);
  box-shadow: 0 4px 14px rgba(37, 99, 235, .25);
}
.cohort-bar span {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  color: #8D8D8D;
  font-weight: 600;
}
.cohort-bar b {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: var(--tadam-dark-gray);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.cohort-bar-now b { color: var(--tadam-primary); font-size: 14px; }
.cohort-line {
  position: absolute;
  inset: 0 0 24px 48px;
  pointer-events: none;
  width: calc(100% - 48px);
  height: calc(100% - 24px);
  opacity: .5;
}
.cohort-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.cohort-stat {
  padding: 14px 18px;
  background: rgba(37, 99, 235, .04);
  border-radius: 12px;
  border-left: 3px solid var(--tadam-primary);
}
.cohort-stat b {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--tadam-primary);
  letter-spacing: -.5px;
  line-height: 1.1;
}
.cohort-stat span { font-size: 13px; color: #5B6472; }
.cohort-note { margin-top: 4px; font-size: 13px; color: #5B6472; line-height: 1.55; }
@media (max-width: 880px) {
  .cohort { grid-template-columns: 1fr; }
  .cohort-line { display: none; }
}

/* ────────────────────────── Vision 2030 ───────────────────── */
.vision-section { padding-top: 96px; padding-bottom: 96px; }
.vision-h {
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 600;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin: 24px 0 16px;
  max-width: 920px;
  text-wrap: balance;
}
.vision-h em { font-style: normal; color: var(--tadam-primary); }
.vision-lead {
  font-size: 22px;
  line-height: 1.5;
  color: #5B6472;
  max-width: 780px;
  margin: 0 0 64px;
  text-wrap: pretty;
}
.vision-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.vision-card {
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--tadam-light-gray);
  border-radius: 18px;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.vision-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, .35);
  box-shadow: 0 12px 32px rgba(37, 99, 235, .08);
}
.vision-num {
  font-size: 56px;
  font-weight: 700;
  color: var(--tadam-primary);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}
.vision-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--tadam-dark-gray);
  margin: 0;
}
.vision-foot {
  font-size: 18px;
  font-weight: 500;
  color: var(--tadam-dark-gray);
  font-style: italic;
  border-top: 1px solid var(--tadam-light-gray);
  padding-top: 24px;
  max-width: 780px;
}
@media (max-width: 880px) {
  .vision-grid { grid-template-columns: 1fr 1fr; }
}

/* ────────────────────────── Investor FAQ ──────────────────── */
.faq {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 920px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--tadam-light-gray);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.faq-item[open] {
  border-color: rgba(37, 99, 235, .3);
  box-shadow: 0 6px 20px rgba(37, 99, 235, .06);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 56px 20px 24px;
  font-size: 17px;
  font-weight: 600;
  color: var(--tadam-dark-gray);
  position: relative;
  user-select: none;
  transition: color .2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(37, 99, 235, .08);
  color: var(--tadam-primary);
  font-size: 18px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease, background .25s ease;
}
.faq-item[open] summary::after {
  content: "−";
  transform: translateY(-50%) rotate(180deg);
  background: var(--tadam-primary);
  color: #fff;
}
.faq-item summary:hover { color: var(--tadam-primary); }
.faq-body {
  padding: 0 24px 24px;
  font-size: 15px;
  line-height: 1.65;
  color: #5B6472;
  text-wrap: pretty;
}
.faq-body strong { color: var(--tadam-dark-gray); font-weight: 600; }


/* ══════════════════════════════════════════════════════════════
   MOBILE FIXES — keep this block last so it overrides earlier rules
   ══════════════════════════════════════════════════════════════ */

html, body { overflow-x: hidden; }
img, svg, iframe, video { max-width: 100%; }

/* Prevent any rogue horizontal overflow from wide grids/tables */
section { overflow-x: clip; }

/* ── Tablet & smaller (≤ 900px) ─────────────────────────────── */
@media (max-width: 900px) {
  section { padding-block: 72px; }
  .display { font-size: clamp(36px, 8vw, 56px); letter-spacing: -1px; }
  .h-section { font-size: clamp(28px, 6.4vw, 44px); letter-spacing: -.6px; }
  .h-stat { font-size: clamp(56px, 14vw, 96px); }
  .nav .container { gap: 12px; }
  .nav .wordmark { font-size: 20px; }
}

/* ── Mobile (≤ 640px) ──────────────────────────────────────── */
@media (max-width: 640px) {
  section { padding-block: 56px; }
  .container { padding-inline: 20px; }

  /* Type */
  .display { font-size: clamp(32px, 9vw, 44px); line-height: 1.08; letter-spacing: -.6px; }
  .h-section { font-size: clamp(26px, 7.5vw, 36px); line-height: 1.15; letter-spacing: -.4px; }
  .h-stat { font-size: clamp(48px, 16vw, 80px); }
  .ask-section .h-section { font-size: clamp(26px, 7.5vw, 36px); }
  .vision-h { font-size: clamp(32px, 9vw, 48px); letter-spacing: -.8px; }
  .story-act-h { font-size: clamp(22px, 6.4vw, 30px); }
  .subhead, .lead { font-size: 16px; }
  .eyebrow { font-size: 11px; }

  /* Hero */
  .hero { padding-block: 56px 24px; gap: 36px; }
  .hero .ctas { width: 100%; }
  .hero .ctas .btn-tadam, .hero .ctas .btn-outline { flex: 1 1 auto; }
  .hero .trust { margin-top: 36px; gap: 8px; flex-wrap: wrap; }
  .hero .trust .trust-chip { font-size: 12px; }

  /* Nav */
  .nav .container { padding-block: 10px; }
  .nav .wordmark { font-size: 18px; }
  .nav .btn-tadam { height: 32px; padding-inline: 12px; font-size: 11px; }

  /* Buttons */
  .btn-tadam.lg, .btn-outline.lg { height: 52px; padding-inline: 22px; font-size: 15px; }

  /* Story split + journey */
  .story-split { grid-template-columns: 1fr; }
  .story-side { padding: 22px; }
  .story-quote { font-size: 18px; }
  .story-stats { grid-template-columns: 1fr; gap: 16px; }
  .journey-grid { grid-template-columns: 1fr; }

  /* Walk slider — keep readable inside narrow viewport */
  .walk-slider { max-width: 320px; gap: 22px; }
  .walk-step-lbl { font-size: 12px; }

  /* Videos */
  .video-tabs { gap: 6px; margin-top: 32px; }
  .video-tab { font-size: 13px; padding: 10px 12px; }
  .video-tab .tag { font-size: 10px; padding: 2px 6px; }
  .video-stage { aspect-ratio: 16 / 9; max-width: 100%; margin-inline: auto; }
  .video-caption { font-size: 14px; }

  /* Funnel-compare numbers — wrap meta below */
  .funnel-row { flex-direction: column; align-items: flex-start; gap: 8px; padding: 16px; }
  .funnel-row-meta { margin-left: 0; white-space: normal; font-size: 13px; }

  /* Stats */
  .stat-block { grid-template-columns: 1fr; gap: 12px; padding-block: 32px; }
  .stat-block .h-stat { font-size: clamp(48px, 16vw, 80px); }
  .stat-block .body { font-size: 16px; }

  /* Product cards / team */
  .product-row { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-card { padding: 16px; }
  .product-card h4 { font-size: 16px; }
  .team-row { grid-template-columns: 1fr; gap: 24px; }
  .team-avatar { width: 96px; height: 96px; }

  /* Two-col / Tiles */
  .two-col, .two-col.tight { grid-template-columns: 1fr; gap: 32px; }
  .tiles-3 { grid-template-columns: 1fr; gap: 14px; }

  /* Vision */
  .vision-section { padding-block: 64px; }
  .vision-grid { grid-template-columns: 1fr; }
  .vision-num { font-size: 44px; }

  /* Ask */
  .ask-uses { font-size: 15px; line-height: 1.7; }

  /* Quote / cohort / misc */
  .quote-block { padding: 24px; }
  .quote-block p { font-size: 18px; line-height: 1.4; }

  /* FAQ readability */
  .faq-item summary { font-size: 15px; padding: 18px 0; }
  .faq-body { font-size: 14px; }

  /* Footer */
  .footer .wordmark-lg { font-size: 22px; }
  .footer .body { font-size: 13px; }
  .footer-meta { flex-direction: column; gap: 6px; }
  .footer-meta-sep { display: none; }

  /* Phone mockup in hero — let it breathe */
  .phone-frame { max-width: 280px; margin-inline: auto; }
}

/* ── Very narrow (≤ 380px) — last-mile cleanup ─────────────── */
@media (max-width: 380px) {
  .container { padding-inline: 16px; }
  .display { font-size: clamp(28px, 9vw, 36px); }
  .h-section { font-size: clamp(22px, 7.5vw, 30px); }
  .nav .btn-tadam { display: none; }
  .product-row { grid-template-columns: 1fr; }
  .team-row { grid-template-columns: 1fr; }
}


/* ══════════════════════════════════════════════════════════════
   MOBILE TEXT-WRAPPING SAFETY NET
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  /* Allow long words/URLs/numbers to wrap inside narrow columns */
  /* Allow long prose to wrap, but keep headings/stats intact */
  p, li, a, span:not(.h-stat span):not(.sd-tile-stat span), strong, em, summary {
    overflow-wrap: break-word;
    word-break: normal;
  }
  /* Big numbers must never break per digit */
  .h-stat, .sd-tile-stat, .hero-counter-num, .display, .h-section, h1, h2, h3, h4 {
    overflow-wrap: normal;
    word-break: keep-all;
  }
  /* Defeat any remaining nowrap that breaks layout */
  .hero .trust .trust-chip { white-space: normal; }
  .hero .trust span { white-space: normal; }
  .funnel-row-meta { white-space: normal; }
  .story-vs-label { white-space: normal; }
  .hn-legend-item { white-space: normal; }

  /* Make sure flex children can shrink below their content width */
  .funnel-row, .story-side, .hero, .stat-block, .video-tab,
  .product-card, .team-card, .stack-item, .why-col, .vision-card,
  .quote-block, .cohort, .takerate-bar, .ask-uses {
    min-width: 0;
  }

  /* Tables / grids that previously could overflow */
  .vs-table, .ue-table { font-size: 13px; }

  /* Funnel rows: reflow the meta below the value */
  .funnel-row { gap: 6px; }
  .funnel-row-value { font-size: 16px; }
  .funnel-row-meta { font-size: 12px; line-height: 1.4; }

  /* Story side numbers / metas */
  .story-meta { font-size: 12px; }
  .story-stat .num { font-size: 32px !important; }

  /* Trust chips: smaller, wrap */
  .hero .trust { gap: 6px 10px; }
  .hero .trust .trust-chip { padding: 6px 10px; font-size: 11px; }

  /* Eyebrow rows above section heads — let them wrap */
  .eyebrow { white-space: normal; }
}

@media (max-width: 640px) {
  .container { padding-inline: 20px; max-width: 100%; }
  .phone-stage { width: 100%; max-width: 280px; margin-inline: auto; }
  .phone-frame { max-width: 100%; }
  .hero { overflow: hidden; }
  /* Stat tiles: single column on phones so numbers don't squeeze */
  .tiles-3 { grid-template-columns: 1fr !important; gap: 16px; }
  .sd-tile-stat { font-size: clamp(56px, 18vw, 96px) !important; line-height: 1; white-space: nowrap; }
  .h-stat { white-space: nowrap; }
  /* Trust chips: wrap cleanly */
  .hero .trust { width: 100%; }
  .hero .trust .trust-chip { flex: 0 1 auto; max-width: 100%; }
  /* Subhead/lead: don't fold mid-word */
  .subhead, .lead { hyphens: auto; }
  img, svg, iframe { max-width: 100%; height: auto; }
}

/* ════════════════════════════════════════════════════════════
   Roadmap · horizontal phased timeline
   Dashed rail with phase-colored dots; columns describe each milestone
   ════════════════════════════════════════════════════════════ */
.rm-track {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  position: relative;
}
.rm-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  --rm-c: var(--tadam-primary);
  --rm-c-soft: rgba(37, 99, 235, .12);
}
.rm-c-il { --rm-c: var(--tadam-primary);   --rm-c-soft: rgba(37, 99, 235, .14); }
.rm-c-br { --rm-c: var(--tadam-teal-500);  --rm-c-soft: rgba(0, 191, 166, .18); }
.rm-c-us { --rm-c: var(--tadam-dark-gray); --rm-c-soft: rgba(26, 26, 26, .12); }

.rm-col-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-height: 56px;
}
.rm-col-phase {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--tadam-light-gray);
}
.rm-col-date {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.2px;
  color: var(--rm-c);
}

.rm-col-rail {
  position: relative;
  width: 100%;
  height: 32px;
  margin: 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rm-col-rail-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  transform: translateY(-50%);
  background-image: linear-gradient(
    to right,
    var(--tadam-border-strong) 0,
    var(--tadam-border-strong) 6px,
    transparent 6px,
    transparent 12px
  );
  background-size: 12px 2px;
  background-repeat: repeat-x;
  background-position: center;
}
.rm-col:first-child .rm-col-rail-line { left: 50%; }
.rm-col:last-child  .rm-col-rail-line { right: 24px; }
.rm-col:last-child .rm-col-rail::after {
  content: "";
  position: absolute;
  top: 50%; right: 4px;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--tadam-border-strong);
}
.rm-col-dot {
  position: relative;
  z-index: 1;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--rm-c);
  box-shadow: 0 0 0 4px var(--rm-c-soft);
}

.rm-col-body {
  padding: 0 4px;
  text-align: center;
}
.rm-col-title {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.1px;
  color: var(--tadam-dark-gray);
  line-height: 1.3;
}
.rm-col-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--tadam-medium-gray);
}
.rm-confidential {
  margin: 40px auto 0;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--tadam-light-gray);
}

/* Tablet — 3 columns × 2 rows */
@media (max-width: 1024px) {
  .rm-track { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .rm-col:first-child .rm-col-rail-line,
  .rm-col:last-child .rm-col-rail-line { left: 0; right: 0; }
  .rm-col:nth-child(3n+1) .rm-col-rail-line { left: 50%; }
  .rm-col:nth-child(3n)   .rm-col-rail-line { right: 24px; }
  .rm-col:last-child .rm-col-rail::after { display: none; }
  .rm-col:nth-child(3n) .rm-col-rail::after {
    content: "";
    position: absolute;
    top: 50%; right: 4px;
    transform: translateY(-50%);
    width: 0; height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid var(--tadam-border-strong);
  }
}

/* Mobile — vertical timeline */
@media (max-width: 640px) {
  .rm-track {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 32px;
    padding-left: 40px;
    position: relative;
  }
  .rm-track::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background-image: linear-gradient(
      to bottom,
      var(--tadam-border-strong) 0,
      var(--tadam-border-strong) 6px,
      transparent 6px,
      transparent 12px
    );
    background-size: 2px 12px;
    background-repeat: repeat-y;
  }
  .rm-track::after {
    content: "";
    position: absolute;
    left: 11px;
    bottom: 12px;
    width: 0; height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid var(--tadam-border-strong);
  }
  .rm-col {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    padding: 14px 0;
    position: relative;
  }
  .rm-col-rail { display: none; }
  .rm-col::before {
    content: "";
    position: absolute;
    left: -32px;
    top: 22px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--rm-c);
    box-shadow: 0 0 0 4px var(--rm-c-soft);
    z-index: 1;
  }
  .rm-col-head {
    flex-direction: row;
    align-items: baseline;
    justify-content: flex-start;
    gap: 10px;
    margin: 0 0 6px;
    min-height: 0;
  }
  .rm-col-phase { font-size: 10px; }
  .rm-col-date { font-size: 15px; }
  .rm-col-body { padding: 0; text-align: left; }
  .rm-col-title { font-size: 16px; margin: 0 0 6px; line-height: 1.3; }
  .rm-col-text { font-size: 13px; line-height: 1.5; }
}
