/* cyclereview.online — Forest / Paper / Emerald / Amber */
:root {
  --forest: #0C1210;
  --forest-soft: #151C19;
  --paper: #F5F7F6;
  --paper-2: #E8EEEC;
  --emerald: #10B981;
  --emerald-dark: #059669;
  --amber: #F59E0B;
  --amber-soft: #FBBF24;
  --white: #FFFFFF;
  --ink: #0C1210;
  --ink-muted: #3D4A44;
  --mist: rgba(12, 18, 16, 0.08);
  --shadow-soft: 0 12px 40px rgba(12, 18, 16, 0.12);
  --shadow-lift: 0 20px 50px rgba(12, 18, 16, 0.18);
  --radius: 0.65rem;
  --radius-lg: 1.15rem;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4.5rem;
  --space-9: 6rem;
  --font-display: "Sora", "DM Sans", "Noto Sans JP", sans-serif;
  --font-sans: "DM Sans", "Noto Sans JP", sans-serif;
  --font-body: "Noto Sans JP", "DM Sans", sans-serif;
  --container: 72rem;
  --container-narrow: 42rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
@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;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink);
  background:
    radial-gradient(ellipse 70% 45% at 8% -5%, rgba(16, 185, 129, 0.12), transparent 50%),
    radial-gradient(ellipse 50% 35% at 100% 0%, rgba(245, 158, 11, 0.08), transparent 45%),
    linear-gradient(180deg, var(--paper) 0%, #EEF3F1 50%, var(--paper) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--emerald-dark); text-decoration-thickness: 0.08em; text-underline-offset: 0.2em; }
a:hover { color: var(--forest); }
a:focus-visible, button:focus-visible, .tilt-card:focus-visible, .nav-link:focus-visible {
  outline: 2px solid var(--emerald);
  outline-offset: 3px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--emerald); color: var(--white);
  padding: var(--space-3) var(--space-4); z-index: 10000;
}
.skip-link:focus { left: var(--space-4); top: var(--space-4); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }
.container-narrow { width: min(100% - 2rem, var(--container-narrow)); margin-inline: auto; }

h1, h2, h3, .card-title, .review-title, .hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--forest);
}
h1 { font-size: clamp(1.85rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); margin: 0 0 var(--space-4); }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); margin: 0 0 var(--space-2); }
.lead { font-size: 1.1rem; color: var(--ink-muted); max-width: 40rem; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--emerald-dark);
  margin-bottom: var(--space-2);
}

.section { padding-block: clamp(3rem, 6vw, 5.5rem); }
.section-alt { background: rgba(12, 18, 16, 0.03); }
.section-header { margin-bottom: var(--space-6); max-width: 40rem; }
.section-more { margin-top: var(--space-6); text-align: center; }
.on-dark { color: var(--paper); }
.on-light { color: var(--ink); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  min-height: 44px; padding: 0.75rem 1.4rem;
  font-family: var(--font-sans); font-size: 0.92rem; font-weight: 700;
  border-radius: 0.4rem; border: 2px solid transparent; cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn-primary { background: var(--emerald); color: var(--forest); border-color: var(--emerald); }
.btn-primary:hover { background: var(--emerald-dark); color: var(--white); border-color: var(--emerald-dark); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.85); }
.btn-outline:hover { background: var(--white); color: var(--forest); }
.btn-ghost { background: transparent; color: var(--white); border-color: transparent; text-decoration: underline; }
.btn-secondary { background: var(--forest); color: var(--paper); border-color: var(--forest); }
.btn-secondary:hover { background: var(--forest-soft); color: var(--white); }
.text-link {
  font-weight: 700; color: var(--emerald-dark); text-decoration: none;
  border-bottom: 2px solid var(--amber);
}
.text-link:hover { color: var(--forest); }

.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-5); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(245, 247, 246, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--mist);
}
.header-top { background: var(--forest); color: rgba(245,247,246,0.9); font-size: 0.78rem; }
.header-top-inner {
  width: min(100% - 2rem, var(--container)); margin-inline: auto;
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--space-4); min-height: 2rem;
}
.header-tagline { margin: 0; }
.header-contact-link { color: #fff; text-decoration: none; font-weight: 600; }
.header-contact-link:hover { color: var(--emerald); }
.header-inner {
  width: min(100% - 2rem, var(--container)); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-4); min-height: 4.25rem;
}
.logo {
  display: inline-flex; align-items: center; gap: 0.7rem;
  text-decoration: none; color: var(--forest); flex-shrink: 0;
}
.logo:hover { color: var(--emerald-dark); text-decoration: none; }
.logo-mark {
  width: 2.5rem; height: 2.5rem; border-radius: 0.55rem;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--forest), #1A2E26);
  color: var(--emerald); font-family: var(--font-display); font-weight: 800; font-size: 0.85rem;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text strong { font-family: var(--font-display); font-size: 1.05rem; }
