:root {
  color-scheme: dark;
  --bg: #08090b;
  --surface: #11151a;
  --surface-strong: #171c22;
  --text: #f3f0e8;
  --muted: #aaa49a;
  --quiet: #767f86;
  --line: rgba(243, 240, 232, 0.14);
  --red: #e23b2f;
  --amber: #d6a45b;
  --steel: #7f97a3;
  --green: #7fd39a;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 82% 5%, rgba(226, 59, 47, 0.16), transparent 28rem),
    linear-gradient(145deg, rgba(127, 151, 163, 0.12), transparent 34rem),
    var(--bg);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
p { color: var(--muted); line-height: 1.65; }
h1, h2, h3, p { margin-top: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem clamp(1rem, 4vw, 3rem);
  background: rgba(8, 9, 11, 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  width: clamp(9.4rem, 18vw, 13.5rem);
  min-width: 9.4rem;
}

.brand-mark img,
.hero-logo {
  display: block;
  width: 100%;
  height: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.4rem);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-nav a.active,
.site-nav a:hover { color: var(--text); }

.nav-cta {
  min-height: 2.5rem;
  display: inline-flex;
  align-items: center;
  padding: 0 0.9rem;
  border: 1px solid rgba(226, 59, 47, 0.55);
  color: var(--text);
  font-weight: 800;
  font-size: 0.9rem;
}

.hero {
  min-height: calc(100svh - 4.5rem);
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(3.5rem, 8vw, 7rem) 0;
}

.eyebrow,
.section-label {
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-logo {
  max-width: min(640px, 100%);
  margin: 0 0 1.2rem;
  filter: drop-shadow(0 1.2rem 2.5rem rgba(226, 59, 47, 0.22));
}

.tagline {
  max-width: 760px;
  margin-bottom: 0.65rem;
  color: var(--text);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.08;
  font-weight: 800;
}

.credibility {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.1rem;
  border: 1px solid var(--line);
  font-weight: 900;
}

.button.primary {
  background: var(--red);
  border-color: var(--red);
  color: white;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.04);
}

.hero-instrument {
  min-height: 430px;
  position: relative;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)), var(--surface);
  overflow: hidden;
}

.hero-instrument::before {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(127, 151, 163, 0.28);
  transform: skewY(-12deg);
}

.tach {
  position: absolute;
  width: 270px;
  aspect-ratio: 1;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(214, 164, 91, 0.4);
  border-radius: 50%;
  background: conic-gradient(from 230deg, transparent 0deg, transparent 80deg, rgba(226, 59, 47, 0.85) 81deg, rgba(214, 164, 91, 0.9) 128deg, transparent 129deg);
}

.needle {
  position: absolute;
  width: 42%;
  height: 2px;
  left: 50%;
  top: 50%;
  background: var(--text);
  transform-origin: left center;
  transform: rotate(-28deg);
}

.hub {
  position: absolute;
  width: 16px;
  height: 16px;
  left: calc(50% - 8px);
  top: calc(50% - 8px);
  border-radius: 50%;
  background: var(--red);
}

.signal-list {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  display: grid;
  gap: 0.55rem;
}

.signal-list span {
  padding: 0.85rem 1rem;
  background: rgba(8, 9, 11, 0.72);
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
}

.section,
.split-section,
.signup-section,
.page-shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.section,
.split-section,
.signup-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-top: 1px solid var(--line);
}

