/* v3 mockup styles (filename kept as mockup-v2.css to avoid breaking includes).
   Aligned to the site's gold + eToro-green palette.
   Each of the 6 stops also gets its own section color so the journey reads chromatically.
*/

/* Mockup pages use their own .mockup-banner; cancel the global subpage padding-top
   that exists to reserve space for the main site's fixed nav. Only when the
   mockup-banner is present — live pages keep the 72px space for the site nav. */
body.subpage:has(.mockup-banner) { padding-top: 0; }

:root {
  --tl-stop-1: #C25A3B;   /* terracotta — diagnose / fix the mess */
  --tl-stop-2: #D67F2E;   /* burnt orange — build relationships */
  --tl-stop-3: #EEA302;   /* gold (site brand) — automate the chokepoint */
  --tl-stop-4: #99A52E;   /* olive — measure / numbers */
  --tl-stop-5: #3C7A23;   /* eToro green (site brand) — codify standards */
  --tl-stop-6: #2C7A8C;   /* teal — build / ship the AI */

  --tl-ink: #1a1a1a;
  --tl-line: #d9d9d9;
}

[data-stop="0"] { --c: var(--tl-stop-1); }
[data-stop="1"] { --c: var(--tl-stop-2); }
[data-stop="2"] { --c: var(--tl-stop-3); }
[data-stop="3"] { --c: var(--tl-stop-4); }
[data-stop="4"] { --c: var(--tl-stop-5); }
[data-stop="5"] { --c: var(--tl-stop-6); }

/* ===================================================
   A2 · Real-timeline pattern
   =================================================== */
.a2-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px;
  padding-top: 16px;
}
.a2-head .eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 12px;
}
.a2-head h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 16px;
  color: var(--tl-ink);
}
.a2-head__lede {
  font-size: 17px;
  line-height: 1.55;
  color: #4a4a4a;
  margin: 0 0 36px;
}

.a2-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  font-weight: 600;
}
.a2-controls__year { color: var(--gold); font-weight: 700; }
.a2-controls__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  font-size: 16px;
  color: var(--tl-ink);
  font-family: var(--font-display);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}
.a2-controls__btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: scale(1.05);
}
.a2-controls__btn:disabled { opacity: 0.35; cursor: default; transform: none; }
.a2-controls__pos { color: var(--tl-ink); font-weight: 700; min-width: 80px; text-align: center; }
.a2-controls__pos .num { color: var(--gold); font-size: 16px; }

.a2-hint {
  text-align: center;
  margin: 0 0 12px;
  font-size: 12px;
  color: #999;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}
.a2-hint kbd {
  display: inline-block;
  padding: 2px 6px;
  border: 1px solid #ccc;
  border-bottom-width: 2px;
  border-radius: 4px;
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: 11px;
  margin: 0 1px;
  background: #fafafa;
  color: #555;
}

.a2-rail-wrap { position: relative; margin: 0 -24px; }
.a2-rail {
  position: relative;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  height: 720px;
  padding: 0 calc(50% - 180px);
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.a2-rail::-webkit-scrollbar { height: 6px; }
.a2-rail::-webkit-scrollbar-track { background: transparent; }
.a2-rail::-webkit-scrollbar-thumb { background: #e0e0e0; border-radius: 999px; }

/* Solid continuous spine — no gradient fade-out at edges */
.a2-rail__spine {
  position: absolute;
  top: 360px;
  left: 0;
  height: 2px;
  background: var(--tl-line);
  z-index: 1;
  pointer-events: none;
}

.a2-stop {
  flex: 0 0 360px;
  position: relative;
  scroll-snap-align: center;
  cursor: pointer;
}
.a2-stop__card {
  position: absolute;
  left: 28px;
  right: 28px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.a2-stop:hover .a2-stop__card {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}
.a2-stop.is-active .a2-stop__card {
  border-color: var(--c, var(--gold));
  box-shadow: 0 4px 30px color-mix(in srgb, var(--c, var(--gold)) 25%, transparent);
}
.a2-stop--up .a2-stop__card { top: 22px; height: 286px; }
.a2-stop--down .a2-stop__card { top: 412px; height: 286px; }

.a2-stop__eyebrow {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--c, var(--gold));
  margin: 0 0 8px;
}
.a2-stop__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 0 10px;
  color: var(--tl-ink);
}
.a2-stop__body {
  font-size: 14px;
  line-height: 1.5;
  color: #555;
  margin: 0 0 12px;
  flex: 1;
}

/* Per-card visual element (deck preview, stat, or video) */
.a2-stop__visual {
  margin: 0 0 10px;
  border-radius: 10px;
  overflow: hidden;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 86px;
}
.a2-stop__visual--deck {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: color-mix(in srgb, var(--c, var(--gold)) 8%, #fff);
  border: 1px solid color-mix(in srgb, var(--c, var(--gold)) 24%, #fff);
}
.a2-stop__visual--deck svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--c, var(--gold));
}
.a2-stop__visual--deck-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--tl-ink);
  margin: 0;
  line-height: 1.2;
}
.a2-stop__visual--deck-meta {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #888;
  font-weight: 600;
  margin: 3px 0 0;
}
.a2-stop__visual--stat {
  flex-direction: column;
  padding: 18px 14px;
}
.a2-stop__visual--stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -0.02em;
  color: var(--c, var(--gold));
  line-height: 1;
  margin: 0;
  text-align: center;
}
.a2-stop__visual--stat-label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #888;
  font-weight: 600;
  margin: 6px 0 0;
  text-align: center;
}
.a2-stop__visual--video { padding: 0; background: #000; }
.a2-stop__visual--video video {
  display: block;
  width: 100%;
  max-height: 130px;
  object-fit: cover;
}

.a2-stop__link {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--c, var(--gold));
  text-decoration: none;
  margin-top: auto;
}
.a2-stop__link:hover { text-decoration: underline; }

