/* ============================================================
   TonnoBass — page-specific styles (extends design-system/site.css)
   ============================================================ */

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overscroll-behavior-y: auto;
}
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-y: auto;
}
#app {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
@supports (overflow: clip) {
  body,
  #app { overflow-x: clip; }
}
/* ---------- Brand mark in topnav ---------- */
.brand-mark { display: flex; align-items: center; gap: 12px; color: var(--color-ink); text-decoration: none; }
.brand-logo {
  height: 38px; width: auto;
  display: block;
  flex-shrink: 0;
}
.brand-pick {
  width: 22px; height: 28px; position: relative;
  background: var(--color-primary);
  clip-path: polygon(50% 0, 100% 28%, 100% 78%, 78% 100%, 22% 100%, 0 78%, 0 28%);
}
.brand-pick::after {
  content: "";
  position: absolute; top: 14%; left: 50%; transform: translateX(-50%);
  width: 2px; height: 50%; background: var(--color-canvas);
}
.brand-words { display: flex; flex-direction: column; line-height: 1; }
.brand-words .b1 { font-size: 15px; font-weight: 600; letter-spacing: 0.5px; color: var(--color-ink); }
.brand-words .b2 {
  font-size: 10px; font-weight: 600; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--color-body); margin-top: 4px;
}