.intro-section h2,
.split-section h2,
.signup-section h2,
.page-hero h1 {
  max-width: 930px;
  font-size: clamp(2.1rem, 5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.pillar-grid,
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2.2rem;
  background: var(--line);
  border: 1px solid var(--line);
}

.pillar-grid article,
.content-grid article {
  min-height: 220px;
  padding: 1.35rem;
  background: var(--surface-strong);
}

.pillar-grid h3,
.content-grid h2 {
  font-size: 1.2rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.8fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.legacy-band {
  border-color: rgba(214, 164, 91, 0.32);
}

.market-preview-band {
  border-color: rgba(226, 59, 47, 0.34);
}

.market-preview-band .button {
  width: fit-content;
}

.feature-track {
  display: grid;
  grid-template-columns: repeat(7, minmax(145px, 1fr));
  gap: 1px;
  margin-top: 1.5rem;
  overflow-x: auto;
  background: var(--line);
  border: 1px solid var(--line);
}

.feature-track article {
  min-height: 180px;
  padding: 1rem;
  background: var(--surface);
}

.feature-track span {
  color: var(--steel);
  font-weight: 900;
}

.feature-track h3 {
  margin-top: 4rem;
  font-size: 1.05rem;
}

.signup-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  gap: clamp(2rem, 6vw, 4rem);
  align-items: start;
}

.signup-section.standalone {
  border-top: 0;
  padding-top: 0;
}

.signup-form {
  padding: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.form-grid {
  display: grid;
  gap: 0.8rem;
}

label span {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

label em {
  color: var(--quiet);
  font-style: normal;
  font-weight: 500;
}

input,
select,
textarea,
button {
  width: 100%;
  min-height: 3rem;
  border: 1px solid var(--line);
  border-radius: 0;
  font: inherit;
}

input,
select,
textarea {
  padding: 0 0.85rem;
  background: rgba(8, 9, 11, 0.82);
  color: var(--text);
}

select {
  appearance: auto;
}

textarea {
  min-height: 8rem;
  padding-top: 0.85rem;
  resize: vertical;
}

.signup-form button {
  margin-top: 1rem;
}

.form-message {
  margin-bottom: 0.85rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  font-weight: 800;
}

.form-message.success {
  border-color: rgba(127, 211, 154, 0.42);
  color: var(--green);
}

.form-message.error {
  border-color: rgba(226, 59, 47, 0.58);
  color: #ff9a91;
}

.page-shell {
  min-height: 68svh;
  padding: clamp(3.5rem, 8vw, 7rem) 0;
}

.page-hero {
  max-width: 940px;
}

.page-hero.compact {
  max-width: 760px;
}

.page-hero p {
  font-size: 1.12rem;
}

.legacy-statement {
  margin-top: 2rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(214, 164, 91, 0.32);
  background: rgba(214, 164, 91, 0.06);
}

.legacy-statement p {
  max-width: 900px;
  color: var(--text);
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  line-height: 1.25;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem clamp(1rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer div,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.site-footer strong {
  color: var(--text);
}

.site-footer a:hover {
  color: var(--text);
}

.logout-form {
  margin: 0;
}

.nav-cta.as-button {
  background: transparent;
  cursor: pointer;
}

.auth-shell,
.form-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 520px);
  gap: clamp(2rem, 6vw, 4rem);
  align-items: start;
}

.form-shell {
  grid-template-columns: 1fr;
}

.panel-form {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.panel-form.wide {
  max-width: 920px;
}

.panel-form .button {
  width: auto;
  justify-self: start;
}

.form-note {
  margin: 0;
  font-size: 0.92rem;
}

.form-note a,
.bike-card a {
  color: var(--amber);
  font-weight: 800;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.dashboard-shell {
  padding-top: clamp(2.5rem, 6vw, 5rem);
}

.dashboard-hero,
.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
}

.dashboard-hero h1 {
  margin-bottom: 0.3rem;
  font-size: clamp(2.4rem, 7vw, 5rem);
  line-height: 0.95;
}

.dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.75fr);
  gap: 1px;
  margin-top: 2rem;
  background: var(--line);
  border: 1px solid var(--line);
}

.profile-card,
.empty-state {
  padding: 1.25rem;
  background: var(--surface-strong);
}

.profile-card dl {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0.8rem 1rem;
  margin: 0;
}

.profile-card dt {
  color: var(--quiet);
  font-weight: 800;
}

.profile-card dd {
  margin: 0;
  color: var(--text);
}

.garage-section {
  margin-top: clamp(3rem, 7vw, 5rem);
}

.garage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1.5rem;
  background: var(--line);
  border: 1px solid var(--line);
}

.bike-card {
  background: var(--surface);
}

.bike-card > div:not(.bike-media) {
  padding: 1rem;
}

.bike-media {
  min-height: 190px;
  background:
    linear-gradient(135deg, rgba(226, 59, 47, 0.2), transparent),
    linear-gradient(160deg, rgba(127, 151, 163, 0.18), rgba(255, 255, 255, 0.02));
  background-position: center;
  background-size: cover;
}

.bike-meta {
  margin-bottom: 0.35rem;
  color: var(--steel);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.market-hero,
.market-section,
.market-strip {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.market-hero {
  min-height: 58svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
  padding: clamp(4rem, 9vw, 7.5rem) 0 clamp(3rem, 6vw, 5rem);
}

.market-hero h1 {
  max-width: 860px;
  margin-bottom: 1rem;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.market-lede {
  max-width: 780px;
  color: var(--text);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.watch-panel {
  padding: 1.25rem;
  border: 1px solid rgba(214, 164, 91, 0.38);
  background:
    linear-gradient(145deg, rgba(214, 164, 91, 0.12), rgba(255, 255, 255, 0.03)),
    var(--surface);
}

.watch-panel span,
.market-strip span,
.listing-grid span,
.watchlist-grid span {
  color: var(--amber);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.watch-panel strong {
  display: block;
  margin: 0.55rem 0;
  color: var(--text);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
}

.watch-panel small,
.watchlist-grid small {
  color: var(--quiet);
  line-height: 1.55;
}

.market-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  border: 1px solid var(--line);
  background: var(--line);
}

.market-strip article {
  min-height: 190px;
  padding: 1.1rem;
  background: var(--surface-strong);
}

.market-strip strong {
  display: block;
  margin: 2.6rem 0 0.45rem;
  color: var(--text);
  font-size: clamp(1.6rem, 3vw, 2.45rem);
  line-height: 1;
}

.market-strip p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.market-section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  border-top: 1px solid var(--line);
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.65fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: end;
  margin-bottom: 1.5rem;
}

.market-section h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.8vw, 4rem);
  line-height: 0.98;
}

.signal-grid,
.listing-grid,
.watchlist-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.signal-grid article,
.listing-grid article,
.watchlist-grid article {
  min-height: 170px;
  padding: 1rem;
  background: var(--surface);
}

.signal-grid p {
  margin-bottom: 0;
  color: var(--text);
  font-weight: 750;
}

.market-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
}

.market-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  background: var(--surface);
}

