/* ── TARIFF CALCULATOR ─────────────────────────────────── */

.tc-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}

/* ── STEP SHELL ── */
.tc-shell {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--border);
  overflow: visible;
}

/* ── LEFT SIDEBAR ── */
.tc-sidebar {
  background: var(--green);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.tc-sidebar-title {
  font-family: 'Source Serif 4', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 8px;
}
.tc-sidebar-sub {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 36px;
}
.tc-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.tc-step-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  opacity: .3;
  transition: opacity .25s;
}
.tc-step-item:last-child { border-bottom: none; }
.tc-step-item.active { opacity: 1; }
.tc-step-item.done { opacity: .55; }
.tc-step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  flex-shrink: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: background .25s, border-color .25s, color .25s;
}
.tc-step-item.active .tc-step-num {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.5);
  color: white;
}
.tc-step-item.done .tc-step-num {
  background: var(--green-a);
  border-color: var(--green-a);
  color: white;
}
.tc-step-item.done .tc-step-num::after {
  content: '✓';
  font-size: 11px;
}
.tc-step-item.done .tc-step-num-inner { display: none; }
.tc-step-label {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,.6);
  line-height: 1.5;
  padding-top: 3px;
}
.tc-step-item.active .tc-step-label { color: white; font-weight: 500; }

/* ── RIGHT PANEL ── */
.tc-panel {
  padding: 40px 40px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

/* ── STEP VIEWS ── */
.tc-view { display: none; flex-direction: column; flex: 1; }
.tc-view.active { display: flex; animation: tcFadeUp .3s ease both; }
@keyframes tcPulse {
  0%   { background: rgba(30,122,80,.12); }
  100% { background: rgba(30,122,80,.04); }
}
.tc-received-pulse {
  animation: tcPulse .45s ease-out forwards;
}
@keyframes tcFadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.tc-step-eyebrow {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green-a);
  font-weight: 500;
  margin-bottom: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.tc-step-h {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -.3px;
  line-height: 1.25;
  margin-bottom: 8px;
}
.tc-step-sub {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.65;
  margin-bottom: 28px;
}

/* ── OPTION CARDS ── */
.tc-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.tc-option {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  transition: border-color .15s, background .15s;
  text-align: left;
  width: 100%;
  border-radius: 2px;
}
.tc-option:hover {
  border-color: var(--green-a);
  background: rgba(13,61,40,.02);
}
.tc-option.selected {
  border-color: var(--green-a);
  background: rgba(30,122,80,.05);
}
.tc-option-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .15s;
}
.tc-option.selected .tc-option-radio {
  border-color: var(--green-a);
}
.tc-option.selected .tc-option-radio::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-a);
}
.tc-option-text { flex: 1; }
.tc-option-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  display: block;
  margin-bottom: 2px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.tc-option-desc {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.55;
}
.tc-option-badge {
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--green-a);
  border: 1px solid rgba(30,122,80,.3);
  padding: 2px 7px;
  border-radius: 1px;
  flex-shrink: 0;
  margin-top: 2px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ── PROGNOSIS SELECT ── */
.tc-select-wrap {
  margin-bottom: 20px;
}
.tc-select-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  display: block;
  margin-bottom: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.tc-select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231E7A50' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  border-radius: 2px;
  transition: border-color .15s;
}
.tc-select:focus {
  outline: none;
  border-color: var(--green-a);
}

/* Live tariff preview */
.tc-tariff-preview {
  background: rgba(13,61,40,.04);
  border-left: 3px solid var(--green-a);
  padding: 14px 18px;
  margin-bottom: 24px;
  display: none;
}
.tc-tariff-preview.visible { display: block; }
.tc-tariff-preview-label {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-a);
  font-weight: 500;
  margin-bottom: 4px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.tc-tariff-preview-val {
  font-family: 'Source Serif 4', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--green);
  line-height: 1.1;
}
.tc-tariff-preview-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 400;
  line-height: 1.5;
}

/* Prognosis info note */
.tc-info-note {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 12px 16px;
  margin-bottom: 24px;
  border-radius: 2px;
}
.tc-info-note p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
  font-weight: 400;
}
.tc-info-note strong { color: var(--body); font-weight: 500; }