/* ---------- TopNav extras ---------- */
.topnav__flag {
  width: 28px; height: 20px; padding: 0;
  background: transparent; border: 1px solid var(--color-hairline); border-radius: 0;
  position: relative; overflow: hidden; cursor: pointer;
  display: inline-flex;
}
.topnav__flag::before, .topnav__flag::after, .topnav__flag span {
  content: ""; flex: 1; height: 100%;
}
.flag-gb {
  background:
    linear-gradient(180deg, transparent 40%, #fff 40%, #fff 60%, transparent 60%),
    linear-gradient(90deg, transparent 40%, #fff 40%, #fff 60%, transparent 60%),
    linear-gradient(45deg, transparent 46%, #fff 46%, #fff 54%, transparent 54%),
    linear-gradient(135deg, transparent 46%, #fff 46%, #fff 54%, transparent 54%),
    #c8102e;
}
.flag-gb::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, #c8102e 45%, #c8102e 55%, transparent 55%),
    linear-gradient(90deg, transparent 45%, #c8102e 45%, #c8102e 55%, transparent 55%);
}
.flag-it {
  background: linear-gradient(90deg, #009246 0 33.33%, #fff 33.33% 66.66%, #ce2b37 66.66% 100%);
}
.topnav__util { gap: 14px; }

/* Desktop topnav: keep active section underline visible while scrolling */
@media (min-width: 981px) and (hover: hover) and (pointer: fine) {
  .topnav__link {
    position: relative;
    transition: color .18s ease, filter .18s ease;
  }
  .topnav__link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 11px;
    height: 2px;
    background: var(--color-primary);
    opacity: 0;
    transform: scaleX(0.62);
    transform-origin: center;
    transition: opacity .18s ease, transform .18s ease;
  }
  .topnav__link:hover::after,
  .topnav__link.is-active::after {
    opacity: 0.94;
    transform: scaleX(1);
  }
  .topnav__link.is-active:hover {
    filter: brightness(1.08);
  }
}

/* Global CTA rounding override for this site */
.btn { border-radius: 8px; }

/* ---------- Hero (TonnoBass cinematic) ---------- */
.hero-tb {
  position: relative;
  min-height: 720px;
  background: var(--color-canvas);
  overflow: hidden;
}
.hero-tb__stage {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 42% 36% at 70% 88%, rgba(218,41,28,0.72), transparent 58%),
    radial-gradient(ellipse 68% 52% at 68% 72%, rgba(218,41,28,0.34), transparent 65%),
    radial-gradient(ellipse 85% 58% at 55% 55%, rgba(180,30,20,0.15), transparent 70%),
    radial-gradient(ellipse 45% 35% at 22% 30%, rgba(255,255,255,0.04), transparent 70%),
    linear-gradient(180deg, #080808, #121212 60%, #020202);
}
.hero-tb__strings {
  position: absolute; inset: 0;
  pointer-events: none;
}
.hero-tb__logo-3d {
  position: absolute;
  right: 8%; top: 49%;
  transform: translateY(-50%);
  z-index: 1;
  width: min(38vw, 480px); height: min(38vw, 480px);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  opacity: 0.92;
  filter: drop-shadow(0 32px 80px rgba(218,41,28,0.22));
}
.hero-tb__logo-3d::before {
  content: "";
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(255,255,255,0.08);
  transform: rotate(-7deg);
  opacity: 0.34;
}
.hero-tb__logo-spin {
  width: 100%; height: 100%;
  object-fit: contain;
  opacity: 0.86;
  will-change: transform, opacity;
  transform: perspective(1200px) translate3d(-18px, 0, 0) rotateY(-36deg) rotateZ(-7deg) scale(0.92);
  transform-origin: 50% 50%;
  filter: saturate(0.96) contrast(1.06);
}
@media (max-width: 980px) { .hero-tb__logo-3d { display: none; } }
.hero-tb__scrim {
  position: absolute; inset: auto 0 0 0; height: 50%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
}
.hero-tb__content {
  position: relative; z-index: 2;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--space-xxl) var(--space-md) 140px;
  display: block;
  min-height: 540px;
}
.hero-tb__copy { padding-bottom: var(--space-md); max-width: 720px; }

/* Bass image acts as backdrop on the right side of the hero — meta chips overlay it */
.hero-tb__bass-bg {
  position: absolute;
  right: 0; bottom: 0;
  width: 55%; height: 90%;
  z-index: 1;
  display: flex; align-items: flex-end; justify-content: flex-end;
  pointer-events: none;
  opacity: 0.85;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 25%, #000 100%);
  mask-image: linear-gradient(90deg, transparent, #000 25%, #000 100%);
}
.hero-tb__bass-bg .hero-bass {
  width: 90%;
  max-width: 600px;
  height: 100%;
  filter: drop-shadow(0 30px 80px rgba(218,41,28,0.18));
}

@media (min-width: 1101px) {
  .hero-tb__copy { max-width: 560px; }
}
.hero-tb__h1 {
  font-size: 96px; font-weight: 500; line-height: 0.98; letter-spacing: -2px;
  margin: 0 0 var(--space-sm);
}
.hero-tb__h1 em { font-style: normal; color: var(--color-primary); }
.hero-tb__sub {
  font-size: 18px; line-height: 1.5; max-width: 460px; color: var(--color-body);
  margin: 0 0 var(--space-md);
}
.hero-tb__ctas { display: flex; gap: var(--space-xs); flex-wrap: wrap; align-items: center; }

/* Meta strip: full-width row at the bottom of the hero, with strong-contrast chips */
.hero-tb__meta-row {
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 3;
  display: flex; gap: var(--space-xs);
  padding: var(--space-md);
  max-width: var(--content-max); margin: 0 auto;
  width: 100%;
  flex-wrap: wrap;
}
.hero-tb__meta-chip {
  display: flex; flex-direction: column;
  padding: 14px 20px;
  background: rgba(12, 12, 12, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.14);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  backdrop-filter: blur(14px) saturate(120%);
  min-width: 180px;
  border-radius: 6px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 8px 24px rgba(0,0,0,0.35);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.hero-tb__meta-chip:hover {
  background: rgba(20, 20, 20, 0.78);
  border-color: rgba(255, 255, 255, 0.14);
}
.hero-tb__meta-value {
  font-size: 26px; font-weight: 700; line-height: 1;
  color: var(--color-ink);
  letter-spacing: -0.4px;
  font-feature-settings: "tnum";
}
.hero-tb__meta-label {
  font-size: 10px; font-weight: 600; letter-spacing: 1.4px;
  color: var(--color-body); text-transform: uppercase;
  margin-top: 6px;
}

/* Bass placeholder — body, neck, strings drawn in SVG; hero-tb__strings as backdrop lines */
.hero-bass {
  position: relative;
  width: 100%; height: 560px;
  filter: drop-shadow(0 30px 80px rgba(218,41,28,0.18));
}

/* ---------- Section primitives (overrides on top of site.css) ---------- */
.tb-section { padding: var(--space-xxl) var(--space-md); max-width: var(--content-max); margin: 0 auto; }
.tb-section--narrow { max-width: 1080px; }
.tb-section__head { display: flex; justify-content: space-between; align-items: flex-end; gap: var(--space-md); flex-wrap: wrap; margin-bottom: var(--space-lg); }
.tb-eyebrow {
  font-size: var(--font-caption-upper-size);
  font-weight: var(--font-caption-upper-weight);
  letter-spacing: var(--font-caption-upper-track);
  text-transform: uppercase;
  color: var(--color-body);
  margin-bottom: var(--space-xs);
}
.tb-eyebrow--red { color: var(--color-primary); }
.tb-title {
  font-size: 48px; font-weight: 500; line-height: 1.1; letter-spacing: -0.96px;
  margin: 0; max-width: 720px;
}
.tb-title em { font-style: normal; color: var(--color-primary); }
.tb-lead {
  font-size: 16px; line-height: 1.55; color: var(--color-body);
  max-width: 520px; margin-top: var(--space-sm);
}
#listen .tb-lead { font-size: 16px; }
.tb-lead__evidence {
  display: block;
  margin-top: 16px;
  font-size: 12px;
  color: var(--color-body);
}
.tb-lead__evidence strong { color: var(--color-ink); font-weight: 600; }
.tb-lead__evidence .signal-chain__cable-dot {
  margin-right: 8px;
  transform: translateY(-1px);
}
@media (min-width: 981px) {
  #gear .tb-title { max-width: none; }
  #gear .tb-lead { max-width: 760px; }
  .tb-lead__line { white-space: nowrap; }
}

/* ---------- LISTEN — compact track list ---------- */
.listen-list {
  display: flex; flex-direction: column;
  width: 100%;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 60%, transparent 100%),
    #202022;
  border-top: 1px solid var(--color-hairline);
  border-bottom: 1px solid var(--color-hairline);
  /* Scrollable: show ~5 rows, then internal scroll. */
  max-height: 460px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* Hide native scrollbar — we render a custom one in JS that is always visible */
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-right: 16px; /* room for the custom scrollbar */
}
.listen-list::-webkit-scrollbar { display: none; width: 0; height: 0; }
/* Custom always-visible scrollbar */
.listen-list-wrap { position: relative; border-radius: 8px; overflow: hidden; }
.listen-list__scrollbar {
  position: absolute;
  top: 0; bottom: 0; right: 0;
  width: 14px;
  background: rgba(255,255,255,0.04);
  border-left: 1px solid var(--color-hairline);
  z-index: 2;
  pointer-events: none;
}
.listen-list__thumb {
  position: absolute;
  left: 2px; right: 2px;
  background: rgba(255,255,255,0.55);
  border-radius: 5px;
  pointer-events: auto;
  cursor: grab;
  transition: background .15s ease;
}
.listen-list__thumb:hover { background: rgba(255,255,255,0.75); }
.listen-list__thumb:active { background: rgba(255,255,255,0.85); cursor: grabbing; }
/* Top + bottom edge fades — hint that more content lies above/below */
.listen-list-wrap::before,
.listen-list-wrap::after {
  content: ""; position: absolute; left: 0; right: 14px; height: 28px;
  pointer-events: none; z-index: 1;
  opacity: 0;
  transition: opacity .2s ease;
}
.listen-list-wrap::before {
  top: 0;
  background: linear-gradient(180deg, #202022 0%, transparent 100%);
}
.listen-list-wrap::after {
  bottom: 0;
  background: linear-gradient(0deg, #202022 0%, transparent 100%);
}
.listen-list-wrap.has-top-fade::before { opacity: 1; }
.listen-list-wrap.has-bottom-fade::after { opacity: 1; }
.track-row {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 280px 80px;
  align-items: center;
  gap: var(--space-md);
  padding: 18px var(--space-md);
  border-bottom: 1px solid var(--color-hairline);
  background: transparent;
  cursor: pointer;
  transition: background .18s ease, box-shadow .18s ease;
  position: relative;
}
.track-row:hover { background: rgba(255,255,255,0.03); }
.track-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--color-primary);
  opacity: 0;
  transform: scaleY(0.78);
  transform-origin: center;
  transition: opacity .18s ease, transform .18s ease;
}
.track-row:focus-visible,
.listen-list:focus-visible,
.pricing-tab:focus-visible,
.pricing-dot:focus-visible,
.now-playing__progress:focus-visible,
.now-playing__vol-bars:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}
.track-row:focus-visible {
  outline-offset: -2px;
  background: rgba(255,255,255,0.035);
}
.track-row.is-selected {
  background: linear-gradient(90deg, rgba(232,36,28,0.24), rgba(232,36,28,0.11) 36%, rgba(255,255,255,0.04) 74%, rgba(255,255,255,0.022));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.045), inset 40px 0 72px rgba(232,36,28,0.10);
}
.track-row.is-playing::before {
  opacity: 1;
  transform: scaleY(1);
}
.track-row__play {
  width: 40px; height: 40px;
  border: 0;
  background: var(--color-canvas-elevated);
  color: var(--color-ink);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  border-radius: 999px;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.track-row.is-playing .track-row__play {
  background: var(--color-primary); color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .track-row:hover .track-row__play {
    background: var(--color-primary);
    color: #fff;
  }
  .track-row__play:hover { transform: scale(1.05); }
}
.track-row__info { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.track-row__title { font-size: 17px; font-weight: 500; line-height: 1.2; margin: 0; color: var(--color-ink); }
.track-row.is-selected .track-row__title { color: #fff; }
.track-row__artist { font-size: 13px; color: var(--color-body); }
.track-row.is-selected .track-row__artist { color: rgba(255,255,255,0.76); }
.track-row__role {
  font-size: 11px; letter-spacing: 1.1px; text-transform: uppercase;
  color: var(--color-muted-soft); text-align: left;
  min-width: 0;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.track-row.is-selected .track-row__role {
  color: rgba(255,255,255,0.88);
}
.track-row .track-card__src {
  position: static;
  display: inline-flex; align-items: center; height: 22px; padding: 0 10px;
  background: rgba(255,255,255,0.06); color: var(--color-body);
  font-size: 10px; font-weight: 700; letter-spacing: 1.1px; text-transform: uppercase;
  border-radius: 0;
}

/* ---------- Now playing — floating, modern, glassy ---------- */
.now-playing {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 80;
  padding: 14px 18px 14px 14px;
  background: rgba(18, 18, 20, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  backdrop-filter: blur(28px) saturate(160%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.04) inset,
    0 14px 40px rgba(0,0,0,0.45),
    0 4px 14px rgba(0,0,0,0.35);
  transform: translateY(140%);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), opacity .25s ease;
  opacity: 0;
  overflow: hidden;
}
.now-playing.is-open { transform: translateY(0); opacity: 1; }

/* Thin top progress strip — tall touch target, thin visual bar */
.now-playing__progress {
  position: absolute; top: 0; left: 12px; right: 12px;
  height: 18px;
  background: transparent;
  cursor: pointer;
  overflow: visible;
}
.now-playing__progress::before {
  content: '';
  position: absolute; top: 2px; left: 0; right: 0;
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  transition: height 0.15s;
}
.now-playing__progress:hover::before,
.now-playing__progress:active::before { height: 6px; }
.now-playing__progress-fill {
  position: absolute; top: 2px; left: 0;
  height: 4px;
  width: 0%;
  background: var(--color-primary);
  border-radius: 999px;
  transition: width 0.1s linear;
  pointer-events: none;
}
.now-playing__progress-fill::after {
  content: "";
  position: absolute;
  right: -2.5px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--color-primary);
  border: 1.2px solid rgba(255, 255, 255, 0.94);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.24),
    0 0 0 3.2px rgba(218, 41, 28, 0.18);
  transform: translateY(-50%) scale(0);
  opacity: 0;
  transition: transform .16s ease, opacity .16s ease;
}
.now-playing:not(.is-paused) .now-playing__progress-fill::after {
  transform: translateY(-50%) scale(1);
  opacity: 1;
}
.now-playing__progress.is-dragging .now-playing__progress-fill { transition: none; }
.now-playing__progress:hover .now-playing__progress-fill,
.now-playing__progress:active .now-playing__progress-fill { height: 6px; }
.now-playing__progress:hover .now-playing__progress-fill::after,
.now-playing__progress:active .now-playing__progress-fill::after,
.now-playing__progress.is-dragging .now-playing__progress-fill::after {
  transform: translateY(-50%) scale(1.18);
}

.now-playing__inner {
  max-width: var(--content-max); margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 22px; align-items: center;
}

.now-playing__left {
  display: flex; align-items: center; gap: 14px; min-width: 0;
}
.now-playing__art {
  position: relative;
  width: 58px; height: 58px;
  background-size: cover; background-position: center;
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4), inset 0 0 0 1px rgba(255,255,255,0.08);
  overflow: hidden;
}
.now-playing__art-glow {
  position: absolute; inset: -40%;
  filter: blur(28px);
  opacity: 0.55;
  z-index: -1;
}

.now-playing__meta { min-width: 0; }
.now-playing__title {
  font-size: 15px; font-weight: 600; color: var(--color-ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  letter-spacing: -0.1px;
}
.now-playing__sub {
  font-size: 13px; color: var(--color-body); margin-top: 3px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  letter-spacing: 0.05px;
}
.now-playing__sep { color: rgba(255,255,255,0.32); margin: 0 3px; }
.now-playing__role-inline {
  color: rgba(255,255,255,0.82);
  font-weight: 650;
  letter-spacing: 0.65px;
  text-transform: uppercase;
}

.now-playing__controls { display: flex; align-items: center; gap: 4px; justify-self: end; }
.now-playing__btn {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--color-body); border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.now-playing__btn:hover { background: rgba(255,255,255,0.08); color: var(--color-ink); }

.now-playing__play {
  width: 46px; height: 46px;
  background: var(--color-ink); color: #0a0a0a;
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; border-radius: 999px;
  margin: 0 4px;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.35);
}
.now-playing__play:hover { transform: scale(1.05); background: #fff; }

.now-playing__wave {
  display: flex; align-items: center; gap: 2px; height: 22px;
  width: 180px;
  margin-left: 10px;
  flex-shrink: 0;
}
.now-playing__wave span {
  flex: 1; background: rgba(255,255,255,0.18); height: 30%;
  border-radius: 1px;
  animation: np-wave 1.1s ease-in-out infinite;
}
.now-playing__wave span:nth-child(2n) { animation-delay: .12s; }
.now-playing__wave span:nth-child(3n) { animation-delay: .24s; }
.now-playing__wave span:nth-child(4n) { animation-delay: .36s; }
.now-playing__wave span:nth-child(5n) { animation-delay: .48s; }
.now-playing.is-paused .now-playing__wave span {
  animation-play-state: paused;
  background: rgba(255,255,255,0.14);
}
@keyframes np-wave {
  0%, 100% { height: 18%; background: rgba(255,255,255,0.20); }
  50% { height: 88%; background: var(--color-ink); }
}

/* Volume control — vertical bars in the same visual language as the waveform */
.now-playing__volume {
  display: inline-flex; align-items: center; gap: 6px;
  margin-left: 6px; padding-left: 10px;
  border-left: 1px solid rgba(255,255,255,0.08);
}
.now-playing__vol-btn { width: 28px; height: 28px; }
.now-playing__vol-bars {
  display: flex; align-items: center; gap: 2px;
  height: 22px; width: 80px;
  cursor: pointer; padding: 4px 0;
  outline: none;
}
.now-playing__vol-bar {
  flex: 1; height: 30%;
  background: rgba(255,255,255,0.16);
  border-radius: 1px;
  transition: background .15s ease;
}
.now-playing__vol-bar.is-active { background: var(--color-ink); }
.now-playing__vol-bars:hover .now-playing__vol-bar { background: rgba(255,255,255,0.22); }
.now-playing__vol-bars:hover .now-playing__vol-bar.is-active { background: #fff; }
.now-playing__vol-bars:focus-visible {
  box-shadow: 0 0 0 2px rgba(255,255,255,0.25);
  border-radius: 4px;
}

.now-playing__close {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--color-muted); border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
  justify-self: end;
}
.now-playing__close:hover { background: rgba(255,255,255,0.08); color: var(--color-ink); }

@media (max-width: 768px) {
  .now-playing {
    left: 8px; right: 8px; bottom: 8px;
    padding: 12px 12px 12px 12px;
    border-radius: 16px;
  }
  .now-playing__inner { gap: 10px; }
  .now-playing__art { width: 50px; height: 50px; }
  .now-playing__wave { display: none; }
}
.now-playing__instrument { display: none; }

/* ---------- PRICING ---------- */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-sm);
  align-items: stretch;
}
.price-card {
  background:
    radial-gradient(96% 62% at 10% -16%, rgba(0,0,0,0.34) 0%, rgba(0,0,0,0.14) 30%, rgba(0,0,0,0.00) 66%),
    radial-gradient(115% 78% at 90% -14%, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.055) 30%, rgba(255,255,255,0.00) 64%),
    linear-gradient(180deg, #211615 0%, #121316 64%, #0d0f12 100%);
  padding: var(--space-md);
  display: flex; flex-direction: column;
  border-top: 3px solid var(--color-primary);
  border-bottom: 3px solid var(--color-primary);
  border-radius: 8px;
  overflow: visible;
  box-shadow:
    0 8px 28px rgba(218,41,28,0.12),
    inset 0 1px 0 rgba(255,255,255,0.035),
    inset 0 -1px 0 rgba(0,0,0,0.18);
  position: relative;
  transition: box-shadow .2s ease, transform .2s ease;
}
.price-card:hover {
  box-shadow: 0 12px 32px rgba(218,41,28,0.20);
  transform: translateY(-2px);
}
.price-card::before,
.price-card::after {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  pointer-events: none;
}
.price-card::before {
  left: 0;
  width: 4px;
  border-radius: 8px 0 0 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.10) 26%, rgba(218,41,28,0.10) 64%, rgba(12,12,14,0.26) 100%),
    linear-gradient(90deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.02) 45%, rgba(255,255,255,0) 100%);
  opacity: 0.60;
}
.price-card::after {
  right: 0;
  width: 6px;
  border-radius: 0 8px 8px 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.00) 0%, rgba(255,255,255,0.16) 12%, rgba(255,255,255,0.10) 30%, rgba(218,41,28,0.13) 66%, rgba(12,12,14,0.28) 100%),
    linear-gradient(270deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.03) 52%, rgba(255,255,255,0) 100%);
  opacity: 0.62;
}
.price-card--feat {
  background:
    radial-gradient(98% 64% at 10% -16%, rgba(0,0,0,0.36) 0%, rgba(0,0,0,0.15) 30%, rgba(0,0,0,0.00) 68%),
    radial-gradient(118% 80% at 90% -14%, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.065) 32%, rgba(255,255,255,0.00) 66%),
    linear-gradient(180deg, #231716 0%, #131418 64%, #0d0f12 100%);
  border-top: 3px solid var(--color-primary);
  border-bottom: 3px solid var(--color-primary);
  transform: scale(1.02);
  box-shadow: 0 14px 36px rgba(218,41,28,0.22);
}
.price-card--feat:hover {
  box-shadow: 0 18px 42px rgba(218,41,28,0.30);
  transform: scale(1.02) translateY(-2px);
}
.price-card__badge {
  position: absolute; top: 0; right: var(--space-md);
  transform: translateY(-50%);
  z-index: 2;
  background: var(--color-primary); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 6px;
}
.price-card__eyebrow {
  font-size: var(--font-caption-upper-size);
  font-weight: var(--font-caption-upper-weight);
  letter-spacing: var(--font-caption-upper-track);
  text-transform: uppercase;
  color: var(--color-body);
  margin-bottom: var(--space-xs);
}
.price-card__name { font-size: 28px; font-weight: 500; letter-spacing: -0.5px; line-height: 1.1; margin: 0 0 var(--space-xxs); color: var(--color-ink); }
.price-card__desc { font-size: 13px; color: var(--color-body); margin: 0 0 var(--space-md); min-height: 40px; white-space: pre-line; }
.price-card__price {
  display: flex; align-items: baseline; gap: var(--space-xxs);
  margin-bottom: var(--space-md);
  font-feature-settings: "tnum";
}
.price-card__price .amount { font-size: 64px; font-weight: 700; line-height: 1; letter-spacing: -1.3px; color: var(--color-ink); }
.price-card__price .per { font-size: 13px; color: var(--color-body); text-transform: uppercase; letter-spacing: 1.1px; }
.price-card__feats { list-style: none; padding: 0; margin: 0 0 var(--space-md); display: flex; flex-direction: column; gap: var(--space-xs); }
.price-card__feat { display: flex; gap: var(--space-xs); align-items: flex-start; font-size: 13px; color: var(--color-ink); line-height: 1.4; }
.price-card__check {
  flex-shrink: 0; width: 16px; height: 16px;
  background: var(--color-primary); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; font-size: 10px;
  margin-top: 1px;
}
.price-card__rush {
  font-size: 12px; color: var(--color-body); padding: var(--space-xs) 0;
  border-top: 1px solid var(--color-hairline); margin-bottom: var(--space-md);
}
.price-card__rush strong { color: var(--color-ink); font-weight: 600; }
.price-card .btn { width: 100%; margin-top: auto; }
.pricing-tab-bar { display: none; }
.pricing-swipe-wrap { display: none; }
.pricing-dots { display: none; }