.a2-stop__leg {
  position: absolute;
  left: 50%;
  width: 2px;
  background: var(--tl-line);
  transform: translateX(-50%);
  z-index: 1;
}
.a2-stop--up .a2-stop__leg { top: 308px; height: 50px; }
.a2-stop--down .a2-stop__leg { top: 362px; height: 50px; }

.a2-stop__node {
  position: absolute;
  top: 360px;
  left: 50%;
  width: 18px;
  height: 18px;
  background: #fff;
  border: 3px solid var(--c, var(--gold));
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  transition: all 0.2s;
}
.a2-stop.is-active .a2-stop__node {
  background: var(--c, var(--gold));
  width: 22px;
  height: 22px;
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--c, var(--gold)) 20%, transparent);
}

.a2-stop__date {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--c, var(--gold));
  white-space: nowrap;
  margin: 0;
  z-index: 2;
}
.a2-stop--up .a2-stop__date { top: 388px; }
.a2-stop--down .a2-stop__date { top: 332px; }

.a2-minimap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 12px 0 0;
  padding: 0 16px;
}
.a2-minimap__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--tl-line);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s;
}
.a2-minimap__dot:hover { background: #b0b0b0; }
.a2-minimap__dot.is-active {
  background: var(--c, var(--gold));
  width: 28px;
  border-radius: 999px;
}

@media (max-width: 700px) {
  .a2-stop { flex: 0 0 280px; }
  .a2-rail { padding: 0 calc(50% - 140px); height: 660px; }
}

/* ===================================================
   C2 · Tightened overview + chapters
   =================================================== */
.c2-shell { max-width: 1100px; margin: 0 auto; padding: 32px 24px 80px; }
.c2-head { text-align: center; max-width: 880px; margin: 0 auto 48px; }
.c2-head .eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 12px;
}
.c2-head h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 18px;
  color: var(--tl-ink);
}
.c2-head__hook {
  font-size: 19px;
  line-height: 1.5;
  color: #4a4a4a;
  margin: 0;
}
.c2-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 28px 0;
  margin: 0 auto 96px;
}
.c2-stat { text-align: center; padding: 0 16px; border-right: 1px solid #eee; }
.c2-stat:last-child { border-right: 0; }
.c2-stat__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.02em;
  color: var(--tl-ink);
  line-height: 1;
  margin: 0;
}
.c2-stat__num em { font-style: normal; font-size: 0.55em; color: #888; font-weight: 500; margin-left: 2px; }
.c2-stat__label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #555;
  font-weight: 600;
  margin: 10px 0 0;
  line-height: 1.4;
}
@media (max-width: 800px) {
  .c2-stats { grid-template-columns: repeat(2, 1fr); gap: 4px; padding: 20px 0; }
  .c2-stat { border-right: 0; padding: 14px; }
}