.market-table th,
.market-table td {
  padding: 0.95rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

.market-table th {
  color: var(--quiet);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.market-table td {
  color: var(--muted);
}

.market-table td strong {
  color: var(--text);
}

.listing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.listing-grid article {
  min-height: 230px;
  display: grid;
  gap: 0.8rem;
  align-content: start;
}

.listing-grid h3 {
  margin: 0.35rem 0 0;
  font-size: 1rem;
}

.listing-grid strong {
  color: var(--text);
  font-size: 1.75rem;
  line-height: 1;
}

.listing-grid p {
  margin: 0;
}

.listing-grid a {
  align-self: end;
  color: var(--steel);
  font-size: 0.9rem;
  font-weight: 800;
}

.watchlist-section,
.source-section {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
}

.watchlist-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.watchlist-grid article {
  min-height: 205px;
}

.watchlist-grid h3 {
  margin: 2rem 0 0.35rem;
}

.watchlist-grid p {
  margin-bottom: 0.65rem;
  color: var(--text);
  font-weight: 800;
}

.source-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.source-list a {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  background: var(--surface);
}

.source-list strong {
  color: var(--text);
}

.source-list span {
  color: var(--muted);
  line-height: 1.5;
}

.index-hero,
.lookup-band {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.index-hero {
  min-height: 62svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
  padding: clamp(4rem, 9vw, 7.5rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.index-hero h1 {
  max-width: 900px;
  margin-bottom: 1rem;
  font-size: clamp(3rem, 8vw, 6.7rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.index-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.index-pulse-card {
  padding: 1.25rem;
  border: 1px solid rgba(214, 164, 91, 0.42);
  background: linear-gradient(145deg, rgba(214, 164, 91, 0.12), rgba(255, 255, 255, 0.03)), var(--surface);
}

.index-pulse-card span,
.showcase-card span,
.dealer-grid span,
.model-list span {
  color: var(--amber);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.index-pulse-card strong {
  display: block;
  margin: 0.55rem 0;
  color: var(--text);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.9;
}

.index-pulse-card p {
  color: var(--text);
  font-weight: 900;
}

.index-pulse-card small {
  color: var(--quiet);
}

.lookup-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(2rem, 6vw, 4rem);
  align-items: start;
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid var(--line);
}

.lookup-band h2 {
  max-width: 760px;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.96;
}

.lookup-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  padding: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.lookup-form label,
.lookup-form button,
.lookup-examples {
  grid-column: span 2;
}

.lookup-form label:nth-child(1),
.lookup-form label:nth-child(2) {
  grid-column: span 1;
}

.lookup-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.lookup-examples span {
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.showcase-grid,
.dealer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.showcase-card,
.dealer-grid article {
  min-height: 230px;
  padding: 1rem;
  background: var(--surface);
}

.showcase-card {
  display: grid;
  align-content: space-between;
}

.showcase-card strong {
  display: block;
  margin-top: 2.2rem;
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
}

.showcase-card h3,
.dealer-grid h3 {
  margin: 0.5rem 0;
  font-size: 1rem;
}

.showcase-card p,
.dealer-grid p {
  margin-bottom: 0;
}

.deal-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.deal-list a {
  display: grid;
  grid-template-columns: 80px minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  background: var(--surface);
}

.deal-list strong {
  color: var(--green);
  font-size: 2rem;
}

.deal-list strong::after {
  content: " score";
  color: var(--quiet);
  font-size: 0.75rem;
  font-weight: 800;
}

.deal-list span {
  color: var(--text);
  font-weight: 900;
}

.deal-list small {
  color: var(--muted);
  line-height: 1.5;
}

.model-section,
.coverage-section {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
}

.model-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.model-list article {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) minmax(160px, 0.55fr);
  gap: 1rem;
  align-items: center;
  padding: 0.9rem 1rem;
  background: var(--surface);
}

.model-list strong {
  color: var(--text);
}

.model-list p {
  margin: 0;
}

.dealer-grid article {
  min-height: 210px;
}

.dealer-grid small {
  color: var(--quiet);
  line-height: 1.5;
}

.video-hero {
  width: min(1180px, calc(100% - 2rem));
  min-height: calc(100svh - 4.5rem);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.video-hero h1,
.creator-intro h2,
.video-lab h2 {
  max-width: 920px;
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.video-hero-copy p:not(.eyebrow),
.video-lab-copy p {
  font-size: 1.08rem;
}

.video-feature,
.video-submit-form {
  border: 1px solid var(--line);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)), var(--surface);
}

.video-feature {
  overflow: hidden;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.34);
}

.video-frame,
.video-thumb,
.video-thumb-button {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgba(226, 59, 47, 0.22), transparent 44%),
    rgba(8, 9, 11, 0.84);
}

.video-frame img,
.video-thumb img,
.video-thumb-button img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-frame::after,
.video-thumb::after,
.video-thumb-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 9, 11, 0.06), rgba(8, 9, 11, 0.42));
}

.play-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: clamp(3.4rem, 8vw, 5rem);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(8, 9, 11, 0.72);
}

.play-mark::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-38%, -50%);
  border-top: 0.72rem solid transparent;
  border-bottom: 0.72rem solid transparent;
  border-left: 1.05rem solid var(--text);
}