.logo-tag { font-size: 0.68rem; color: var(--ink-muted); letter-spacing: 0.04em; }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 0; background: transparent;
  flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; padding: 10px;
}
.nav-toggle-bar { display: block; height: 2px; background: var(--forest); border-radius: 2px; transition: 0.25s; }
.nav-list { display: flex; flex-wrap: wrap; gap: 0.15rem 1rem; list-style: none; margin: 0; padding: 0; }
.nav-link {
  font-family: var(--font-sans); font-weight: 600; font-size: 0.9rem;
  color: var(--ink-muted); text-decoration: none; padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}
.nav-link:hover, .nav-link.is-active { color: var(--forest); border-bottom-color: var(--emerald); }

@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--paper); border-bottom: 1px solid var(--mist);
    max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease);
  }
  .primary-nav.is-open { max-height: 80vh; overflow-y: auto; }
  .nav-list { flex-direction: column; padding: var(--space-4) var(--space-5) var(--space-5); gap: 0; }
  .nav-link { display: block; padding: 0.85rem 0; border-bottom: 1px solid var(--mist); }
}

/* Hero */
.hero { position: relative; min-height: min(88vh, 720px); color: var(--paper); overflow: hidden; }
.hero-swiper, .hero-slide { height: min(88vh, 720px); }
@media (max-width: 768px) {
  .hero { min-height: min(58vh, 480px); }
  .hero-swiper, .hero-slide { height: min(58vh, 480px); }
}
.hero-slide { position: relative; }
.hero-slide-img { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim,
.hero-slide-content::before {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(12,18,16,0.9) 0%, rgba(12,18,16,0.55) 55%, rgba(12,18,16,0.28) 100%),
    linear-gradient(0deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.35) 42%, transparent 70%);
}
.hero-content {
  position: absolute; inset: 0; display: flex; align-items: flex-end;
  padding-bottom: clamp(3rem, 10vw, 5.5rem); z-index: 2;
}
.hero-brand {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(1.5rem, 4vw, 2.5rem);
  letter-spacing: -0.03em; margin: 0 0 var(--space-2); color: var(--emerald);
}
.hero-kicker { color: var(--amber-soft); }
.hero-title { color: var(--paper) !important; max-width: 18em; margin: 0 0 var(--space-3); }
.hero-sub { color: rgba(245,247,246,0.88); max-width: 36rem; font-size: 1.05rem; }
.hero-pagination { bottom: 1.5rem !important; }
.hero .swiper-pagination-bullet { background: #fff; opacity: 0.45; }
.hero .swiper-pagination-bullet-active { opacity: 1; background: var(--emerald); }
.hero-prev, .hero-next {
  color: #fff !important; width: 44px !important; height: 44px !important;
}
.hero-prev::after, .hero-next::after { font-size: 1.1rem !important; font-weight: 700; }

.word-reveal .word {
  display: inline-block;
  opacity: 0; transform: translateY(0.6em);
  animation: wordIn 0.55s var(--ease) forwards;
  animation-delay: calc(var(--i) * 0.028s);
}
@keyframes wordIn { to { opacity: 1; transform: none; } }

/* Cards */
.card-grid { display: grid; gap: var(--space-5); justify-content: center; }
.card-grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.bike-grid { display: grid; gap: var(--space-5); grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); justify-content: center; }

.card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  transform-style: preserve-3d;
  display: flex; flex-direction: column; height: 100%;
  color: var(--ink);
}
.card.is-tilting, .card.is-lift { box-shadow: var(--shadow-lift); }
.card-link { display: block; color: inherit; text-decoration: none; height: 100%; }
.card-media { position: relative; overflow: hidden; aspect-ratio: 3 / 2; background: var(--forest); }
.card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.card:hover .card-img { transform: scale(1.05); }
.card-body {
  padding: var(--space-4) var(--space-5) var(--space-5);
  flex: 1; display: flex; flex-direction: column;
}
.card-excerpt { color: var(--ink-muted); font-size: 0.95rem; margin: 0 0 var(--space-3); flex: 1; }
.card-meta { display: flex; flex-wrap: wrap; gap: var(--space-3); font-size: 0.8rem; color: var(--ink-muted); }
.card-cta { display: inline-block; margin-top: auto; padding-top: var(--space-3); font-weight: 700; color: var(--emerald-dark); font-size: 0.9rem; }
.card-badge { position: absolute; top: 0.75rem; left: 0.75rem; z-index: 2; }
.card-score {
  position: absolute; bottom: 0.75rem; right: 0.75rem; z-index: 2;
  width: 3rem; height: 3rem; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--forest); color: var(--amber); font-family: var(--font-display); font-weight: 800;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
}
.card-score-value { font-size: 0.95rem; }

