/* IRON GRIP — main stylesheet
   Design tokens + layout for the static presentation site.
   Animate only transform/opacity. */

/* -------------------------------------------------------------------------- */
/* Tokens                                                                      */
/* -------------------------------------------------------------------------- */
:root {
  color-scheme: dark;

  /* Neutrals — the brand is 90% black. Sand is the last 10%. */
  --c-bg: #0a0a0b;
  --c-surface: #141416;
  --c-surface-2: #1d1d21;
  --c-text: #f5f5f4;
  --c-text-dim: #a0a0a8;
  --c-text-soft: #c8c8ce;
  --c-line: #26262b;
  --c-medium: #6f7077;

  /* Accent — DESERT SAND. Single brand accent. Canonical names below. */
  /* Usage rule: at most one sand-FILLED element per viewport (the primary  */
  /* CTA). Everything else is sand text / sand outline. Keep sand under ~10% */
  /* of any screen — it earns attention by being rare, not loud.            */
  --c-accent: #cbb892;       /* fills, links, key labels (10.2:1 on bg, AAA) */
  --c-accent-hot: #e0d0b0;   /* hover / active lift on sand                  */
  --c-accent-deep: #6e5a3e;  /* outline borders, big background numerals,    */
                             /* muted sand washes — adds range w/o new hue   */
  --c-accent-ink: #14110e;   /* text ON sand fills (9.7:1)                   */

  /* Legacy aliases — original call sites used --c-red*; keep them mapped so */
  /* nothing breaks. Prefer --c-accent* in new CSS.                          */
  --c-red: var(--c-accent);
  --c-red-hot: var(--c-accent-hot);
  --c-red-deep: var(--c-accent-deep);
  --c-on-accent: var(--c-accent-ink);

  /* Compound-coding colors — RESERVED for tire-compound meaning ONLY.       */
  /* Never use these decoratively; that separation keeps the product system  */
  /* legible. Soft=green, Super-soft=yellow→green, X-soft=off-white.         */
  --c-soft: #0d5b36;
  --c-supersoft-start: #f4ce24;
  --c-supersoft-end: #4d963e;
  --c-supersoft-accent: #91b733;
  --c-xsoft: #f4f4f1;
  --c-product-bg: #ffffff;   /* product cards stay light so black tires read */

  --font-display: "Archivo Black", Impact, Haettenschweiler, sans-serif;
  --font-body: Inter, -apple-system, "Segoe UI", Roboto, sans-serif;

  --max-width: 1200px;
  --nav-height: 4.5rem;
  --radius: 4px;
  --radius-product: 1rem;
  --section-pad-y: clamp(4rem, 10vh, 8rem);
  --gutter: clamp(1.25rem, 4vw, 2rem);

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 180ms;
  --dur-med: 320ms;
  --dur-slow: 600ms;

  --reveal-offset: 24px;
  --parallax-max: 40px;
  --nav-solid-threshold: 40px;
  --focus-ring: 2px solid var(--c-accent-hot);
}

