/* Drop 01 product stage, 3D model canvas, and callout styles. */

.collection,
.featured {
  background: var(--white);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.style-card {
  position: relative;
  display: grid;
  grid-template-rows: 250px minmax(180px, auto);
  overflow: hidden;
  background: var(--paper);
  border: var(--line);
  border-radius: var(--radius-xl);
  box-shadow: 4px 4px 0 var(--ink);
}

.style-card.is-featured {
  background: var(--taxi);
}

.style-image {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  overflow: hidden;
  padding: 18px;
  background:
    linear-gradient(rgba(17, 17, 17, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.055) 1px, transparent 1px),
    var(--white);
  background-size: 22px 22px;
  border-bottom: var(--line);
}

.style-image img {
  position: absolute;
  inset: 18px;
  width: calc(100% - 36px);
  height: calc(100% - 36px);
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(8px 10px 0 rgba(17, 17, 17, 0.14));
}

.style-card.has-product-shot .style-image {
  background: var(--white);
}

.style-card.has-product-shot .style-image img {
  inset: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  object-fit: contain;
  object-position: center;
  filter: saturate(1.04) contrast(1.02);
}

.style-card[data-light-card] .style-image {
  isolation: isolate;
}

.style-card[data-light-card] .product-shot {
  z-index: 1;
  transition:
    opacity 260ms ease,
    transform 320ms cubic-bezier(.2, .84, .25, 1),
    filter 260ms ease;
}

.style-card[data-light-card] .product-shot--day {
  opacity: 1;
  transform: scale(1);
}

.style-card[data-light-card] .product-shot--night {
  opacity: 0;
  transform: scale(1.012);
  filter: saturate(1.1) contrast(1.04);
}

.style-card.is-lit .product-shot--day {
  opacity: 0;
  transform: scale(0.988);
}

.style-card.is-lit .product-shot--night {
  opacity: 1;
  transform: scale(1);
}

.light-toggle {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  width: 64px;
  min-height: 34px;
  padding: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: var(--hairline);
  border-radius: var(--radius-pill);
  color: var(--ink);
  cursor: pointer;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.light-toggle:hover,
.light-toggle:focus-visible {
  outline: none;
  box-shadow: 3px 3px 0 rgba(17, 17, 17, 0.18);
  transform: translate(-1px, -1px);
}

.light-toggle::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--taxi);
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.18);
  transform: translateX(0);
  transition:
    transform 220ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.light-toggle-track {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  height: 26px;
  align-items: center;
  justify-items: center;
}

.light-icon {
  position: relative;
  width: 22px;
  height: 22px;
  color: var(--ink);
  opacity: 0.55;
  transition:
    color 180ms ease,
    opacity 180ms ease,
    filter 180ms ease;
}

.light-icon-day {
  opacity: 1;
}

.light-icon-day::before,
.light-icon-night::before,
.light-icon-night::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.light-icon-day::before {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: currentColor;
  box-shadow:
    0 -8px 0 -5px currentColor,
    0 8px 0 -5px currentColor,
    8px 0 0 -5px currentColor,
    -8px 0 0 -5px currentColor,
    6px 6px 0 -5px currentColor,
    -6px -6px 0 -5px currentColor,
    6px -6px 0 -5px currentColor,
    -6px 6px 0 -5px currentColor;
}

.light-icon-night::before {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  box-shadow:
    0 0 0 4px rgba(255, 213, 30, 0.28),
    0 0 12px rgba(255, 213, 30, 0.64);
}

.light-icon-night::after {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--white);
  transform: translate(3px, -7px);
}

.style-card.is-lit .light-toggle {
  background: rgba(17, 17, 17, 0.86);
}

.style-card.is-lit .light-toggle::before {
  transform: translateX(30px);
  background: var(--taxi);
  box-shadow:
    inset 0 0 0 1px rgba(17, 17, 17, 0.18),
    0 0 18px rgba(255, 213, 30, 0.62);
}

.style-card.is-lit .light-icon-day {
  color: var(--white);
  opacity: 0.42;
}

.style-card.is-lit .light-icon-night {
  color: var(--ink);
  opacity: 1;
  filter: drop-shadow(0 0 5px rgba(255, 213, 30, 0.48));
}

.style-copy {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px;
}