.c2-chapters { display: flex; flex-direction: column; gap: 96px; }
.c2-chap {
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) 1fr;
  gap: 56px;
  align-items: center;
}
.c2-chap--reverse .c2-chap__media { order: 2; }
.c2-chap__media {
  border-radius: 14px;
  overflow: hidden;
  background: #fafafa;
  border: 1px solid #eee;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c2-chap__media video,
.c2-chap__media iframe { display: block; width: 100%; height: 100%; border: 0; }
.c2-chap__media-stat {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--c, var(--gold));
  text-align: center;
  padding: 24px;
  line-height: 1;
}
.c2-chap__media-stat span {
  display: block;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #555;
  font-weight: 600;
  margin-top: 14px;
}
.c2-chap__body { padding: 0; }
.c2-chap__body p.c2-chap__eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--c, var(--gold));
  margin: 0 0 12px;
}
.c2-chap__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 0 0 14px;
  color: var(--tl-ink);
}
.c2-chap__body p.c2-chap__sub {
  font-size: 18px;
  line-height: 1.4;
  color: var(--c, var(--gold));
  font-weight: 600;
  margin: 0 0 18px;
}
.c2-chap__body p {
  font-size: 16px;
  line-height: 1.65;
  color: #4a4a4a;
  margin: 0 0 16px;
}
.c2-chap__link {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--c, var(--gold));
  text-decoration: none;
}
.c2-chap__link:hover { text-decoration: underline; }

@media (max-width: 760px) {
  .c2-chapters { gap: 56px; }
  .c2-chap, .c2-chap--reverse { grid-template-columns: 1fr; gap: 24px; }
  .c2-chap--reverse .c2-chap__media { order: 0; }
}

/* ===================================================
   D2 · Scrollytelling with per-section colors
   =================================================== */
.d2-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(0,0,0,0.05);
  z-index: 100;
}
.d2-progress__fill {
  height: 100%;
  width: 0;
  background: linear-gradient(
    90deg,
    var(--tl-stop-1) 0%,
    var(--tl-stop-2) 20%,
    var(--tl-stop-3) 40%,
    var(--tl-stop-4) 60%,
    var(--tl-stop-5) 80%,
    var(--tl-stop-6) 100%
  );
  background-size: 100vw 100%;
  background-attachment: fixed;
  transition: width 0.05s linear;
}

.d2-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 12px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.d2-head .eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 16px;
}
.d2-head h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 20px;
  color: var(--tl-ink);
}
.d2-head__sub {
  font-size: 18px;
  line-height: 1.55;
  color: #4a4a4a;
  margin: 0 0 36px;
  max-width: 640px;
}
.d2-range {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 60px;
  width: 100%;
  max-width: 520px;
}
.d2-range__year {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #555;
  white-space: nowrap;
}
.d2-range__line {
  flex: 1;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--tl-stop-1) 0%,
    var(--tl-stop-2) 20%,
    var(--tl-stop-3) 40%,
    var(--tl-stop-4) 60%,
    var(--tl-stop-5) 80%,
    var(--tl-stop-6) 100%
  );
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.d2-range__line span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
}
.d2-range__line span:nth-child(1) { background: var(--tl-stop-1); }
.d2-range__line span:nth-child(2) { background: var(--tl-stop-2); }
.d2-range__line span:nth-child(3) { background: var(--tl-stop-3); }
.d2-range__line span:nth-child(4) { background: var(--tl-stop-4); }
.d2-range__line span:nth-child(5) { background: var(--tl-stop-5); }
.d2-range__line span:nth-child(6) { background: var(--tl-stop-6); }

.d2-chevron {
  width: 36px;
  height: 36px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: d2-bounce 1.8s ease-in-out infinite;
  cursor: pointer;
  margin-top: 12px;
  background: transparent;
}
.d2-chevron svg { stroke: var(--gold); width: 16px; height: 16px; fill: none; stroke-width: 2.5; }
@keyframes d2-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* Left-edge fixed timeline indicator with 7-color segments */
.d2-rail {
  position: fixed;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}
.d2-rail__year {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #888;
  white-space: nowrap;
}
.d2-rail__track {
  width: 2px;
  background: linear-gradient(
    180deg,
    var(--tl-stop-1) 0% 16.66%,
    var(--tl-stop-2) 16.66% 33.33%,
    var(--tl-stop-3) 33.33% 50%,
    var(--tl-stop-4) 50% 66.66%,
    var(--tl-stop-5) 66.66% 83.33%,
    var(--tl-stop-6) 83.33% 100%
  );
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin: 14px 0;
  height: 360px;
  padding: 0;
}
.d2-rail__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--c, #888);
  position: relative;
  display: block;
  pointer-events: auto;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}
.d2-rail__dot.is-active {
  background: var(--c, var(--gold));
  border-color: var(--c, var(--gold));
  width: 14px;
  height: 14px;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--c, var(--gold)) 22%, transparent);
}
.d2-rail__dot::after {
  content: attr(data-label);
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--c, var(--tl-ink));
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s;
  background: rgba(255,255,255,0.95);
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid #eee;
  pointer-events: none;
}
.d2-rail__dot:hover::after,
.d2-rail__dot.is-active::after { opacity: 1; }

