/* ==========================================================================
   BIKESNEWSANDREVIEWS.ONLINE — Red Line Motorsport Design System
   Aggressive red / jet black · Archivo Black + Noto Sans JP
   ========================================================================== */

/* ---- Design tokens ---- */
:root {
  --jet-950: #0A0A0C;
  --racing-red-600: #D91E2B;
  --racing-red-700: #B81824;
  --racing-red-glow: rgba(217, 30, 43, 0.45);
  --pure-white: #FFFFFF;
  --concrete-100: #F2F1F0;
  --steel-400: #9A9DA3;
  --ink: #121214;
  --jet-900: #121216;
  --jet-800: #1A1A1F;
  --jet-700: #25252C;
  --red-line: linear-gradient(135deg, var(--racing-red-600) 0%, #FF3D4A 50%, var(--racing-red-700) 100%);

  --font-display: 'Archivo Black', Impact, Haettenschweiler, sans-serif;
  --font-body: 'Noto Sans JP', system-ui, -apple-system, sans-serif;

  --max-w: 1180px;
  --header-h: 72px;
  --header-h-shrunk: 58px;
  --section-pad: clamp(4rem, 8vw, 6.5rem);
  --gap: clamp(1rem, 2.5vw, 1.75rem);
  --radius: 4px;
  --radius-sm: 2px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-snap: cubic-bezier(0.34, 1.56, 0.64, 1);
  --shadow-card: 0 12px 40px rgba(0, 0, 0, 0.35);
  --shadow-red: 0 16px 48px var(--racing-red-glow);
  --slash-h: clamp(48px, 6vw, 72px);
}

/* ---- Reset & base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--pure-white);
  background: var(--jet-950);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s var(--ease-out), opacity 0.25s var(--ease-out);
}

a:hover {
  color: var(--racing-red-600);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 900;
  line-height: 1.2;
  margin: 0 0 0.5em;
}

p {
  margin: 0 0 1em;
}

ul, ol {
  margin: 0;
  padding: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

::selection {
  background: var(--racing-red-600);
  color: var(--pure-white);
}

/* ---- Skip link ---- */
.skip-link {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  padding: 0.65rem 1.25rem;
  background: var(--racing-red-600);
  color: var(--pure-white);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  transform: translateY(-120%);
  transition: transform 0.3s var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid var(--pure-white);
  outline-offset: 2px;
}

/* ---- Container ---- */
.container {
  width: min(100% - 2rem, var(--max-w));
  margin-inline: auto;
}

.container.narrow {
  width: min(100% - 2rem, 820px);
}

/* ---- Sections ---- */
.section {
  position: relative;
  padding: var(--section-pad) 0;
}

.section--dark {
  background: var(--jet-900);
  color: var(--pure-white);
}

.section--jet {
  background: var(--jet-950);
  color: var(--pure-white);
}

.section--concrete {
  background: var(--concrete-100);
  color: var(--ink);
}

.section-head {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 640px;
}

.section-head--light .section-kicker {
  color: var(--racing-red-600);
}

.section-head--light .section-title {
  color: var(--ink);
}

.section-head--light .section-lead {
  color: #4A4A50;
}

.section-kicker {
  font-family: var(--font-display);
  font-size: clamp(0.7rem, 1.2vw, 0.8rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--racing-red-600);
  margin: 0 0 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 0.5em;
}

.section-lead {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--steel-400);
  line-height: 1.7;
  margin: 0;
}

.text-red {
  color: var(--racing-red-600);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out),
    background 0.25s var(--ease-out), color 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}

.btn:focus-visible {
  outline: 2px solid var(--racing-red-600);
  outline-offset: 3px;
}

.btn-red {
  background: var(--racing-red-600);
  color: var(--pure-white);
  border-color: var(--racing-red-600);
}