.style-copy span {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  background: var(--white);
  border: var(--hairline);
  border-radius: var(--radius-pill);
  color: var(--ink);
  font: 900 11px/1 "Barlow Condensed", Arial, sans-serif;
  text-transform: uppercase;
}

.style-copy strong {
  font: 900 34px/0.9 "Barlow Condensed", Impact, sans-serif;
  text-transform: uppercase;
}

.style-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
}

.exploded-board {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 16px;
  align-items: stretch;
}

.exploded-board.has-inline-notes {
  grid-template-columns: 1fr;
}

.model-zone {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background:
    linear-gradient(rgba(17, 17, 17, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: 26px 26px;
  border: var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--soft-shadow);
}

.exploded-board.has-inline-notes .model-zone {
  min-height: 700px;
}

.model-zone::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background:
    radial-gradient(ellipse at 50% 76%, rgba(0, 0, 0, 0.28), transparent 20%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0) 0 48%, rgba(17, 17, 17, 0.2) 62%, rgba(17, 17, 17, 0.72) 78%, rgba(17, 17, 17, 0.98) 100%),
    linear-gradient(140deg, rgba(255, 213, 30, 0.16), rgba(0, 87, 216, 0.06) 46%, rgba(255, 255, 255, 0.38));
  pointer-events: none;
  transition: background 260ms ease, box-shadow 260ms ease;
}

.model-zone::after {
  content: none;
}

.model-toolbar {
  position: absolute;
  z-index: 6;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  pointer-events: none;
}

.model-kicker,
.night-control {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  background: var(--white);
  border: var(--hairline);
  border-radius: var(--radius-pill);
  color: var(--ink);
  font: 900 12px/1 "Barlow Condensed", Arial, sans-serif;
  text-transform: uppercase;
}

.model-kicker {
  pointer-events: auto;
  background: var(--taxi);
  transition: background 180ms ease, color 180ms ease;
}

.night-control {
  position: relative;
  width: 76px;
  min-height: 38px;
  justify-content: center;
  padding: 3px;
  background: rgba(255, 255, 255, 0.94);
  cursor: pointer;
  overflow: hidden;
  pointer-events: auto;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.night-control:hover,
.night-control:focus-visible {
  box-shadow: 3px 3px 0 rgba(17, 17, 17, 0.18);
  outline: none;
}

.night-control::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--taxi);
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.16);
  transform: translateX(0);
  transition: transform 220ms ease, background 180ms ease;
}

.night-control-track {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  height: 30px;
  align-items: center;
  justify-items: center;
}

.view-icon {
  position: relative;
  width: 26px;
  height: 26px;
  color: var(--ink);
  opacity: 0.5;
  transition: color 180ms ease, opacity 180ms ease;
}

.view-icon-sun {
  opacity: 1;
}

.view-icon-sun::before,
.view-icon-moon::before,
.view-icon-moon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.view-icon-sun::before {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: currentColor;
  box-shadow:
    0 -9px 0 -5px currentColor,
    0 9px 0 -5px currentColor,
    9px 0 0 -5px currentColor,
    -9px 0 0 -5px currentColor,
    6px 6px 0 -5px currentColor,
    -6px -6px 0 -5px currentColor,
    6px -6px 0 -5px currentColor,
    -6px 6px 0 -5px currentColor;
}

.view-icon-moon::before {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: currentColor;
}

.view-icon-moon::after {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  transform: translate(-32%, -58%);
  transition: background 180ms ease;
}

.model-zone.is-exploded .model-kicker {
  background: var(--white);
}

.model-zone.is-night .night-control {
  background: rgba(17, 17, 17, 0.86);
}

.model-zone.is-night .night-control::before {
  transform: translateX(38px);
  background: var(--taxi);
}

.model-zone.is-night .view-icon-sun {
  color: var(--white);
  opacity: 0.45;
}

.model-zone.is-night .view-icon-moon {
  color: var(--ink);
  opacity: 1;
}

.model-zone.is-night .view-icon-moon::after {
  background: var(--taxi);
}

.model-canvas-shell {
  position: absolute;
  inset: 74px 18px 26px;
  z-index: 2;
  overflow: hidden;
  background: transparent;
  border-radius: var(--radius-lg);
  transition: background 260ms ease, box-shadow 260ms ease;
}

.exploded-board.has-inline-notes .model-canvas-shell {
  overflow: hidden;
}

.model-canvas-shell canvas {
  width: 100%;
  height: 100%;
  display: block;
  cursor: grab;
  touch-action: none;
}