/* Expand button overlay on every visual asset (iframe/img/video) */
.d2-vis-card__expand-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(20, 20, 30, 0.7);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  transition: background-color 0.15s ease, transform 0.15s ease;
}
.d2-vis-card__expand-btn:hover,
.d2-vis-card__expand-btn:focus-visible {
  background: rgba(20, 20, 30, 0.95);
  transform: scale(1.06);
}
.d2-vis-card__expand-btn svg {
  width: 18px;
  height: 18px;
  display: block;
}

/* Sliding pointer that tracks overall scroll progress along the rail */
.d2-rail__pointer {
  position: absolute;
  left: 50%;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--c, var(--gold));
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

@media (max-width: 1100px) {
  .d2-rail { display: none; }
}

/* Section-colored eyebrows and link colors in the scrolly story */
.scrolly__step[data-step="0"] { --c: var(--tl-stop-1); }
.scrolly__step[data-step="1"] { --c: var(--tl-stop-2); }
.scrolly__step[data-step="2"] { --c: var(--tl-stop-3); }
.scrolly__step[data-step="3"] { --c: var(--tl-stop-4); }
.scrolly__step[data-step="4"] { --c: var(--tl-stop-5); }
.scrolly__step[data-step="5"] { --c: var(--tl-stop-6); }

.scrolly__eyebrow { color: var(--c, var(--gold)) !important; }
.scrolly__link { color: var(--c, var(--gold)) !important; }

/* Closing throughline section — wraps up the journey */
.scrolly__closing {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 0;
  border-top: 1px solid #e6e6e6;
  text-align: center;
}
.scrolly__closing-eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 14px;
}
.scrolly__closing-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 20px;
  color: var(--tl-ink);
}
.scrolly__closing-body {
  font-size: 17px;
  line-height: 1.6;
  color: #3a3a3a;
  margin: 0 auto;
  max-width: 640px;
}

/* Visual content cards in D's sticky panel — meaningful content per step */
.d2-vis-card {
  background: #fff;
  border-radius: 16px;
  padding: 0;
  border: 1px solid #eee;
  box-shadow: 0 4px 30px rgba(0,0,0,0.05);
  width: 100%;
  max-width: 520px;
  position: relative;
  overflow: hidden;
  overflow: hidden;
}
.d2-vis-card__header {
  padding: 14px 22px;
  background: var(--c, var(--gold));
  color: #fff;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}
.d2-vis-card__body { padding: 28px 32px 32px; }
.d2-vis-card__big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 6vw, 72px);
  letter-spacing: -0.03em;
  color: var(--c, var(--gold));
  line-height: 1;
  margin: 0;
  text-align: center;
}
.d2-vis-card__big span {
  display: block;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #888;
  font-weight: 600;
  margin-top: 12px;
}
.d2-vis-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.d2-vis-card__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 15px;
  color: var(--tl-ink);
}
.d2-vis-card__list li:last-child { border-bottom: 0; }
.d2-vis-card__list li::before {
  content: '✗';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--c, var(--gold)) 12%, #fff);
  color: var(--c, var(--gold));
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}
.d2-vis-card iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
  background: #fafafa;
}
.d2-vis-card video {
  display: block;
  width: 100%;
}
.d2-vis-card img {
  display: block;
  width: 100%;
  height: auto;
  background: #fafafa;
}
.d2-vis-card__expand {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
  cursor: zoom-in;
  line-height: 0;
}
.d2-vis-card__expand-icon {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  background: rgba(20, 20, 30, 0.65);
  color: #fff;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  transition: background 0.15s ease, transform 0.15s ease;
}
.d2-vis-card__expand-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}
.d2-vis-card__expand:hover .d2-vis-card__expand-icon,
.d2-vis-card__expand:focus-visible .d2-vis-card__expand-icon {
  background: rgba(20, 20, 30, 0.9);
  transform: scale(1.06);
}
.d2-vis-card__expand:focus-visible {
  outline: 2px solid var(--c, var(--gold));
  outline-offset: 2px;
}
.d2-vis-card__quote {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.3;
  font-style: italic;
  color: var(--tl-ink);
  margin: 0;
  padding-left: 18px;
  border-left: 4px solid var(--c, var(--gold));
}
.d2-vis-card__quote-attrib {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  font-weight: 700;
  margin: 16px 0 0;
  padding-left: 22px;
}