/* ---------- HOW IT WORKS ---------- */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md);
  position: relative;
}
.process-step { position: relative; padding-top: var(--space-md); }
.process-step__num {
  font-size: 14px; font-weight: 700; letter-spacing: 1.4px;
  color: var(--color-primary);
  font-feature-settings: "tnum";
  margin-bottom: var(--space-sm);
  display: flex; align-items: center; gap: 12px;
}
.process-step__num::after { content: ""; flex: 1; height: 1px; background: var(--color-hairline); }
.process-step__title { font-size: 22px; font-weight: 500; line-height: 1.2; letter-spacing: -0.2px; margin: 0 0 var(--space-xs); color: var(--color-ink); }
.process-step__desc { font-size: 16px; line-height: 1.6; color: var(--color-body); margin: 0; }

/* ---------- REVIEWS ---------- */
.stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md);
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--color-hairline);
  border-bottom: 1px solid var(--color-hairline);
}
.stat-cell { display: flex; flex-direction: column; gap: var(--space-xxs); }
.stat-cell__val {
  font-size: 72px; font-weight: 700; line-height: 1; letter-spacing: -1.4px;
  color: var(--color-ink); font-feature-settings: "tnum";
}
.stat-cell__val--red { color: var(--color-primary); }
.stat-cell__label {
  font-size: var(--font-caption-upper-size);
  font-weight: var(--font-caption-upper-weight);
  letter-spacing: var(--font-caption-upper-track);
  text-transform: uppercase; color: var(--color-body);
}