.badge {
  display: inline-block; padding: 0.3rem 0.65rem; border-radius: 999px;
  font-family: var(--font-sans); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
}
.badge--editors { background: var(--emerald-dark); color: var(--white); }
.badge--value { background: #B45309; color: var(--white); }
.badge--premium { background: var(--forest); color: var(--paper); border: 1px solid var(--emerald); }

/* Scores */
.score-panel {
  background: var(--forest); color: var(--paper); border-radius: var(--radius-lg);
  padding: var(--space-5); box-shadow: var(--shadow-soft);
}
.score-overall { text-align: center; margin-bottom: var(--space-5); }
.score-overall-value {
  display: block; font-family: var(--font-display); font-size: 3.5rem; font-weight: 800;
  color: var(--amber); line-height: 1;
}
.score-overall-label { font-size: 0.85rem; opacity: 0.8; }
.score-list { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-3); }
.score-meta { display: flex; justify-content: space-between; font-size: 0.88rem; margin-bottom: 0.35rem; }
.score-meta strong { color: var(--amber); font-family: var(--font-display); }
.score-bar { height: 6px; background: rgba(245,247,246,0.15); border-radius: 99px; overflow: hidden; }
.score-fill {
  display: block; height: 100%; width: 0; border-radius: 99px;
  background: linear-gradient(90deg, var(--emerald), var(--amber));
  animation: scoreGrow 1.1s var(--ease) forwards;
}
.score-fill { width: var(--score); }
@keyframes scoreGrow { from { width: 0; } to { width: var(--score); } }

/* Stats */
.stat-band { padding: var(--space-7) 0; background: var(--forest); color: var(--paper); }
.stat-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); text-align: center;
}
@media (max-width: 700px) { .stat-list { grid-template-columns: 1fr 1fr; } }
.stat-value { display: block; font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: var(--emerald); }
.stat-label { font-size: 0.85rem; opacity: 0.8; }

/* Hotspot showcase */
.hotspot-stage {
  display: grid; grid-template-columns: 1.4fr 0.8fr; gap: var(--space-5);
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-soft); padding: var(--space-4);
}
@media (max-width: 800px) { .hotspot-stage { grid-template-columns: 1fr; } }
.hotspot-media {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 16/10; background: var(--forest);
  perspective: 1200px;
}
.hotspot-img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.5s var(--ease);
}
.hotspot-stage:hover .hotspot-img { transform: scale(1.06) rotateY(-2deg); }
.hotspot-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 40% 50%, transparent 30%, rgba(12,18,16,0.35) 100%);
}
.hotspot-pin {
  position: absolute; width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid var(--paper); background: var(--emerald);
  transform: translate(-50%, -50%); cursor: pointer; z-index: 3; padding: 0;
}
.hotspot-pin.is-active { background: var(--amber); }
.hotspot-pulse {
  position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid var(--emerald); animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}
.hotspot-panel { padding: var(--space-4); }
.hotspot-panel h3 { margin-top: 0; }
.hotspot-panel[hidden] { display: none !important; }

/* Labels / categories */
.label-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--space-5); justify-content: center; }
.label-card {
  background: var(--white); border-radius: var(--radius-lg); padding: var(--space-5);
  box-shadow: var(--shadow-soft); border-top: 3px solid var(--emerald);
}
.label-list { list-style: none; margin: var(--space-4) 0 0; padding: 0; }
.label-list li { padding: 0.4rem 0; border-bottom: 1px solid var(--mist); }

.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: var(--space-4); justify-content: center; }
.cat-tile {
  position: relative; display: block; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 3/4; text-decoration: none; color: var(--paper);
  box-shadow: var(--shadow-soft);
}
.cat-tile-img { width: 100%; height: 100%; object-fit: cover; }
.cat-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(transparent 30%, rgba(0,0,0,0.75) 100%);
}
.cat-tile-label {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 1;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
}