/* -------------------------------------------------------------------------- */
/* Fonts (self-hosted)                                                         */
/* -------------------------------------------------------------------------- */
@font-face {
  font-family: "Archivo Black";
  src: url("../fonts/archivo-black-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("../fonts/inter-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("../fonts/inter-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* -------------------------------------------------------------------------- */
/* Reset / base                                                                */
/* -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 0.75rem);
  overflow-x: clip;
}

body {
  margin: 0;
  min-height: 100svh;
  overflow-x: clip;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--c-red);
  color: var(--c-on-accent);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--c-red-hot);
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0;
}

p {
  margin: 0 0 1rem;
  color: var(--c-text-dim);
}

p:last-child {
  margin-bottom: 0;
}

:focus-visible {
  outline: var(--focus-ring);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: var(--gutter);
  top: -100px;
  z-index: 1000;
  background: var(--c-red);
  color: var(--c-on-accent);
  padding: 0.5rem 1rem;
}

.skip-link:focus {
  top: 0.75rem;
}

/* -------------------------------------------------------------------------- */
/* Layout helpers                                                              */
/* -------------------------------------------------------------------------- */
.container {
  width: min(100% - (var(--gutter) * 2), var(--max-width));
  max-width: 100%;
  margin-inline: auto;
}

.section {
  padding-block: var(--section-pad-y);
  position: relative;
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: 0.75rem;
}

.section__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.25rem;
}

.section__lede {
  max-width: 38rem;
  font-size: 1.0625rem;
}

@media (max-width: 639px) {
  .section {
    padding-block: clamp(2.25rem, 5vh, 3.5rem);
  }

  .section__eyebrow {
    margin-bottom: 0.35rem;
  }

  .section__title {
    margin-bottom: 0.5rem;
    line-height: 1;
  }

  .section p {
    margin-bottom: 0.4rem;
  }

  .section p:last-child {
    margin-bottom: 0;
  }
}

/* -------------------------------------------------------------------------- */
/* Buttons                                                                     */
/* -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.7rem 1.35rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    transform var(--dur-fast) ease,
    background-color var(--dur-fast) ease,
    color var(--dur-fast) ease,
    border-color var(--dur-fast) ease;
}

.btn--primary {
  background: var(--c-red);
  color: var(--c-on-accent);
}

.btn--primary:hover {
  background: var(--c-red-hot);
  color: var(--c-on-accent);
  transform: translateY(-2px);
}

.btn--primary::after {
  content: "→";
  font-size: 0.85em;
  line-height: 1;
}

.btn--ghost {
  background: transparent;
  border-color: var(--c-line);
  color: var(--c-text);
}

.btn--ghost:hover {
  border-color: var(--c-red);
  color: var(--c-text);
  transform: translateY(-2px);
}

.btn--invert:hover {
  background: var(--c-red);
  border-color: var(--c-red);
  color: var(--c-on-accent);
}

.link-secondary {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--c-text-dim);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.link-secondary:hover {
  color: var(--c-text);
}

/* -------------------------------------------------------------------------- */
/* Compound badges                                                             */
/* -------------------------------------------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.65rem;
  border-radius: 2px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

.badge--medium {
  background: transparent;
  border: 1px solid var(--c-medium);
  color: var(--c-text-soft);
}

.badge--soft {
  background: var(--c-soft);
  color: #fff;
}

.badge--super-soft {
  background: linear-gradient(90deg, var(--c-supersoft-start), var(--c-supersoft-end));
  color: #081109;
}

.badge--x-soft {
  background: var(--c-xsoft);
  color: #111;
}

.badge--flagship {
  background: transparent;
  border: 1px solid var(--c-red);
  color: var(--c-red);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

/* -------------------------------------------------------------------------- */
/* Nav                                                                         */
/* -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: var(--nav-height);
  border-bottom: 1px solid transparent;
  transition:
    background-color var(--dur-med) ease,
    border-color var(--dur-med) ease;
}

.site-header.is-solid {
  background: color-mix(in srgb, var(--c-bg) 92%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-line);
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 2rem;
  width: auto;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.nav-desktop a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-dim);
}

.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] {
  color: var(--c-text);
}

.nav-desktop .nav-cta {
  min-height: 2.5rem;
  display: inline-flex;
  align-items: center;
  padding-inline: 1rem;
  border: 1px solid var(--c-red);
  background: color-mix(in srgb, var(--c-red-deep) 48%, transparent);
  color: var(--c-text);
}

.nav-desktop .nav-cta:hover {
  background: var(--c-red);
  color: var(--c-on-accent);
}

.nav-toggle {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
}

.nav-toggle__bar {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--c-text);
  transition:
    transform var(--dur-fast) ease,
    opacity var(--dur-fast) ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: var(--c-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-height) + 2rem) var(--gutter) 2rem;
  gap: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity var(--dur-med) var(--ease-out-expo),
    transform var(--dur-med) var(--ease-out-expo),
    visibility 0s linear var(--dur-med);
}

.nav-mobile.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition:
    opacity var(--dur-med) var(--ease-out-expo),
    transform var(--dur-med) var(--ease-out-expo),
    visibility 0s linear 0s;
}

.nav-mobile a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3rem);
  text-transform: uppercase;
}

.nav-mobile a[aria-current="page"]::before {
  content: "•";
  display: inline-block;
  margin-right: 0.5rem;
  color: var(--c-red);
}

.nav-mobile .nav-cta {
  margin-top: 0.75rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--c-red);
  background: var(--c-red);
  color: var(--c-on-accent);
  font-size: 1rem;
  text-align: center;
}

body.nav-open {
  overflow: hidden;
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .nav-mobile {
    display: none;
  }

  .logo img {
    height: 2.25rem;
  }
}

/* -------------------------------------------------------------------------- */
/* Hero                                                                        */
/* -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: clamp(42rem, 100svh, 58rem);
  display: flex;
  align-items: flex-end;
  padding-block: calc(var(--nav-height) + 2rem) 4rem;
  overflow: hidden;
}

.hero--model {
  min-height: clamp(32rem, 68svh, 44rem);
  align-items: flex-end;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 10, 11, 0.35) 0%, rgba(10, 10, 11, 0.5) 45%, rgba(10, 10, 11, 0.94) 88%, var(--c-bg) 100%),
    linear-gradient(90deg, rgba(10, 10, 11, 0.82) 0%, rgba(10, 10, 11, 0.18) 72%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(100% - (var(--gutter) * 2), var(--max-width));
  max-width: 100%;
  margin-inline: auto;
  container-type: inline-size;
}

.hero__title {
  font-size: clamp(1.65rem, calc(100cqw / 9.5), 7.25rem);
  max-width: 100%;
  text-wrap: balance;
  opacity: 0;
  transform: translateY(20px);
  animation: hero-in var(--dur-slow) var(--ease-out-expo) 120ms forwards;
}

.hero__sub {
  margin-top: 1.25rem;
  max-width: 36rem;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--c-text-soft);
  opacity: 0;
  transform: translateY(16px);
  animation: hero-in var(--dur-slow) var(--ease-out-expo) 320ms forwards;
}

.hero__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin-top: 1.25rem;
  color: var(--c-text-soft);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(16px);
  animation: hero-in var(--dur-slow) var(--ease-out-expo) 520ms forwards;
}

.hero__signals span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero__signals span::before {
  content: "";
  width: 0.35rem;
  height: 0.35rem;
  background: var(--c-red);
  transform: rotate(45deg);
}

.hero__badges {
  margin-top: 1.25rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(16px);
  animation: hero-in var(--dur-slow) var(--ease-out-expo) 420ms forwards;
}

@keyframes hero-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 639px) {
  .hero {
    padding-bottom: 2.5rem;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__signals {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.75rem;
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: var(--gutter);
    padding-bottom: 0.15rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--gutter);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .hero__signals::-webkit-scrollbar {
    display: none;
  }

  .hero__signals span {
    flex: 0 0 min(78%, 16rem);
    scroll-snap-align: start;
    padding: 0.75rem 0.85rem;
    background: color-mix(in srgb, var(--c-surface) 72%, transparent);
    border: 1px solid var(--c-line);
    border-radius: var(--radius);
  }
}

/* -------------------------------------------------------------------------- */
/* Story                                                                       */
/* -------------------------------------------------------------------------- */
.story {
  display: grid;
  gap: 2rem;
}

.story__media-pair {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

/* Mobile: horizontal swipe carousel — half-width cards with next peek */
@media (max-width: 639px) {
  .story__media-pair {
    display: flex;
    gap: 0.85rem;
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: var(--gutter);
    padding-bottom: 0;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--gutter);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .story__media-pair::-webkit-scrollbar {
    display: none;
  }

  .story__media-pair .story__media {
    flex: 0 0 50%;
    scroll-snap-align: start;
  }
}

.story__media {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-product);
  aspect-ratio: 3 / 4;
  background: var(--c-product-bg);
  color: inherit;
  text-decoration: none;
}

.story__media:focus-visible {
  outline: var(--focus-ring);
  outline-offset: 3px;
}

.story__media-badge {
  position: absolute;
  bottom: 0.65rem;
  right: 0.65rem;
  z-index: 1;
}

.story__media-badges {
  position: absolute;
  bottom: 0.65rem;
  right: 0.65rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.35rem;
}

.story__media-badges .badge {
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}

.story__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.story__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--dur-slow) var(--ease-out-expo);
}

