/* 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%;
}
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); }
@media (max-width: 900px) { .nav .links { display: none; } }

/* ────────────────────────── 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; }

/* ────────────────────────── 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;
}
.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 {
  padding-block: 96px 64px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 1000px) { .hero { grid-template-columns: 1fr; gap: 48px; padding-top: 64px; } }
.hero .ctas { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.hero .trust {
  margin-top: 56px;
  font-size: 14px; color: var(--tadam-light-gray);
  line-height: 1.8;
}
.hero .trust span { white-space: nowrap; }
.hero .trust .dot { margin-inline: 12px; color: var(--tadam-soft-gray); }
@media (max-width: 600px) { .hero .trust .dot { display: block; height: 0; visibility: hidden; margin: 0; } }

/* Phone mockup */
.phone-stage {
  display: flex; justify-content: center; align-items: center;
  background: #F5F5F5;
  border-radius: 32px;
  padding: 48px 32px;
  min-height: 560px;
}
.phone {
  position: relative;
  width: 280px; height: 580px;
  background: #1A1A1A;
  border-radius: 44px;
  padding: 8px;
  box-shadow: 0 24px 60px rgba(26,26,26,.18);
}
.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-arrow { color: var(--tadam-soft-gray); font-size: 14px; }

/* ────────────────────────── 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-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--tadam-primary-50);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.tile-num {
  font-size: 48px; font-weight: 700;
  color: var(--tadam-primary);
  letter-spacing: -1.5px;
  line-height: 1; margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.tile h3 { font-size: 22px; margin-bottom: 8px; }
.tile .body { font-size: 16px; }

/* ────────────────────────── Walkthrough ───────────────────── */
.walkthrough {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 64px;
}
@media (max-width: 900px) { .walkthrough { grid-template-columns: repeat(2, 1fr); } }
.walk-frame {
  background: #fff; border-radius: 20px;
  padding: 12px;
  box-shadow: 0 8px 24px rgba(26,26,26,.08);
  aspect-ratio: 9/16;
  position: relative;
  overflow: hidden;
}
.walk-frame .label-meta { margin-top: 14px; text-align: center; }

/* ────────────────────────── 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; }

/* ────────────────────────── Map (Israel cities) ───────────── */
.city-map {
  margin-top: 64px;
  background: #E8EEF8;
  border-radius: 24px;
  padding: 48px;
  text-align: center;
}
.city-svg { max-width: 240px; margin: 0 auto; }

/* ────────────────────────── 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;
}

.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(4, 1fr); gap: 24px;
  margin-top: 48px;
}
@media (max-width: 700px) { .team-row { grid-template-columns: repeat(2, 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); }
.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 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; flex-wrap: wrap;
}

/* ────────────────────────── 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); }

/* ────────────────────────── 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-expand {
  position: absolute; top: 16px; right: 16px;
  width: 44px; height: 44px;
  border-radius: 999px;
  background: rgba(0,0,0,.65); color: #fff;
  border: none;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 5;
  transition: background .15s ease;
}
.video-expand:hover { background: rgba(0,0,0,.85); }
.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; }

/* 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: 32px;
}
.video-overlay.open { display: flex; }
.video-overlay-stage {
  position: relative;
  width: 100%; height: 100%;
  max-width: 1600px;
  aspect-ratio: 16 / 9;
  background: #0a0a0a;
  border-radius: 16px;
  overflow: hidden;
}
.video-overlay-stage iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-close {
  position: absolute; top: -52px; right: 0;
  width: 44px; height: 44px; border-radius: 999px;
  background: rgba(255,255,255,.12); color: #fff;
  border: none;
  display: flex; align-items: center; justify-content: center;
}
.video-close:hover { background: rgba(255,255,255,.22); }

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