/* ── FINANCIAL LOSSES INPUT ── */
.tc-losses-wrap {
  margin-bottom: 24px;
}
.tc-losses-input-row {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 2px;
  transition: border-color .15s;
}
.tc-losses-input-row:focus-within {
  border-color: var(--green-a);
}
.tc-losses-prefix {
  padding: 12px 14px;
  background: var(--cream);
  border-right: 1px solid var(--border);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  font-family: 'Plus Jakarta Sans', sans-serif;
  flex-shrink: 0;
}
.tc-losses-input {
  flex: 1;
  border: none;
  padding: 12px 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  color: var(--ink);
  background: transparent;
}
.tc-losses-input:focus { outline: none; }
.tc-losses-hint {
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.5;
}

/* ── ATE TOGGLE ── */
.tc-ate-options {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.tc-ate-btn {
  padding: 9px 18px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  border-radius: 2px;
  transition: all .15s;
}
.tc-ate-btn:hover { border-color: var(--green-a); color: var(--ink); }
.tc-ate-btn.selected {
  background: var(--green);
  border-color: var(--green);
  color: white;
}
.tc-ate-input-row {
  display: none;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 2px;
  margin-bottom: 10px;
  transition: border-color .15s;
}
.tc-ate-input-row.visible { display: flex; }
.tc-ate-input-row:focus-within { border-color: var(--green-a); }
.tc-ate-not-sure {
  display: none;
  background: rgba(200,135,58,.06);
  border: 1px solid rgba(200,135,58,.2);
  border-left: 3px solid var(--amber);
  padding: 12px 16px;
  margin-bottom: 10px;
  border-radius: 2px;
}
.tc-ate-not-sure.visible { display: block; }
.tc-ate-not-sure p {
  font-size: 12px;
  color: var(--body);
  line-height: 1.65;
  margin: 0;
}

/* Ensure clicks on option children bubble to the button */
.tc-option * { pointer-events: none; }

/* ── NAV HINT ── */
.tc-nav-hint {
  font-size: 11px;
  color: var(--muted);
  font-weight: 400;
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.4;
}

/* ── NAV BUTTONS ── */
.tc-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: auto;
  padding-top: 24px;
}
.tc-btn-next {
  background: var(--green);
  color: white;
  border: none;
  padding: 13px 28px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 2px;
  transition: background .15s, opacity .15s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tc-btn-next:hover { background: var(--green-m); }
.tc-btn-next:disabled { opacity: .35; cursor: not-allowed; }
.tc-btn-back {
  background: none;
  border: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  cursor: pointer;
  padding: 0;
  border-bottom: 1px solid rgba(0,0,0,.12);
  padding-bottom: 2px;
  transition: color .15s;
}
.tc-btn-back:hover { color: var(--ink); }

/* ── RESULT PANEL ── */
.tc-result {
  display: none;
  flex-direction: column;
}
.tc-result.active { display: flex; animation: tcFadeUp .35s ease both; }

.tc-result-header {
  background: var(--green);
  padding: 36px 40px 32px;
}
.tc-result-eyebrow {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  font-weight: 500;
  margin-bottom: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.tc-result-h {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  color: white;
  line-height: 1.2;
  margin-bottom: 6px;
  letter-spacing: -.3px;
}
.tc-result-schedule {
  font-size: 11px;
  color: rgba(255,255,255,.45);
  font-weight: 400;
  line-height: 1.5;
}

.tc-result-body {
  padding: 36px 40px;
  background: var(--white);
}

/* Breakdown table */
.tc-breakdown {
  margin-bottom: 0;
}
.tc-breakdown-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}
.tc-breakdown-row:last-child { border-bottom: none; }
.tc-breakdown-row.tc-total-row {
  border-top: 2px solid var(--ink);
  border-bottom: none;
  padding-top: 16px;
  margin-top: 4px;
}
.tc-breakdown-row.tc-received-row {
  border-top: 2px solid var(--green-a);
  border-bottom: none;
  padding-top: 16px;
  margin-top: 4px;
  background: rgba(30,122,80,.04);
  padding: 16px 14px;
  margin: 0 -14px;
  border-radius: 2px;
}
.tc-breakdown-label {
  font-size: 13px;
  color: var(--body);
  font-weight: 400;
  line-height: 1.45;
  flex: 1;
}
.tc-breakdown-label small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
  line-height: 1.4;
}
.tc-breakdown-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  flex-shrink: 0;
}
.tc-breakdown-val.positive { color: var(--green-a); }
.tc-breakdown-val.deduction { color: var(--amber); }
.tc-breakdown-val.total-val {
  font-size: 18px;
  color: var(--ink);
}
.tc-breakdown-val.received-val {
  font-family: 'Source Serif 4', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--green);
}
.tc-breakdown-section-head {
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  padding: 18px 0 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  border-bottom: 1px solid var(--border);
}