.btn-red:hover {
  background: var(--racing-red-700);
  border-color: var(--racing-red-700);
  color: var(--pure-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.78rem;
}

.btn-outline {
  background: transparent;
  color: var(--pure-white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
  border-color: var(--racing-red-600);
  color: var(--racing-red-600);
  transform: translateY(-2px);
}

.section--concrete .btn-outline,
.top-page .btn-outline,
.review-page .btn-outline,
.compare-page .btn-outline,
.article-page .btn-outline {
  color: var(--ink);
  border-color: var(--ink);
}

.section--concrete .btn-outline:hover,
.top-page .btn-outline:hover,
.review-page .btn-outline:hover,
.compare-page .btn-outline:hover,
.article-page .btn-outline:hover {
  border-color: var(--racing-red-600);
  color: var(--racing-red-600);
}

/* ---- Tags & meta ---- */
.tag {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: var(--steel-400);
}

.tag--red {
  background: var(--racing-red-600);
  color: var(--pure-white);
}

.meta {
  font-size: 0.82rem;
  color: var(--steel-400);
  letter-spacing: 0.04em;
}

.badge-editors {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--racing-red-600);
  color: var(--pure-white);
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.rating-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.7rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  background: var(--jet-800);
  color: var(--pure-white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
}

.rating-pill--lg {
  font-size: 2rem;
  padding: 0.5rem 1rem;
  background: var(--racing-red-600);
  border-color: var(--racing-red-600);
}

.price-red {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--racing-red-600);
  letter-spacing: 0.02em;
}

/* ---- Diagonal slash dividers ---- */
.slash {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--slash-h);
  pointer-events: none;
  z-index: 3;
  transform: translateY(50%);
  opacity: 0;
  transition: opacity 0.6s var(--ease-out), transform 0.8s var(--ease-out);
}

.slash.is-in {
  opacity: 1;
  transform: translateY(50%) scaleX(1);
}

.slash--hero {
  bottom: 0;
  height: clamp(56px, 8vw, 96px);
  background: var(--racing-red-600);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  transform: none;
  opacity: 1;
}

.slash--after-dark {
  background: var(--jet-950);
  clip-path: polygon(0 0, 100% 100%, 100% 0);
}

.slash--after-jet {
  background: var(--concrete-100);
  clip-path: polygon(0 0, 100% 100%, 100% 0);
}

.slash--after-light {
  background: var(--jet-900);
  clip-path: polygon(0 0, 100% 100%, 100% 0);
}

.slash--into-footer {
  background: var(--racing-red-600);
  clip-path: polygon(0 0, 100% 100%, 100% 0);
  height: clamp(64px, 10vw, 110px);
}

.footer-slash {
  height: clamp(48px, 6vw, 72px);
  background: var(--racing-red-600);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  margin-bottom: -1px;
}