.marquee {
  margin-top: 0;
  overflow: hidden; position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  touch-action: pan-y;
  contain: paint;
}
.marquee-band-light {
  background: var(--color-canvas);
  margin-top: var(--space-xl);
  padding: var(--space-lg) 0;
}
.marquee-band-light .review-card {
  background: var(--color-canvas-light);
  border: 1px solid rgba(32, 40, 58, 0.14);
  color: var(--color-body-on-light);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.58) inset,
    0 16px 36px rgba(8,10,18,0.2),
    0 3px 8px rgba(8,10,18,0.16);
}
.marquee-band-light .review-card::before {
  background:
    linear-gradient(180deg, rgba(224, 233, 246, 0.38) 0%, rgba(216, 227, 242, 0.24) 36%, rgba(188, 203, 224, 0.18) 72%, rgba(146, 164, 190, 0.12) 100%),
    linear-gradient(90deg, rgba(255,255,255,0.40) 0%, rgba(255,255,255,0.18) 36%, rgba(255,255,255,0.04) 70%, rgba(255,255,255,0) 100%);
  opacity: 0.88;
}
.marquee-band-light .review-card::after {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(223, 234, 248, 0.24) 18%, rgba(201, 216, 236, 0.20) 46%, rgba(160, 178, 202, 0.17) 74%, rgba(122, 144, 172, 0.14) 100%),
    linear-gradient(270deg, rgba(255,255,255,0.42) 0%, rgba(255,255,255,0.20) 36%, rgba(255,255,255,0.05) 70%, rgba(255,255,255,0) 100%);
  opacity: 0.88;
}
.marquee-band-light .review-card__quote { color: var(--color-body-on-light); }
.marquee-band-light .review-card__name { color: var(--color-body-on-light); }
.marquee-band-light .review-card__role { color: var(--color-muted); }
.marquee-band-light .review-card__footer { border-color: var(--color-hairline-on-light); }
/* Outline flags inside light review cards so white-heavy flags (JP, NL, etc.) don't blend */
.marquee-band-light .review-card__footer svg {
  border: 1px solid rgba(58, 74, 100, 0.18);
  box-shadow: 0 0 0 0.5px rgba(0,0,0,0.04);
}
.marquee__track {
  display: flex; gap: var(--space-sm);
  width: max-content;
  animation: marquee 160s linear infinite;
  will-change: transform;
  transform: translate3d(0,0,0);
  backface-visibility: hidden;
}
.marquee:not(.is-interactive):hover .marquee__track { animation-play-state: paused; }
.marquee.is-interactive { cursor: grab; }
.marquee.is-interactive.is-dragging { cursor: grabbing; }
.marquee.is-dragging { touch-action: none; }
.marquee.is-dragging,
.marquee.is-dragging * {
  -webkit-user-select: none;
  user-select: none;
}
.marquee .review-card,
.marquee .review-card * {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.review-card {
  width: 380px; flex-shrink: 0;
  background: var(--color-canvas-elevated);
  padding: 12px var(--space-md) 10px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  row-gap: 8px;
  border-radius: 8px;
  border: 1px solid var(--color-hairline);
  overflow: hidden;
  position: relative;
  isolation: isolate;
  transform: translateZ(0);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.04) inset,
    0 10px 24px rgba(0,0,0,0.14),
    0 1px 3px rgba(0,0,0,0.18);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  border-radius: 8px 0 0 8px;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.08) 34%, rgba(218,41,28,0.07) 68%, rgba(12,12,14,0.16) 100%),
    linear-gradient(90deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 52%, rgba(255,255,255,0) 100%);
  opacity: 0.48;
}
.review-card::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 6px;
  border-radius: 0 8px 8px 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.09) 16%, rgba(255,255,255,0.07) 40%, rgba(218,41,28,0.08) 72%, rgba(12,12,14,0.18) 100%),
    linear-gradient(270deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.05) 54%, rgba(255,255,255,0) 100%);
  opacity: 0.5;
}
.review-card__stars {
  color: var(--color-primary);
  letter-spacing: 1.8px;
  font-size: 17px;
  line-height: 1;
  margin-top: 5px;
  margin-bottom: 0;
  padding-left: 6px;
  min-height: 18px;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.18),
    0 2px 6px rgba(0,0,0,0.20);
}
.review-card__quote-wrap {
  display: flex;
  align-items: center;
  min-height: 132px;
  position: relative;
  z-index: 1;
}
.review-card__quote { font-size: 15px; line-height: 1.5; color: var(--color-ink); margin: 0; }
.review-card__footer {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 60px;
  padding-top: 0;
  border-top: 1px solid var(--color-hairline);
  position: relative;
  z-index: 1;
}
.review-card__footer svg {
  width: auto;
  height: 20px;
  min-width: 30px;
  flex-shrink: 0;
}
.review-card__flag {
  width: 24px; height: 16px;
  background-size: cover; background-position: center;
  flex-shrink: 0;
}
.review-card__meta {
  min-width: 0;
  flex: 1;
  display: flex;
  align-items: center;
}
.review-card__byline {
  display: grid;
  grid-template-rows: auto auto;
  row-gap: 2px;
  min-width: 0;
  white-space: normal;
}
.review-card__name {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--color-ink);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-card__role {
  font-size: 13px;
  line-height: 1.2;
  color: var(--color-body);
  text-transform: none;
  letter-spacing: 0;
  flex-shrink: 0;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-card--compact {
  width: 340px;
  min-height: 286px;
  cursor: pointer;
}
.review-card--compact .review-card__quote-wrap { min-height: 152px; }
.review-card--compact .review-card__quote {
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.reviews-pinned {
  margin-top: var(--space-md);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-sm);
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.reviews-pinned .review-card {
  width: auto;
  max-width: 350px;
  justify-self: center;
}

/* Light editorial band variant (Tweak) */
.editorial-light {
  background: var(--color-canvas-light); color: var(--color-body-on-light);
}
.editorial-light .tb-eyebrow { color: var(--color-muted); }
.editorial-light .tb-title { color: var(--color-body-on-light); }
.editorial-light .tb-lead { color: var(--color-muted); }
.editorial-light .stats-row { border-color: var(--color-hairline-on-light); }
.editorial-light .stat-cell__val { color: var(--color-body-on-light); }
.editorial-light .stat-cell__label { color: var(--color-muted); }
.editorial-light .review-card { background: var(--color-surface-soft-light); border: 1px solid var(--color-hairline-on-light); }
.editorial-light .review-card__quote { color: var(--color-body-on-light); }
.editorial-light .review-card__name { color: var(--color-body-on-light); }
.editorial-light .review-card__role { color: var(--color-muted); }
.editorial-light .review-card__footer { border-color: var(--color-hairline-on-light); }

/* ---------- GEAR ---------- */
.gear-hero {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--space-lg);
  align-items: center;
  margin-bottom: var(--space-xl);
}
.gear-hero__media {
  aspect-ratio: 4 / 3;
  background: var(--color-canvas-elevated);
  position: relative; overflow: hidden;
}
.gear-hero__copy { padding-right: var(--space-md); }
.gear-hero__eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--color-primary); margin-bottom: var(--space-xs); }
.gear-hero__name { font-size: 56px; font-weight: 500; line-height: 1.05; letter-spacing: -1.12px; margin: 0 0 var(--space-xs); }
.gear-hero__year { font-size: 18px; color: var(--color-body); margin-bottom: var(--space-md); }
.gear-hero__desc { font-size: 16px; line-height: 1.6; color: var(--color-body); margin: 0; max-width: 460px; }