.video-profile-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
}

.video-profile-strip span,
.video-card-body span {
  display: inline-flex;
  margin-bottom: 0.45rem;
  color: var(--amber);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-profile-strip strong {
  display: block;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
}

.video-profile-strip p {
  margin-bottom: 0;
}

.video-profile-strip a {
  flex: 0 0 auto;
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(226, 59, 47, 0.55);
  color: var(--text);
  font-size: 1.8rem;
  font-weight: 800;
}

.video-lab {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 500px);
  gap: clamp(2rem, 6vw, 4rem);
  align-items: start;
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-top: 1px solid var(--line);
}

.video-submit-form {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
}

.creator-intake {
  align-self: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 0.8rem;
}

.form-hint {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.form-hint.error {
  color: #ff9a91;
}

.profile-video-section {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-top: 1px solid var(--line);
}

.showcase-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 1px;
  margin-top: 2rem;
  border: 1px solid var(--line);
  background: var(--line);
}

.showcase-stage,
.profile-panel {
  background: var(--surface-strong);
}

.empty-video-state {
  min-height: 430px;
  display: grid;
  align-content: center;
  gap: 0.8rem;
  padding: clamp(1.2rem, 4vw, 2rem);
  background:
    linear-gradient(135deg, rgba(226, 59, 47, 0.18), transparent 46%),
    linear-gradient(160deg, rgba(127, 151, 163, 0.12), rgba(255, 255, 255, 0.02));
}

.empty-video-state span,
.showcase-meta span,
.profile-panel > span {
  color: var(--amber);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.empty-video-state strong {
  max-width: 680px;
  color: var(--text);
  font-size: clamp(1.7rem, 4vw, 3.2rem);
  line-height: 1;
}

.empty-video-state p {
  max-width: 600px;
}

.embedded-video {
  position: relative;
  aspect-ratio: 16 / 9;
  background: rgba(8, 9, 11, 0.9);
}

.embedded-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.showcase-meta {
  padding: 1rem;
}

.showcase-meta h3 {
  margin-bottom: 0.4rem;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.08;
}

.showcase-meta p {
  margin-bottom: 0;
}

.profile-panel {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 1rem;
}

.profile-panel h3 {
  margin-bottom: 0;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.1;
}

.profile-panel p {
  margin-bottom: 0;
}

.profile-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.profile-actions button {
  cursor: pointer;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 900;
}

.profile-actions button:first-child {
  background: var(--red);
  border-color: var(--red);
}

.stat-strip {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.stat-strip strong {
  padding: 0.75rem;
  background: rgba(8, 9, 11, 0.52);
  color: var(--text);
  font-size: 0.92rem;
}

.comment-preview {
  padding: 0.85rem;
  border: 1px solid rgba(127, 151, 163, 0.28);
  background: rgba(127, 151, 163, 0.08);
}

.comment-preview b {
  display: block;
  margin-bottom: 0.4rem;
}

.video-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2rem;
  border: 1px solid var(--line);
  background: var(--line);
}

.video-card-grid.empty {
  grid-template-columns: 1fr;
}

.video-card {
  min-width: 0;
  background: var(--surface-strong);
}

.video-card.active {
  outline: 2px solid rgba(127, 211, 154, 0.55);
  outline-offset: -2px;
}

.video-empty-card {
  min-height: 190px;
  display: grid;
  align-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--surface);
}