.cta-band { background: linear-gradient(135deg, var(--forest), #16352A); color: var(--paper); }
.cta-band-inner { text-align: center; max-width: 40rem; margin-inline: auto; }
.cta-band h2 { color: var(--paper); }
.cta-band p { color: rgba(245,247,246,0.85); }

/* Page band */
.page-band {
  position: relative; padding: var(--space-8) 0 var(--space-7);
  background: linear-gradient(160deg, var(--forest) 0%, #1A3329 100%);
  color: var(--paper); overflow: hidden;
}
.page-band h1, .page-band .lead { color: var(--paper); }
.page-band .lead { opacity: 0.88; }
.page-band-inner { position: relative; z-index: 1; }

/* Page band "hero image" background (all internal pages) */
.page-band:not(.page-band--image)::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--page-band-image, none);
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  transform: scale(1.03);
  z-index: 0;
  pointer-events: none;
}
.page-band:not(.page-band--image)::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.72) 100%);
  z-index: 0;
  pointer-events: none;
}
.breadcrumb { display: flex; flex-wrap: wrap; gap: 0.4rem; font-size: 0.85rem; margin-bottom: var(--space-4); }
.breadcrumb a { color: var(--emerald); text-decoration: none; }
.breadcrumb--light a { color: var(--emerald); }
.breadcrumb span[aria-current] { opacity: 0.75; }

/* Review detail */
.review-hero { position: relative; min-height: 70vh; color: var(--paper); overflow: hidden; }
.review-hero-media { position: absolute; inset: 0; }
.review-hero-img { width: 100%; height: 100%; object-fit: cover; }
.review-hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.28) 0%, rgba(12,18,16,0.55) 45%, rgba(12,18,16,0.9) 100%);
}
.review-hero-content {
  position: relative; z-index: 1; min-height: 70vh;
  display: flex; align-items: flex-end; padding: var(--space-8) 0 var(--space-7);
}
@media (max-width: 768px) {
  .review-hero, .review-hero-content { min-height: min(58vh, 480px); }
}
.review-title { color: var(--paper) !important; max-width: 18em; }
.review-subtitle { color: rgba(245,247,246,0.85); font-size: 1.1rem; max-width: 36rem; }
.review-hero-meta {
  display: flex; flex-wrap: wrap; gap: var(--space-4); align-items: center;
  margin-top: var(--space-4); font-size: 0.9rem; opacity: 0.9;
}
.score-pill {
  display: inline-flex; align-items: baseline; gap: 0.25rem;
  background: var(--amber); color: var(--forest);
  font-family: var(--font-display); font-weight: 800; font-size: 1.35rem;
  padding: 0.35rem 0.75rem; border-radius: 999px;
}
.score-pill small { font-size: 0.7rem; font-weight: 700; }