/* ---- Site header ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  transition: background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out),
    padding 0.35s var(--ease-out);
}

.site-header::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 180%;
  background: linear-gradient(to bottom, rgba(10, 10, 12, 0.92), transparent);
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out);
}

.site-header.is-scrolled::before {
  opacity: 0;
}

.site-header.is-scrolled {
  background: rgba(10, 10, 12, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  border-bottom: 2px solid var(--racing-red-600);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(100% - 2rem, var(--max-w));
  margin-inline: auto;
  min-height: var(--header-h);
  padding: 0.75rem 0;
  transition: min-height 0.35s var(--ease-out), padding 0.35s var(--ease-out);
}

.site-header.is-scrolled .header-bar {
  min-height: var(--header-h-shrunk);
  padding: 0.4rem 0;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-out);
}

.logo:hover {
  color: inherit;
  transform: skewX(-2deg);
}

.logo-mark {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--pure-white);
}

.logo-mark span {
  color: var(--racing-red-600);
}

.logo-tag {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel-400);
  white-space: nowrap;
}

.site-header.is-scrolled .logo-mark {
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.site-header.is-scrolled .logo-tag {
  font-size: 0.52rem;
}

/* ---- Navigation ---- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  z-index: 9100;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--pure-white);
  transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}

.nav-toggle[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.primary-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin: 0;
  padding: 0;
}

.nav-list a {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--steel-400);
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.2rem;
  height: 2px;
  background: var(--racing-red-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}

.nav-list a:hover,
.nav-list .is-active a {
  color: var(--pure-white);
}

.nav-list a:hover::after,
.nav-list .is-active a::after {
  transform: scaleX(1);
}

.nav-cta {
  margin-left: 0.5rem;
  padding: 0.55rem 1.1rem !important;
  background: var(--racing-red-600) !important;
  color: var(--pure-white) !important;
  font-weight: 700 !important;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 100%, 6px 100%);
  transition: background 0.25s var(--ease-out), transform 0.25s var(--ease-out) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--racing-red-700) !important;
  color: var(--pure-white) !important;
  transform: skewX(-2deg);
}

body.nav-open {
  overflow: hidden;
  position: fixed;
  inset: 0;
  width: 100%;
  touch-action: none;
}

html.nav-open {
  overflow: hidden;
  height: 100%;
}

.site-header.nav-open-locked,
body.nav-open .site-header {
  background: #0A0A0C;
  box-shadow: none;
  border-bottom: none;
}

body.nav-open .site-header::before {
  opacity: 0;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + 2rem) 0 var(--section-pad);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(217, 30, 43, 0.12), transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(217, 30, 43, 0.06), transparent 50%),
    linear-gradient(160deg, var(--jet-950) 0%, var(--jet-900) 45%, #0D0D10 100%);
  z-index: 0;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -12deg,
    transparent,
    transparent 80px,
    rgba(217, 30, 43, 0.03) 80px,
    rgba(217, 30, 43, 0.03) 81px
  );
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  width: min(100% - 2rem, var(--max-w));
  margin-inline: auto;
}

.hero__copy {
  max-width: 520px;
}

.hero__eyebrow {
  font-family: var(--font-display);
  font-size: clamp(0.65rem, 1.2vw, 0.78rem);
  letter-spacing: 0.32em;
  color: var(--racing-red-600);
  margin: 0 0 1rem;
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.hero__lead {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--steel-400);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.hero__collage {
  position: relative;
  perspective: 1200px;
  min-height: clamp(280px, 42vw, 480px);
}

.hero__panel {
  position: absolute;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-card);
  will-change: transform;
}

.hero__panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__panel--main {
  inset: 8% 5% 8% 12%;
  transform: rotate(-1.5deg);
  z-index: 3;
}

.hero__panel--a {
  top: -2%;
  right: -4%;
  width: 42%;
  aspect-ratio: 3 / 2;
  transform: rotate(5deg);
  z-index: 2;
}

.hero__panel--b {
  bottom: -4%;
  left: -2%;
  width: 38%;
  aspect-ratio: 5 / 3.6;
  transform: rotate(-4deg);
  z-index: 1;
}

.hero__red-block {
  position: absolute;
  bottom: 12%;
  right: 0;
  width: clamp(60px, 12vw, 110px);
  height: clamp(80px, 16vw, 140px);
  background: var(--racing-red-600);
  transform: skewX(-8deg);
  z-index: 0;
  box-shadow: var(--shadow-red);
}

.hero__stats {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(2rem, 6vw, 5rem);
  width: min(100% - 2rem, var(--max-w));
  margin: clamp(2.5rem, 5vw, 4rem) auto 0;
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat {
  text-align: center;
}

.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1;
  color: var(--pure-white);
  letter-spacing: -0.02em;
}

.stat__label {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--steel-400);
  text-transform: uppercase;
}

/* ---- News grid ---- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.news-card {
  display: flex;
  flex-direction: column;
  background: var(--jet-800);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out);
  overflow: hidden;
}

.news-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 30, 43, 0.4);
  box-shadow: var(--shadow-red);
}

.news-card__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.news-card:hover .news-card__media img {
  transform: scale(1.06);
}

.news-card__body {
  padding: 1.25rem 1.35rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.news-card__title {
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.4;
  margin: 0;
}

.news-card__title a:hover {
  color: var(--racing-red-600);
}

.news-card__excerpt {
  font-size: 0.88rem;
  color: var(--steel-400);
  line-height: 1.65;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---- Editors grid ---- */
.editors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.editor-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--jet-800);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.editor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(217, 30, 43, 0.25);
}

.editor-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.editor-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.editor-card:hover .editor-card__media img {
  transform: scale(1.05);
}

.editor-card__body {
  padding: 1.35rem 1.5rem 1.75rem;
}

.editor-card__brand {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--racing-red-600);
  margin: 0 0 0.35rem;
}

.editor-card__title {
  font-size: 1.2rem;
  font-weight: 900;
  margin: 0 0 0.65rem;
}

.editor-card__title a:hover {
  color: var(--racing-red-600);
}

.editor-card__reason {
  font-size: 0.9rem;
  color: var(--steel-400);
  line-height: 1.65;
  margin: 0 0 1rem;
}

.editor-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