.model-canvas-shell canvas:active {
  cursor: grabbing;
}

.model-zone.is-night::before {
  background:
    radial-gradient(circle at 51% 76%, rgba(0, 0, 0, 0.5), transparent 22%),
    linear-gradient(140deg, rgba(9, 14, 21, 0.96), rgba(23, 31, 40, 0.95) 54%, rgba(8, 10, 14, 0.98));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), inset 0 0 72px rgba(0, 0, 0, 0.54);
}

.model-zone.is-night .model-canvas-shell {
  background: transparent;
}

.model-annotations {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.model-note {
  --note-line-y: 50%;
  --note-h: 54px;
  --note-d: 96px;
  --note-angle: 0deg;
  position: absolute;
  z-index: 1;
  width: clamp(174px, 21vw, 238px);
  padding: 10px 12px 12px;
  background: rgba(255, 255, 255, 0.9);
  border: var(--hairline);
  border-radius: var(--radius-md);
  box-shadow: 3px 3px 0 rgba(17, 17, 17, 0.16);
  visibility: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 220ms ease,
    transform 320ms cubic-bezier(.2, .84, .25, 1);
}

.model-note::before,
.model-note::after {
  content: "";
  position: absolute;
  border-top: 2px solid var(--ink);
  transform-origin: center;
}

.model-note::before {
  top: var(--note-line-y);
  width: var(--note-h);
}

.model-note::after {
  top: var(--note-line-y);
  width: var(--note-d);
}

.model-note.is-right::before {
  left: calc(0px - var(--note-h));
}

.model-note.is-right::after {
  left: calc(0px - var(--note-h) - var(--note-d));
  transform-origin: right center;
  transform: rotate(var(--note-angle));
}

.model-note.is-left::before {
  right: calc(0px - var(--note-h));
}

.model-note.is-left::after {
  right: calc(0px - var(--note-h) - var(--note-d));
  transform-origin: left center;
  transform: rotate(var(--note-angle));
}

.model-zone.is-night .model-note::before,
.model-zone.is-night .model-note::after {
  border-color: rgba(255, 226, 91, 0.92);
}

.model-note strong {
  display: block;
  font: 900 24px/0.92 "Barlow Condensed", Arial, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.model-note p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}

.model-note-cone {
  top: 8%;
  right: 6%;
  --note-line-y: 64%;
  --note-h: 52px;
  --note-d: 110px;
  --note-angle: -17deg;
  transition-delay: 80ms;
}

.model-note-topper {
  top: 28%;
  left: 6%;
  --note-line-y: 52%;
  --note-h: 62px;
  --note-d: 96px;
  --note-angle: 18deg;
  transition-delay: 160ms;
}

.model-note-core {
  top: 56%;
  right: 6%;
  --note-line-y: 40%;
  --note-h: 56px;
  --note-d: 96px;
  --note-angle: 14deg;
  transition-delay: 240ms;
}

.model-note-strap {
  top: 74%;
  left: 7%;
  --note-line-y: 42%;
  --note-h: 60px;
  --note-d: 100px;
  --note-angle: -16deg;
  transition-delay: 320ms;
}

.model-zone.is-exploded .model-note {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.model-zone:not(.is-exploded) .model-note {
  transition-delay: 0ms;
}

.model-loading {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  background: var(--white);
  border: var(--hairline);
  border-radius: var(--radius-pill);
  color: var(--ink);
  font: 900 11px/1 "Barlow Condensed", Arial, sans-serif;
  text-transform: uppercase;
}

.model-loading[hidden] {
  display: none;
}

.model-loading.is-ready {
  background: var(--acid-green);
}

.model-loading.is-error {
  background: var(--signal-red);
  color: var(--white);
}

.model-help {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 4;
  max-width: 190px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.9);
  border: var(--hairline);
  border-radius: var(--radius-md);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}

.exploded-model {
  position: absolute;
  inset: 74px 18px 26px;
  width: auto;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform-style: preserve-3d;
  perspective: 1200px;
}

.model-axis {
  position: absolute;
  left: 50%;
  top: 9%;
  bottom: 8%;
  z-index: 0;
  width: 4px;
  background: repeating-linear-gradient(to bottom, var(--ink) 0 12px, transparent 12px 24px);
  opacity: 0.18;
  transform: translateX(-50%) rotate(-6deg);
  transform-origin: 50% 50%;
  transition: opacity 260ms ease, transform 420ms cubic-bezier(.2, .84, .25, 1);
}

.model-axis::before,
.model-axis::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 18px;
  height: 18px;
  background: var(--taxi);
  border: var(--line);
  border-radius: 50%;
  transform: translateX(-50%);
}