/* TRX Extreme Soft master has more white pad than XC95 — nudge scale in the
   story pair only so sizes match without re-encoding the asset. */
.story__media--trx img {
  transform: scale(1.16);
  transform-origin: center center;
}

.story__media:hover img {
  transform: scale(1.04);
}

.story__media--trx:hover img {
  transform: scale(1.2);
}

@media (min-width: 900px) {
  .story {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 2.75rem;
  }

  .story > :first-child {
    max-width: 38rem;
  }

  .story__media-pair {
    gap: 1.15rem;
  }
}

/* -------------------------------------------------------------------------- */
/* Compound meter                                                              */
/* -------------------------------------------------------------------------- */
.compound-meter {
  margin-top: 2.5rem;
}

.compound-meter__track {
  position: relative;
  height: 0.5rem;
  background: var(--c-surface-2);
  border-radius: 999px;
  overflow: hidden;
}

.compound-meter__fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 100%;
  background: linear-gradient(
    90deg,
    var(--c-xsoft) 0%,
    var(--c-xsoft) 24.5%,
    var(--c-supersoft-start) 25%,
    var(--c-supersoft-end) 49.5%,
    var(--c-soft) 50%,
    var(--c-soft) 74.5%,
    var(--c-surface-2) 75%,
    var(--c-surface-2) 100%
  );
  transition: width 1.4s var(--ease-out-expo);
}