/* ---- Catalog filter band ---- */
.catalog-filter-band {
  position: relative;
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem);
  background-color: var(--jet-950);
  background-image:
    linear-gradient(rgba(10, 10, 12, 0.82), rgba(10, 10, 12, 0.92)),
    var(--filter-bg, none);
  background-size: cover;
  background-position: center;
  margin-bottom: -1px;
}

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  width: min(100% - 2rem, var(--max-w));
  margin-inline: auto;
}

.filter-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.85rem 1.25rem;
  min-width: 88px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out),
    border-color 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.filter-tab__icon {
  color: inherit;
  opacity: 0.85;
}

.filter-tab:hover {
  color: var(--pure-white);
  border-color: rgba(217, 30, 43, 0.5);
  transform: translateY(-2px);
}

.filter-tab.is-active {
  background: var(--racing-red-600);
  border-color: var(--racing-red-600);
  color: var(--pure-white);
  transform: skewX(-2deg);
}

.catalog-v-cut {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(32px, 4vw, 48px);
  background: var(--concrete-100);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}

/* ---- Vertical catalog hub (multipage reviews) ---- */
.catalog-hub {
  padding-top: clamp(2rem, 4vw, 3rem);
  overflow: visible;
}

.catalog-hub > .container {
  overflow: visible;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
  overflow: visible;
}

.catalog-sidebar {
  position: relative;
  z-index: 40;
  align-self: stretch;
  min-height: 1px;
}

.catalog-sidebar__stick {
  position: sticky;
  top: calc(var(--header-h-shrunk, 58px) + 12px);
  z-index: 41;
  width: 100%;
}

.catalog-sidebar__stick.is-pinned-bottom {
  left: 0;
  right: 0;
}

.catalog-filters--vertical {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0.5rem;
  width: 100%;
  margin: 0;
  padding: 1rem;
  background: var(--jet-950);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.catalog-filters--vertical .filter-tab {
  flex-direction: row;
  justify-content: flex-start;
  gap: 0.75rem;
  min-width: 0;
  width: 100%;
  padding: 0.85rem 1rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.04);
}

.catalog-filters--vertical .filter-tab.is-active {
  transform: none;
  box-shadow: inset 3px 0 0 var(--pure-white);
}

.catalog-filters--vertical .filter-tab:hover {
  transform: translateX(2px);
}

@media (min-width: 769px) {
  .catalog-sidebar__stick.is-fixed {
    position: fixed;
    top: calc(var(--header-h-shrunk, 58px) + 12px);
    width: var(--sticky-tabs-w, 210px);
    z-index: 60;
  }

  .catalog-sidebar__stick.is-pinned-bottom {
    position: absolute;
    top: auto;
    bottom: 0;
    width: 100%;
  }
}

.catalog-main .section-actions {
  margin-top: 2rem;
}

.section-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}

.page-hero {
  padding: clamp(2rem, 5vw, 3.5rem) 0 1.5rem;
  background: var(--jet-950);
  color: var(--pure-white);
}

.page-hero .section-lead {
  color: rgba(255, 255, 255, 0.72);
  max-width: 36rem;
}

.section-title--light {
  color: var(--pure-white);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.list-links {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.list-links a {
  display: block;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--pure-white);
  font-weight: 700;
}

.list-links a:hover {
  color: var(--racing-red-600);
}

.catalog-card.is-hidden {
  display: none !important;
}

.section--concrete > .container {
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
}

/* ---- Catalog grid ---- */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.catalog-card {
  display: flex;
  flex-direction: column;
  background: var(--pure-white);
  border: 1px solid rgba(18, 18, 20, 0.08);
  padding: 1.25rem;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  transform-style: preserve-3d;
  will-change: transform;
}

.catalog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 56px var(--racing-red-glow);
}

.catalog-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.catalog-card__name {
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.35;
  margin: 0;
  flex: 1;
}

.catalog-card__name a:hover {
  color: var(--racing-red-600);
}

.catalog-card__price {
  font-family: var(--font-display);
  font-size: 0.88rem;
  color: var(--racing-red-600);
  white-space: nowrap;
  flex-shrink: 0;
}

.catalog-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  margin-bottom: 0.85rem;
  background: var(--concrete-100);
}

.catalog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease-out);
}

.catalog-card:hover .catalog-card__media img {
  transform: scale(1.04);
}