.model-axis::before {
  top: -8px;
}

.model-axis::after {
  bottom: -8px;
}

.axis-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 390px;
  height: 112px;
  border: 2px dashed rgba(10, 45, 80, 0.42);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) translateY(var(--ring-y, 0)) rotateX(67deg) rotateZ(-6deg) scale(var(--ring-scale, 1));
  transition: opacity 260ms ease, transform 520ms cubic-bezier(.2, .84, .25, 1);
}

.ring-top { --ring-y: -118px; --ring-scale: 0.8; }
.ring-mid { --ring-y: -8px; --ring-scale: 0.94; }
.ring-base { --ring-y: 118px; --ring-scale: 0.78; }

.exploded-board.is-exploded .axis-ring {
  opacity: 0.55;
}

.exploded-board.is-exploded .ring-top {
  animation: axial-ring-pulse 2.4s ease-in-out infinite;
}

.exploded-board.is-exploded .ring-mid {
  animation: axial-ring-pulse 2.4s ease-in-out 0.16s infinite;
}

.exploded-board.is-exploded .ring-base {
  animation: axial-ring-pulse 2.4s ease-in-out 0.32s infinite;
}

.part {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: block;
  border: var(--line);
  box-shadow: 8px 10px 0 rgba(17, 17, 17, 0.14);
  transform:
    translate(-50%, -50%)
    translate3d(var(--x, 0), var(--y, 0), var(--z, 0))
    rotateX(var(--rx, 0deg))
    rotateZ(var(--r, -6deg))
    skewX(var(--skew, -5deg));
  transition: transform 420ms cubic-bezier(.2, .84, .25, 1), box-shadow 420ms ease;
}

.bun-top {
  top: 34%;
  width: 300px;
  height: 126px;
  background: #f36c21;
  border-radius: 48% 48% 28% 28%;
}

.sesame {
  position: absolute;
  width: 13px;
  height: 6px;
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, 0.2);
  border-radius: 50%;
}

.sesame:nth-child(1) { left: 58px; top: 34px; transform: rotate(14deg); }
.sesame:nth-child(2) { left: 122px; top: 25px; transform: rotate(-18deg); }
.sesame:nth-child(3) { left: 190px; top: 35px; transform: rotate(10deg); }
.sesame:nth-child(4) { left: 238px; top: 62px; transform: rotate(-14deg); }
.sesame:nth-child(5) { left: 94px; top: 72px; transform: rotate(20deg); }

.lettuce {
  top: 46%;
  width: 318px;
  height: 32px;
  background: #1f9b58;
  border-radius: var(--radius-pill);
}

.tomato {
  top: 51%;
  width: 304px;
  height: 36px;
  background: var(--signal-red);
  border-radius: var(--radius-pill);
}

.cheese {
  top: 57%;
  width: 318px;
  height: 38px;
  background: var(--taxi);
  border-radius: var(--radius-md);
}

.light-core {
  top: 65%;
  width: 260px;
  height: 58px;
  background: var(--paper-warm);
  border-radius: var(--radius-pill);
}

.base-unit {
  top: 75%;
  width: 230px;
  height: 92px;
  background: var(--ink);
  border-color: var(--ink);
  border-radius: var(--radius-lg);
}

.mount-rail {
  top: 86%;
  width: 286px;
  height: 34px;
  background: var(--royal-blue);
  border-radius: var(--radius-pill);
}

.model-label {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 5;
  max-width: 310px;
  padding: 16px;
  background: var(--white);
  border: var(--hairline);
  border-radius: var(--radius-lg);
  box-shadow: var(--soft-shadow);
}

.model-label strong {
  display: block;
  font: 900 34px/0.9 "Barlow Condensed", Arial, sans-serif;
  text-transform: uppercase;
}

.model-label span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.35;
}

.exploded-board.is-exploded .model-axis {
  opacity: 0.46;
  transform: translateX(-50%) rotate(0deg);
}