.has-js .compound-meter__fill {
  width: 0%;
}

.has-js .compound-meter.is-active .compound-meter__fill {
  width: 100%;
}

.compound-meter__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

/* Mobile: horizontal swipe carousel with next-card peek */
@media (max-width: 639px) {
  .compound-meter {
    margin-top: 0.85rem;
  }

  .compound-meter__steps {
    display: flex;
    gap: 0.85rem;
    margin-top: 1rem;
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: var(--gutter);
    padding-bottom: 0.25rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--gutter);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .compound-meter__steps::-webkit-scrollbar {
    display: none;
  }

  .compound-step {
    flex: 0 0 82%;
    max-width: 19.5rem;
    scroll-snap-align: start;
  }
}

@media (min-width: 640px) {
  .compound-meter__steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .compound-meter__steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.compound-step {
  --compound-accent: var(--c-medium);

  padding: 1.25rem;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  opacity: 1;
  transform: none;
  transition:
    opacity var(--dur-med) var(--ease-out-expo),
    transform var(--dur-med) var(--ease-out-expo),
    border-color var(--dur-fast) ease;
}

.has-js .compound-step {
  opacity: 0;
  transform: translateY(12px);
}

.has-js .compound-meter.is-active .compound-step {
  opacity: 1;
  transform: translateY(0);
}

.has-js .compound-meter.is-active .compound-step:nth-child(1) {
  transition-delay: 120ms, 120ms, 0ms;
}
.has-js .compound-meter.is-active .compound-step:nth-child(2) {
  transition-delay: 220ms, 220ms, 0ms;
}
.has-js .compound-meter.is-active .compound-step:nth-child(3) {
  transition-delay: 320ms, 320ms, 0ms;
}
.has-js .compound-meter.is-active .compound-step:nth-child(4) {
  transition-delay: 420ms, 420ms, 0ms;
}

.compound-step:hover {
  border-color: var(--compound-accent);
}

.compound-step:has(.badge--x-soft),
.variant-selector__option:has(.badge--x-soft) {
  --compound-accent: var(--c-xsoft);
}

.compound-step:has(.badge--super-soft),
.variant-selector__option:has(.badge--super-soft) {
  --compound-accent: var(--c-supersoft-accent);
}

.compound-step:has(.badge--soft),
.variant-selector__option:has(.badge--soft) {
  --compound-accent: var(--c-soft);
}

.compound-step:has(.badge--medium),
.variant-selector__option:has(.badge--medium) {
  --compound-accent: var(--c-medium);
}

.compound-step h3 {
  font-size: 1.15rem;
  margin: 0.65rem 0 0.5rem;
}

.compound-step p {
  font-size: 0.9rem;
}

.compound-step__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.9rem;
  margin-top: 1rem;
}

.compound-step__links a {
  color: var(--c-text);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compound-step__links a::after {
  content: " →";
  color: var(--c-red);
}

.compound-meter__dots,
.hero__signals-dots,
.story__media-dots {
  display: none;
}

@media (max-width: 639px) {
  .compound-meter__dots,
  .hero__signals-dots,
  .story__media-dots {
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 1.15rem;
  }

  .story__media-dots {
    margin-top: 0.3rem;
  }

  .compound-meter__dot,
  .hero__signals-dot,
  .story__media-dot {
    width: 0.45rem;
    height: 0.45rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: var(--c-line);
    cursor: pointer;
    transition:
      background var(--dur-fast) ease,
      transform var(--dur-fast) ease;
  }

  .compound-meter__dot.is-active,
  .hero__signals-dot.is-active,
  .story__media-dot.is-active {
    background: var(--c-red);
    transform: scale(1.25);
  }

  .compound-meter__dot:focus-visible,
  .hero__signals-dot:focus-visible,
  .story__media-dot:focus-visible {
    outline: var(--focus-ring);
    outline-offset: 3px;
  }

  .hero__signals-dots {
    margin-top: 0.85rem;
  }
}

/* -------------------------------------------------------------------------- */
/* Model cards                                                                 */
/* -------------------------------------------------------------------------- */
.model-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .model-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.model-card {
  position: relative;
  display: block;
  min-height: 22rem;
  overflow: hidden;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  background: var(--c-surface);
  transition:
    transform var(--dur-fast) ease,
    border-color var(--dur-fast) ease;
}

.model-card:hover {
  transform: translateY(-3px);
  border-color: var(--c-red);
  color: var(--c-text);
}

.model-card__media {
  position: absolute;
  inset: 0;
}

.model-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out-expo);
}