.gear-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-sm); }
.gear-grid--five { grid-template-columns: repeat(5, 1fr); gap: var(--space-xs); }
.gear-card {
  background: var(--color-canvas-elevated);
  padding: 0;
  cursor: default;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.gear-card:hover {
  background: #1f1310;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.35), inset 0 0 0 1px rgba(218,41,28,0.25);
}
.gear-card__media {
  aspect-ratio: 4 / 3;
  position: relative; overflow: hidden;
  background: var(--color-canvas);
}
.gear-card__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}
.gear-card:hover .gear-card__image {
  transform: scale(1.20);
  filter: contrast(1.04) saturate(1.03);
}

/* Safari desktop: keep motion/zoom but force stable compositing to reduce soft frames. */
.ua-safari-desktop .gear-card {
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}
.ua-safari-desktop .gear-card:hover {
  transform: translate3d(0, -2px, 0);
}
.ua-safari-desktop .gear-card__image {
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}
.ua-safari-desktop .gear-card:hover .gear-card__image {
  transform: translateZ(0) scale(1.20);
  filter: contrast(1.04) saturate(1.03);
}

/* Desktop-only stronger zoom for gear cards */
@media (min-width: 981px) and (hover: hover) and (pointer: fine) {
  .gear-card:hover .gear-card__image {
    transform: scale(1.20);
  }
  .ua-safari-desktop .gear-card:hover .gear-card__image {
    transform: translateZ(0) scale(1.20);
  }
}
.gear-card__body {
  padding: var(--space-sm);
  flex: 1 1 auto;
}
.gear-card__name { font-size: 16px; font-weight: 500; line-height: 1.2; margin: 0; color: var(--color-ink); white-space: pre-line; }
.gear-card__year { font-size: 12px; color: var(--color-body); margin-top: 4px; }
.gear-card__note {
  font-size: 12px;
  color: var(--color-body);
  margin-top: 6px;
  line-height: 1.4;
}

/* Premium hover readability for gear card copy - contrast dark variant */
.gear-card__body {
  background: #2f3034;
  position: relative;
  overflow: hidden;
  transition: background .28s ease, color .28s ease, box-shadow .28s ease;
}
.gear-card__body::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #c8102e;
  opacity: 0;
  transition: opacity .2s ease;
}
.gear-card:hover .gear-card__body,
.gear-card:focus-within .gear-card__body,
.gear-card:active .gear-card__body {
  background: linear-gradient(180deg, #f1f2f4 0%, #e6e8ec 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.11);
}
.gear-card:hover .gear-card__body::before,
.gear-card:focus-within .gear-card__body::before,
.gear-card:active .gear-card__body::before {
  opacity: 1;
}
.gear-card:hover .gear-card__name,
.gear-card:focus-within .gear-card__name,
.gear-card:active .gear-card__name {
  color: #0f1115;
}
.gear-card:hover .gear-card__year,
.gear-card:focus-within .gear-card__year,
.gear-card:active .gear-card__year {
  color: #4a4f58;
}
.gear-card:hover .gear-card__note,
.gear-card:focus-within .gear-card__note,
.gear-card:active .gear-card__note {
  color: #22262d;
}

/* Signal chain diagram */
.signal-chain { margin-top: var(--space-xl); padding-top: var(--space-xl); border-top: 1px solid var(--color-hairline); }
.signal-chain__head {
  display: flex; justify-content: space-between; align-items: baseline; gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}
.signal-chain__title {
  font-size: 11px; font-weight: 600; letter-spacing: 1.1px; text-transform: uppercase;
  color: var(--color-body);
}
.signal-chain__benefit {
  flex-basis: 100%;
  max-width: 620px;
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-body);
}
.signal-chain__note {
  font-size: 12px; color: var(--color-body); display: inline-flex; align-items: center; gap: 8px;
}
.signal-chain__note strong {
  color: var(--color-ink);
  font-weight: 700;
}
.signal-chain__cable-dot {
  width: 8px; height: 8px; background: var(--color-primary);
  display: inline-block; border-radius: 50%;
}
.signal-path { margin-top: var(--space-md); }
.signal-path__label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 1.1px; text-transform: uppercase;
  color: var(--color-body);
  margin-bottom: var(--space-xs);
}
.signal-path__id {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: var(--color-primary); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0;
}
.signal-flow {
  display: flex; align-items: stretch; gap: var(--space-xxs);
  overflow-x: auto; padding-bottom: var(--space-xs);
}
.signal-node {
  background: var(--color-canvas-elevated);
  padding: var(--space-sm);
  min-width: 160px;
  flex-shrink: 0;
  display: flex; flex-direction: column; gap: 4px;
  border-left: 2px solid var(--color-primary);
}
.signal-node--start { border-left-color: var(--color-muted); }
.signal-node--end { border-left-color: var(--color-ink); }
.signal-node__num { font-size: 10px; font-weight: 700; letter-spacing: 1.4px; color: var(--color-primary); }
.signal-node__name { font-size: 14px; font-weight: 500; color: var(--color-ink); line-height: 1.3; }
.signal-node__role { font-size: 11px; color: #b5b5b5; text-transform: uppercase; letter-spacing: 0.6px; }
.signal-arrow {
  align-self: center;
  width: 28px; height: 14px; flex-shrink: 0;
  color: #a8a8a8;
  display: flex; align-items: center;
}

.hardware-strip {
  margin-top: calc(var(--space-lg) - 10px);
  padding-top: calc(var(--space-lg) - 8px);
  border-top: 1px solid var(--color-hairline);
}
.hardware-strip__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.hardware-strip__title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--color-body);
}
.hardware-strip__lead {
  margin: 0;
  font-size: 14px;
  color: var(--color-body);
  line-height: 1.5;
  max-width: 560px;
}