.video-empty-card strong {
  color: var(--text);
  font-size: 1.25rem;
}

.video-empty-card p {
  margin-bottom: 0;
}

.video-thumb-button {
  position: relative;
  display: block;
  width: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: transparent;
  aspect-ratio: 16 / 9;
}

.video-card-body {
  padding: 1rem;
}

.video-card-body h3 {
  min-height: 3.1rem;
  margin-bottom: 0.55rem;
  font-size: 1.18rem;
  line-height: 1.3;
}

.video-card-body p {
  margin-bottom: 1rem;
}

.video-card-body dl {
  display: grid;
  gap: 0.55rem;
  margin: 0 0 1rem;
}

.video-card-body dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.55rem;
  border-top: 1px solid var(--line);
}

.video-card-body dt {
  color: var(--quiet);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.video-card-body dd {
  margin: 0;
  color: var(--text);
  text-align: right;
}

.video-card-body strong {
  color: var(--green);
  font-size: 0.92rem;
}

.video-card-body a {
  color: var(--amber);
  font-weight: 900;
}

.spec-hero,
.spec-section,
.spec-strip {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.spec-hero {
  min-height: 56svh;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
  padding: clamp(4rem, 9vw, 7.5rem) 0 clamp(3rem, 6vw, 5rem);
}

.spec-hero.compact-hero {
  min-height: 40svh;
}

.spec-hero h1 {
  max-width: 900px;
  margin-bottom: 1rem;
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.spec-lede {
  max-width: 820px;
  color: var(--text);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

.spec-bike-wall {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.spec-bike-wall a {
  min-height: 155px;
  position: relative;
  display: block;
  overflow: hidden;
  background:
    linear-gradient(150deg, color-mix(in srgb, var(--brand-color, var(--steel)) 22%, transparent), rgba(255, 255, 255, 0.02)),
    #050608;
}

.spec-bike-wall a:first-child {
  grid-column: span 2;
  min-height: 245px;
}

.spec-bike-wall img,
.spec-card-media img,
.manufacturer-hero-bike img,
.model-hero-media img,
.year-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.spec-bike-wall img {
  padding: 0.4rem;
  object-fit: cover;
}

.spec-bike-wall span {
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.75rem;
  padding-top: 3rem;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 900;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.82);
}

.spec-status-panel {
  padding: 1.25rem;
  border: 1px solid color-mix(in srgb, var(--brand-color, var(--amber)) 50%, transparent);
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--brand-color, var(--amber)) 14%, transparent), rgba(255, 255, 255, 0.03)),
    var(--surface);
}

.spec-status-panel span,
.spec-strip span,
.manufacturer-card span,
.spec-bike-card span,
.model-year-head span {
  color: var(--amber);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.spec-status-panel strong {
  display: block;
  margin: 0.55rem 0;
  color: var(--text);
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  line-height: 1;
}

.spec-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  border: 1px solid var(--line);
  background: var(--line);
}

.spec-strip article {
  min-height: 175px;
  padding: 1.1rem;
  background: var(--surface-strong);
}

.spec-strip strong {
  display: block;
  margin: 2.4rem 0 0.45rem;
  color: var(--text);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
}

.spec-strip p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.spec-section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  border-top: 1px solid var(--line);
}

.manufacturer-grid,
.spec-bike-grid,
.model-year-grid {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.manufacturer-grid,
.spec-bike-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.manufacturer-card,
.spec-bike-card {
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: 0.7rem;
  padding: 1rem;
  background:
    linear-gradient(165deg, color-mix(in srgb, var(--brand-color, var(--steel)) 16%, transparent), rgba(255, 255, 255, 0.02)),
    var(--surface);
}

.spec-bike-card.visual-card {
  min-height: 380px;
}

.spec-card-media {
  height: 145px;
  margin: -1rem -1rem 0.35rem;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 55%, color-mix(in srgb, var(--brand-color, var(--steel)) 24%, transparent), transparent 58%),
    #07090b;
}

.spec-card-media img {
  padding: 0.65rem;
}

.manufacturer-card h3,
.spec-bike-card h3 {
  margin: 1.35rem 0 0;
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1.05;
}

.manufacturer-card p,
.spec-bike-card p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.manufacturer-card strong,
.spec-bike-card small {
  align-self: end;
  color: var(--text);
  font-weight: 900;
}