.review-overview-grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: var(--space-7); align-items: start;
}
@media (max-width: 860px) { .review-overview-grid { grid-template-columns: 1fr; } }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
@media (max-width: 700px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-item {
  margin: 0; background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.gallery-img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.gallery-item figcaption { padding: var(--space-3); font-size: 0.88rem; color: var(--ink-muted); }

.specs-table { width: 100%; min-width: 320px; border-collapse: collapse; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.specs-table th, .specs-table td { padding: 0.9rem 1.1rem; text-align: left; border-bottom: 1px solid var(--mist); }
.specs-table th { width: 38%; background: var(--paper-2); font-weight: 700; color: var(--forest); }
.specs-table tr:last-child th, .specs-table tr:last-child td { border-bottom: 0; }

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  max-width: 100%;
}
.table-scroll:focus-visible {
  outline: 2px solid var(--emerald);
  outline-offset: 3px;
}
.table-scroll .specs-table { box-shadow: none; border-radius: 0; }

.proscons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
@media (max-width: 700px) { .proscons-grid { grid-template-columns: 1fr; } }
.pros-box, .cons-box {
  background: var(--white); border-radius: var(--radius-lg); padding: var(--space-5);
  box-shadow: var(--shadow-soft);
}
.pros-box { border-top: 3px solid var(--emerald); }
.cons-box { border-top: 3px solid var(--amber); }
.pros-box ul, .cons-box ul { margin: 0; padding-left: 1.2rem; }

.verdict-quote {
  margin: 0; padding: var(--space-5); background: var(--forest); color: var(--paper);
  border-radius: var(--radius-lg); border-left: 4px solid var(--amber);
}
.verdict-quote p { margin: 0; font-size: 1.15rem; line-height: 1.7; }
.verdict-actions { margin-top: var(--space-5); display: flex; flex-wrap: wrap; gap: var(--space-3); }

/* Compare */
.compare-hint { font-weight: 600; margin-bottom: var(--space-4); }
.compare-choices {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: var(--space-4);
}
.compare-choice {
  display: flex; flex-direction: column; background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-soft); cursor: pointer;
  border: 2px solid transparent; transition: border-color 0.2s, transform 0.25s var(--ease);
}
.compare-choice:has(input:checked),
.compare-choice.is-selected { border-color: var(--emerald); box-shadow: var(--shadow-lift); }
.compare-choice input { position: absolute; opacity: 0; pointer-events: none; }
.compare-choice-media { aspect-ratio: 16/10; overflow: hidden; background: var(--forest); }
.compare-choice-media img { width: 100%; height: 100%; object-fit: cover; }
.compare-choice-body { padding: var(--space-3) var(--space-4) var(--space-4); display: grid; gap: 0.2rem; }
.compare-choice-score {
  font-family: var(--font-display); font-weight: 800; color: var(--amber); font-size: 1.1rem;
}
.compare-result { margin-top: var(--space-8); }
.compare-scroll-hint { margin-top: var(--space-2); }
.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  max-width: 100%;
}
.compare-table { width: 100%; border-collapse: collapse; background: var(--white); min-width: 640px; }
.compare-table th, .compare-table td { padding: 0.85rem 1rem; border-bottom: 1px solid var(--mist); text-align: left; vertical-align: top; }
.compare-table thead th { background: var(--forest); color: var(--paper); position: sticky; top: 0; z-index: 1; }
.compare-table tbody th {
  background: var(--paper-2); font-weight: 700; width: 9rem;
  position: sticky; left: 0; z-index: 1;
}
.compare-bike-head a { color: var(--emerald); text-decoration: none; font-weight: 700; }
.compare-actions { margin-top: var(--space-5); display: flex; flex-wrap: wrap; gap: var(--space-3); }

/* Guides / contact / legal */
.guide-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--space-5); justify-content: center; }
.guide-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column; height: 100%; color: var(--ink);
}
.guide-img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.guide-body { padding: var(--space-4) var(--space-5) var(--space-5); flex: 1; display: flex; flex-direction: column; }

.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: var(--space-7); }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-details, .contact-form-wrap {
  background: var(--white); border-radius: var(--radius-lg); padding: var(--space-5); box-shadow: var(--shadow-soft);
}
.contact-details dl { margin: 0; }
.contact-details dt { font-weight: 700; margin-top: var(--space-3); font-size: 0.85rem; color: var(--ink-muted); }
.contact-details dd { margin: 0.2rem 0 0; }
.form-row { margin-bottom: var(--space-4); display: grid; gap: 0.4rem; }
.form-row label { font-weight: 700; font-size: 0.9rem; }
.req { color: var(--amber); font-size: 0.75rem; font-weight: 700; }
.form-row input, .form-row textarea {
  width: 100%; padding: 0.75rem 0.9rem; border: 1px solid var(--mist); border-radius: var(--radius);
  font: inherit; background: var(--paper);
}
.form-row input:focus, .form-row textarea:focus { outline: 2px solid var(--emerald); border-color: transparent; }
.form-check {
  display: flex; align-items: flex-start; gap: 0.65rem;
  font-size: 0.92rem; color: var(--ink);
}
.form-check input { margin-top: 0.2rem; width: auto; }
.form-error { background: #FEF3C7; color: #92400E; padding: var(--space-3) var(--space-4); border-radius: var(--radius); }
.form-success { text-align: center; padding: var(--space-6); }

.prose h2 { margin-top: var(--space-6); }
.info-dl dt { font-weight: 700; margin-top: var(--space-3); }
.info-dl dd { margin: 0.2rem 0 0; }

/* Footer */
.site-footer { background: var(--forest); color: rgba(245,247,246,0.88); margin-top: var(--space-8); }
.footer-inner {
  width: min(100% - 2rem, var(--container)); margin-inline: auto;
  display: grid; grid-template-columns: 1.1fr 2fr; gap: var(--space-7);
  padding: var(--space-8) 0 var(--space-6);
}
@media (max-width: 800px) { .footer-inner { grid-template-columns: 1fr; } }
.logo-footer .logo-mark { background: #1A2E26; }
.logo-footer { color: var(--paper); }
.footer-tagline { margin: var(--space-3) 0; max-width: 22rem; font-size: 0.92rem; }
.footer-social { list-style: none; margin: 0; padding: 0; display: flex; gap: var(--space-4); }
.footer-social a { color: var(--emerald); text-decoration: none; font-weight: 600; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
@media (max-width: 600px) { .footer-cols { grid-template-columns: 1fr; } }
.footer-heading { font-family: var(--font-display); font-size: 0.95rem; color: var(--paper); margin: 0 0 var(--space-3); }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col a { color: rgba(245,247,246,0.8); text-decoration: none; font-size: 0.9rem; }
.footer-col a:hover { color: var(--emerald); }
.footer-col li { margin-bottom: 0.45rem; }
.footer-bottom { border-top: 1px solid rgba(245,247,246,0.1); }
.footer-bottom-inner {
  width: min(100% - 2rem, var(--container)); margin-inline: auto;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-3);
  padding: var(--space-4) 0; font-size: 0.82rem;
}
.footer-legal { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: var(--space-4); }
.footer-legal a { color: rgba(245,247,246,0.75); text-decoration: none; }

/* Animated blobs */
.animated-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.blob {
  position: absolute; border-radius: 50%; filter: blur(40px); opacity: 0.35;
  animation: blobFloat 14s ease-in-out infinite;
}
.blob-1 { width: 280px; height: 280px; background: var(--emerald); top: -40px; left: 10%; }
.blob-2 { width: 220px; height: 220px; background: var(--amber); bottom: 10%; right: 15%; animation-delay: -4s; }
.blob-3 { width: 180px; height: 180px; background: #34D399; top: 40%; left: 55%; animation-delay: -7s; }
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -25px) scale(1.08); }
}