.catalog-card__rating {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  padding: 0.35rem 0.6rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  background: var(--racing-red-600);
  color: var(--pure-white);
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

.catalog-card__summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 0.75rem 0;
  margin-bottom: 0.75rem;
  border-top: 1px solid rgba(18, 18, 20, 0.08);
  border-bottom: 1px solid rgba(18, 18, 20, 0.08);
}

.catalog-card__summary div {
  text-align: center;
}

.catalog-card__summary span {
  display: block;
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  color: var(--steel-400);
  margin-bottom: 0.2rem;
}

.catalog-card__summary strong {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
}

.catalog-card__excerpt {
  font-size: 0.85rem;
  color: #5A5A60;
  line-height: 1.6;
  margin: 0 0 0.85rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.catalog-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin-bottom: 1rem;
}

.spec-icon {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink);
}

.spec-icon svg {
  flex-shrink: 0;
  color: var(--racing-red-600);
}

.catalog-empty,
.empty-state {
  text-align: center;
  padding: 3rem 1.5rem;
  font-size: 1rem;
  color: var(--steel-400);
}

.catalog-card[hidden],
.catalog-card.is-hidden {
  display: none !important;
}

/* ---- VS grid ---- */
.vs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
}

.vs-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
  background: var(--jet-800);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.vs-card:hover {
  border-color: var(--racing-red-600);
  box-shadow: var(--shadow-red);
  color: inherit;
}

.vs-card__side {
  position: relative;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.6s var(--ease-out), transform 0.7s var(--ease-out);
}

.vs-card.is-revealed .vs-card__side {
  opacity: 1;
}

.vs-card__side--a {
  transform: translateX(-40px);
}

.vs-card__side--b {
  transform: translateX(40px);
}

.vs-card.is-revealed .vs-card__side--a,
.vs-card.is-revealed .vs-card__side--b {
  transform: translateX(0);
}

.vs-card__side img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.vs-card:hover .vs-card__side img {
  transform: scale(1.04);
}

.vs-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.15rem;
  background: linear-gradient(transparent, rgba(10, 10, 12, 0.95));
}

.vs-card__label span {
  display: block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--racing-red-600);
}

.vs-card__label strong {
  display: block;
  font-size: 1rem;
  font-weight: 900;
  margin-top: 0.15rem;
}

.vs-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: clamp(52px, 8vw, 72px);
  height: clamp(52px, 8vw, 72px);
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.35rem);
  background: var(--racing-red-600);
  color: var(--pure-white);
  border-radius: 50%;
  flex-shrink: 0;
  z-index: 2;
  box-shadow: 0 0 0 4px var(--jet-900), var(--shadow-red);
  transform: scale(0.6);
  opacity: 0;
  transition: transform 0.5s var(--ease-snap), opacity 0.4s var(--ease-out);
}

.vs-card.is-revealed .vs-badge {
  transform: scale(1);
  opacity: 1;
}

.vs-badge.is-pulse {
  animation: vs-pulse 0.6s var(--ease-snap) 1;
}

@keyframes vs-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 4px var(--jet-900), var(--shadow-red); }
  50% { transform: scale(1.15); box-shadow: 0 0 0 8px var(--jet-900), 0 0 40px var(--racing-red-glow); }
}

/* ---- Tops split ---- */
.tops-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.rank-col__title,
.trend-col__title {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--racing-red-600);
  margin-bottom: 1.25rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid rgba(217, 30, 43, 0.35);
}

.rank-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.rank-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.25s var(--ease-out), padding-left 0.25s var(--ease-out);
}

.rank-item:hover {
  background: rgba(217, 30, 43, 0.06);
  padding-left: 0.5rem;
  color: inherit;
}

.rank-item__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1;
  color: var(--racing-red-600);
  min-width: 2.5rem;
}

.rank-item__body {
  min-width: 0;
}

.rank-item__body strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 900;
  margin-bottom: 0.2rem;
}

.rank-item__body span {
  display: block;
  font-size: 0.82rem;
  color: var(--steel-400);
  line-height: 1.5;
}

.rank-item__price {
  font-family: var(--font-display);
  font-size: 0.82rem;
  color: var(--racing-red-600);
  white-space: nowrap;
}

.trend-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.trend-card {
  display: block;
  background: var(--jet-800);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.trend-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-red);
  color: inherit;
}

.trend-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.trend-card__body {
  padding: 0.85rem 1rem;
}