.model-card:hover .model-card__media img {
  transform: scale(1.04);
}

.model-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 11, 0.2) 0%, rgba(10, 10, 11, 0.88) 70%);
}

.model-card__body {
  position: absolute;
  inset: auto 0 0;
  padding: 1.5rem;
  z-index: 1;
}

.model-card__body h3 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 0.5rem;
}

.model-card__body p {
  margin-bottom: 1rem;
  max-width: 28rem;
}

.model-card__spec {
  color: var(--c-text-soft);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.model-card__cta {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text);
}

.model-card__cta span {
  color: var(--c-red);
}

/* -------------------------------------------------------------------------- */
/* Crown jewel                                                                 */
/* -------------------------------------------------------------------------- */
.crown {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--c-line);
  background: var(--c-surface);
}

.crown__inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.crown__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-product);
  aspect-ratio: 3 / 4;
  border: 1px solid var(--c-line);
  background: var(--c-product-bg);
}

.crown__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.crown__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--dur-slow) var(--ease-out-expo);
}

.crown__media:hover img {
  transform: scale(1.04);
}

.crown__title {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  margin: 0.5rem 0 1rem;
}

.crown__copy {
  max-width: 34rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 900px) {
  .crown__inner {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
  }

  .crown__inner--flip {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .crown__inner--flip .crown__media {
    order: 2;
  }
}

/* -------------------------------------------------------------------------- */
/* Buy / dealer                                                                */
/* -------------------------------------------------------------------------- */
.buy-grid {
  display: grid;
  gap: 1rem;
}

.buy-grid--spaced {
  margin-top: 2rem;
}

.buy-grid--single {
  max-width: 32rem;
}

@media (min-width: 640px) {
  .buy-grid:not(.buy-grid--single) {
    grid-template-columns: 1fr 1fr;
  }
}

.buy-card {
  padding: 1.75rem;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  transition:
    transform var(--dur-fast) ease,
    border-color var(--dur-fast) ease;
}

.buy-card:hover {
  transform: translateY(-2px);
  border-color: var(--c-red);
}

.buy-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.buy-card p {
  margin-bottom: 1.25rem;
}

.dealer {
  margin-top: 2.5rem;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  background: linear-gradient(110deg, color-mix(in srgb, var(--c-red-deep) 52%, transparent), transparent 55%), var(--c-surface);
}

.dealer h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.dealer p {
  max-width: 40rem;
  margin-bottom: 1.25rem;
}

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

/* -------------------------------------------------------------------------- */
/* SKU sections (model pages)                                                  */
/* -------------------------------------------------------------------------- */
.sku {
  padding-block: var(--section-pad-y);
  border-top: 1px solid var(--c-line);
}

.variant-selector {
  margin-bottom: clamp(2.5rem, 7vw, 5rem);
}

.variant-selector__header {
  display: grid;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.variant-selector__header .section__eyebrow {
  margin-bottom: 0.5rem;
}

.variant-selector__header p {
  max-width: 34rem;
  margin: 0;
}

.variant-selector__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.variant-selector__options {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  width: 100%;
  max-width: 100%;
  padding-bottom: 0.35rem;
  scrollbar-width: thin;
  scrollbar-color: var(--c-red) var(--c-surface);
}

.variant-selector__option {
  --compound-accent: var(--c-medium);

  min-width: 10.5rem;
  display: flex;
  flex: 1 0 10.5rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1rem;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  background: var(--c-surface);
  text-align: left;
  transition:
    transform var(--dur-fast) ease,
    border-color var(--dur-fast) ease,
    background-color var(--dur-fast) ease;
}

.variant-selector__option:hover {
  transform: translateY(-2px);
  border-color: var(--c-text-dim);
}

.variant-selector__option.is-active {
  border-color: var(--compound-accent);
  background: linear-gradient(110deg, color-mix(in srgb, var(--compound-accent) 14%, transparent), transparent 72%), var(--c-surface);
}

.variant-selector__option.is-active::after {
  content: "Selected";
  color: var(--c-text);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.variant-selector__meta {
  color: var(--c-text-soft);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sku-variant {
  scroll-margin-top: calc(var(--nav-height) + 2rem);
}

.has-js .sku-variant {
  display: none;
}

.has-js .sku-variant.is-active {
  display: block;
  animation: variant-in var(--dur-med) var(--ease-out-expo);
}

@keyframes variant-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 720px) {
  .variant-selector__header {
    grid-template-columns: 1fr auto;
  }

  .variant-selector__options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
  }

  .variant-selector__option {
    min-width: 0;
  }
}

.sku__inner {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .sku__inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }
}

.sku__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 1rem;
}