.monitoring-list {
  margin-top: calc(var(--space-lg) - 10px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding-top: calc(var(--space-lg) - 8px);
  border-top: 1px solid var(--color-hairline);
}
.monitoring-list__title {
  font-size: 11px; font-weight: 600; letter-spacing: 1.1px; text-transform: uppercase;
  color: var(--color-body);
}

.kit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.kit-card {
  position: relative;
  min-height: 96px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 136px;
  background: var(--color-canvas-elevated);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}
.kit-card__copy {
  position: relative;
  padding: 9px 11px 9px 13px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  background: #2f3034;
  transition: background .24s ease, box-shadow .24s ease;
}
.kit-card__copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #da291c;
  opacity: 0;
  transition: opacity .2s ease;
}
.kit-card__name {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-ink);
}
.kit-card__role {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #a9afb9;
  transition: color .22s ease;
}
.kit-card__note {
  margin: 2px 0 0;
  font-size: 12px;
  line-height: 1.35;
  color: #d3d6dc;
  transition: color .22s ease;
}
.kit-card__media {
  background: linear-gradient(160deg, #121214, #070708);
  overflow: hidden;
  border-left: 1px solid rgba(255,255,255,0.06);
}
.kit-card__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: left center;
  transform: scale(1.0);
  transition: transform .32s cubic-bezier(0.22, 1, 0.36, 1);
}
.kit-card:hover {
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 12px 28px rgba(0,0,0,0.28);
}
.kit-card:hover .kit-card__copy {
  background: linear-gradient(180deg, #f1f2f4 0%, #e6e8ec 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.11);
}
.kit-card:hover .kit-card__copy::before {
  opacity: 1;
}
.kit-card:hover .kit-card__name {
  color: #0f1115;
}
.kit-card:hover .kit-card__role {
  color: #4a4f58;
}
.kit-card:hover .kit-card__note {
  color: #22262d;
}
.kit-card:hover .kit-card__image {
  transform: scale(1.20);
}
.kit-card:focus-within .kit-card__image,
.kit-card:active .kit-card__image {
  transform: scale(1.20);
}
.kit-card:focus-within .kit-card__copy,
.kit-card:active .kit-card__copy {
  background: linear-gradient(180deg, #f1f2f4 0%, #e6e8ec 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.11);
}
.kit-card:focus-within .kit-card__copy::before,
.kit-card:active .kit-card__copy::before {
  opacity: 1;
}
.kit-card:focus-within .kit-card__name,
.kit-card:active .kit-card__name {
  color: #0f1115;
}
.kit-card:focus-within .kit-card__role,
.kit-card:active .kit-card__role {
  color: #4a4f58;
}
.kit-card:focus-within .kit-card__note,
.kit-card:active .kit-card__note {
  color: #22262d;
}

/* Desktop only: keep card height, but give media more visual presence */
@media (min-width: 981px) {
  .hardware-strip .kit-grid,
  .monitoring-list .kit-grid {
    gap: 14px;
  }
  .hardware-strip .kit-card,
  .monitoring-list .kit-card {
    height: 100px;
    min-height: 100px;
  }
  .hardware-strip .kit-card__copy,
  .monitoring-list .kit-card__copy {
    padding: 7px 10px 7px 12px;
    gap: 3px;
  }
  .hardware-strip .kit-card__note,
  .monitoring-list .kit-card__note {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .hardware-strip .kit-card__image,
  .monitoring-list .kit-card__image {
    transform: scale(1.03);
  }
  .hardware-strip .kit-card:hover .kit-card__image,
  .hardware-strip .kit-card:focus-within .kit-card__image,
  .hardware-strip .kit-card:active .kit-card__image,
  .monitoring-list .kit-card:hover .kit-card__image,
  .monitoring-list .kit-card:focus-within .kit-card__image,
  .monitoring-list .kit-card:active .kit-card__image {
    transform: scale(1.20);
  }
}

/* ---------- ABOUT ---------- */
.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  grid-template-areas:
    "portrait intro"
    "portrait copy";
  column-gap: var(--space-xl);
  row-gap: var(--space-sm);
  align-items: start;
}
.about__intro {
  grid-area: intro;
  padding-right: var(--space-md);
}
.about__portrait {
  grid-area: portrait;
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, #2a1a18, #181818 60%, #050505);
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.about__portrait-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 34%;
}
.about__copy {
  grid-area: copy;
  padding-right: var(--space-md);
}
#about .tb-title { line-height: 0.98; }
.about__bio { font-size: 16px; line-height: 1.7; color: var(--color-body); margin: 0 0 var(--space-md); }
.about__bio strong { color: var(--color-ink); font-weight: 500; }
@media (min-width: 981px) {
  .about__bio-line { white-space: nowrap; }
  .about__mobile-break { display: none; }
}
@media (max-width: 980px) {
  .about__desktop-sep { display: none; }
  .about {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "portrait"
      "copy";
    gap: 10px;
  }
  .about__intro,
  .about__copy { padding-right: 0; }
  .about__intro .tb-title { margin-bottom: 4px !important; }
}
.about__pull {
  font-size: 24px; font-weight: 500; line-height: 1.35; letter-spacing: -0.2px;
  color: var(--color-ink);
  padding-left: var(--space-md);
  border-left: 2px solid var(--color-primary);
  margin: var(--space-md) 0;
}
.about__pull em { font-style: normal; color: var(--color-primary); }

/* ---------- CTA + Footer ---------- */
.cta-tb {
  text-align: center; padding: var(--space-xxl) var(--space-md);
  background: var(--gradient-darkroom);
}
.cta-tb__title { font-size: 56px; font-weight: 500; line-height: 1.05; letter-spacing: -1.12px; margin: 0 auto var(--space-md); max-width: 720px; }
.cta-tb__sub { font-size: 17px; color: var(--color-body); max-width: 540px; margin: 0 auto var(--space-md); }
.cta-tb__ctas { display: inline-flex; gap: var(--space-xs); flex-wrap: wrap; justify-content: center; }
.cta-tb__email {
  display: flex; align-items: baseline; justify-content: center; gap: 7px;
  margin-top: var(--space-md);
  font-size: 14px; color: var(--color-body);
  flex-wrap: wrap;
}
.cta-tb__email-label {
  font-size: inherit; font-weight: 400; letter-spacing: 0;
  color: var(--color-body);
  flex-shrink: 0;
}
.cta-tb__email a {
  color: var(--color-ink); text-decoration: none;
  border-bottom: 1px solid var(--color-primary);
  user-select: all;
}
.cta-tb__email a:hover { color: var(--color-primary); }
.cta-tb__email a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 5px;
}
.footer-tb { background: var(--color-canvas); padding: var(--space-lg) var(--space-md) var(--space-md); border-top: 1px solid var(--color-hairline); }
.footer-tb__inner { max-width: var(--content-max); margin: 0 auto; }
.footer-tb__cols { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: var(--space-md); margin-bottom: var(--space-lg); }
.footer-tb__col h4 {
  font-size: var(--font-caption-upper-size);
  font-weight: var(--font-caption-upper-weight);
  letter-spacing: var(--font-caption-upper-track);
  text-transform: uppercase;
  color: var(--color-ink);
  margin: 0 0 var(--space-xs);
}
.footer-tb__link { display: block; font-size: 14px; color: var(--color-body); text-decoration: none; padding: 4px 0; }
.footer-tb__link:hover { color: var(--color-ink); }
.footer-tb__about { font-size: 13px; color: var(--color-body); line-height: 1.6; max-width: 320px; margin: var(--space-xs) 0 0; }
.footer-tb__legal {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: var(--space-sm); border-top: 1px solid var(--color-hairline);
  font-size: 12px; color: var(--color-muted);
  gap: var(--space-sm);
  flex-wrap: wrap;
}
.footer-tb__legal-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 14px;
}
.footer-tb__legal-links a {
  color: var(--color-muted);
  text-decoration: none;
  line-height: 1.25;
}
.footer-tb__legal-links a:hover { color: var(--color-ink); }

/* ---------- Sections — wrappers for full-bleed dark sections between cards ---------- */
.band-dark { background: var(--color-canvas); }

/* ---------- FAQ — accordion list ---------- */
.faq-list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--color-hairline);
  max-width: 880px; margin: 0 auto;
}
@media (min-width: 981px) {
  #faq .tb-section__head { margin-bottom: calc(var(--space-lg) - 12px); }
  #faq .tb-lead { max-width: 760px; }
  .faq-lead__line { white-space: nowrap; }
  .faq-group + .faq-group { margin-top: 12px; }
}
@media (max-width: 980px) {
  #faq .tb-section__head { margin-bottom: calc(var(--space-lg) - 6px); }
}
.faq-group { display: flex; flex-direction: column; }
.faq-group__head {
  display: flex; align-items: baseline; gap: var(--space-sm);
  padding: 18px var(--space-xs) 8px;
  border-bottom: 1px solid var(--color-hairline);
}
.faq-group:first-child .faq-group__head { padding-top: var(--space-sm); }
.faq-group__index {
  font-family: var(--font-family-base);
  font-size: 11px; font-weight: 600;
  letter-spacing: 1.1px; text-transform: uppercase;
  color: var(--color-primary);
  flex-shrink: 0;
}
.faq-group__label {
  font-family: var(--font-family-base);
  font-size: 11px; font-weight: 600;
  letter-spacing: 1.1px; text-transform: uppercase;
  color: var(--color-body);
}
.faq-item {
  border-bottom: 1px solid var(--color-hairline);
}
.faq-item__q {
  list-style: none;
  display: flex; align-items: center; gap: var(--space-sm);
  padding: 14px var(--space-xs);
  cursor: pointer;
  font-size: 17px; font-weight: 500; line-height: 1.35;
  color: var(--color-ink);
  letter-spacing: -0.1px;
  transition: color .15s ease;
  -webkit-user-select: none;
  user-select: none;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::marker { display: none; content: ""; }
.faq-item__q:hover { color: var(--color-primary); }
.faq-item__chevron {
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--color-primary);
  transition: transform .25s ease;
}
.faq-item[open] .faq-item__chevron { transform: rotate(90deg); }
.faq-item__qtext { flex: 1; min-width: 0; }
.faq-item__a {
  padding: 0 var(--space-xs) 18px calc(28px + var(--space-sm) + var(--space-xs));
  font-size: 16px; line-height: 1.6;
  color: var(--color-body);
  max-width: 760px;
  white-space: pre-line;
}

@media (max-width: 768px) {
  .faq-group + .faq-group {
    margin-top: 14px;
  }
  .faq-group__head {
    padding: 16px var(--space-xs) 7px;
  }
  .faq-item__q {
    padding: 14px var(--space-xs);
  }
  .faq-item__a {
    padding-bottom: 16px;
  }
}

/* Smooth open animation using a small CSS trick — <details> doesn't animate height natively,
   but we can fade the content in once expanded */