/* Divider between value and deductions */
.tc-breakdown-divider {
  height: 1px;
  background: var(--border);
  margin: 4px 0;
}

/* Key insight line */
.tc-insight {
  margin-top: 28px;
  padding: 18px 20px;
  background: var(--cream);
  border-left: 3px solid var(--green-a);
  border-radius: 0 2px 2px 0;
}
.tc-insight p {
  font-family: 'Source Serif 4', serif;
  font-size: 14px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
  margin: 0;
}
.tc-insight p em { color: var(--green-a); font-style: italic; }

/* Context note */
.tc-context {
  margin-top: 16px;
  padding: 16px 20px;
  background: var(--cream);
  border-radius: 2px;
}
.tc-context p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* Mixed injury notice */
.tc-mixed-notice {
  padding: 32px 40px;
  background: var(--white);
}
.tc-mixed-h {
  font-family: 'Source Serif 4', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.3;
}
.tc-mixed-body {
  font-size: 14px;
  color: var(--body);
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 14px;
}
.tc-mixed-callout {
  background: rgba(200,135,58,.06);
  border-left: 3px solid var(--amber);
  padding: 14px 18px;
  margin: 16px 0;
  border-radius: 0 2px 2px 0;
}
.tc-mixed-callout p {
  font-size: 13px;
  color: var(--body);
  line-height: 1.7;
  margin: 0;
}

/* Result next steps */
.tc-next-steps {
  padding: 28px 40px 40px;
  background: var(--cream);
  border-top: 1px solid var(--border);
}
.tc-next-label {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.tc-next-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tc-next-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color .15s, box-shadow .15s;
  gap: 12px;
}
.tc-next-link:hover {
  border-color: var(--green-a);
  box-shadow: 0 2px 8px rgba(13,61,40,.06);
}
.tc-next-link-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}
.tc-next-link-arrow {
  color: var(--green-a);
  font-size: 14px;
  flex-shrink: 0;
}

/* Reset link */
.tc-reset {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  color: var(--muted);
  cursor: pointer;
  padding: 0;
  border-bottom: 1px solid rgba(0,0,0,.1);
  padding-bottom: 1px;
  margin-top: 20px;
  transition: color .15s;
}
.tc-reset:hover { color: var(--ink); }

/* OIC self note */
.tc-oic-note {
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(13,61,40,.04);
  border-left: 3px solid var(--green-a);
  border-radius: 0 2px 2px 0;
}
.tc-oic-note p {
  font-size: 12px;
  color: var(--body);
  line-height: 1.65;
  margin: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  .tc-wrap { padding: 40px 16px 72px; }
  .tc-shell { grid-template-columns: 1fr; }
  .tc-sidebar { padding: 24px 20px; }
  .tc-sidebar-title { font-size: 16px; margin-bottom: 6px; }
  .tc-sidebar-sub { margin-bottom: 20px; font-size: 11px; }
  .tc-steps { flex-direction: row; flex-wrap: wrap; gap: 6px; }
  .tc-step-item {
    flex-direction: row;
    padding: 6px 10px;
    border-bottom: none;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    gap: 7px;
    opacity: .4;
  }
  .tc-step-item.active { opacity: 1; background: rgba(255,255,255,.1); }
  .tc-step-label { font-size: 11px; padding-top: 0; }
  .tc-panel { padding: 28px 20px; }
  .tc-result-header { padding: 28px 20px 24px; }
  .tc-result-body { padding: 24px 20px; }
  .tc-mixed-notice { padding: 24px 20px; }
  .tc-next-steps { padding: 24px 20px 36px; }
  .tc-tariff-preview-val { font-size: 24px; }
  .tc-breakdown-val.received-val { font-size: 22px; }
}
@media (max-width: 420px) {
  .tc-ate-options { flex-direction: column; }
  .tc-ate-btn { text-align: left; }
}