.sku__size {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  line-height: 0.9;
  margin-bottom: 0.35rem;
}

.sku__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  margin-bottom: 0.25rem;
}

.sku__copy {
  margin: 1rem 0 1.5rem;
  max-width: 34rem;
}

.sku__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.sku__actions .link-secondary {
  margin-top: 0;
}

.sku__footnote {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: var(--c-text-dim);
}

/* Spec table */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0 1.5rem;
  font-size: 0.9rem;
}

.spec-table th,
.spec-table td {
  text-align: left;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--c-line);
}

.spec-table th {
  width: 45%;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-dim);
}

.spec-table td {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  color: var(--c-text);
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-product);
  aspect-ratio: 4 / 3;
  background: var(--c-product-bg);
  cursor: zoom-in;
  padding: 0;
  transition:
    border-color var(--dur-fast) ease,
    transform var(--dur-fast) ease;
}

.gallery__item:hover {
  border-color: var(--c-red);
}

.gallery__item:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 3 / 4;
}

.gallery__badge {
  position: absolute;
  bottom: 0.65rem;
  right: 0.65rem;
  z-index: 1;
  pointer-events: none;
  padding: 0.42rem 0.975rem;
  font-size: 1.05rem;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--dur-slow) var(--ease-out-expo);
}

.gallery__item:hover img {
  transform: scale(1.04);
}

/* Cross-link */
.crosslink {
  padding-block: 3rem;
  border-top: 1px solid var(--c-line);
  text-align: center;
}

.crosslink a {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  text-transform: uppercase;
}

.crosslink a span {
  color: var(--c-red);
}

/* -------------------------------------------------------------------------- */
/* Lightbox                                                                    */
/* -------------------------------------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  overflow: hidden;
  overscroll-behavior: none;
  background: #0a0a0b;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity var(--dur-med) ease,
    visibility 0s linear var(--dur-med);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity var(--dur-med) ease,
    visibility 0s linear 0s;
}

/* Definite viewport frame so % / max-* on the image actually resolve */
.lightbox__figure {
  position: absolute;
  inset: 4.5rem 3.5rem 3.5rem;
  margin: 0;
  overflow: hidden;
}