.trend-card__body strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
  line-height: 1.35;
}

.trend-card__views {
  font-size: 0.72rem;
  color: var(--steel-400);
  letter-spacing: 0.04em;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--jet-950);
  color: var(--steel-400);
  padding-bottom: 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: clamp(2rem, 4vw, 4rem);
  width: min(100% - 2rem, var(--max-w));
  margin-inline: auto;
  padding: clamp(3rem, 6vw, 4.5rem) 0 2.5rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  letter-spacing: 0.04em;
  color: var(--pure-white);
  margin: 0 0 0.5rem;
}

.footer-logo span {
  color: var(--racing-red-600);
}

.footer-tagline {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.footer-about {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 420px;
}

.footer-about a {
  color: var(--racing-red-600);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-about a:hover {
  color: var(--pure-white);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.footer-cols h3 {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pure-white);
  margin-bottom: 1rem;
}

.footer-cols ul {
  list-style: none;
}

.footer-cols li {
  margin-bottom: 0.5rem;
}

.footer-cols a {
  font-size: 0.85rem;
  color: var(--steel-400);
}

.footer-cols a:hover {
  color: var(--racing-red-600);
}

.footer-contact li {
  word-break: break-word;
}

.footer-bottom {
  width: min(100% - 2rem, var(--max-w));
  margin-inline: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.78rem;
}

.footer-trust a {
  color: var(--steel-400);
}

.footer-trust a:hover {
  color: var(--racing-red-600);
}

/* ---- Page scroller ---- */
.page-scroller {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 8000;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--racing-red-600);
  color: var(--pure-white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-red);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.35s var(--ease-out), visibility 0.35s var(--ease-out),
    transform 0.35s var(--ease-out), background 0.25s var(--ease-out);
}

.page-scroller.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.page-scroller:hover {
  background: var(--racing-red-700);
  transform: translateY(-3px);
}

/* ---- Inner pages: breadcrumb ---- */
.breadcrumb {
  padding: calc(var(--header-h) + 1.5rem) 0 1.25rem;
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  font-size: 0.78rem;
  color: var(--steel-400);
}

.breadcrumb li:not(:last-child)::after {
  content: '/';
  margin-left: 0.5rem;
  color: var(--racing-red-600);
}

.breadcrumb a:hover {
  color: var(--racing-red-600);
}

.breadcrumb span[aria-current] {
  color: var(--pure-white);
}

.article-page .breadcrumb span[aria-current],
.review-page .breadcrumb span[aria-current],
.compare-page .breadcrumb span[aria-current],
.top-page .breadcrumb span[aria-current] {
  color: var(--steel-400);
}

/* ---- Article layout ---- */
.article-page,
.review-page,
.compare-page,
.top-page {
  background: var(--jet-950);
  color: var(--pure-white);
  padding-bottom: var(--section-pad);
}

.article-hero,
.review-hero {
  margin-bottom: 2rem;
}

.article-hero__media,
.review-hero__media {
  margin: 0 0 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.article-hero__media img,
.review-hero__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-hero__title,
.review-hero__title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.article-hero__byline,
.review-hero__meta {
  font-size: 0.85rem;
  color: var(--steel-400);
}

.review-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0.75rem 0;
}

.article-body {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.88);
}

.article-lead {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 3px solid var(--racing-red-600);
}

/* ---- Review: quick verdict ---- */
.quick-verdict,
.verdict-box {
  background: var(--jet-800);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--racing-red-600);
  padding: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 2rem;
}

.verdict-box__title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.verdict-box__line {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--pure-white);
  margin-bottom: 1.25rem;
}

.verdict-box__grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 1.5rem;
  align-items: start;
}

.verdict-box__grid h3 {
  font-size: 0.78rem;
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--racing-red-600);
  margin-bottom: 0.65rem;
}

.pros-list,
.cons-list {
  list-style: none;
  font-size: 0.9rem;
}

.pros-list li,
.cons-list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--steel-400);
}

.pros-list li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--racing-red-600);
  font-weight: 700;
}

.cons-list li::before {
  content: '−';
  position: absolute;
  left: 0;
  color: var(--steel-400);
}

.verdict-box__rating {
  text-align: center;
}

.verdict-box__rating span:last-child {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: var(--steel-400);
}

/* ---- Specs table ---- */
.specs-section {
  margin-bottom: 2rem;
}