.faq-item[open] .faq-item__a { animation: faq-fade-in .25s ease-out; }
@keyframes faq-fade-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .hero-tb__content { display: block; gap: var(--space-md); padding-bottom: var(--space-xxl); min-height: 480px; }
  .hero-tb__h1 { font-size: 72px; }
  .hero-tb__bass-bg { width: 70%; height: 70%; opacity: 0.5; }
  .hero-tb__meta-row { padding: var(--space-sm); gap: var(--space-xxs); }
  .hero-tb__meta-chip { min-width: 140px; padding: 10px 14px; }
  .hero-tb__meta-value { font-size: 18px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card--feat { transform: none; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .gear-hero { grid-template-columns: 1fr; }
  .gear-grid, .gear-grid--five { grid-template-columns: repeat(3, 1fr); }
  .kit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "portrait"
      "copy";
    gap: var(--space-md);
  }
  .about__intro,
  .about__copy { padding-right: 0; }
}
@media (max-width: 768px) {
  /* Two-row topnav on mobile: brand+util up top, section links below */
  .topnav {
    flex-wrap: wrap;
    height: auto;
    min-height: 0;
    padding: 6px 18px 0 var(--space-sm);
    row-gap: 0;
    column-gap: var(--space-xs);
    align-items: center;
  }
  .brand-mark { order: 1; gap: 8px; }
  .topnav__util {
    order: 2; margin-left: auto;
    gap: 10px;
    align-self: center;
  }
  .topnav__util .btn { height: 32px !important; padding: 0 14px !important; font-size: 11px !important; }
  .topnav__flag { align-self: center; }
  .brand-words .b1 { font-size: 13px; }
  .brand-words .b2 { font-size: 10px; letter-spacing: 1px; }
  .brand-logo { height: 26px; }

  /* Footer brand: enlarge ANTONIO D'AMATO so its right edge approaches the right edge of TonnoBass above */
  .footer-tb .brand-words .b2 {
    font-size: 12px !important;
    letter-spacing: 0.4px !important;
  }
  /* Footer brand: enlarge monogram so top aligns with TonnoBass top and bottom aligns with ANTONIO D'AMATO bottom */
  .footer-tb .brand-logo { height: 38px; }

  /* Section links: full-width second row, horizontally scrollable */
  .topnav__links {
    display: flex !important;          /* override design-system hide-on-mobile */
    order: 3;
    flex: 0 0 calc(100% + var(--space-sm) + 18px);
    max-width: calc(100% + var(--space-sm) + 18px);
    /* Align the section row with the mobile nav's outer layout edge. */
    margin: 4px -18px 0 calc(var(--space-sm) * -1);
    padding: 0 18px 0 var(--space-sm);
    gap: 18px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-top: 1px solid var(--color-hairline);
    scroll-behavior: smooth;
    -webkit-mask-image: none;
            mask-image: none;
  }
  .topnav__fade {
    position: absolute;
    top: 43px;
    bottom: 0;
    width: 86px;
    pointer-events: none;
    z-index: 4;
    opacity: 0;
    transition: opacity .22s ease;
  }
  .topnav__fade--left {
    left: 0;
    background: linear-gradient(90deg, var(--color-canvas) 0%, rgba(18,18,18,0.92) 28%, rgba(18,18,18,0) 100%);
  }
  .topnav__fade--right {
    right: 0;
    background: linear-gradient(270deg, var(--color-canvas) 0%, rgba(18,18,18,0.92) 28%, rgba(18,18,18,0) 100%);
  }
  .topnav.has-links-more-left .topnav__fade--left,
  .topnav.has-links-more-right .topnav__fade--right {
    opacity: 1;
  }
  .topnav__links::-webkit-scrollbar { display: none; }
  .topnav__links li { flex: 0 0 auto; }
  .topnav__link {
    position: relative;
    padding: 11px 0 !important;
    font-size: 12.5px;
    letter-spacing: 0.7px;
    white-space: nowrap;
    transition: color .18s ease;
  }
  .topnav__link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 3px;
    height: 2px;
    background: var(--color-primary);
    opacity: 0;
    transform: scaleX(0.62);
    transform-origin: center;
    transition: opacity .18s ease, transform .18s ease;
  }
  .topnav__link.is-active::after {
    opacity: 0.94;
    transform: scaleX(1);
  }
}