.lightbox__figure img {
  position: absolute;
  inset: 0;
  margin: auto;
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.lightbox__btn {
  position: absolute;
  z-index: 1;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  background: var(--c-surface);
  color: var(--c-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.lightbox:not(.is-open) .lightbox__btn {
  visibility: hidden;
}

.lightbox__btn:hover {
  border-color: var(--c-red);
}

.lightbox__close {
  top: 1rem;
  right: 1rem;
}

.lightbox__prev {
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__next {
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
}

body.lightbox-open {
  overflow: hidden;
  touch-action: none;
}

@media (max-width: 639px) {
  .lightbox__figure {
    inset: 4rem 3rem 3rem;
  }

  .lightbox__btn {
    width: 2.75rem;
    height: 2.75rem;
  }
}

/* -------------------------------------------------------------------------- */
/* Footer                                                                      */
/* -------------------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--c-line);
  padding-block: 3rem 2rem;
  background: var(--c-surface);
}

.site-footer__grid {
  display: grid;
  gap: 1.5rem;
}

.site-footer__contact {
  display: inline-block;
  color: var(--c-text-soft);
  font-size: 0.85rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (min-width: 640px) {
  .site-footer__grid {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
}

.site-footer .logo img {
  height: 1.35rem;
  margin-bottom: 1rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.site-footer nav a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-text-dim);
}

.site-footer__legal {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--c-line);
  font-size: 0.8rem;
  color: var(--c-text-dim);
}

.site-footer__legal p {
  font-size: inherit;
  margin-bottom: 0.5rem;
}

.site-footer__compliance {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin: 1rem 0 0.75rem;
}

.site-footer__compliance a {
  display: inline-flex;
  line-height: 0;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  transition: opacity var(--dur-fast) ease;
}

.site-footer__compliance a:hover {
  opacity: 0.9;
  color: inherit;
}

.site-footer__compliance img {
  width: 250px;
  max-width: min(250px, 100%);
  height: auto;
  aspect-ratio: 250 / 50;
  object-fit: contain;
}

.site-footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
}

.site-footer__legal-links a,
.site-footer__legal-links button,
button.linkish {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  color: var(--c-text-soft);
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  cursor: pointer;
}

.site-footer__legal-links a:hover,
.site-footer__legal-links button:hover,
button.linkish:hover {
  color: var(--c-text);
}

.site-footer__legal-links button:focus-visible,
button.linkish:focus-visible {
  outline: var(--focus-ring);
  outline-offset: 3px;
}

/* -------------------------------------------------------------------------- */
/* Legal / privacy page                                                        */
/* -------------------------------------------------------------------------- */
.legal-page {
  padding-top: calc(var(--nav-height) + 2rem);
}

.legal-page__inner {
  max-width: 44rem;
}

.legal-page__meta {
  margin: 1.5rem 0 2.5rem;
  padding: 1rem 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  color: var(--c-text-dim);
  font-size: 0.9rem;
}

.legal-page__meta p {
  margin: 0.35rem 0;
  font-size: inherit;
}

.legal-copy h2 {
  margin: 2.25rem 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.legal-copy p,
.legal-copy li {
  color: var(--c-text-soft);
  line-height: 1.65;
}

.legal-copy ul {
  margin: 0.75rem 0 1.25rem;
  padding-left: 1.25rem;
}

.legal-copy li {
  margin-bottom: 0.45rem;
}

.legal-copy a {
  color: var(--c-text);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

/* -------------------------------------------------------------------------- */
/* Cookie consent                                                              */
/* -------------------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 10050;
  padding: var(--gutter);
  pointer-events: none;
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner__panel {
  pointer-events: auto;
  max-width: 40rem;
  margin-left: auto;
  padding: 1.25rem 1.35rem 1.35rem;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--c-surface) 92%, transparent);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.cookie-banner__title {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.cookie-banner__text {
  margin: 0 0 1rem;
  color: var(--c-text-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

.cookie-banner__text a {
  color: var(--c-text);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cookie-banner__actions .btn {
  flex: 1 1 auto;
  min-width: 7.5rem;
  justify-content: center;
}

.cookie-banner__prefs {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--c-line);
}

.cookie-banner__prefs[hidden] {
  display: none !important;
}

.cookie-pref {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem 1rem;
  align-items: start;
  margin-bottom: 0.9rem;
}

.cookie-pref:last-child {
  margin-bottom: 0;
}

.cookie-pref__label {
  font-weight: 600;
  color: var(--c-text);
}

.cookie-pref__desc {
  grid-column: 1 / 2;
  margin: 0;
  color: var(--c-text-dim);
  font-size: 0.82rem;
  line-height: 1.45;
}

.cookie-pref input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
  accent-color: var(--c-red);
}

.cookie-pref input[type="checkbox"]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

@media (max-width: 640px) {
  .cookie-banner {
    padding: 0.75rem;
  }

  .cookie-banner__panel {
    max-width: none;
    margin: 0;
  }

  .cookie-banner__actions .btn {
    flex: 1 1 100%;
  }
}

/* -------------------------------------------------------------------------- */
/* 404                                                                         */
/* -------------------------------------------------------------------------- */
.page-404 {
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: var(--gutter);
}

.page-404 h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  margin: 1.5rem 0 1rem;
}

.page-404__actions {
  margin-top: 1.5rem;
}

/* -------------------------------------------------------------------------- */
/* Reveal                                                                      */
/* -------------------------------------------------------------------------- */
.reveal {
  opacity: 1;
  transform: none;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(var(--reveal-offset));
  transition:
    opacity var(--dur-slow) var(--ease-out-expo),
    transform var(--dur-slow) var(--ease-out-expo);
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > .reveal:nth-child(1) {
  transition-delay: 0ms;
}
.reveal-stagger > .reveal:nth-child(2) {
  transition-delay: 70ms;
}
.reveal-stagger > .reveal:nth-child(3) {
  transition-delay: 140ms;
}
.reveal-stagger > .reveal:nth-child(4) {
  transition-delay: 210ms;
}

/* -------------------------------------------------------------------------- */
/* Divider hairline                                                            */
/* -------------------------------------------------------------------------- */
.hairline {
  height: 1px;
  background: var(--c-line);
  transform: rotate(-2deg);
  transform-origin: left center;
  margin-block: 0;
  opacity: 0.9;
}

/* -------------------------------------------------------------------------- */
/* Utility                                                                     */
/* -------------------------------------------------------------------------- */
.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;
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  max-width: 100%;
}

/* -------------------------------------------------------------------------- */
/* Terrain finder (index)                                                      */
/* -------------------------------------------------------------------------- */
.terrain-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  margin-top: 2rem;
  font-size: 0.95rem;
}

.terrain-table th,
.terrain-table td {
  text-align: left;
  padding: 1rem 1.25rem 1rem 0;
  border-bottom: 1px solid var(--c-line);
  vertical-align: middle;
}

.terrain-table thead th {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-dim);
}

.terrain-table tbody th {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--c-text);
  max-width: 20rem;
}

.terrain-table tbody a {
  font-weight: 600;
  color: var(--c-text);
  text-decoration-color: var(--c-red);
  text-underline-offset: 4px;
}

.terrain-table tbody a:hover {
  color: var(--c-red-hot);
}

.terrain-table .badge {
  margin-left: 0.5rem;
}

/* -------------------------------------------------------------------------- */
/* Crown extras                                                                */
/* -------------------------------------------------------------------------- */
.crown__points {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  display: grid;
  gap: 0.75rem;
}

.crown__points li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--c-text-soft);
}