.spec-card-stats {
  display: grid;
  gap: 0.35rem;
  margin-top: 1rem;
}

.manufacturer-hero-bike,
.model-hero-media {
  min-height: 360px;
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--brand-color, var(--amber)) 44%, transparent);
  background:
    radial-gradient(circle at 52% 58%, color-mix(in srgb, var(--brand-color, var(--steel)) 24%, transparent), transparent 58%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015)),
    #050608;
}

.manufacturer-hero-bike img,
.model-hero-media img {
  padding: clamp(1rem, 3vw, 2rem);
}

.manufacturer-hero-bike span,
.model-hero-media span {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.model-hero {
  min-height: calc(100svh - 4.5rem);
}

.hero-stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 900px;
  margin-top: 2rem;
  border: 1px solid var(--line);
  background: var(--line);
}

.hero-stat-row article {
  min-height: 116px;
  padding: 0.85rem;
  background: rgba(17, 21, 26, 0.88);
}

.hero-stat-row span {
  color: var(--amber);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-stat-row strong {
  display: block;
  margin-top: 1.2rem;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.25;
}

.model-brief {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: end;
}

.year-card-media {
  height: 220px;
  margin: calc(clamp(1rem, 3vw, 1.35rem) * -1) calc(clamp(1rem, 3vw, 1.35rem) * -1) 1rem;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 58%, rgba(255, 255, 255, 0.1), transparent 55%),
    #050608;
}

.year-card-media img {
  padding: 0.8rem;
}

.model-year-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.model-year-card {
  min-width: 0;
  padding: clamp(1rem, 3vw, 1.35rem);
  background: var(--surface);
}

.model-year-head {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.model-year-head h3 {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 2.15rem);
  line-height: 1;
}

.model-year-head p {
  margin: 0;
}

.model-year-head strong {
  color: var(--text);
  font-size: 1.2rem;
}

.color-list,
.electronics-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1rem 0;
}

.color-list span,
.electronics-list span {
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
  padding: 0 0.65rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
}

.spec-list {
  display: grid;
  gap: 1px;
  margin: 1rem 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.spec-list div {
  display: grid;
  grid-template-columns: minmax(110px, 0.45fr) minmax(0, 1fr);
  gap: 0.8rem;
  padding: 0.75rem;
  background: rgba(8, 9, 11, 0.54);
}

.spec-list dt {
  color: var(--quiet);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spec-list dd {
  min-width: 0;
  margin: 0;
  color: var(--text);
  line-height: 1.45;
}

.electronics-list {
  padding-top: 0.3rem;
}

.electronics-list h4 {
  width: 100%;
  margin: 0 0 0.2rem;
  color: var(--quiet);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.source-link {
  display: inline-flex;
  margin-top: 0.75rem;
  color: var(--steel);
  font-size: 0.9rem;
  font-weight: 900;
}

@media (max-width: 900px) {
  .site-nav { display: none; }
  .hero,
  .split-section,
  .signup-section,
  .auth-shell,
  .dashboard-grid,
  .market-hero,
  .spec-hero,
  .video-hero,
  .video-lab,
  .showcase-layout,
  .section-heading-row,
  .model-brief,
  .watchlist-section,
  .source-section {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
  }
  .hero-instrument {
    min-height: 320px;
  }
  .pillar-grid,
  .content-grid,
  .video-card-grid {
    grid-template-columns: 1fr 1fr;
  }
  .market-strip,
  .spec-strip,
  .signal-grid,
  .listing-grid,
  .watchlist-grid,
  .manufacturer-grid,
  .spec-bike-grid,
  .hero-stat-row {
    grid-template-columns: 1fr 1fr;
  }
  .model-year-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .nav-cta { display: none; }
  .brand-mark {
    width: 10.5rem;
  }
  .hero-actions,
  .pillar-grid,
  .content-grid,
  .two-col,
  .form-row,
  .garage-grid,
  .dashboard-hero,
  .section-heading-row,
  .site-footer,
  .market-strip,
  .spec-strip,
  .signal-grid,
  .listing-grid,
    .watchlist-grid,
    .manufacturer-grid,
    .spec-bike-grid,
    .spec-bike-wall,
    .hero-stat-row,
    .showcase-layout,
    .video-card-grid {
    display: grid;
    grid-template-columns: 1fr;
  }
  .spec-bike-wall a:first-child {
    grid-column: auto;
    min-height: 210px;
  }
  .spec-list div {
    grid-template-columns: 1fr;
  }
  .tach {
    width: 215px;
  }
}

/* 2026 visual refresh */
:root {
  --bg: #070808;
  --surface: #101316;
  --surface-strong: #161a1d;
  --surface-soft: rgba(255, 255, 255, 0.055);
  --text: #f7f3eb;
  --muted: #b8b0a4;
  --quiet: #818b92;
  --line: rgba(247, 243, 235, 0.13);
  --red: #ef3d32;
  --amber: #e2b86f;
  --steel: #8fb0bd;
  --green: #79d89a;
  --blue: #6ea8ff;
  --shadow: 0 1.4rem 4rem rgba(0, 0, 0, 0.34);
  --radius: 8px;
}

body {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 20rem),
    linear-gradient(115deg, rgba(239, 61, 50, 0.16), transparent 26rem),
    linear-gradient(250deg, rgba(143, 176, 189, 0.13), transparent 30rem),
    var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, black, transparent 72%);
}

p {
  color: var(--muted);
}

.site-header {
  margin: 0 auto;
  padding: 0.9rem clamp(1rem, 4vw, 3rem);
  background: rgba(7, 8, 8, 0.78);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
}

.brand-mark {
  width: auto;
  min-width: 0;
  gap: 0.62rem;
}

.brand-icon {
  position: relative;
  width: 2.6rem;
  height: 1.65rem;
  flex: 0 0 auto;
  display: inline-block;
}

.brand-icon::before {
  content: "";
  position: absolute;
  left: 0.18rem;
  right: 0.18rem;
  top: 0.32rem;
  height: 0.74rem;
  border-radius: 4px 8px 3px 6px;
  background:
    linear-gradient(135deg, transparent 0 20%, var(--text) 21% 54%, var(--red) 55% 100%);
  transform: skewX(-18deg);
}

.brand-icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0.08rem;
  bottom: 0;
  height: 0.78rem;
  background:
    radial-gradient(circle at 18% 60%, transparent 0 0.22rem, var(--steel) 0.24rem 0.3rem, transparent 0.32rem),
    radial-gradient(circle at 82% 60%, transparent 0 0.22rem, var(--steel) 0.24rem 0.3rem, transparent 0.32rem),
    linear-gradient(var(--red), var(--red)) 34% 50% / 44% 2px no-repeat;
}