.specs-section__title {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--racing-red-600);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.specs-table th,
.specs-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.specs-table th {
  font-weight: 700;
  color: var(--steel-400);
  width: 30%;
}

.specs-table td.is-winner {
  background: rgba(217, 30, 43, 0.12);
  color: var(--pure-white);
  font-weight: 700;
  border-left: 3px solid var(--racing-red-600);
}

.specs-table-wrap {
  overflow-x: auto;
}

.specs-table--compare thead th {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--jet-800);
}

.review-sections,
.compare-sections {
  margin-bottom: 2rem;
}

.review-section,
.compare-section {
  margin-bottom: 1.75rem;
}

.review-section h2,
.compare-section h2 {
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
  color: var(--pure-white);
}

.review-section p,
.compare-section p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

.final-verdict {
  padding: 1.5rem;
  background: rgba(217, 30, 43, 0.08);
  border: 1px solid rgba(217, 30, 43, 0.25);
  margin-bottom: 2rem;
}

.final-verdict h2 {
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
}

/* ---- Compare hero (vs-hero alias) ---- */
.vs-hero,
.compare-hero {
  margin-bottom: 2rem;
}

.compare-hero__title,
.vs-hero__title {
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 1.5rem;
}

.compare-hero__vs,
.vs-hero__vs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: center;
  background: var(--jet-800);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.compare-hero__bike,
.vs-hero__bike {
  position: relative;
}

.compare-hero__bike img,
.vs-hero__bike img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.compare-hero__label,
.vs-hero__label {
  padding: 0.85rem 1rem;
  background: rgba(10, 10, 12, 0.9);
}

.compare-hero__label span,
.vs-hero__label span {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  color: var(--racing-red-600);
}

.compare-hero__label strong,
.vs-hero__label strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 900;
}

.verdict-box--compare {
  text-align: center;
}

/* ---- Top list pages ---- */
.top-intro {
  margin-bottom: 2rem;
}

.top-intro__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 0.65rem;
}

.top-intro__excerpt {
  font-size: 1.05rem;
  color: var(--steel-400);
  margin-bottom: 0.75rem;
}

.top-intro__meta {
  font-size: 0.85rem;
  color: var(--steel-400);
}

.top-list,
.top-cards {
  list-style: none;
  margin-bottom: 2rem;
}

.top-entry,
.top-card {
  display: grid;
  grid-template-columns: auto 140px 1fr;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-card__rank,
.top-entry__rank {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--racing-red-600);
  line-height: 1;
  min-width: 3rem;
}

.top-card__media,
.top-entry__media {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.top-card__media img,
.top-entry__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.top-card__name,
.top-entry__name {
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 0.35rem;
}

.top-card__reason,
.top-entry__reason {
  font-size: 0.9rem;
  color: var(--steel-400);
  margin-bottom: 0.35rem;
}

/* ---- CTA / related ---- */
.related-cta,
.cta-box {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--jet-800);
  border: 1px solid rgba(217, 30, 43, 0.25);
  margin-top: 2rem;
  text-align: center;
}

.cta-box--row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.cta-box__label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--racing-red-600);
  margin-bottom: 0.5rem;
}