/* ══════════════════════════════════════════════════════════
   VID-INTRO — Animated explainer section
   All selectors scoped under .vid-intro to prevent bleed
   ══════════════════════════════════════════════════════════ */

.vid-intro {
  margin-bottom: 44px;
}

.vid-framing {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

/* Stage — 16:9 aspect ratio container */
.vid-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--cream);
  border: 1px solid var(--border);
  overflow: hidden;
}

.vid-progress {
  position: absolute;
  top: 0; left: 0;
  height: 2px;
  background: var(--green-a);
  width: 0%;
  z-index: 10;
}

/* ── Scenes ── */
.vid-scene {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5% 8%;
  text-align: center;
  opacity: 0;
  transition: opacity 0.55s ease;
  background: var(--cream);
}
.vid-scene.active { opacity: 1; }

/* Brand scenes (1–3) */
.vid-brand { background: var(--cream); }

.vid-eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(9px, 1.1vw, 11px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: clamp(12px, 2.5%, 24px);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.vid-eyebrow.show { opacity: 1; }

/* Scene 1 */
.vid-hook {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(16px, 2.8vw, 28px);
  font-weight: 400;
  color: var(--green);
  line-height: 1.25;
  max-width: 80%;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.55s ease 0.15s, transform 0.55s ease 0.15s;
  margin-bottom: 0;
}
.vid-hook.show { opacity: 1; transform: translateY(0); }
.vid-hook em { font-style: italic; color: var(--green-a); }

.vid-rule {
  width: 32px; height: 1px;
  background: rgba(13,61,40,0.2);
  margin: clamp(10px, 2%, 18px) auto;
  opacity: 0;
  transition: opacity 0.4s ease 0.4s;
}
.vid-rule.show { opacity: 1; }

.vid-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(11px, 1.4vw, 14px);
  color: var(--body);
  font-weight: 400;
  line-height: 1.6;
  max-width: 70%;
  opacity: 0;
  transition: opacity 0.5s ease 0.55s;
}
.vid-sub.show { opacity: 1; }