@media (max-width: 720px) {
  :root { --font-body-md-size: 15px; }

  /* Hero on mobile: tall enough to feel substantial but keeps stat chips above the fold */
  .hero-tb {
    display: flex;
    flex-direction: column;
    min-height: 640px;
  }
  .hero-tb__content {
    flex: 1;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    height: auto !important;
    min-height: 0 !important;
    /* Slight upward bias: more padding below than above */
    padding: var(--space-md) var(--space-sm) var(--space-xl) !important;
  }
  .hero-tb__h1 { font-size: 46px; letter-spacing: -0.9px; margin-bottom: var(--space-sm); }
  .hero-tb__sub { font-size: 16px; margin-bottom: var(--space-md); }
  .hero-tb__ctas .btn { height: 42px; padding: 0 18px; }
  .hero-tb__bass-bg { display: none; }
  .hero-tb__meta-row { position: static; padding: var(--space-sm) var(--space-sm) var(--space-xl); margin-top: 0; gap: 8px; }
  .hero-tb__meta-chip {
    flex: 1 1 0;
    min-width: 0;
    padding: 10px 10px;
  }
  .hero-tb__meta-value { font-size: 16px; letter-spacing: -0.3px; }
  .hero-tb__meta-label { font-size: 10px; letter-spacing: 1px; margin-top: 4px; }

  /* Pricing: tab switcher su mobile */
  #pricing .tb-section__head {
    margin-bottom: calc(var(--space-md) - 6px);
  }
  .pricing-tab-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--color-hairline);
    margin-bottom: var(--space-md);
  }
  .pricing-tab {
    padding: 14px 8px 12px;
    background: transparent;
    border: none;
    border-radius: 6px;
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
    border-right: 1px solid var(--color-hairline);
    color: var(--color-body);
    font-size: 13px; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase;
    cursor: pointer;
    transition: color .15s ease, border-color .15s ease, background .15s ease;
    text-align: center;
    margin-bottom: -1px;
    position: relative;
    overflow: hidden;
  }
  .pricing-tab:last-child { border-right: none; }
  .pricing-tab.is-active {
    color: var(--color-ink);
    border-top-color: var(--color-primary);
    border-bottom-color: var(--color-primary);
    background: rgba(0,0,0,0.24);
  }
  .pricing-tab.is-active::before {
    content: "";
    position: absolute;
    top: 0; right: 0; left: 0;
    height: 74%;
    background: linear-gradient(180deg, rgba(255,255,255,0.171) 0%, rgba(255,255,255,0.076) 46%, rgba(255,255,255,0) 100%);
    pointer-events: none;
  }
  .pricing-tab__price {
    display: block;
    font-size: 18px; font-weight: 700; letter-spacing: -0.3px;
    color: var(--color-body);
    margin-top: 4px;
    font-feature-settings: "tnum";
  }
  .pricing-tab.is-active .pricing-tab__price { color: var(--color-primary); }
  .pricing-grid { display: none !important; }
  .pricing-swipe-wrap {
    display: block;
    width: 100%;
    max-width: 100%;
    padding-top: 16px;
    overflow: hidden;
    clip-path: inset(-16px 0 0 0);
    touch-action: pan-y;
    overscroll-behavior-x: contain;
  }
  .pricing-swipe-track {
    display: flex;
    width: 100%;
    max-width: 100%;
    transition: transform 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    -webkit-user-select: none; user-select: none;
  }
  .pricing-swipe-track .price-card {
    display: flex !important;
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding: 17px 13px 16px;
    background:
      radial-gradient(118% 74% at 10% -18%, rgba(0,0,0,0.56) 0%, rgba(0,0,0,0.28) 36%, rgba(0,0,0,0.00) 74%),
      radial-gradient(115% 78% at 90% -14%, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.055) 30%, rgba(255,255,255,0.00) 64%),
      linear-gradient(180deg, #211615 0%, #121316 64%, #0d0f12 100%);
  }
  .pricing-swipe-track .price-card.price-card--feat {
    background:
      radial-gradient(120% 76% at 10% -18%, rgba(0,0,0,0.58) 0%, rgba(0,0,0,0.30) 36%, rgba(0,0,0,0.00) 76%),
      radial-gradient(118% 80% at 90% -14%, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.065) 32%, rgba(255,255,255,0.00) 66%),
      linear-gradient(180deg, #231716 0%, #131418 64%, #0d0f12 100%);
  }
  .pricing-swipe-track .price-card .price-card__eyebrow { margin-bottom: 10px; }
  .pricing-swipe-track .price-card .price-card__desc { margin-bottom: 13px; min-height: 40px; }
  .pricing-swipe-track .price-card .price-card__price { margin-bottom: 13px; }
  .pricing-swipe-track .price-card .price-card__feats { margin-bottom: 13px; gap: 8px; }
  .pricing-swipe-track .price-card .price-card__rush { margin-bottom: 13px; padding: 9px 0; line-height: 1.4; }
  .pricing-swipe-track .price-card:hover { transform: none; }
  .pricing-swipe-track .price-card--feat { transform: none; box-shadow: 0 14px 36px rgba(218,41,28,0.22); }
  .pricing-swipe-track .price-card--feat:hover { transform: none; }
  .price-card--feat .price-card__name { font-size: 30px; }
  .pricing-dots { display: flex; justify-content: center; gap: 24px; margin-top: var(--space-md); }
  .pricing-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    border: none; padding: 0;
    cursor: pointer;
    background: rgba(255,255,255,0.25);
    transition: background .25s ease, transform .25s ease;
  }
  .pricing-dot.is-active { background: #fff; transform: scale(1.2); }
  .pricing-dot {
    position: relative;
  }
  .pricing-dot::before {
    content: "";
    position: absolute;
    top: -10px; right: -10px; bottom: -10px; left: -10px;
  }

  .track-row {
    grid-template-columns: 44px 1fr auto;
    grid-template-areas:
      "play info src"
      "play role role";
    grid-row-gap: 4px;
    gap: var(--space-sm);
    padding: 14px var(--space-sm);
  }
  .track-row__play { grid-area: play; align-self: center; }
  .track-row__info { grid-area: info; min-width: 0; }
  .track-row__role {
    grid-area: role;
    text-align: left;
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--color-muted-soft);
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }
  .track-row .track-card__src {
    grid-area: src;
    align-self: center;
    display: inline-flex;
  }
  .track-row__title { font-size: 15px; }
  .track-row__artist { font-size: 13px; }
  .tb-title { font-size: 32px; letter-spacing: -0.6px; }
  .stats-row { grid-template-columns: 1fr; }
  .stat-cell__val { font-size: 56px; }
  .gear-grid, .gear-grid--five { grid-template-columns: repeat(2, 1fr); }
  .gear-card__body {
    padding: 11px 12px 12px;
  }
  .gear-card__year {
    margin-top: 2px;
  }
  .gear-card__note {
    margin-top: 4px;
    line-height: 1.28;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .kit-grid { grid-template-columns: 1fr; }
  .kit-card {
    grid-template-columns: minmax(0, 1fr) 96px;
    height: 100px;
    min-height: 100px;
  }
  .hardware-strip .kit-grid,
  .monitoring-list .kit-grid { gap: 12px; }
  .kit-card__copy { padding: 8px 9px 8px 12px; }
  .kit-card__note {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .gear-hero__name { font-size: 40px; }
  .cta-tb__title { font-size: 40px; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-tb__cols { grid-template-columns: 1fr 1fr; }
  .now-playing { left: 8px; right: 8px; bottom: 12px; padding: 12px 10px 10px 12px; border-radius: 16px; }
  .ua-chrome-mobile .now-playing { bottom: 18px; }
  .now-playing__inner { grid-template-columns: minmax(0, 1fr) auto auto; gap: 9px; }
  .now-playing__left { gap: 10px; }
  .now-playing__wave, .now-playing__volume { display: none; }
  .now-playing__art { width: 52px; height: 52px; border-radius: 10px; }
  .now-playing__title { font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .now-playing__sub { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .now-playing__sep, .now-playing__role-inline { display: none; }
  .now-playing__instrument {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.80);
    letter-spacing: 0.75px;
    text-transform: uppercase;
    font-weight: 650;
    padding-top: 5px;
    margin-top: 4px;
    border-top: 1px solid rgba(255,255,255,0.08);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .now-playing__controls { gap: 2px; }
  .now-playing__btn { width: 40px; height: 40px; }
  .now-playing__play { width: 50px; height: 50px; margin: 0 1px; }
  /* Listen on mobile: same custom scrollbar, slightly wider for touch */
  .listen-list {
    max-height: 360px;
    overscroll-behavior-y: contain;
    touch-action: pan-y;
    padding-right: 14px;
  }
  .listen-list__scrollbar { width: 12px; }
  .listen-list__thumb { left: 2px; right: 2px; border-radius: 5px; background: rgba(255,255,255,0.65); }

  .price-card__desc { font-size: 14px; }
  .price-card__price .per { font-size: 14px; }
  .price-card__feat { font-size: 14px; }
  .price-card__rush { font-size: 13px; }
  .review-card__name { font-size: 15px; }
  .review-card__role { font-size: 13px; }
  .review-card__footer svg {
    width: auto;
    height: 24px;
    min-width: 36px;
  }
  .review-card--compact {
    width: 300px;
    min-height: 246px;
    padding: 11px 10px 9px;
  }
  .review-card--compact .review-card__quote-wrap { min-height: 118px; }
  .review-card--compact .review-card__quote {
    font-size: 14px;
    line-height: 1.4;
    -webkit-line-clamp: 6;
  }
  .reviews-pinned { grid-template-columns: 1fr; }
  .reviews-pinned .review-card {
    padding: 12px;
    border-radius: 12px;
    min-height: 220px;
  }
  .reviews-pinned .review-card__quote-wrap { min-height: 104px; }
  .reviews-pinned .review-card__quote {
    font-size: 14px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .reviews-pinned .review-card__footer {
    min-height: 58px;
    padding-top: 0;
  }
  .footer-tb__link { font-size: 15px; overflow-wrap: normal; word-break: normal; }
  .footer-tb__mail { font-size: 14px; white-space: nowrap; overflow-wrap: normal; word-break: normal; }
  .footer-tb__legal { align-items: flex-start; row-gap: 8px; }
  .footer-tb__legal > span { width: 100%; }
  .footer-tb__legal-links {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 10px;
  }
  .footer-tb__legal-links a {
    display: block;
    flex: 0 1 calc((100% - 20px) / 3);
    max-width: calc((100% - 20px) / 3);
    text-align: center;
    padding: 4px 0;
  }
  .gear-card__year { font-size: 13px; }
  .tb-eyebrow { font-size: 13px; }
}

.mobile-br { display: none; }
@media (max-width: 768px) { .mobile-br { display: block; } }

.pricing-helper {
  margin: var(--space-md) auto 0;
  max-width: 560px;
  color: var(--color-body);
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
}

@media (min-width: 721px) {
  .pricing-quote-note {
    margin-top: calc(var(--space-lg) + 4px) !important;
    font-size: 16px !important;
    line-height: 1.55;
    color: var(--color-body) !important;
    letter-spacing: 0.2px !important;
    text-wrap: balance;
  }
  .pricing-quote-note a {
    color: var(--color-ink) !important;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 3px;
    font-weight: 600;
  }
}

/* ---------- Listen — genre filter chips ---------- */
.listen-filters {
  display: flex; gap: var(--space-xxs); flex-wrap: wrap;
  margin-bottom: var(--space-md);
}
.listen-filter {
  display: inline-flex; align-items: center;
  padding: 6px 14px;
  background: transparent;
  border: 1px solid var(--color-hairline);
  border-radius: 8px;
  color: var(--color-body);
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.1px; text-transform: uppercase;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.listen-filter:hover { border-color: rgba(255,255,255,0.2); color: var(--color-ink); }
.listen-filter.is-active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

/* ---------- Reviews — pause button + prefers-reduced-motion ---------- */
.reviews-pause {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  background: transparent;
  border: 1px solid var(--color-hairline);
  border-radius: 8px;
  color: var(--color-body);
  font-size: 11px; font-weight: 700; letter-spacing: 1.1px; text-transform: uppercase;
  cursor: pointer; flex-shrink: 0; align-self: flex-start;
  transition: border-color .15s ease, color .15s ease;
}
.reviews-pause:hover { border-color: rgba(255,255,255,0.2); color: var(--color-ink); }
.marquee__track.is-paused { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  html,
  .topnav__links { scroll-behavior: auto !important; }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .marquee__track {
    animation: none !important;
    transform: none !important;
  }

  .hero-tb__logo-spin {
    transform: perspective(1200px) translate3d(-10px, 0, 0) rotateY(-16deg) rotateZ(-4deg) scale(0.94) !important;
    opacity: 0.62;
    will-change: auto;
  }

  .pricing-swipe-track,
  .now-playing__progress-fill {
    transition: none !important;
  }
}

/* ---------- CTA trust line ---------- */
.cta-tb__trust {
  display: flex; align-items: center; gap: var(--space-xs);
  justify-content: center; flex-wrap: wrap;
  margin-top: var(--space-sm);
  font-size: 14px; color: #b7b7b7;
}
.cta-tb__trust-dot {
  width: 4px; height: 4px;
  background: #7f7f7f;
  border-radius: 50%; flex-shrink: 0;
}
@media (max-width: 720px) {
  .cta-tb__trust { gap: var(--space-xxs); font-size: 12px; }
}

/* ---------- About — stats grid ---------- */
.about__stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin: var(--space-md) 0;
  padding: var(--space-sm) 0;
  border-top: 1px solid var(--color-hairline);
  border-bottom: 1px solid var(--color-hairline);
}
.about__stat { display: flex; flex-direction: column; gap: 4px; }
.about__stat-val {
  font-size: 36px; font-weight: 700; line-height: 1;
  letter-spacing: -0.7px; color: var(--color-ink);
  font-feature-settings: "tnum";
}
.about__stat-label {
  font-size: 11px; font-weight: 600; letter-spacing: 1.1px;
  text-transform: uppercase; color: var(--color-body);
}
@media (max-width: 720px) {
  .about__stat-val { font-size: 28px; }
}