.brand-word,
.hero-wordmark span {
  display: grid;
  gap: 0.12rem;
  line-height: 1;
}

.brand-word strong,
.hero-wordmark strong {
  color: var(--text);
  font-size: 0.98rem;
  text-transform: uppercase;
}

.brand-word small,
.hero-wordmark small {
  color: var(--amber);
  font-size: 0.54rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-nav {
  gap: 0.25rem;
  padding: 0.28rem;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
}

.site-nav a {
  min-height: 2.15rem;
  display: inline-flex;
  align-items: center;
  padding: 0 0.78rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a.active,
.site-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.nav-cta,
.button {
  border-radius: var(--radius);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.nav-cta {
  border-color: rgba(239, 61, 50, 0.44);
  background: rgba(239, 61, 50, 0.1);
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

.button.primary {
  border-color: rgba(239, 61, 50, 0.95);
  background: linear-gradient(180deg, #ff5146, var(--red));
  box-shadow: 0 0.9rem 2.2rem rgba(239, 61, 50, 0.24);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.065);
}

.hero {
  width: min(1240px, calc(100% - 2rem));
  min-height: auto;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.05fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-label {
  margin-bottom: 0.85rem;
  color: var(--amber);
  letter-spacing: 0.1em;
}

.hero-logo,
.hero-wordmark {
  max-width: min(500px, 100%);
  margin-bottom: 1.1rem;
  filter: drop-shadow(0 1.1rem 2.1rem rgba(239, 61, 50, 0.2));
}

.hero-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.hero-wordmark .brand-icon {
  width: clamp(4.2rem, 7vw, 5.7rem);
  height: clamp(2.65rem, 4.4vw, 3.6rem);
}

.hero-wordmark strong {
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  letter-spacing: 0;
}

.hero-wordmark small {
  font-size: clamp(0.62rem, 1vw, 0.8rem);
}

.tagline {
  max-width: 690px;
  margin-bottom: 0.9rem;
  font-size: clamp(2.55rem, 5.35vw, 5.15rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-wrap: balance;
}

.credibility {
  max-width: 620px;
  color: #d9d1c6;
  font-size: clamp(1.05rem, 1.45vw, 1.24rem);
}

.hero-actions {
  margin-top: 2.1rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 660px;
  margin-top: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.hero-stats span {
  min-height: 5.6rem;
  display: grid;
  align-content: center;
  gap: 0.38rem;
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-stats strong {
  color: var(--steel);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
}

.hero-media {
  position: relative;
  min-height: clamp(380px, 52svh, 560px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 8, 8, 0.38), transparent 42%),
    linear-gradient(0deg, rgba(7, 8, 8, 0.54), transparent 48%);
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
}

.hero-media-panel {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: grid;
  gap: 0.45rem;
  max-width: 430px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(7, 8, 8, 0.72);
  backdrop-filter: blur(18px);
}

.hero-media-panel span {
  color: var(--amber);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-media-panel strong {
  color: var(--text);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.25;
}

.hero-instrument {
  display: none;
}

.section,
.split-section,
.signup-section {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.intro-section h2,
.split-section h2,
.signup-section h2,
.page-hero h1,
.market-section h2,
.video-hero h1,
.creator-intro h2,
.video-lab h2,
.spec-section h2 {
  letter-spacing: 0;
  text-wrap: balance;
}

.pillar-grid,
.content-grid,
.feature-track,
.dashboard-grid,
.garage-grid,
.market-strip,
.signal-grid,
.listing-grid,
.watchlist-grid,
.spec-strip,
.manufacturer-grid,
.spec-bike-grid,
.model-year-grid,
.source-list,
.video-card-grid,
.spec-list {
  gap: 0.85rem;
  border: 0;
  background: transparent;
}

.pillar-grid article,
.content-grid article,
.feature-track article,
.profile-card,
.empty-state,
.bike-card,
.market-strip article,
.signal-grid article,
.listing-grid article,
.watchlist-grid article,
.manufacturer-card,
.spec-bike-card,
.model-year-card,
.source-list a,
.video-card,
.spec-strip article,
.watch-panel,
.spec-status-panel,
.signup-form,
.panel-form,
.video-feature,
.video-submit-form {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
    var(--surface);
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.18);
}

.pillar-grid article,
.content-grid article {
  min-height: 210px;
  padding: 1.45rem;
}

.pillar-grid h3,
.content-grid h2 {
  font-size: 1.28rem;
  line-height: 1.15;
}

.split-section {
  align-items: center;
}

.legacy-band,
.market-preview-band {
  position: relative;
  border-color: rgba(255, 255, 255, 0.1);
}

.legacy-band::before,
.market-preview-band::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: min(19rem, 44vw);
  height: 1px;
  background: linear-gradient(90deg, var(--amber), transparent);
}

.market-preview-band::before {
  background: linear-gradient(90deg, var(--red), transparent);
}

.feature-track {
  grid-template-columns: repeat(7, minmax(160px, 1fr));
}

.feature-track article {
  min-height: 195px;
}

.feature-track h3 {
  margin-top: 3.4rem;
  line-height: 1.2;
}

input,
select,
textarea,
button {
  border-radius: var(--radius);
}

input,
select,
textarea {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.32);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(110, 168, 255, 0.42);
  outline-offset: 2px;
  border-color: rgba(110, 168, 255, 0.62);
}

.form-message {
  border-radius: var(--radius);
}

.page-shell,
.market-hero,
.spec-hero,
.video-hero {
  padding-top: clamp(4rem, 8vw, 7rem);
}

.page-hero p,
.market-lede,
.spec-lede {
  color: #dcd5ca;
}

.market-table-wrap,
.market-table {
  border-radius: var(--radius);
}

.market-table-wrap {
  border-color: rgba(255, 255, 255, 0.11);
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.18);
}

.market-table {
  overflow: hidden;
}

.site-footer {
  background: rgba(0, 0, 0, 0.18);
}

@media (max-width: 1100px) {
  .site-nav {
    max-width: 54vw;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 900px) {
  .index-hero,
  .lookup-band,
  .model-section,
  .coverage-section {
    grid-template-columns: 1fr;
  }

  .showcase-grid,
  .dealer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .deal-list a,
  .model-list article {
    grid-template-columns: 1fr;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 3rem;
  }

  .hero-media {
    min-height: 430px;
  }

  .tagline {
    font-size: clamp(2.5rem, 11vw, 4.9rem);
  }
}

@media (max-width: 620px) {
  .index-hero {
    min-height: auto;
    padding-top: 2.25rem;
  }

  .index-hero h1 {
    font-size: clamp(2.7rem, 15vw, 4.8rem);
  }

  .lookup-form,
  .showcase-grid,
  .dealer-grid {
    grid-template-columns: 1fr;
  }

  .lookup-form label,
  .lookup-form label:nth-child(1),
  .lookup-form label:nth-child(2),
  .lookup-form button,
  .lookup-examples {
    grid-column: span 1;
  }

  .site-header {
    position: static;
  }

  .hero {
    width: min(100% - 1.25rem, 1240px);
    padding-top: 2.25rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats span {
    min-height: auto;
  }

  .hero-media {
    min-height: 360px;
  }

  .hero-media-panel {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: -6.5rem 0.75rem 0.75rem;
  }

  .button {
    width: 100%;
  }
}