/* Scene 2 */
.vid-build-row {
  display: flex;
  align-items: baseline;
  gap: clamp(8px, 1.5%, 16px);
  font-family: 'Source Serif 4', serif;
  font-size: clamp(22px, 4.5vw, 48px);
  flex-wrap: wrap;
  justify-content: center;
  color: var(--green);
}
.vid-chunk {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.vid-chunk.show { opacity: 1; transform: translateY(0); }
.vid-op    { color: rgba(13,61,40,0.3); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.55em; font-weight: 300; }
.vid-total { color: var(--green-a); }

.vid-stack-desc {
  display: flex;
  gap: clamp(16px, 3%, 32px);
  justify-content: center;
  margin-top: clamp(10px, 2%, 20px);
  opacity: 0;
  transition: opacity 0.5s ease;
  flex-wrap: wrap;
}
.vid-stack-desc.show { opacity: 1; }
.vid-stack-item { text-align: center; }
.vid-stack-fig {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(12px, 1.8vw, 16px);
  color: var(--green);
  font-weight: 400;
}
.vid-stack-lbl {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(9px, 1vw, 11px);
  color: var(--muted);
  font-weight: 400;
  margin-top: 2px;
}

.vid-caption {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(10px, 1.3vw, 13px);
  color: var(--body);
  font-weight: 400;
  line-height: 1.6;
  max-width: 72%;
  margin-top: clamp(8px, 1.5%, 14px);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.vid-caption.show { opacity: 1; }

/* Scene 3 */
.vid-compare {
  display: flex;
  align-items: center;
  gap: clamp(16px, 4%, 40px);
  justify-content: center;
}
.vid-col { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.vid-fig {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(28px, 6vw, 64px);
  line-height: 1;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.vid-fig.show { opacity: 1; transform: translateY(0); }
.vid-tariff { color: #5C6360; font-weight: 500; transition: opacity 0.6s ease; }
.vid-tariff.dim { opacity: 0.45; }
.vid-final  { color: var(--green-a); }
.vid-fig-lbl {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(9px, 1vw, 11px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}

.vid-arr {
  display: flex;
  align-items: center;
  padding-bottom: 16px;
  opacity: 0;
  transform: scaleX(0.5);
  transform-origin: left;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.vid-arr.show { opacity: 1; transform: scaleX(1); }
.vid-arr-shaft { width: clamp(24px, 4%, 40px); height: 1px; background: var(--border); }
.vid-arr-head {
  width: 0; height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid rgba(13,61,40,0.2);
}

.vid-insight {
  margin-top: clamp(12px, 2.5%, 24px);
  border-left: 3px solid var(--green-a);
  padding: clamp(8px, 1.5%, 14px) clamp(12px, 2%, 20px);
  background: rgba(30,122,80,0.05);
  border-radius: 0 2px 2px 0;
  max-width: 72%;
  text-align: left;
  opacity: 0;
  transition: opacity 0.55s ease;
}
.vid-insight.show { opacity: 1; }
.vid-insight p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(10px, 1.3vw, 13px);
  color: var(--body);
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}
.vid-insight strong { font-weight: 600; color: var(--green); }

/* ── UI scenes (4–5) ── */
.vid-scene.vid-ui {
  background: var(--cream-dk);
  padding: 0;
  text-align: left;
}

.vid-ui-shell {
  display: flex;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.vid-ui-shell.show { opacity: 1; }

.vid-ui-sidebar {
  width: 26%;
  min-width: 0;
  background: var(--green);
  padding: clamp(12px, 4%, 32px) clamp(10px, 3%, 24px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.vid-ui-stitle {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(9px, 1.5vw, 14px);
  color: #fff;
  line-height: 1.3;
  margin-bottom: 4px;
  font-weight: 400;
}
.vid-ui-ssub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(8px, 1vw, 10px);
  color: rgba(255,255,255,0.4);
  font-weight: 400;
  margin-bottom: clamp(8px, 2%, 18px);
}
.vid-ui-steps { display: flex; flex-direction: column; }
.vid-ui-step {
  display: flex;
  align-items: center;
  gap: clamp(5px, 1%, 9px);
  padding: clamp(4px, 0.8%, 7px) 0;
  border-top: 0.5px solid rgba(255,255,255,0.08);
}
.vid-ui-step:last-child { border-bottom: 0.5px solid rgba(255,255,255,0.08); }
.vid-ui-snum {
  width: clamp(14px, 2vw, 18px);
  height: clamp(14px, 2vw, 18px);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(7px, 0.9vw, 9px);
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
}
.vid-ui-snum.done  { background: var(--green-a); border-color: var(--green-a); color: #fff; }
.vid-ui-snum.active { border-color: #fff; color: #fff; }
.vid-ui-slbl {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(8px, 1vw, 10px);
  color: rgba(255,255,255,0.32);
  font-weight: 400;
}
.vid-ui-slbl.active { color: #fff; font-weight: 500; }
.vid-ui-slbl.done   { color: rgba(255,255,255,0.5); }

.vid-ui-content {
  flex: 1;
  background: #fff;
  padding: clamp(12px, 3.5%, 28px) clamp(14px, 4%, 32px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.vid-cta-micro {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(9px, 1vw, 10px);
  color: var(--green-a);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: clamp(4px, 0.8%, 8px);
}
.vid-ui-qtitle {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(11px, 1.8vw, 17px);
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: clamp(4px, 0.8%, 8px);
  font-weight: 400;
}
.vid-ui-qdesc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(8px, 1vw, 10px);
  color: var(--body);
  line-height: 1.6;
  margin-bottom: clamp(8px, 1.5%, 14px);
  font-weight: 400;
}

.vid-ui-opts { display: flex; flex-direction: column; gap: clamp(3px, 0.6%, 6px); }
.vid-ui-opt {
  border: 1px solid rgba(13,61,40,0.11);
  border-radius: 2px;
  padding: clamp(5px, 1%, 10px) clamp(8px, 1.5%, 14px);
  display: flex;
  align-items: center;
  gap: clamp(6px, 1%, 10px);
  background: #fff;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.vid-ui-opt.show { opacity: 1; transform: translateY(0); }
.vid-ui-opt.vid-sel { border-color: var(--green-m); background: rgba(13,61,40,0.03); }
.vid-ui-radio {
  width: clamp(10px, 1.4vw, 14px);
  height: clamp(10px, 1.4vw, 14px);
  border-radius: 50%;
  border: 1.5px solid rgba(13,61,40,0.25);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.vid-ui-opt.vid-sel .vid-ui-radio { border-color: var(--green-m); background: var(--green-m); }
.vid-checked::after {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #fff;
  display: block;
}
.vid-ui-ot {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(8px, 1.1vw, 11px);
  color: var(--ink);
  font-weight: 500;
}
.vid-ui-os {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(7px, 0.9vw, 9px);
  color: var(--muted);
  font-weight: 400;
  margin-top: 1px;
}

.vid-result-pane {
  border: 1px solid rgba(13,61,40,0.11);
  border-radius: 2px;
  padding: clamp(6px, 1.2%, 12px) clamp(8px, 1.5%, 14px);
  margin-top: clamp(4px, 0.8%, 8px);
  background: var(--cream);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.vid-result-pane.show { opacity: 1; transform: translateY(0); }
.vid-result-lbl {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(7px, 0.9vw, 9px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-a);
  font-weight: 500;
  margin-bottom: 2px;
}
.vid-result-range {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(14px, 2.5vw, 24px);
  color: var(--ink);
  font-weight: 400;
}
.vid-result-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(7px, 0.85vw, 9px);
  color: var(--muted);
  font-weight: 400;
  margin-top: 2px;
}

.vid-ui-btn {
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: clamp(5px, 1%, 9px) clamp(10px, 1.8%, 16px);
  border-radius: 2px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(8px, 1.1vw, 11px);
  font-weight: 500;
  margin-top: clamp(5px, 1%, 10px);
  width: fit-content;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.vid-ui-btn.show   { opacity: 1; }
.vid-ui-btn.always { opacity: 1; }

/* Controls */
.vid-controls {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}
.vid-restart-btn {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  color: var(--muted);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.vid-restart-btn:hover { color: var(--green); }

/* ── Responsive ── */
@media (max-width: 500px) {
  .vid-ui-sidebar { width: 30%; }
  .vid-ui-ssub    { display: none; }
  .vid-ui-qdesc   { display: none; }
  .vid-stack-desc { display: none; }
}

.vid-unmute-btn {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  color: var(--muted);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.vid-unmute-btn:hover { color: var(--green); }

/* ── SCENARIO COMPARISON BLOCK ─────────────────────────── */
.tc-scenario-block {
  margin-top: 24px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.tc-scenario-eyebrow {
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.tc-scenario-rows {
  display: flex;
  flex-direction: column;
}
.tc-scenario-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}
.tc-scenario-label {
  font-size: 13px;
  color: var(--body);
  font-weight: 400;
  line-height: 1.45;
  flex: 1;
}
.tc-scenario-amount {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  flex-shrink: 0;
}
.tc-scenario-ate-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.5;
  font-weight: 400;
}

/* ── TOGGLE EXPLORATION BLOCK ───────────────────────────── */
.tc-toggle-block {
  margin-top: 20px;
  padding: 18px 0 0;
  border-top: 1px solid var(--border);
}
.tc-toggle-eyebrow {
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green-a);
  font-weight: 500;
  margin-bottom: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.tc-toggle-row {
  margin-bottom: 14px;
}
.tc-toggle-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.tc-toggle-label input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: var(--green-a);
  cursor: pointer;
  flex-shrink: 0;
}
.tc-toggle-group-label {
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.tc-toggle-helper {
  font-size: 11px;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.55;
  margin-bottom: 10px;
}
.tc-liab-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tc-liab-opt {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--body);
  font-weight: 400;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  padding: 7px 12px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 2px;
  transition: border-color .15s;
}
.tc-liab-opt input[type="radio"] {
  accent-color: var(--green-a);
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}
.tc-liab-opt:has(input:checked) {
  border-color: var(--green-a);
  background: rgba(30,122,80,.04);
}
.tc-toggle-output {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 14px 0 4px;
  border-top: 2px solid var(--green-a);
  gap: 16px;
  margin-top: 10px;
}
.tc-toggle-output-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--body);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.tc-toggle-output-val {
  font-family: 'Source Serif 4', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--green);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color .15s;
}
.tc-toggle-output-val.tc-val-flash {
  color: var(--green-a);
}
.tc-toggle-explanation {
  margin-top: 10px;
  padding: 10px 14px;
  background: rgba(13,61,40,.04);
  border-left: 3px solid var(--green-a);
  border-radius: 0 2px 2px 0;
  font-size: 12px;
  color: var(--body);
  line-height: 1.65;
  font-weight: 400;
}