.page-404-inner { min-height: 50vh; display: flex; align-items: center; }

/* Ad slots */
.ad-slot {
  margin: var(--space-6) 0;
  padding: var(--space-3);
  border: 1px dashed rgba(16, 185, 129, 0.35);
  border-radius: var(--radius);
  background: rgba(16, 185, 129, 0.06);
  text-align: center;
  overflow: hidden;
}
.ad-slot-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
  margin-bottom: var(--space-2);
}
.ad-slot-inner {
  min-height: 90px;
  display: grid;
  place-items: center;
  background: rgba(245, 247, 246, 0.8);
  border-radius: calc(var(--radius) - 2px);
}
.ad-slot-placeholder {
  font-size: 0.88rem;
  color: var(--ink-muted);
  font-weight: 600;
}

/* FAQ */
.faq-section { margin-top: var(--space-2); }
.faq-title { margin-bottom: var(--space-4); }
.faq-list { display: grid; gap: var(--space-3); }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--mist);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  padding: var(--space-4) var(--space-5);
  list-style: none;
  color: var(--forest);
  min-height: 44px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--emerald-dark);
  font-weight: 800;
}
.faq-item[open] summary::after { content: "–"; }
.faq-answer { padding: 0 var(--space-5) var(--space-4); color: var(--ink-muted); }
.faq-answer p { margin: 0; }

.prose-p { color: var(--ink-muted); margin: 0 0 var(--space-4); max-width: 40rem; }
.verdict-quote p + p { margin-top: var(--space-3); }

.related-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
@media (max-width: 800px) { .related-links { grid-template-columns: 1fr 1fr; } }
@media (max-width: 420px) { .related-links { grid-template-columns: 1fr; } }
.related-link-card {
  display: flex; align-items: center; justify-content: center;
  min-height: 72px; padding: var(--space-4);
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft); text-decoration: none;
  font-weight: 700; color: var(--forest); text-align: center;
  border-bottom: 3px solid var(--emerald);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.related-link-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
  color: var(--emerald-dark);
  text-decoration: none;
}

/* Overflow containment */
.card, .guide-card, .hotspot-stage, .label-card, .compare-choice, .gallery-item {
  max-width: 100%;
}
.card-excerpt, .guide-body p, .hotspot-panel p {
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (prefers-reduced-motion: reduce) {
  .hotspot-pulse { animation: none !important; }
  .blob { animation: none !important; }
  .word-reveal .word { opacity: 1; transform: none; animation: none !important; }
  .score-fill { animation: none !important; width: var(--score); }
  .card:hover .card-img { transform: none; }
  .hotspot-stage:hover .hotspot-img { transform: scale(1.02); }
}