.crown__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--c-red);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

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

/* -------------------------------------------------------------------------- */
/* FAQ (index)                                                                 */
/* -------------------------------------------------------------------------- */
.faq {
  margin-top: 2rem;
  border-top: 1px solid var(--c-line);
}

.faq__item {
  border-bottom: 1px solid var(--c-line);
}

.faq__item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  transition: color var(--dur-fast) ease;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  flex: 0 0 auto;
  font-family: var(--font-body);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--c-red);
  transition: transform var(--dur-med) var(--ease-out-expo);
}

.faq__item[open] summary::after {
  transform: rotate(45deg);
}

.faq__item summary:hover {
  color: var(--c-red-hot);
}

.faq__item summary:focus-visible {
  outline: var(--focus-ring);
  outline-offset: 2px;
}

.faq__item p {
  margin: 0 0 1.5rem;
  max-width: 60ch;
  color: var(--c-text-soft);
}

.faq__item a {
  color: var(--c-text);
  font-weight: 600;
  text-decoration-color: var(--c-red);
  text-underline-offset: 4px;
}

/* -------------------------------------------------------------------------- */
/* Range at a glance (model pages)                                             */
/* -------------------------------------------------------------------------- */
.range-glance {
  margin-top: 3.5rem;
}

.range-glance__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

.range-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.range-table th,
.range-table td {
  text-align: left;
  padding: 0.85rem 1.25rem 0.85rem 0;
  border-bottom: 1px solid var(--c-line);
  vertical-align: middle;
}

.range-table thead th {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-dim);
}

.range-table td {
  color: var(--c-text-soft);
}

.range-table td a {
  font-weight: 600;
  color: var(--c-text);
  text-decoration-color: var(--c-red);
  text-underline-offset: 4px;
}

.range-table td a:hover {
  color: var(--c-red-hot);
}

.crosslink p {
  margin: 0 0 0.5rem;
  color: var(--c-text-dim);
  font-size: 0.95rem;
}

/* -------------------------------------------------------------------------- */
/* 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;
  }

  .reveal,
  .compound-step,
  .hero__title,
  .hero__sub,
  .hero__actions {
    opacity: 1;
    transform: none;
  }

  .hero__signals {
    opacity: 1;
    transform: none;
  }

  .compound-meter__fill {
    width: 100%;
    transition: none;
  }

  .hero__bg {
    transform: none !important;
  }
}