.cta-box__title {
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.cta-box__text {
  font-size: 0.9rem;
  color: var(--steel-400);
  margin-bottom: 1rem;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .news-grid,
  .editors-grid,
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__copy {
    max-width: none;
    margin-inline: auto;
  }

  .hero__collage {
    max-width: 560px;
    margin-inline: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
  }

  .verdict-box__grid {
    grid-template-columns: 1fr 1fr;
  }

  .verdict-box__rating {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 10002;
  }

  .site-header {
    z-index: 10000;
  }

  .primary-nav {
    position: fixed;
    inset: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    max-height: 100dvh;
    background: #0A0A0C;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: max(4.5rem, env(safe-area-inset-top)) 1.25rem max(2rem, env(safe-area-inset-bottom));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 10001;
    transition: opacity 0.3s var(--ease-out), visibility 0.3s var(--ease-out);
  }

  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    width: 100%;
    max-width: 20rem;
    margin: auto;
    padding: 0.5rem 0 1rem;
  }

  .nav-list a {
    font-size: 1.05rem;
    padding: 0.85rem 1.5rem;
    text-align: center;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 0.75rem;
  }

  .hero__panel--a,
  .hero__panel--b,
  .hero__red-block {
    display: none;
  }

  .hero__panel--main {
    position: relative;
    inset: auto;
    transform: none;
    width: 100%;
  }

  .hero__collage {
    min-height: auto;
  }

  .news-grid,
  .editors-grid,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .tops-split {
    grid-template-columns: 1fr;
  }

  .trend-grid {
    grid-template-columns: 1fr;
  }

  .vs-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .vs-card__side--a {
    order: 1;
  }

  .vs-badge {
    order: 2;
    margin: -1.25rem auto;
  }

  .vs-card__side--b {
    order: 3;
  }

  .compare-hero__vs,
  .vs-hero__vs {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .compare-hero__vs .vs-badge,
  .vs-hero__vs .vs-badge {
    margin: -1rem auto;
  }

  .footer-cols {
    grid-template-columns: 1fr;
  }

  .top-card,
  .top-entry {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }

  .top-card__media,
  .top-entry__media {
    grid-column: 1 / -1;
  }

  .slash {
    clip-path: polygon(0 0, 100% 85%, 100% 0) !important;
    height: clamp(36px, 5vw, 52px);
  }

  .slash--hero {
    clip-path: polygon(0 100%, 100% 15%, 100% 100%) !important;
  }

  .slash--after-dark,
  .slash--after-jet,
  .slash--after-light {
    clip-path: polygon(0 0, 100% 80%, 100% 0) !important;
  }

  .verdict-box__grid {
    grid-template-columns: 1fr;
  }

  /* Sticky category tabs — stay under header while scrolling cards */
  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .catalog-sidebar {
    position: sticky;
    top: calc(var(--header-h-shrunk, 58px) - 2px);
    z-index: 50;
    align-self: start;
    margin: 0 -1rem 1rem;
    width: calc(100% + 2rem);
  }

  .catalog-sidebar__stick {
    position: static;
    top: auto;
  }

  .catalog-filters--vertical {
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
    padding: 0.65rem 1rem;
    gap: 0.45rem;
    border: none;
    border-bottom: 2px solid var(--racing-red-600);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  }

  .catalog-filters--vertical .filter-tab {
    flex-direction: column;
    min-width: 76px;
    width: auto;
    flex-shrink: 0;
  }

  .catalog-filters--vertical .filter-tab.is-active {
    box-shadow: none;
  }
}

@media (max-width: 480px) {
  .catalog-filters {
    gap: 0.4rem;
  }

  .filter-tab {
    min-width: 72px;
    padding: 0.65rem 0.75rem;
    font-size: 0.68rem;
  }

  .hero__stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .rank-item {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }

  .rank-item__price {
    grid-column: 2;
  }
}

/* ==========================================================================
   Static pages — prose & contact
   ========================================================================== */
.inner-page #main {
  padding: 2rem 0 4rem;
  background: var(--jet-950);
  color: var(--pure-white);
}

.prose {
  max-width: 42rem;
}

.prose h1.section-title {
  margin-bottom: 1.25rem;
}

.prose h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
  color: var(--pure-white);
}

.prose p,
.prose li {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
  margin-bottom: 0.85rem;
}

.prose a {
  color: var(--racing-red-600);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose a:hover {
  color: var(--pure-white);
}

.prose ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: var(--steel-400);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  color: var(--pure-white);
  font-family: inherit;
  font-size: 1rem;
  border-radius: 2px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--racing-red-600);
  outline-offset: 1px;
  border-color: transparent;
}

.contact-form button {
  justify-self: start;
  margin-top: 0.5rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.contact-card {
  padding: 1.25rem 1.35rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 3px solid var(--racing-red-600);
}

.contact-card h2 {
  margin: 0 0 0.65rem;
  font-size: 1rem;
}

.contact-card p {
  margin: 0 0 0.35rem;
}

.contact-card a {
  color: var(--pure-white);
  text-decoration: none;
  font-weight: 700;
}

.contact-card a:hover {
  color: var(--racing-red-600);
}

@media (max-width: 640px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .slash {
    opacity: 1;
    transform: translateY(50%);
  }

  .vs-card__side,
  .vs-badge {
    opacity: 1;
    transform: none;
  }

  .catalog-card[data-tilt]:hover {
    transform: translateY(-8px);
  }
}