.exploded-board.is-exploded .bun-top { --x: -8px; --y: -134px; --z: 72px; --rx: 8deg; --r: -5deg; }
.exploded-board.is-exploded .lettuce { --x: 8px; --y: -102px; --z: 58px; --rx: 10deg; --r: -5deg; }
.exploded-board.is-exploded .tomato { --x: -6px; --y: -66px; --z: 44px; --rx: 10deg; --r: -5deg; }
.exploded-board.is-exploded .cheese { --x: 6px; --y: -28px; --z: 28px; --rx: 10deg; --r: -5deg; }
.exploded-board.is-exploded .light-core { --x: -4px; --y: 36px; --z: 10px; --rx: 12deg; --r: -5deg; }
.exploded-board.is-exploded .base-unit { --x: 4px; --y: 104px; --z: -26px; --rx: 8deg; --r: -5deg; }
.exploded-board.is-exploded .mount-rail { --x: 0; --y: 104px; --z: -44px; --rx: 8deg; --r: -5deg; }

.exploded-board.is-exploded .part {
  box-shadow: 16px 18px 0 rgba(17, 17, 17, 0.13);
}

.exploded-board.is-exploded .model-label {
  max-width: 224px;
  padding: 12px;
}

.exploded-board.is-exploded .model-label strong {
  font-size: 26px;
}

.exploded-board.is-exploded .model-label span {
  display: none;
}

.part-callouts {
  position: relative;
  display: grid;
  gap: 12px;
  align-content: center;
  padding: 16px;
  background: var(--white);
  border: var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--soft-shadow);
}

.drop-merch {
  display: grid;
  grid-template-columns: 114px minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  padding: 14px;
  background: var(--paper);
  color: var(--ink);
  border: var(--line);
  border-radius: var(--radius-lg);
  box-shadow: none;
}

.drop-merch img {
  width: 100%;
  height: 148px;
  object-fit: cover;
  border: var(--hairline);
  border-radius: var(--radius-sm);
  background: var(--concrete);
}

.drop-merch-copy {
  display: grid;
  align-content: center;
  gap: 10px;
  min-width: 0;
}

.drop-merch small {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  background: var(--taxi);
  color: var(--ink);
  border: var(--line);
  border-radius: var(--radius-pill);
  font: 900 11px/1 "Barlow Condensed", Arial, sans-serif;
  text-transform: uppercase;
}

.drop-merch strong {
  display: block;
  font: 900 38px/0.88 "Barlow Condensed", Impact, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.drop-merch p {
  margin: 0;
  color: var(--muted);
  line-height: 1.36;
}

.drop-merch-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.drop-merch-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 8px;
  background: var(--white);
  color: var(--ink);
  border: var(--hairline);
  border-radius: var(--radius-pill);
  font: 900 10px/1 "Barlow Condensed", Arial, sans-serif;
  text-transform: uppercase;
}

.callout {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 92px;
  padding: 16px 18px;
  background: var(--white);
  border: var(--hairline);
  border-radius: var(--radius-lg);
}

.callout::before {
  content: "";
  position: absolute;
  left: -92px;
  top: 50%;
  width: 78px;
  border-top: 2px solid var(--ink);
  opacity: 0;
  transform: scaleX(0.28);
  transform-origin: right;
  transition: opacity 260ms ease, transform 260ms ease;
}

.exploded-board.is-exploded .callout::before {
  opacity: 1;
  transform: scaleX(1);
}

.callout strong {
  font: 900 27px/0.9 "Barlow Condensed", Arial, sans-serif;
  text-transform: uppercase;
}

.callout p {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
}

.callout small {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  background: var(--taxi);
  border: var(--line);
  border-radius: var(--radius-pill);
  color: var(--ink);
  font: 900 11px/1 "Barlow Condensed", Arial, sans-serif;
  text-transform: uppercase;
}

@keyframes axial-ring-pulse {
  0%,
  100% {
    border-color: rgba(10, 45, 80, 0.36);
    transform: translate(-50%, -50%) translateY(var(--ring-y, 0)) rotateX(67deg) rotateZ(-6deg) scale(var(--ring-scale, 1));
  }

  50% {
    border-color: rgba(8, 107, 224, 0.72);
    transform: translate(-50%, -50%) translateY(var(--ring-y, 0)) rotateX(67deg) rotateZ(-6deg) scale(calc(var(--ring-scale, 1) + 0.035));
  }
}
