/* ============================================================
   AUTOFLASHER — TACTICAL TELEMETRY INDUSTRIAL REDESIGN
   Dark mode · Hazard Red · JetBrains Mono · 90° corners
   Motion: Emil Kowalski's rules — crisp, snappy, mechanical
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

[hidden] {
  display: none !important;
}

:root {
  /* SUBSTRATE */
  --bg:           #0A0A0A;
  --bg-surface:   #111111;
  --bg-elevated:  #161616;
  --line:         #1F1F1F;
  --line-bright:  #2F2F2F;

  /* TEXT */
  --fg:           #EAEAEA;
  --fg-muted:     #8A8A8A;
  --fg-dim:       #4A4A4A;
  --fg-faint:     #2A2A2A;

  /* HAZARD */
  --red:          #E30613;
  --red-hot:      #FF2A2A;
  --red-deep:     #9A0410;

  /* SECONDARY — Champagne Gold (premium, gedeckt) */
  --gold:         #C9A961;
  --gold-hot:     #DEC07A;
  --gold-deep:    #8A7437;
  --signal:       #C9A961;

  /* GEOMETRY */
  --max:          1440px;
  --gutter:       32px;

  /* MOTION (Emil) */
  --ease-out:    cubic-bezier(0.23, 1, 0.32, 1);
  --ease-io:     cubic-bezier(0.77, 0, 0.175, 1);
  --t-press:     120ms;
  --t-hover:     150ms;
  --t-reveal:    240ms;

  /* TYPOGRAPHY */
  --sans:        'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:        'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;
}

html { scroll-behavior: smooth; scroll-padding-top: 120px; }
#autoflasher-lite,
#autoflasher-pro,
#autofiles-credits { scroll-margin-top: 120px; }
body {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
hr { border: 0; border-top: 1px solid var(--line); }

::selection { background: var(--red); color: #fff; }

/* ============================================================
   TYPOGRAPHIC PRIMITIVES
   ============================================================ */

.mono {
  font-family: var(--mono);
  font-feature-settings: "tnum" 1, "zero" 1;
}

.label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
}
.label--red { color: var(--red); }
.label--bright { color: var(--fg); }

.massive {
  font-family: var(--sans);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.0;
  text-transform: uppercase;
  color: var(--fg);
}

.crosshair::before,
.crosshair::after {
  content: '+';
  position: absolute;
  font-family: var(--mono);
  font-size: 14px;
  color: var(--red);
  pointer-events: none;
  line-height: 0;
}
.crosshair-tl::before { top: -1px; left: -1px; transform: translate(-50%, -50%); }
.crosshair-tr::after { top: -1px; right: -1px; transform: translate(50%, -50%); }
.crosshair-bl { position: relative; }
.crosshair-bl::before {
  content: '+'; position: absolute; bottom: -1px; left: -1px;
  transform: translate(-50%, 50%); font-family: var(--mono); font-size: 14px;
  color: var(--red); line-height: 0;
}
.crosshair-br::after {
  content: '+'; position: absolute; bottom: -1px; right: -1px;
  transform: translate(50%, 50%); font-family: var(--mono); font-size: 14px;
  color: var(--red); line-height: 0;
}

/* ============================================================
   LAYOUT
   ============================================================ */

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}

main { display: block; min-height: 60vh; }

.skip-link {
  position: absolute;
  top: -40px; left: 0;
  background: var(--red); color: #fff;
  padding: 10px 16px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 10000;
  transition: top var(--t-hover) var(--ease-out);
}
.skip-link:focus { top: 0; }

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  border-bottom: 1px solid var(--line);
  transition: background var(--t-hover) var(--ease-out), border-color var(--t-hover) var(--ease-out);
}
.site-header--scrolled {
  background: rgba(10, 10, 10, 0.98);
  border-bottom-color: var(--line-bright);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 64px;
  display: flex;
  align-items: center;
  gap: 34px;
}
.site-logo {
  flex: 0 0 auto;
  width: 172px;
  display: inline-flex;
  align-items: center;
}
.site-logo img {
  width: 172px;
  height: auto;
  max-width: none;
  display: block;
}

.main-nav { flex: 1 1 auto; min-width: 0; }
.main-nav > ul { display: flex; align-items: center; gap: 4px; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a,
.main-nav > ul > li > .nav-trigger {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  padding: 8px 12px;
  position: relative;
  transition: color var(--t-hover) var(--ease-out);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  white-space: nowrap;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active,
.main-nav > ul > li:hover > .nav-trigger,
.main-nav > ul > li:focus-within > .nav-trigger { color: var(--fg); }
.main-nav > ul > li > a.active::before,
.main-nav > ul > li.is-active > .nav-trigger::before {
  content: '';
  position: absolute;
  left: 12px; right: 12px;
  bottom: 4px;
  height: 1px;
  background: var(--red);
}
.nav-trigger::after {
  content: '↓';
  font-size: 9px;
  opacity: 0.4;
  transition: transform var(--t-hover) var(--ease-out), opacity var(--t-hover) var(--ease-out);
}
.main-nav > ul > li:hover > .nav-trigger::after,
.main-nav > ul > li:focus-within > .nav-trigger::after { opacity: 1; transform: rotate(180deg); }

/* Mega Menu */
.nav-mega {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 16px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 180ms cubic-bezier(0.23, 1, 0.32, 1), transform 180ms cubic-bezier(0.23, 1, 0.32, 1), visibility 180ms;
  z-index: 1001;
  list-style: none;
  pointer-events: none;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}
.main-nav > ul > li:hover > .nav-mega,
.main-nav > ul > li:focus-within > .nav-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-mega li { display: block; }
.nav-mega a {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  padding: 9px 18px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--fg-muted);
  transition: background var(--t-hover) var(--ease-out), color var(--t-hover) var(--ease-out);
  white-space: nowrap;
}
.nav-mega a:hover { background: var(--bg-surface); color: var(--fg); }
.nav-mega__num {
  color: var(--red);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.06em;
}
.nav-mega__label { text-transform: none; }

/* ─── Mobile Hamburger + Slide-Drawer ─── */
.nav-burger {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--line-bright);
  cursor: pointer;
  padding: 0;
  position: relative;
}
.nav-burger span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1.5px;
  background: var(--fg);
  transition: transform 250ms cubic-bezier(0.23, 1, 0.32, 1), opacity 200ms ease, top 250ms cubic-bezier(0.23, 1, 0.32, 1);
}
.nav-burger span:nth-child(1) { top: 13px; }
.nav-burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-burger span:nth-child(3) { top: 25px; }
.nav-burger.is-open span { background: var(--red); }
.nav-burger.is-open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { top: 50%; transform: translateY(-50%) rotate(-45deg); }

.mobile-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(380px, 88vw);
  height: 100dvh;
  background: var(--bg);
  border-left: 1px solid var(--line-bright);
  z-index: 1500;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(0.23, 1, 0.32, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}
.mobile-drawer.is-open {
  transform: translateX(0);
  pointer-events: auto;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.6);
}
.mobile-drawer__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1499;
  opacity: 0;
  visibility: hidden;
  transition: opacity 280ms ease, visibility 280ms ease;
}
.mobile-drawer__backdrop.is-open {
  opacity: 1;
  visibility: visible;
}
.mobile-drawer__head {
  padding: 20px 24px 18px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.mobile-drawer__head .red { color: var(--red); }
.mobile-drawer__body {
  padding: 16px 0;
  flex: 1;
}
.mobile-drawer__group {
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
}
.mobile-drawer__group-title {
  display: block;
  padding: 12px 24px 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.mobile-drawer__item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  padding: 12px 24px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--fg-muted);
  transition: background var(--t-hover) var(--ease-out), color var(--t-hover) var(--ease-out);
  min-height: 48px;
  align-items: center;
}
.mobile-drawer__item:hover,
.mobile-drawer__item.active {
  background: var(--bg-surface);
  color: var(--fg);
}
.mobile-drawer__item-num {
  color: var(--red);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.05em;
}
.mobile-drawer__foot {
  padding: 20px 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 880px) {
  .main-nav { display: none; }
  .nav-burger { display: inline-flex; align-items: center; justify-content: center; }
}
@media (min-width: 881px) {
  .mobile-drawer, .mobile-drawer__backdrop { display: none; }
}

.header-actions { flex: 0 0 auto; display: flex; align-items: center; gap: 8px; }

@media (max-width: 1180px) and (min-width: 881px) {
  .header-inner {
    gap: 18px;
  }
  .main-nav > ul > li > a,
  .main-nav > ul > li > .nav-trigger {
    padding-inline: 7px;
    font-size: 10px;
    letter-spacing: 0.055em;
  }
}

@media (max-width: 1120px) and (min-width: 881px) {
  .site-logo,
  .site-logo img {
    width: 132px;
  }
  .header-actions {
    display: none;
  }
}

@media (max-width: 980px) and (min-width: 881px) {
  .header-inner {
    gap: 10px;
  }
  .site-logo,
  .site-logo img {
    width: 118px;
  }
  .main-nav > ul {
    gap: 0;
  }
  .main-nav > ul > li > a,
  .main-nav > ul > li > .nav-trigger {
    padding-inline: 5px;
    font-size: 9.2px;
    letter-spacing: 0.035em;
  }
}

@media (max-width: 900px) and (min-width: 881px) {
  .header-inner {
    gap: 6px;
  }
  .site-logo,
  .site-logo img {
    width: 108px;
  }
  .main-nav > ul > li > a,
  .main-nav > ul > li > .nav-trigger {
    padding-inline: 4px;
    font-size: 8.8px;
    letter-spacing: 0.02em;
  }
}

/* ============================================================
   BUTTONS — industrial, snap
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 20px;
  border: 1px solid var(--line-bright);
  background: transparent;
  color: var(--fg);
  border-radius: 0;
  transition: background var(--t-hover) var(--ease-out),
              border-color var(--t-hover) var(--ease-out),
              color var(--t-hover) var(--ease-out),
              transform var(--t-press) var(--ease-out);
  white-space: nowrap;
  position: relative;
}
.btn:hover {
  background: var(--bg-elevated);
  border-color: var(--fg-dim);
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.btn-primary:hover {
  background: var(--red-hot);
  border-color: var(--red-hot);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line-bright);
  color: var(--fg-muted);
}
.btn-ghost:hover {
  border-color: var(--fg-dim);
  color: var(--fg);
}

.btn-sm { padding: 8px 14px; font-size: 10px; }
.btn-block { width: 100%; padding-top: 14px; padding-bottom: 14px; }

.btn::after {
  content: '→';
  font-family: var(--mono);
  font-size: 11px;
  margin-left: 0;
  width: 0;
  overflow: hidden;
  transition: width var(--t-hover) var(--ease-out), margin-left var(--t-hover) var(--ease-out);
}
.btn-primary:hover::after,
.btn-arrow:hover::after { width: 14px; margin-left: 4px; }

/* ============================================================
   HERO — video background, massive type, monospace metadata
   ============================================================ */

.hero {
  position: relative;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  isolation: isolate;
  overflow: hidden;
  min-height: 720px;
}
.hero__video {
  position: absolute;
  inset: -9% 0 auto 0;
  width: 100%;
  height: 114%;
  object-fit: cover;
  object-position: center 42%;
  z-index: 0;
  opacity: 0.58;
  filter: saturate(0.92) contrast(1.08);
  pointer-events: none;
}
.hero__aurora {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.68;
  filter: saturate(1.18) blur(0.2px);
}
.hero__particles {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.38;
  mix-blend-mode: screen;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(10,10,10,0.44) 0%,
      rgba(10,10,10,0.7) 60%,
      var(--bg) 100%
    ),
    radial-gradient(ellipse 50% 70% at 50% 30%, rgba(227,6,19,0.18) 0%, transparent 70%);
}
.hero__scanlines {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    0deg,
    transparent 0,
    transparent 3px,
    rgba(0,0,0,0.18) 3px,
    rgba(0,0,0,0.18) 4px
  );
  opacity: 0.35;
  mix-blend-mode: multiply;
}
.hero > .container { position: relative; z-index: 3; }

.hero__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0 0;
  border-top: 0;
  flex-wrap: wrap;
  gap: 12px;
}
.hero__meta-item {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.hero__meta-item strong { color: var(--fg); font-weight: 600; }
.hero__meta-item--red { color: var(--red); }

.hero__top {
  padding: 80px 0 60px;
  position: relative;
}
.hero__top::after {
  content: '';
  position: absolute;
  left: var(--gutter); right: var(--gutter);
  bottom: 0;
  height: 1px;
  background: var(--line);
}

.hero h1 {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(3rem, 9vw, 8rem);
  line-height: 1.0;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  color: var(--fg);
  margin: 0;
  max-width: 16ch;
}
.hero h1 .red { color: var(--red); }
.hero h1 .outline {
  -webkit-text-stroke: 1.5px var(--fg);
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero__sub {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.86);
  margin-top: 32px;
  padding: 12px 16px;
  max-width: 56ch;
  line-height: 1.7;
  background:
    radial-gradient(ellipse 70% 120% at 16% 42%, rgba(227,6,19,0.2), transparent 64%),
    radial-gradient(ellipse 52% 110% at 86% 62%, rgba(201,169,97,0.14), transparent 68%),
    rgba(10,10,10,0.34);
  border-left: 1px solid rgba(227,6,19,0.48);
  box-shadow:
    0 18px 42px rgba(0,0,0,0.34),
    inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  text-shadow: 0 1px 10px rgba(0,0,0,0.72);
}
.hero__sub strong { color: var(--fg); font-weight: 800; }

/* PRODUCT SPEC GRID (Lite + Pro side-by-side) */
.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 64px;
}

.spec-card {
  background: var(--bg);
  padding: 26px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: background var(--t-hover) var(--ease-out);
}
.spec-card > .btn { margin-top: auto; }
.spec-card:hover { background: var(--bg-surface); }
.spec-card.pro { border-top: 2px solid var(--red); margin-top: -1px; }

.spec-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
  gap: 16px;
}
.spec-card__id {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.spec-card__id strong { color: var(--fg-muted); font-weight: 500; }
.spec-card__tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid var(--red);
  padding: 3px 8px;
  font-weight: 600;
}
.spec-card__tag--ghost {
  color: var(--fg-muted);
  border-color: var(--line-bright);
}

.spec-card__name {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 8px;
  position: relative;
}
.spec-card__name::after { content: none; }

/* ============================================================
   BRAND SYSTEM — Autoflasher Lite/Pro/Master als echte Marken
   ============================================================ */

/* Brand-Wrap: macht jeden Produktnamen typografisch zur Marke */
.brand {
  font-weight: 700;
  white-space: nowrap;
  color: inherit;
}
.brand::after { content: none; }
.brand-reg,
.reg {
  font-size: 0.6em;
  vertical-align: super;
  color: var(--red);
  margin-left: 1px;
  font-weight: 600;
  opacity: 0.85;
}
.brand-reg {
  display: inline-block;
  line-height: 0;
  transform: translateY(-0.08em);
}
.brand-pro {
  color: var(--red);
}
.btn-primary .brand-pro {
  color: currentColor;
}
.product-brand {
  display: inline-block;
  white-space: nowrap;
}
.product-brand .brand-reg {
  margin-left: 0.035em;
}
.btn .product-brand {
  letter-spacing: 0.025em;
}
.brand-logo-word {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
  letter-spacing: -0.035em;
}
.brand-logo-word span {
  font-weight: 950;
  font-style: normal;
}
.brand-logo-word em {
  font-weight: 500;
  font-style: normal;
  letter-spacing: -0.02em;
}
.hero h1 .brand-reg,
.shop-hero h1 .brand-reg,
.spec-card__name .brand-reg,
.product-page__name .brand-reg,
.master-card__name .brand-reg,
.product-finder__result h3 .brand-reg {
  font-size: 0.32em;
  margin-left: 0.04em;
  opacity: 1;
  transform: translateY(-0.34em);
}

.master-gold-word {
  display: inline-block;
  color: var(--gold-hot);
  background:
    radial-gradient(circle at 18% 36%, rgba(255, 237, 178, 0.95) 0 8%, transparent 21%),
    radial-gradient(circle at 78% 42%, rgba(201, 126, 27, 0.72) 0 12%, transparent 30%),
    linear-gradient(105deg, #8e621f 0%, #f6d579 28%, #fff4c5 45%, #d59a33 62%, #7c531a 100%);
  background-size: 180% 180%, 220% 220%, 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 28px rgba(225, 175, 72, 0.2);
  filter: drop-shadow(0 0 18px rgba(201, 169, 97, 0.12));
  animation: masterGoldMesh 7s ease-in-out infinite alternate;
}

@keyframes masterGoldMesh {
  0% { background-position: 0% 35%, 100% 50%, 0% 50%; }
  100% { background-position: 100% 58%, 0% 40%, 100% 50%; }
}

.spec-card.pro .spec-card__name { color: var(--fg); }
.spec-card__caption {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}

.spec-card__image {
  display: flex;
  justify-content: center;
  align-items: center;
  height: clamp(210px, 20vw, 285px);
  margin: 10px 0 22px;
  border: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 50% 56%, rgba(227, 6, 19, 0.12), transparent 42%),
    radial-gradient(ellipse at 50% 76%, rgba(201, 169, 97, 0.11), transparent 36%),
    repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(255,255,255,0.012) 12px, rgba(255,255,255,0.012) 13px),
    rgba(7, 7, 7, 0.42);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.spec-card__image::before,
.spec-card__image::after {
  content: '+';
  position: absolute;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--red);
  line-height: 0;
}
.spec-card__image::before { top: 0; left: 0; transform: translate(-50%, -50%); }
.spec-card__image::after { bottom: 0; right: 0; transform: translate(50%, 50%); }
.spec-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 32px rgba(0,0,0,0.68));
  transition: transform 400ms var(--ease-out);
}
.spec-card__image img[src*="anniversary"] {
  width: 88%;
  height: 88%;
  mix-blend-mode: lighten;
  opacity: 0.98;
  -webkit-mask-image: radial-gradient(ellipse 78% 72% at 50% 52%, #000 0 58%, rgba(0,0,0,0.84) 74%, transparent 100%);
  mask-image: radial-gradient(ellipse 78% 72% at 50% 52%, #000 0 58%, rgba(0,0,0,0.84) 74%, transparent 100%);
}
.spec-card:hover .spec-card__image img { transform: scale(1.025); }

.spec-table {
  font-family: var(--mono);
  font-size: 12px;
  margin-bottom: 18px;
  border-top: 1px solid var(--line);
}
.spec-table__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.spec-table__key {
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 11px;
}
.spec-table__val {
  color: var(--fg);
  font-weight: 500;
  text-align: right;
  letter-spacing: 0.02em;
}
.spec-table__val.ok { color: var(--fg); }
.spec-table__val.no { color: var(--fg-dim); }
.spec-table__val.hot { color: var(--red); font-weight: 600; }
.spec-table__val.pro-only {
  color: var(--red);
  border: 1px solid rgba(227, 6, 19, 0.55);
  background: rgba(227, 6, 19, 0.08);
  padding: 3px 9px;
  font-weight: 700;
  line-height: 1.1;
  box-shadow: inset 0 0 0 1px rgba(227, 6, 19, 0.08);
}

.spec-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 18px 0 6px;
  font-family: var(--mono);
  flex-wrap: wrap;
  padding-top: 4px;
  min-height: 3.25rem;
}
.spec-price__num {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(2.2rem, 3.6vw, 3rem);
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  display: inline-block;
  padding: 0.05em 0;
}
.spec-card.pro .spec-price__num { color: var(--red); }
.spec-price__old {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--fg-dim);
  text-decoration: line-through;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}
.spec-price__unit {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.spec-price__note {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.spec-price__note .red { color: var(--red); }

.spec-price-cluster {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(168px, 0.42fr);
  gap: 14px;
  align-items: stretch;
  margin: 20px 0 22px;
}
.spec-price-cluster .spec-price {
  margin: 0 0 6px;
  min-height: 0;
}
.spec-price-cluster .spec-price__note {
  margin-bottom: 0;
}
.spec-credit-pill {
  --mx: 50%;
  --my: 50%;
  --pill-accent: rgba(234,234,234,0.72);
  --pill-accent-soft: rgba(234,234,234,0.16);
  --pill-accent-faint: rgba(234,234,234,0.06);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-content: stretch;
  min-height: 84px;
  padding: 12px 14px 11px;
  font-family: var(--mono);
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid var(--pill-accent-soft);
  background:
    radial-gradient(circle at var(--mx) var(--my), var(--pill-accent-soft), transparent 44%),
    linear-gradient(135deg, rgba(255,255,255,0.075), rgba(255,255,255,0.012) 48%, rgba(0,0,0,0.22)),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  transition:
    border-color 180ms var(--ease-out),
    transform 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out),
    color 180ms var(--ease-out);
  isolation: isolate;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.09),
    inset 0 -1px 0 rgba(0,0,0,0.42),
    0 12px 24px rgba(0,0,0,0.22);
}
.spec-credit-pill::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.56;
  background:
    linear-gradient(118deg, transparent 0%, transparent 34%, rgba(255,255,255,0.18) 46%, transparent 58%, transparent 100%),
    repeating-linear-gradient(135deg, transparent 0, transparent 8px, rgba(255,255,255,0.035) 8px, rgba(255,255,255,0.035) 9px);
  transform: translateX(-36%);
  transition: transform 520ms var(--ease-out), opacity 180ms var(--ease-out);
}
.spec-credit-pill::after {
  content: '';
  position: absolute;
  inset: 1px;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.045);
  background:
    linear-gradient(90deg, var(--pill-accent-faint), transparent 26%, transparent 74%, var(--pill-accent-faint));
  mix-blend-mode: screen;
  opacity: 0.7;
}
.spec-credit-pill:hover {
  transform: translateY(-2px);
}
.spec-credit-pill:hover::before {
  opacity: 0.9;
  transform: translateX(28%);
}
.spec-credit-pill__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
}
.spec-credit-pill__kicker {
  font-size: 8px;
  letter-spacing: 0.12em;
  color: rgba(234,234,234,0.58);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.spec-credit-pill__seal {
  flex: 0 0 auto;
  border: 1px solid var(--pill-accent-soft);
  padding: 2px 5px;
  font-size: 7px;
  line-height: 1.1;
  letter-spacing: 0.12em;
  color: var(--pill-accent);
  background: var(--pill-accent-faint);
}
.spec-credit-pill__count {
  position: relative;
  z-index: 1;
  font-family: var(--sans);
  align-self: center;
  font-size: clamp(2rem, 2.6vw, 2.75rem);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.045em;
  color: var(--pill-accent);
  text-shadow: 0 8px 24px rgba(0,0,0,0.42);
}
.spec-credit-pill__sub {
  position: relative;
  z-index: 1;
  display: block;
  padding-top: 7px;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 8px;
  letter-spacing: 0.1em;
  color: rgba(234,234,234,0.55);
  white-space: nowrap;
}
.spec-credit-pill--silver {
  --pill-accent: #f3f6fb;
  --pill-accent-soft: rgba(215, 224, 237, 0.34);
  --pill-accent-faint: rgba(215, 224, 237, 0.08);
  color: #f0f3f7;
  border-color: rgba(218, 226, 238, 0.45);
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(255,255,255,0.2), transparent 44%),
    linear-gradient(135deg, rgba(230, 236, 246, 0.18), rgba(74, 82, 95, 0.08) 52%, rgba(0,0,0,0.24)),
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.008));
}
.spec-credit-pill--silver:hover {
  border-color: rgba(245, 248, 255, 0.76);
  box-shadow:
    0 0 34px rgba(207, 216, 232, 0.18),
    0 18px 32px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.14);
}
.spec-credit-pill--gold {
  --pill-accent: var(--gold-hot);
  --pill-accent-soft: rgba(222, 192, 122, 0.34);
  --pill-accent-faint: rgba(222, 192, 122, 0.1);
  color: var(--gold);
  border-color: rgba(222, 192, 122, 0.58);
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(255, 220, 135, 0.24), transparent 44%),
    linear-gradient(135deg, rgba(222, 192, 122, 0.2), rgba(95, 70, 28, 0.08) 48%, rgba(227, 6, 19, 0.08)),
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.008));
}
.spec-credit-pill--gold:hover {
  border-color: rgba(247, 211, 122, 0.9);
  box-shadow:
    0 0 40px rgba(219, 185, 106, 0.22),
    0 18px 34px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.14);
}
.spec-credit-pill--inline,
.product-credit-pill {
  margin: 0 0 20px;
  width: min(100%, 240px);
}
.spec-card .spec-credit-pill--inline {
  width: 100%;
}
.product-credit-pill {
  min-height: 96px;
}

.spec-bundle {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.spec-bundle__main {
  color: var(--fg);
  font-weight: 600;
}
.spec-bundle__val {
  color: var(--fg-muted);
  font-size: 10px;
}

/* ============================================================
   HERO CTA + TRUST BAR — B2B Premium-Signale
   ============================================================ */

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.trust-bar {
  position: relative;
  z-index: 3;
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  background-color: var(--line);
}
.trust-bar__item {
  background: var(--bg);
  padding: 20px 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  transition: background var(--t-hover) var(--ease-out);
}
.trust-bar__item:hover {
  background: var(--bg-surface);
}
.trust-bar__num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  padding-top: 1px;
}
.trust-bar__label {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.015em;
  color: var(--fg);
  margin-bottom: 4px;
  line-height: 1.2;
}
.trust-bar__sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--fg-muted);
  line-height: 1.5;
}
@media (max-width: 880px) {
  .trust-bar { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .trust-bar { grid-template-columns: 1fr; }
}

/* ============================================================
   MASTER STRIP (kompakte Master-Sektion unter Lite + Pro)
   ============================================================ */

.master-strip {
  margin-top: 32px;
  border: 1px solid var(--line);
  background: var(--bg-surface);
  padding: 24px 28px;
  position: relative;
  display: block;
}
.master-strip::before {
  content: '+';
  position: absolute;
  top: 0; left: 0;
  transform: translate(-50%, -50%);
  font-family: var(--mono);
  font-size: 12px;
  color: var(--red);
  line-height: 0;
}
.master-strip__head {
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  gap: 32px;
  align-items: center;
}
.master-strip__eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 6px;
}
.master-strip__title {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--fg);
  line-height: 1.1;
}
.master-strip__sub {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  line-height: 1.6;
  color: var(--fg-muted);
}
@media (max-width: 880px) {
  .master-strip__head { grid-template-columns: 1fr; gap: 16px; }
  .master-strip__head .btn { justify-self: flex-start; }
}

/* ============================================================
   ANNIVERSARY SPOTLIGHT — 10 Jahre Autoflasher
   ============================================================ */

.anniversary {
  position: relative;
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(4rem, 9vw, 8rem) 0;
  overflow: hidden;
  isolation: isolate;
}
.anniversary::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 30% 50%, rgba(227, 6, 19, 0.10), transparent 70%),
    radial-gradient(ellipse 50% 50% at 80% 50%, rgba(201, 169, 97, 0.06), transparent 65%);
  z-index: -2;
  pointer-events: none;
}
.anniversary__noise {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0, transparent 3px, rgba(255,255,255,0.015) 3px, rgba(255,255,255,0.015) 4px);
  opacity: 0.6;
  z-index: -1;
  pointer-events: none;
}
.anniversary__corner {
  position: absolute;
  width: 22px; height: 22px;
  border: 2px solid var(--red);
  opacity: 0.85;
}
.anniversary__corner--tl { top: 20px; left: 20px; border-right: 0; border-bottom: 0; }
.anniversary__corner--tr { top: 20px; right: 20px; border-left: 0; border-bottom: 0; }
.anniversary__corner--bl { bottom: 20px; left: 20px; border-right: 0; border-top: 0; }
.anniversary__corner--br { bottom: 20px; right: 20px; border-left: 0; border-top: 0; }

.anniversary__head {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 1rem 2rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.anniversary__bracket {
  color: var(--gold);
  font-weight: 700;
}
.anniversary__dates {
  color: var(--fg);
}
.anniversary__dates .red {
  color: var(--red);
  font-size: 1.2em;
  vertical-align: middle;
  margin-right: 0.4em;
}

.anniversary__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.anniversary__num {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(9rem, 22vw, 22rem);
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: var(--fg);
  position: relative;
  text-align: center;
  padding: 0.05em 0;
}
.anniversary__num::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -0.05em;
  transform: translateX(-50%);
  width: 60%;
  height: 6px;
  background: var(--red);
}
.anniversary__h {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  line-height: 1.0;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  color: var(--fg);
  margin: 0 0 1.4rem;
  padding: 0.05em 0;
}
.anniversary__h span {
  display: block;
}
.anniversary__h .brand-reg {
  font-size: 0.45em;
  margin-left: 0.05em;
  opacity: 1;
}
.anniversary__sub {
  font-family: var(--mono);
  font-size: clamp(0.78rem, 1vw, 0.92rem);
  line-height: 1.75;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  color: var(--fg-muted);
  max-width: 64ch;
  margin: 0;
}

.anniversary__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.anniversary__stat {
  background: var(--bg);
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-align: left;
}
.anniversary__stat-num {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(3rem, 5.5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--fg);
  padding: 0.05em 0;
}
.anniversary__stat-suffix {
  color: var(--gold);
  font-size: 0.55em;
  font-weight: 800;
  vertical-align: super;
  margin-left: 0.04em;
}
.anniversary__stat-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.anniversary__cta {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 1rem 1.5rem;
}
.anniversary__cta .btn { flex: 0 0 auto; }
.anniversary__cta-note {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-left: auto;
}
.anniversary__cta-note .red {
  color: var(--red);
  font-size: 1.2em;
  vertical-align: middle;
  margin-right: 0.4em;
}
.anniversary__cta-note .brand { color: var(--fg); }

@media (max-width: 860px) {
  .anniversary__hero {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  .anniversary__num { text-align: center; }
  .anniversary__sub { margin: 0 auto; }
  .anniversary__stats { grid-template-columns: repeat(2, 1fr); }
  .anniversary__cta-note { margin-left: 0; }
  .anniversary__head { font-size: 0.68rem; letter-spacing: 0.14em; }
}
@media (max-width: 480px) {
  .anniversary__stats { grid-template-columns: 1fr; }
  .anniversary__corner { width: 16px; height: 16px; }
}

/* ============================================================
   MARQUEE (telemetry ticker)
   ============================================================ */

.marquee {
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}
.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  pointer-events: none;
  z-index: 2;
}
.marquee::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.marquee::after { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
.marquee__track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marqueeRun 32s linear infinite;
  padding: 14px 0;
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  padding: 0 32px;
  white-space: nowrap;
  border-right: 1px solid var(--line);
}
.marquee__item strong { color: var(--fg); font-weight: 600; }
.marquee__item .red { color: var(--red); }
.marquee__sep {
  font-family: var(--mono);
  color: var(--red);
  margin-right: 12px;
  font-size: 10px;
}
@keyframes marqueeRun {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ============================================================
   MASTER HINT — single-line link under hero
   ============================================================ */

.master-hint {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  text-align: center;
  padding: 28px 0;
}
.master-hint__link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.085em;
  text-transform: uppercase;
  color: var(--fg-muted);
  padding: 13px 24px;
  border: 1px solid rgba(201, 169, 97, 0.38);
  background:
    linear-gradient(90deg, rgba(227, 6, 19, 0.04), rgba(201, 169, 97, 0.055), rgba(227, 6, 19, 0.025));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 12px 34px rgba(0,0,0,0.22);
  transition: border-color var(--t-hover) var(--ease-out),
              color var(--t-hover) var(--ease-out),
              background var(--t-hover) var(--ease-out);
}
.master-hint__link:hover {
  border-color: var(--red);
  color: var(--fg);
  background: rgba(227,6,19,0.04);
}
.master-hint__link .sep { color: var(--fg-dim); font-size: 10px; }
.master-hint__link .arrow {
  color: var(--red);
  font-weight: 900;
  transition: transform var(--t-hover) var(--ease-out);
}
.master-hint__link:hover .arrow { transform: translateX(4px); }

/* ============================================================
   SHOP HERO + SLAVE CARDS (industrial)
   ============================================================ */

.shop-hero {
  background: var(--bg);
  padding: 72px 0 48px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.shop-hero__meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.shop-hero h1 {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--fg);
  max-width: 14ch;
  margin-bottom: 20px;
}
.shop-hero__sub {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-muted);
  max-width: 60ch;
}

/* ============================================================
   MASTER SECTION (Shop) — 3 industrial datacards
   ============================================================ */

.master-section {
  background: var(--bg);
  padding: 72px 0 96px;
  border-bottom: 1px solid var(--line);
}
.master-section__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.master-section__head h2 {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--fg);
}
.master-section__head p {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  max-width: 40ch;
}

.master-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.master-card {
  background: var(--bg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: background var(--t-hover) var(--ease-out);
  position: relative;
}
.master-card:hover { background: var(--bg-surface); }
.master-card__id {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 20px;
}
.master-card__img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 140px;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 50% 58%, rgba(227, 6, 19, 0.10), transparent 48%),
    radial-gradient(ellipse at 50% 78%, rgba(201, 169, 97, 0.10), transparent 42%),
    rgba(7, 7, 7, 0.38);
  padding: 16px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.master-card__img::before,
.master-card__img::after {
  content: '+'; position: absolute;
  font-family: var(--mono); font-size: 11px;
  color: var(--red); line-height: 0;
}
.master-card__img::before { top: 0; left: 0; transform: translate(-50%, -50%); }
.master-card__img::after { bottom: 0; right: 0; transform: translate(50%, 50%); }
.master-card__img img {
  max-height: 96%;
  max-width: 96%;
  object-fit: contain;
  filter: drop-shadow(0 14px 26px rgba(0,0,0,0.62));
}
.master-card__img img[src*="anniversary"] {
  mix-blend-mode: lighten;
  -webkit-mask-image: radial-gradient(ellipse 82% 74% at 50% 52%, #000 0 58%, rgba(0,0,0,0.82) 76%, transparent 100%);
  mask-image: radial-gradient(ellipse 82% 74% at 50% 52%, #000 0 58%, rgba(0,0,0,0.82) 76%, transparent 100%);
}
.master-card__name {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 6px;
}
.master-card__mode {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.master-card__price {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin: 4px 0 8px;
  padding: 0.05em 0;
}
.master-card__price span {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-left: 8px;
}
.master-card__price-note {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.master-card__details {
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: 0.025em;
  color: var(--fg-muted);
  margin: -6px 0 22px;
  min-height: 54px;
}
.master-card__btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 16px;
  border: 1px solid var(--line-bright);
  background: transparent;
  color: var(--fg);
  cursor: pointer;
  transition: border-color var(--t-hover) var(--ease-out), background var(--t-hover) var(--ease-out);
}
.master-card__btn::after {
  content: '→';
  margin-left: 12px;
  color: var(--red);
  transition: transform var(--t-hover) var(--ease-out);
}
.master-card__btn:hover {
  border-color: var(--red);
  background: rgba(227,6,19,0.05);
}
.master-card__btn:hover::after { transform: translateX(4px); }
.master-card__btn:active { transform: scale(0.97); }

/* ============================================================
   CATEGORIES BAR (Shop)
   ============================================================ */

.cat-bar {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.cat-bar__inner {
  display: flex; gap: 4px; flex-wrap: wrap; align-items: center;
}
.cat-bar__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-right: 16px;
}
.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--line-bright);
  color: var(--fg-muted);
  background: transparent;
  border-radius: 0;
  appearance: none;
  cursor: pointer;
  transition: all var(--t-hover) var(--ease-out);
}
.cat-pill span {
  color: var(--fg-dim);
  font-size: 9px;
  letter-spacing: 0.04em;
}
.cat-pill:hover {
  border-color: var(--fg-dim);
  color: var(--fg);
}
.cat-pill.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.cat-pill.active span { color: rgba(255,255,255,0.72); }

/* ============================================================
   FULL SHOP CATALOG
   ============================================================ */

.shop-catalog {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent 18%),
    radial-gradient(ellipse 56% 34% at 78% 8%, rgba(227,6,19,0.14), transparent 70%),
    var(--bg);
  padding: 84px 0 110px;
  border-bottom: 1px solid var(--line);
}
.shop-catalog::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px),
    repeating-linear-gradient(135deg, transparent 0, transparent 12px, rgba(255,255,255,0.015) 12px, rgba(255,255,255,0.015) 13px);
  background-size: 80px 80px, 80px 80px, auto;
  opacity: 0.62;
  pointer-events: none;
}
.shop-catalog__scan {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(227,6,19,0.18), transparent),
    repeating-linear-gradient(0deg, transparent 0, transparent 3px, rgba(0,0,0,0.2) 3px, rgba(0,0,0,0.2) 4px);
  transform: translateX(-68%);
  opacity: 0.32;
  pointer-events: none;
}
.shop-catalog .container { position: relative; z-index: 1; }
.shop-catalog__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: 48px;
  align-items: end;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.shop-catalog__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.shop-catalog__head h2 {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  color: var(--fg);
}
.shop-catalog__summary {
  display: grid;
  gap: 14px;
  justify-items: start;
}
.shop-catalog__summary span {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,169,97,0.45);
  padding: 9px 12px;
  background: rgba(201,169,97,0.05);
}
.shop-catalog__summary p {
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  color: var(--fg-muted);
  max-width: 58ch;
}
.shop-tech-rail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(176px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin: 0 0 54px;
  overflow: hidden;
}
.shop-tech-card {
  min-height: 178px;
  background: rgba(10,10,10,0.92);
  padding: 16px 14px;
  display: grid;
  grid-template-rows: auto 54px 1fr auto;
  gap: 12px;
  position: relative;
}
.shop-tech-card::after {
  content: '+';
  position: absolute;
  right: -4px;
  bottom: -5px;
  font-family: var(--mono);
  color: var(--red);
  font-size: 11px;
  line-height: 1;
}
.shop-tech-card__num {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--red);
  letter-spacing: 0.08em;
}
.shop-tech-card__icon {
  height: 54px;
  display: flex;
  align-items: center;
}
.shop-tech-card__icon img {
  max-height: 44px;
  max-width: 72px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.08);
  opacity: 0.88;
}
.shop-tech-card h3 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 0.94rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 6px;
}
.shop-tech-card p {
  font-family: var(--mono);
  font-size: 9.5px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.shop-tech-card__count {
  font-family: var(--sans);
  font-weight: 900;
  font-size: 1.7rem;
  letter-spacing: -0.04em;
  color: var(--fg);
}
.shop-category-block {
  margin-top: 60px;
  scroll-margin-top: 110px;
}
.shop-category-block:first-child { margin-top: 0; }
.shop-category-block__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px;
  margin-bottom: 1px;
  border-bottom: 1px solid var(--line);
}
.shop-category-block__head span {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.shop-category-block__head h3 {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--fg);
}
.shop-category-block__head p {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-align: right;
}
.shop-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 268px), 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-top: 0;
}
.shop-product {
  min-height: 440px;
  background: rgba(10,10,10,0.96);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background var(--t-hover) var(--ease-out), transform var(--t-hover) var(--ease-out);
}
.shop-product:hover {
  background: var(--bg-surface);
  transform: translateY(-2px);
}
.shop-product__media {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.035), transparent 42%),
    repeating-linear-gradient(135deg, transparent 0, transparent 9px, rgba(255,255,255,0.018) 9px, rgba(255,255,255,0.018) 10px),
    #0d0d0d;
  position: relative;
  overflow: hidden;
}
.shop-product__media::before,
.shop-product__media::after {
  content: '+';
  position: absolute;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--red);
  line-height: 0;
}
.shop-product__media::before { top: 0; left: 0; transform: translate(-50%, -50%); }
.shop-product__media::after { bottom: 0; right: 0; transform: translate(50%, 50%); }
.shop-product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: drop-shadow(0 18px 24px rgba(0,0,0,0.58));
  transition: transform 400ms var(--ease-out);
}
.shop-product:hover .shop-product__media img { transform: scale(1.035); }
.shop-product__body {
  padding: clamp(16px, 1.7vw, 22px);
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
}
.shop-product__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-dim);
  min-width: 0;
}
.shop-product__meta span:first-child { color: var(--red); }
.shop-product__meta span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.shop-product h4 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--fg);
  margin-bottom: 12px;
  overflow-wrap: anywhere;
}
.shop-product p {
  font-family: var(--mono);
  font-size: 10.5px;
  line-height: 1.6;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 22px;
}
.shop-product__foot {
  margin-top: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  min-width: 0;
}
.shop-product__price {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--fg);
  white-space: nowrap;
  min-width: 0;
}
.shop-product__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line-bright);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg);
  transition: border-color var(--t-hover) var(--ease-out), background var(--t-hover) var(--ease-out);
}
.shop-product__cta::after {
  content: '→';
  color: var(--red);
  margin-left: 8px;
}
.shop-product__cta:hover {
  border-color: var(--red);
  background: rgba(227,6,19,0.08);
}
.shop-catalog__empty {
  border: 1px solid var(--line);
  padding: 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */

.product-page {
  background: var(--bg);
  padding: 56px 0 96px;
  border-bottom: 1px solid var(--line);
}
.product-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  background: var(--line);
  column-gap: 1px;
}
.product-page__visual,
.product-page__info {
  background: var(--bg);
  padding: 48px 40px;
  position: relative;
}

.product-page__visual {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 600px;
}
.product-page__visual::before,
.product-page__visual::after {
  content: '+'; position: absolute;
  font-family: var(--mono); font-size: 12px;
  color: var(--red); line-height: 0;
}
.product-page__visual::before { top: 0; left: 0; transform: translate(-50%, -50%); }
.product-page__visual::after { bottom: 0; left: 0; transform: translate(-50%, 50%); }

.product-page__visual-id {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.product-page__visual-img {
  flex: 1;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at 50% 55%, rgba(227, 6, 19, 0.10), transparent 46%),
    radial-gradient(ellipse at 50% 78%, rgba(201, 169, 97, 0.10), transparent 40%);
}
.product-page__visual-img img {
  width: min(92%, 620px);
  height: 92%;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,0.6));
  transition: transform 400ms var(--ease-out);
}
.product-page__visual-img img[src*="anniversary"] {
  width: min(78%, 520px);
  height: auto;
  max-height: 88%;
  mix-blend-mode: lighten;
  -webkit-mask-image: radial-gradient(ellipse 80% 74% at 50% 53%, #000 0 60%, rgba(0,0,0,0.82) 76%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 74% at 50% 53%, #000 0 60%, rgba(0,0,0,0.82) 76%, transparent 100%);
}
.product-page__visual:hover .product-page__visual-img img { transform: scale(1.03); }

.product-page__visual-foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-page__visual-foot dt { color: var(--fg-dim); margin-bottom: 4px; }
.product-page__visual-foot dd { color: var(--fg); font-weight: 500; }

.product-page__info {
  display: flex;
  flex-direction: column;
}
.product-page__info::after {
  content: '+'; position: absolute;
  font-family: var(--mono); font-size: 12px;
  color: var(--red); line-height: 0;
  top: 0; right: 0; transform: translate(50%, -50%);
}
.product-page__info-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}
.product-page__info-meta .red { color: var(--red); }
.product-page__name {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 16px;
}
.product-page__modes {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.product-page__modes strong { color: var(--red); font-weight: 600; }

/* Spec block — feature list as engineering data */
.product-specs {
  margin-bottom: 32px;
}
.product-specs__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 8px;
}
.product-specs__head-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.product-specs__row {
  display: grid;
  grid-template-columns: 20px 1fr auto;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  font-family: var(--mono);
  font-size: 12px;
}
.product-specs__check {
  color: var(--red);
  font-weight: 700;
}
.product-specs__check.no { color: var(--fg-faint); }
.product-specs__label {
  letter-spacing: 0.03em;
  color: var(--fg);
}
.product-specs__hot { color: var(--red); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.product-specs__val {
  color: var(--fg-muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.product-specs__val--pro {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  padding: 3px 9px;
  border: 1px solid rgba(227, 6, 19, 0.58);
  background: rgba(227, 6, 19, 0.075);
  color: var(--red);
  font-weight: 800;
  text-shadow: 0 0 10px rgba(227, 6, 19, 0.28);
}

.product-price-block {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: flex-end;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.product-price-block__num {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
  padding: 0.05em 0;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
}
.product-price-block__num.hot { color: var(--red); }
.product-price-block__meta {
  text-align: right;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  line-height: 1.6;
}
.product-price-block__old {
  display: inline-block;
  color: var(--fg-dim);
  text-decoration: line-through;
  font-variant-numeric: tabular-nums;
}

.product-price-block__old-large {
  display: block;
  font-family: var(--mono);
  font-size: 1.4rem;
  color: var(--fg-dim);
  text-decoration: line-through;
  margin-bottom: 2px;
  font-weight: 500;
}

.text-glow-red {
  color: var(--red) !important;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(224, 30, 55, 0.4);
  animation: pulse-text-red 2s infinite alternate;
}
@keyframes pulse-text-red {
  0% { text-shadow: 0 0 2px rgba(224, 30, 55, 0.3); opacity: 0.8; }
  100% { text-shadow: 0 0 12px rgba(224, 30, 55, 0.8); opacity: 1; }
}

.product-bundle {
  background: var(--bg-surface);
  border: 1px solid var(--line);
  padding: 16px 20px;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.product-bundle__main { color: var(--fg); font-weight: 600; }
.product-bundle__val { color: var(--red); font-weight: 600; font-variant-numeric: tabular-nums; }

.product-einschulung {
  border-top: 1px dashed var(--line-bright);
  padding-top: 20px;
  margin-bottom: 28px;
}
.product-einschulung__title {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 8px;
}
.product-einschulung__text {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.03em;
  color: var(--fg-muted);
  line-height: 1.6;
}

.product-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

/* ============================================================
   DETAIL SECTIONS
   ============================================================ */

.section {
  background: var(--bg);
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
}
.section__head {
  margin-bottom: 64px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
}
.section__head h2 {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--fg);
  max-width: 16ch;
}
.section__head-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  max-width: 40ch;
  text-align: right;
}
.product-compare-section .section__head h2 {
  max-width: 20ch;
}
.product-compare-title .product-brand {
  white-space: nowrap;
}

.b2b-details-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(227, 6, 19, 0.055), transparent 42%),
    repeating-linear-gradient(45deg, transparent, transparent 14px, rgba(255,255,255,0.014) 14px, rgba(255,255,255,0.014) 15px),
    rgba(10, 10, 10, 0.9);
}

.b2b-card {
  position: relative;
  min-height: 330px;
  padding: clamp(24px, 3vw, 36px);
  border-right: 1px solid var(--line);
  font-family: var(--mono);
  overflow: hidden;
}

.b2b-card:last-child {
  border-right: 0;
}

.b2b-card::before,
.b2b-card::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-left: 1px solid var(--red);
  border-top: 1px solid var(--red);
  opacity: 0.85;
}

.b2b-card::before {
  top: 0;
  left: 0;
  transform: translate(-1px, -1px);
}

.b2b-card::after {
  right: 0;
  bottom: 0;
  transform: rotate(180deg) translate(-1px, -1px);
}

.b2b-card__num {
  margin-bottom: 34px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.b2b-card__title {
  max-width: 12ch;
  margin-bottom: 18px;
  color: var(--fg);
  font-family: var(--sans);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-transform: uppercase;
}

.b2b-card__text,
.b2b-card__list {
  color: var(--fg-muted);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.045em;
  line-height: 1.75;
  text-transform: uppercase;
}

.b2b-card__list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.b2b-card__list li {
  position: relative;
  padding-left: 16px;
}

.b2b-card__list li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 4px;
  height: 4px;
  background: var(--red);
}

.b2b-card__list strong {
  color: var(--fg);
  font-weight: 800;
}

/* HOMEPAGE PROOF SECTIONS */
.proof-label {
  display: block;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.brand-coverage,
.kit-section,
.proof-features,
.updates-proof,
.numbers-proof {
  position: relative;
  overflow: hidden;
}

.brand-coverage {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.018), transparent 36%),
    var(--bg);
}
.brand-coverage__head h2 { max-width: 18ch; }
.brand-coverage__rail {
  border: 1px solid var(--line);
  background:
    repeating-linear-gradient(45deg, transparent, transparent 14px, rgba(255,255,255,0.014) 14px, rgba(255,255,255,0.014) 15px),
    var(--bg-surface);
  overflow: hidden;
  position: relative;
}
.brand-coverage__rail::before,
.brand-coverage__rail::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 12%;
  z-index: 2;
  pointer-events: none;
}
.brand-coverage__rail::before { left: 0; background: linear-gradient(to right, var(--bg-surface), transparent); }
.brand-coverage__rail::after { right: 0; background: linear-gradient(to left, var(--bg-surface), transparent); }
.brand-coverage__track {
  display: flex;
  width: max-content;
  animation: brandCoverageRun 42s linear infinite;
}
.brand-coverage__rail:hover .brand-coverage__track {
  animation-play-state: paused;
}
.brand-logo {
  flex: 0 0 196px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 34px;
  border-right: 1px solid var(--line);
  background: rgba(10,10,10,0.72);
}
.brand-logo img {
  width: 100%;
  max-width: 138px;
  max-height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.72;
  transition:
    filter var(--t-hover) var(--ease-out),
    opacity var(--t-hover) var(--ease-out),
    transform var(--t-hover) var(--ease-out);
}
.brand-logo:hover img {
  filter: brightness(0) invert(1);
  opacity: 1;
  transform: translateY(-2px);
}
@keyframes brandCoverageRun {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.kit-section {
  background:
    radial-gradient(ellipse 56% 42% at 12% 10%, rgba(227,6,19,0.08), transparent 72%),
    var(--bg);
}
.kit-layout {
  display: grid;
  grid-template-columns: 4.5fr 5.5fr;
  gap: 48px;
  align-items: center;
  margin-top: 40px;
}
.kit-telemetry {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.kit-card-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: rgba(227, 6, 19, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  padding: 30px;
  transition: transform 0.15s ease-out, border-color 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.kit-card-wrapper:hover {
  border-color: rgba(227, 6, 19, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(227, 6, 19, 0.12);
}
.kit-card-frame {
  position: relative;
  width: 100%;
  height: 100%;
  transform: translateZ(30px);
}
.telemetry-corner {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid var(--red);
  pointer-events: none;
}
.telemetry-corner.tl { top: -10px; left: -10px; border-right: 0; border-bottom: 0; }
.telemetry-corner.tr { top: -10px; right: -10px; border-left: 0; border-bottom: 0; }
.telemetry-corner.bl { bottom: -10px; left: -10px; border-right: 0; border-top: 0; }
.telemetry-corner.br { bottom: -10px; right: -10px; border-left: 0; border-top: 0; }
.telemetry-crosshair {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0.15;
  transition: opacity 0.3s ease;
}
.telemetry-crosshair::before,
.telemetry-crosshair::after {
  content: '';
  position: absolute;
  background: var(--red);
}
.telemetry-crosshair::before { top: 11px; left: 0; width: 100%; height: 2px; }
.telemetry-crosshair::after { top: 0; left: 11px; width: 2px; height: 100%; }
.kit-card-wrapper:hover .telemetry-crosshair {
  opacity: 0.4;
}
.telemetry-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle 180px at var(--mx, 50%) var(--my, 50%), rgba(227, 6, 19, 0.12), transparent 80%);
}
.kit-image {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.6));
  transition: transform 0.3s ease;
}
.kit-card-wrapper:hover .kit-image {
  transform: scale(1.03);
}
.telemetry-data {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  padding-top: 12px;
}
.telemetry-label {
  color: var(--red);
  font-weight: bold;
}
.telemetry-scan {
  font-variant-numeric: tabular-nums;
}
.kit-inventory {
  width: 100%;
}
.kit-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-family: var(--sans);
}
.kit-table th {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  text-transform: uppercase;
  padding: 14px 16px;
  border-bottom: 2px solid var(--line);
}
.kit-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
  vertical-align: middle;
}
.kit-table tr:hover td {
  background: rgba(255, 255, 255, 0.015);
}
.kit-table .pos {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--red);
  font-weight: 700;
}
.kit-table .component strong {
  font-family: var(--mono);
  font-size: 0.72rem;
  line-height: 1.45;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--fg);
}
.kit-table .details {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.kit-table .status {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  font-weight: bold;
  white-space: nowrap;
}
.status-indicator {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  margin-right: 8px;
  vertical-align: middle;
}
.status-indicator.glow {
  box-shadow: 0 0 8px var(--red);
  animation: pulse-red 2s infinite alternate;
}
.highlight-row td {
  border-bottom: 1px solid rgba(227, 6, 19, 0.2);
  background: rgba(227, 6, 19, 0.02);
}
@keyframes pulse-red {
  0% { box-shadow: 0 0 2px var(--red); opacity: 0.6; }
  100% { box-shadow: 0 0 10px var(--red); opacity: 1; }
}
@media (max-width: 1024px) {
  .kit-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .kit-telemetry {
    order: 2;
  }
}
.kit-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.kit-item {
  min-height: 176px;
  padding: 24px 22px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.kit-item::after {
  content: '+';
  position: absolute;
  right: -4px;
  bottom: -5px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--red);
  line-height: 1;
}
.kit-item span,
.proof-feature span {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}
.kit-item strong {
  display: block;
  font-family: var(--sans);
  font-size: 1.02rem;
  line-height: 1.18;
  letter-spacing: 0;
  color: var(--fg);
  margin-top: 28px;
}
.kit-item em {
  display: block;
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 0.66rem;
  font-style: normal;
  line-height: 1.55;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.kit-item--wide {
  border-top: 2px solid var(--red);
}

.proof-features {
  background:
    radial-gradient(circle at 20% 28%, rgba(227,6,19,0.12), transparent 34%),
    radial-gradient(circle at 88% 8%, rgba(201,169,97,0.08), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,0.015), transparent 30%),
    var(--bg);
}

.proof-console {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 1px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(227,6,19,0.16), transparent 32%, rgba(201,169,97,0.1)),
    var(--line);
  position: relative;
}

.proof-console::before,
.proof-console::after {
  content: '';
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: var(--red);
  pointer-events: none;
  z-index: 3;
}

.proof-console::before {
  left: -1px;
  top: -1px;
  border-left: 2px solid;
  border-top: 2px solid;
}

.proof-console::after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid;
  border-bottom: 2px solid;
}

.proof-console__visual {
  min-height: 620px;
  padding: clamp(24px, 4vw, 42px);
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 42%), rgba(227,6,19,0.16), transparent 34%),
    repeating-linear-gradient(135deg, transparent 0, transparent 14px, rgba(255,255,255,0.018) 14px, rgba(255,255,255,0.018) 15px),
    #090909;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto auto;
  gap: 26px;
  overflow: hidden;
  position: relative;
  transform-style: preserve-3d;
  transition:
    transform var(--t-hover) var(--ease-out),
    border-color var(--t-hover) var(--ease-out);
}

.proof-console__visual::before {
  content: '';
  position: absolute;
  inset: 10%;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 62%);
  filter: blur(28px);
  opacity: 0.65;
  pointer-events: none;
}

.proof-console__media {
  min-height: 390px;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
}

.proof-console__media img {
  width: min(92%, 520px);
  max-height: 430px;
  object-fit: contain;
  filter:
    drop-shadow(0 28px 52px rgba(0,0,0,0.72))
    drop-shadow(0 0 28px rgba(227,6,19,0.15));
  transform: translateZ(42px);
}

.proof-console__hud,
.proof-console__signal,
.proof-console__lead span,
.proof-console__strip,
.proof-feature span {
  font-family: var(--mono);
  text-transform: uppercase;
}

.proof-console__hud {
  position: relative;
  z-index: 2;
  padding: 18px 20px;
  border: 1px solid rgba(227,6,19,0.32);
  background:
    radial-gradient(circle at 18% 45%, rgba(227,6,19,0.28), transparent 34%),
    radial-gradient(circle at 70% 58%, rgba(201,169,97,0.16), transparent 42%),
    linear-gradient(115deg, rgba(227,6,19,0.1), rgba(10,10,10,0.74) 52%, rgba(227,6,19,0.06));
  transform: translateZ(28px);
  overflow: hidden;
  box-shadow:
    0 18px 48px rgba(0,0,0,0.34),
    inset 0 1px 0 rgba(255,255,255,0.07);
  animation: workflowBreath 4.8s ease-in-out infinite alternate;
}
.proof-console__hud::before {
  content: '';
  position: absolute;
  inset: -80% -30%;
  background:
    radial-gradient(circle at 18% 48%, rgba(227,6,19,0.34), transparent 18%),
    radial-gradient(circle at 48% 36%, rgba(255,255,255,0.09), transparent 16%),
    radial-gradient(circle at 78% 62%, rgba(201,169,97,0.22), transparent 18%);
  filter: blur(18px);
  opacity: 0.62;
  transform: translate3d(-8%, 2%, 0);
  animation: workflowMesh 8s ease-in-out infinite alternate;
}
.proof-console__hud > * {
  position: relative;
  z-index: 1;
}

.proof-console__hud span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.proof-console__hud strong {
  display: block;
  color: var(--fg);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
}

.proof-console__signal {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  transform: translateZ(18px);
}

.proof-console__signal span {
  position: relative;
  overflow: hidden;
  height: 3px;
  background: rgba(227,6,19,0.14);
  box-shadow: 0 0 14px rgba(227,6,19,0.45);
}
.proof-console__signal span::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--red), var(--gold-hot), transparent);
  transform: translateX(-120%);
  animation: workflowProgress 2.8s ease-in-out infinite;
}

.proof-console__signal span:nth-child(2) { opacity: 0.72; }
.proof-console__signal span:nth-child(3) { opacity: 0.48; }
.proof-console__signal span:nth-child(4) { opacity: 0.28; }
.proof-console__signal span:nth-child(2)::before { animation-delay: 0.22s; }
.proof-console__signal span:nth-child(3)::before { animation-delay: 0.44s; }
.proof-console__signal span:nth-child(4)::before { animation-delay: 0.66s; }

@keyframes workflowBreath {
  0% {
    border-color: rgba(227,6,19,0.24);
    box-shadow: 0 18px 42px rgba(0,0,0,0.32), inset 0 1px 0 rgba(255,255,255,0.06);
  }
  100% {
    border-color: rgba(255,28,42,0.56);
    box-shadow: 0 20px 54px rgba(227,6,19,0.12), inset 0 1px 0 rgba(255,255,255,0.1);
  }
}

@keyframes workflowMesh {
  0% { transform: translate3d(-10%, 4%, 0) scale(1); }
  50% { transform: translate3d(8%, -6%, 0) scale(1.08); }
  100% { transform: translate3d(14%, 4%, 0) scale(1.02); }
}

@keyframes workflowProgress {
  0% { transform: translateX(-120%); opacity: 0; }
  12% { opacity: 1; }
  58% { opacity: 1; }
  100% { transform: translateX(120%); opacity: 0; }
}

.proof-console__content {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 1px;
  background: var(--line);
}

.proof-console__lead {
  padding: clamp(28px, 4vw, 42px);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.035), transparent 52%),
    rgba(10,10,10,0.96);
}

.proof-console__lead span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-hot);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.proof-console__lead h3 {
  max-width: 13ch;
  margin-bottom: 18px;
  font-family: var(--sans);
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--fg);
}

.proof-console__lead p {
  max-width: 58ch;
  font-family: var(--mono);
  font-size: 0.78rem;
  line-height: 1.75;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.proof-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}
.proof-feature {
  min-height: 156px;
  padding: 24px 24px 22px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.025), transparent 46%),
    rgba(10,10,10,0.94);
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  column-gap: 18px;
  align-content: start;
  position: relative;
  overflow: hidden;
  transition:
    background var(--t-hover) var(--ease-out),
    border-color var(--t-hover) var(--ease-out),
    transform var(--t-hover) var(--ease-out);
}

.proof-feature::after {
  content: '';
  position: absolute;
  right: 18px;
  top: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(227,6,19,0.22);
  background: radial-gradient(circle, rgba(227,6,19,0.1), transparent 68%);
  opacity: 0;
  transform: scale(0.82);
  transition:
    opacity var(--t-hover) var(--ease-out),
    transform var(--t-hover) var(--ease-out);
}

.proof-feature:hover {
  background:
    linear-gradient(135deg, rgba(227,6,19,0.08), transparent 44%),
    rgba(17,17,17,0.98);
  transform: translateY(-2px);
}

.proof-feature:hover::after {
  opacity: 1;
  transform: scale(1);
}

.proof-feature h3 {
  grid-column: 2;
  font-family: var(--sans);
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--fg);
  margin: 0 0 12px;
  max-width: 16ch;
}
.proof-feature p {
  grid-column: 2;
  font-family: var(--mono);
  font-size: 0.72rem;
  line-height: 1.65;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.proof-feature span {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(227,6,19,0.42);
  color: var(--red);
  background: rgba(227,6,19,0.06);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.proof-console__strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  background: var(--line);
}

.proof-console__strip span {
  flex: 1 1 140px;
  padding: 18px 20px;
  background: rgba(10,10,10,0.96);
  color: var(--fg-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
}

.proof-console__strip span:nth-child(3),
.proof-console__strip span:nth-child(5) {
  color: var(--gold-hot);
}

.updates-proof {
  background:
    radial-gradient(ellipse 50% 46% at 88% 26%, rgba(201,169,97,0.07), transparent 70%),
    var(--bg);
}
.updates-timeline {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.update-item {
  display: grid;
  grid-template-columns: 160px minmax(180px, 0.34fr) minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 18px 24px;
  background: var(--bg);
  font-family: var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.update-item time {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.update-item strong {
  color: var(--fg);
  font-size: 0.78rem;
  font-weight: 800;
}
.update-item span {
  color: var(--fg-muted);
  font-size: 0.72rem;
  line-height: 1.5;
}
.updates-proof__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.updates-proof__foot .red {
  color: var(--red);
  margin-right: 0.35em;
}

.timeline--home-updates {
  margin-top: 32px;
}

.timeline--home-updates .timeline__item {
  min-height: 188px;
}

.timeline--home-updates .timeline__body {
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
}

.timeline--home-updates .timeline__media,
.timeline--home-updates .timeline__media img {
  min-height: 148px;
}

.numbers-proof {
  background:
    repeating-linear-gradient(135deg, transparent 0, transparent 16px, rgba(255,255,255,0.014) 16px, rgba(255,255,255,0.014) 17px),
    var(--bg);
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.number-card {
  min-height: 200px;
  padding: 28px 24px;
  background: rgba(10,10,10,0.95);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}
.number-card__value {
  font-family: var(--sans);
  font-size: clamp(2.55rem, 5vw, 3.85rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.number-card:nth-child(2) .number-card__value,
.number-card:nth-child(4) .number-card__value {
  color: var(--gold-hot);
}
.number-card__label {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

@media (max-width: 1180px) {
  .proof-console {
    grid-template-columns: 1fr;
  }

  .proof-console__visual {
    min-height: 520px;
  }

  .kit-grid,
  .proof-feature-grid,
  .numbers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .brand-logo {
    flex-basis: 190px;
  }
}

@media (max-width: 760px) {
  .proof-console__visual {
    min-height: 420px;
    padding: 22px;
  }

  .proof-console__media {
    min-height: 250px;
  }

  .proof-console__media img {
    width: 108%;
    max-height: 310px;
  }

  .proof-console__lead,
  .proof-feature {
    padding: 24px 22px;
  }

  .brand-logo {
    flex-basis: 150px;
    height: 82px;
    padding: 20px 24px;
  }
  .brand-logo img {
    max-width: 112px;
    max-height: 34px;
  }
  .kit-grid,
  .proof-feature-grid,
  .numbers-grid {
    grid-template-columns: 1fr;
  }
  .kit-item,
  .proof-feature,
  .number-card {
    min-height: 168px;
  }
  .update-item {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
    padding: 20px;
  }
  .number-card__value {
    font-size: 3.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-coverage__track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
  }
  .brand-logo[aria-hidden="true"] {
    display: none;
  }
}

/* MODE GRID (OBD / Bench / Boot) */
.modes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.modes--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.modes--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.mode {
  background: var(--bg);
  padding: 32px 28px;
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}
.mode--featured {
  background: var(--bg-surface);
  border-top: 2px solid var(--red);
  margin-top: -1px;
}
.mode__id {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
}
.mode__id .hot { color: var(--red); }
.mode--locked .mode__id .hot,
.mode--featured .mode__id .hot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 8px;
  border: 1px solid rgba(227, 6, 19, 0.55);
  background: rgba(227, 6, 19, 0.075);
  color: var(--red);
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 0 12px rgba(227, 6, 19, 0.3);
}
.mode__name {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 12px;
}
.mode--locked .mode__name { color: var(--fg-dim); }
.mode__desc {
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.6;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}
.mode__desc a {
  color: var(--red);
  border-bottom: 1px solid currentColor;
}

/* FINANCE PRECHECK */
.finance-check__shell {
  position: relative;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(227,6,19,0.08), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.025), transparent 42%),
    var(--bg);
  overflow: hidden;
}
.finance-check__shell::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(90deg, transparent 0, transparent 56px, rgba(255,255,255,0.025) 56px, rgba(255,255,255,0.025) 57px),
    repeating-linear-gradient(0deg, transparent 0, transparent 56px, rgba(255,255,255,0.018) 56px, rgba(255,255,255,0.018) 57px);
  opacity: 0.7;
}
.finance-check__head,
.finance-check__grid {
  position: relative;
  z-index: 1;
}
.finance-check__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 34ch);
  gap: 32px;
  align-items: end;
  padding: 48px 48px 32px;
  border-bottom: 1px solid var(--line);
}
.finance-check__kicker,
.finance-field__label,
.finance-meter__top,
.finance-meter__steps,
.finance-result__state {
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.finance-check__kicker {
  display: inline-flex;
  color: var(--red);
  margin-bottom: 16px;
}
.finance-check__head h2 {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--fg);
}
.finance-check__head p {
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.65;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.finance-check__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}
.finance-check__form,
.finance-check__panel {
  min-height: 520px;
  padding: 36px 48px 48px;
}
.finance-check__form {
  border-right: 1px solid var(--line);
  display: grid;
  gap: 20px;
}
.finance-field {
  display: grid;
  gap: 10px;
}
.finance-field__label {
  color: var(--fg-dim);
}
.finance-segment {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}
.finance-segment label {
  position: relative;
  min-width: 0;
  cursor: pointer;
}
.finance-segment label + label {
  border-left: 1px solid var(--line);
}
.finance-segment input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.finance-segment span {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  color: var(--fg-muted);
  transition: background var(--t-hover) var(--ease-out), color var(--t-hover) var(--ease-out), box-shadow var(--t-hover) var(--ease-out);
}
.finance-segment input:checked + span {
  color: var(--fg);
  background: rgba(227,6,19,0.16);
  box-shadow: inset 0 0 0 1px rgba(227,6,19,0.65);
}
.finance-segment input:focus-visible + span {
  outline: 1px solid var(--gold);
  outline-offset: -3px;
}
.finance-check__submit {
  margin-top: 8px;
  width: 100%;
}
.finance-note {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(201,169,97,0.28);
  background: rgba(201,169,97,0.055);
  padding: 14px 16px;
}
.finance-note strong,
.finance-note span {
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.55;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.finance-note strong {
  color: var(--gold-hot);
}
.finance-note span {
  color: var(--fg-muted);
}
.finance-check__panel {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 28px;
  overflow: hidden;
}
.finance-check__panel::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -30%;
  width: 26%;
  background: linear-gradient(90deg, transparent, rgba(227,6,19,0.18), transparent);
  opacity: 0;
  pointer-events: none;
}
.finance-check__panel.is-checking::before {
  animation: financeSweep 1.2s var(--ease-out) infinite;
  opacity: 1;
}
.finance-meter {
  position: relative;
  border: 1px solid var(--line);
  padding: 18px;
  background: rgba(10,10,10,0.64);
}
.finance-meter__top,
.finance-meter__steps {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--fg-dim);
}
.finance-meter__top span:last-child {
  color: var(--gold);
}
.finance-meter__track {
  display: block;
  height: 4px;
  margin: 18px 0 14px;
  background: var(--line);
  overflow: hidden;
}
.finance-meter__track span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--gold-hot));
  transition: width 520ms var(--ease-out);
}
.finance-meter__steps span {
  position: relative;
  padding-left: 14px;
}
.finance-meter__steps span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  transform: translateY(-50%);
  background: var(--fg-faint);
}
.finance-meter__steps span.is-active::before {
  background: var(--red);
  box-shadow: 0 0 14px rgba(227,6,19,0.7);
}
.finance-result {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  padding: 34px;
  background: rgba(255,255,255,0.025);
}
.finance-result[hidden] {
  display: none;
}
.finance-result__state {
  color: var(--red);
  margin-bottom: 16px;
}
.finance-result h3 {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  line-height: 1;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 18px;
}
.finance-result p {
  max-width: 58ch;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: 0.03em;
  color: var(--fg-muted);
  margin-bottom: 24px;
}
.finance-result--positive {
  background:
    linear-gradient(135deg, rgba(201,169,97,0.16), transparent 42%),
    rgba(255,255,255,0.03);
  border-color: rgba(201,169,97,0.45);
}
.finance-result--positive .finance-result__state {
  color: var(--gold-hot);
}
.finance-result--negative {
  justify-content: flex-start;
  background:
    linear-gradient(135deg, rgba(227,6,19,0.12), transparent 36%),
    rgba(255,255,255,0.025);
  border-color: rgba(227,6,19,0.34);
}
.finance-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.finance-option {
  min-height: 156px;
  padding: 18px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  transition: background var(--t-hover) var(--ease-out), color var(--t-hover) var(--ease-out);
}
.finance-option:hover {
  background: var(--bg-surface);
}
.finance-option span,
.finance-option em {
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.finance-option span {
  color: var(--red);
  margin-bottom: 22px;
}
.finance-option strong {
  font-size: 1rem;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 10px;
}
.finance-option em {
  color: var(--fg-muted);
  font-style: normal;
  margin-top: auto;
}
@keyframes financeSweep {
  from { transform: translateX(0); }
  to { transform: translateX(520%); }
}

/* COMPARE TABLE */
.compare {
  border: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 12px;
}
.compare__head,
.compare__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
}
.compare--4col .compare__head,
.compare--4col .compare__row {
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 0;
}
.compare__head {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--line);
}
.compare__head > div,
.compare__row > div {
  padding: 12px 20px;
  border-right: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.04em;
}
.compare__head > div:last-child,
.compare__row > div:last-child { border-right: none; }
.compare__head > div {
  color: var(--fg-muted);
  text-transform: uppercase;
  font-weight: 600;
}
.compare__head > div.hot { color: var(--red); }
.compare__row {
  border-bottom: 1px solid var(--line);
}
.compare__row:last-child { border-bottom: none; }
.compare__row > div:first-child { color: var(--fg); }
.compare__row > div { color: var(--fg-muted); }
.compare__row > div.ok { color: var(--red); font-weight: 700; }
.compare__row > div.no { color: var(--fg-faint); }
.compare__row > div.hot { color: var(--red); font-weight: 600; }
.compare__row--subtle > div {
  color: var(--fg-faint);
  background: rgba(255, 255, 255, 0.012);
}
.compare__row--subtle > div:last-child {
  color: var(--fg-muted);
}
.product-story__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
}

/* AUTOFILES FEATURE TILES */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.feature-grid--facts {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.feature-tile {
  background: var(--bg);
  padding: 28px 24px;
  transition: background var(--t-hover) var(--ease-out);
}
.feature-grid--facts .feature-tile {
  display: flex;
  flex-direction: column;
  min-height: 226px;
}
.feature-tile:hover { background: var(--bg-surface); }
.feature-tile__id,
.feature-tile__num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
}
.feature-tile__title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 10px;
}
.feature-tile__title--metric {
  min-height: 2.9rem;
  display: flex;
  align-items: center;
  font-family: var(--mono);
  font-size: clamp(2rem, 2.6vw, 2.4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--fg);
  margin-bottom: 18px;
}
.feature-tile__title--scope {
  font-size: clamp(1.2rem, 1.45vw, 1.45rem);
  white-space: nowrap;
}
.feature-tile__desc {
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.6;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

.clone-feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.clone-feature-visual {
  grid-column: span 2;
  min-height: 236px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 28%, rgba(227, 6, 19, 0.18), transparent 34%),
    radial-gradient(circle at 80% 70%, rgba(201, 169, 97, 0.12), transparent 36%),
    var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}
.clone-feature-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(255,255,255,0.06), transparent);
  transform: translateX(-120%);
  animation: cloneVisualSweep 6s ease-in-out infinite;
  z-index: 1;
}
.clone-feature-visual img {
  width: min(74%, 560px);
  height: auto;
  object-fit: contain;
  opacity: 0.82;
  filter: drop-shadow(0 22px 38px rgba(0,0,0,0.64));
  position: relative;
  z-index: 0;
}
.clone-feature-visual__caption {
  position: absolute;
  left: 24px;
  bottom: 20px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-hot);
}
@keyframes cloneVisualSweep {
  0%, 40% { transform: translateX(-120%); }
  70%, 100% { transform: translateX(120%); }
}

.clone-process-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 26%, rgba(227, 6, 19, 0.13), transparent 30%),
    radial-gradient(circle at 76% 68%, rgba(227, 6, 19, 0.09), transparent 34%),
    linear-gradient(115deg, rgba(227, 6, 19, 0.035), transparent 42%),
    var(--bg);
}
.clone-process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 38, 54, 0.22), transparent 12%),
    radial-gradient(circle at 68% 22%, rgba(201, 169, 97, 0.11), transparent 16%),
    radial-gradient(circle at 86% 72%, rgba(227, 6, 19, 0.14), transparent 18%);
  filter: blur(34px);
  opacity: 0.55;
  animation: cloneMeshBreath 9s ease-in-out infinite alternate;
  pointer-events: none;
}
.clone-process-section > .container {
  position: relative;
  z-index: 1;
}
.clone-process-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: -12px 0 26px;
}
.clone-process-rail span {
  height: 2px;
  background: linear-gradient(90deg, rgba(227,6,19,0.18), rgba(227,6,19,0.85), rgba(201,169,97,0.45));
  transform-origin: left;
  animation: workflowProgress 3.8s ease-in-out infinite;
}
.clone-process-rail span:nth-child(2) { animation-delay: 0.35s; }
.clone-process-rail span:nth-child(3) { animation-delay: 0.7s; }
.clone-process-rail span:nth-child(4) { animation-delay: 1.05s; }
.clone-process-cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@keyframes cloneMeshBreath {
  0% { transform: translate3d(-1.5%, -1%, 0) scale(1); opacity: 0.42; }
  100% { transform: translate3d(1.5%, 1%, 0) scale(1.05); opacity: 0.68; }
}

/* ============================================================
   FOOTER (industrial)
   ============================================================ */

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.site-footer__top {
  padding: 64px 0 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand img {
  height: 24px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1) opacity(0.85);
}
.footer-brand p {
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.7;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
  max-width: 32ch;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 4px; }
.footer-col li { display: block; }
.footer-col a {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--fg-muted);
  transition: color var(--t-hover) var(--ease-out);
  display: inline-block;
  padding: 6px 0;
  text-decoration: underline;
  text-decoration-color: rgba(138, 138, 138, 0.18);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.footer-col a:hover {
  color: var(--fg);
  text-decoration-color: var(--red);
}
.footer-col a[href="#"] { color: var(--fg-dim); cursor: default; text-decoration: none; }
.footer-col a[href="#"]:hover { color: var(--fg-dim); }

.site-footer__bottom {
  border-top: 1px solid var(--line);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.site-footer__bottom a {
  color: var(--fg-muted);
  margin: 0 2px;
  padding: 8px 6px;
  display: inline-block;
  text-decoration: underline;
  text-decoration-color: rgba(138, 138, 138, 0.25);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color var(--t-hover) var(--ease-out), text-decoration-color var(--t-hover) var(--ease-out);
}
.site-footer__bottom a:hover {
  color: var(--fg);
  text-decoration-color: var(--red);
}
.site-footer__bottom .reg { color: var(--red); }
@media (max-width: 600px) {
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .site-footer__bottom > span:last-child {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 0;
  }
}

/* ============================================================
   404 PAGE
   ============================================================ */

.not-found {
  background: var(--bg);
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
.not-found__main {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 80px var(--gutter);
  position: relative;
}
.not-found__main::before,
.not-found__main::after {
  content: '+';
  position: absolute;
  font-family: var(--mono);
  font-size: 14px;
  color: var(--red);
  line-height: 0;
}
.not-found__main::before { top: 40px; left: 40px; }
.not-found__main::after { bottom: 40px; right: 40px; }
.not-found__inner { max-width: 720px; width: 100%; }
.not-found__meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  display: flex;
  gap: 16px;
}
.not-found__code {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(7rem, 22vw, 16rem);
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: var(--fg);
  margin-bottom: 24px;
}
.not-found__code .red { color: var(--red); }
.not-found__title {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 16px;
  max-width: 20ch;
}
.not-found__sub {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 50ch;
}
.not-found__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   KOFFER REVEAL — scroll-pinned, image-swap on scroll progress
   ============================================================ */

.reveal-section {
  position: relative;
  height: 280vh; /* tall to drive scroll */
  --reveal-progress: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.reveal-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reveal-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(227, 6, 19, 0.08), transparent 22%, transparent 78%, rgba(201, 169, 97, 0.08)),
    radial-gradient(ellipse 54% 46% at 42% 48%, rgba(227, 6, 19, 0.18) 0%, transparent 72%),
    radial-gradient(ellipse 42% 30% at 68% 44%, rgba(201, 169, 97, 0.08) 0%, transparent 62%);
  pointer-events: none;
}
.reveal-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent 0, transparent 3px, rgba(0,0,0,0.18) 3px, rgba(0,0,0,0.18) 4px);
  opacity: 0.35;
  mix-blend-mode: multiply;
}
.reveal-stage {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  width: 100%;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(360px, 0.82fr);
  gap: clamp(40px, 5vw, 78px);
  align-items: center;
}
.reveal-meta {
  position: absolute;
  top: -25vh;
  left: var(--gutter);
  right: var(--gutter);
  display: grid;
  grid-template-columns: auto minmax(120px, 1fr) auto;
  gap: 18px;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.reveal-progress-bar {
  position: relative;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.reveal-progress-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  background: linear-gradient(90deg, var(--red), var(--gold-hot));
  transform: scaleX(var(--reveal-progress));
  transform-origin: left center;
}
.reveal-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(227, 6, 19, 0.1), transparent 68%),
    #0d0d0d;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.025), 0 34px 90px rgba(0,0,0,0.48);
}
.reveal-frame::before,
.reveal-frame::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 2;
}
.reveal-frame::before {
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), transparent 18%, transparent 82%, rgba(227, 6, 19, 0.06));
  opacity: 0.6;
}
.reveal-frame::after {
  inset: 0;
  background: linear-gradient(90deg, rgba(227, 6, 19, 0.08), transparent 18%, transparent 82%, rgba(201, 169, 97, 0.08));
  opacity: 0.38;
}
.reveal-img {
  position: absolute;
  inset: 12%;
  width: 76%;
  height: 76%;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.7));
  transition: opacity 200ms cubic-bezier(0.23, 1, 0.32, 1);
  will-change: opacity, transform;
}
.reveal-img--closed { opacity: 1; z-index: 1; }
.reveal-img--open   { opacity: 0; z-index: 2; }

.reveal-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: transparent;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.7));
  z-index: 3;
  opacity: 1;
  transition: opacity 240ms var(--ease-out);
}
.reveal-video.is-ready {
  opacity: 1;
}

.reveal-text { max-width: 520px; }
.reveal-h {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(2.55rem, 5.2vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--fg);
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.reveal-h__line {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 400ms cubic-bezier(0.23, 1, 0.32, 1), transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal-section.is-active .reveal-h__line { opacity: 1; transform: translateY(0); }
.reveal-section.is-active .reveal-h__line:nth-child(2) { transition-delay: 80ms; }
.reveal-section.is-active .reveal-h__line:nth-child(3) { transition-delay: 160ms; }

.reveal-sub {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  line-height: 1.7;
  color: var(--fg-muted);
  margin-bottom: 22px;
}
.reveal-flow {
  counter-reset: reveal-step;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 28px;
  border: 1px solid var(--line);
  background: var(--line);
}
.reveal-flow span {
  position: relative;
  min-height: 62px;
  padding: 12px 10px 10px;
  background: rgba(17,17,17,0.86);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.reveal-flow span::before {
  content: '0' counter(reveal-step);
  counter-increment: reveal-step;
  display: block;
  color: var(--red);
  font-size: 9px;
  margin-bottom: 8px;
}
.reveal-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.reveal-specs > div {
  background: var(--bg);
  padding: 12px 14px;
}
.reveal-specs dt {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 4px;
}
.reveal-specs dd {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--fg);
}
.reveal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

@media (max-width: 880px) {
  .reveal-section { height: 220vh; }
  .reveal-stage { grid-template-columns: 1fr; gap: 32px; }
  .reveal-meta {
    top: -19vh;
    grid-template-columns: 1fr auto;
  }
  .reveal-progress-bar { grid-column: 1 / -1; order: 3; }
  .reveal-h { font-size: clamp(2rem, 9vw, 3.4rem); }
  .reveal-flow { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   MOTION — scroll progress, reveal, marquee, header
   ============================================================ */

.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 9999;
  pointer-events: none;
  transition: transform 80ms linear;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity var(--t-reveal) var(--ease-out),
    transform var(--t-reveal) var(--ease-out);
  transition-delay: var(--stagger, 0ms);
  will-change: opacity, transform;
}
.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .product-page__grid { grid-template-columns: 1fr; }
  .product-page__visual { min-height: 480px; }
  .site-footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .feature-grid--facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shop-tech-rail { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .shop-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 880px) {
  :root { --gutter: 20px; }
  .header-inner { gap: 12px; height: 56px; }
  .main-nav { display: none; }
  .header-actions .btn-ghost { display: none; }
  .header-actions .btn-primary { padding: 8px 14px; font-size: 10px; }
  .spec-grid,
  .master-grid,
  .b2b-details-grid,
  .modes--three,
  .modes--two,
  .modes,
  .feature-grid { grid-template-columns: 1fr; }
  .spec-card.pro { border-top: 2px solid var(--red); margin-top: -1px; }
  .b2b-card {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .b2b-card:last-child { border-bottom: 0; }
  .compare__head,
  .compare__row { grid-template-columns: 1.5fr 1fr 1fr; }
  .compare--4col .compare__head,
  .compare--4col .compare__row { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .compare__head > div,
  .compare__row > div { padding: 10px 8px; font-size: 9.5px; letter-spacing: 0.02em; word-break: break-word; }
  .site-footer__top { grid-template-columns: 1fr; }
  .hero { min-height: 600px; }
  .hero__top { padding: 48px 0 32px; }
  .hero__meta { flex-direction: column; align-items: flex-start; gap: 6px; padding-top: 16px; font-size: 9px; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .spec-card { padding: 24px 20px; }
  .spec-card__name { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .spec-card__image {
    height: clamp(205px, 52vw, 300px);
    margin: 16px 0 24px;
  }
  .spec-card__image img[src*="anniversary"] { width: 92%; height: 92%; }
  .spec-price-cluster { grid-template-columns: 1fr; }
  .spec-credit-pill { min-height: 62px; }
  .product-page__visual,
  .product-page__info { padding: 32px 20px; }
  .product-page__name { font-size: clamp(2rem, 7vw, 2.8rem); }
  .product-page__visual-foot { grid-template-columns: 1fr 1fr; }
  .site-footer__bottom { flex-direction: column; text-align: center; }
  .master-section__head,
  .section__head { flex-direction: column; align-items: flex-start; }
  .section__head-meta { text-align: left; }
  .section__head h2 { font-size: clamp(1.6rem, 7vw, 2.4rem); }
  .shop-hero h1 { font-size: clamp(2rem, 9vw, 3rem); }
  .section { padding: 64px 0; }
  .shop-hero { padding: 48px 0 32px; }
  .finance-check__head,
  .finance-check__grid { grid-template-columns: 1fr; }
  .finance-check__head { padding: 34px 24px 26px; }
  .finance-check__form,
  .finance-check__panel {
    min-height: 0;
    padding: 24px;
  }
  .finance-check__form { border-right: 0; border-bottom: 1px solid var(--line); }
  .finance-options { grid-template-columns: 1fr; }
  .finance-option { min-height: 120px; }
  .shop-catalog { padding: 56px 0 72px; }
  .shop-catalog__head { grid-template-columns: 1fr; gap: 24px; }
  .shop-catalog__summary p { max-width: none; }
  .shop-tech-rail { grid-template-columns: 1fr 1fr; }
  .shop-category-block__head { align-items: flex-start; flex-direction: column; }
  .shop-category-block__head p { text-align: left; }
  .shop-product-grid { grid-template-columns: 1fr 1fr; }
  .shop-product { min-height: 410px; }
  .shop-product__media { height: 160px; }
  .product-page { padding: 32px 0 64px; }
  /* Trust-Bar mobile readable */
  .trust-bar { grid-template-columns: 1fr 1fr; gap: 1px; }
  .trust-bar__item { padding: 16px 18px; }
  .trust-bar__label { font-size: 0.85rem; }
  .trust-bar__sub { font-size: 9.5px; line-height: 1.4; }
  /* Master strip mobile */
  .master-strip { padding: 20px 22px; margin-top: 24px; }
  /* Reveal section mobile */
  .reveal-section { height: 200vh; }
  .reveal-frame {
    aspect-ratio: 1 / 1.05;
    min-height: 440px;
  }
  .reveal-video {
    width: 100%;
    height: 100%;
  }
  /* Spec-table breathing */
  .spec-table__row { gap: 12px; padding: 9px 0; }
  .spec-table__key { font-size: 10.5px; }
  .spec-table__val { font-size: 11px; }
  /* Product-specs mobile */
  .product-specs__row { grid-template-columns: 16px 1fr auto; gap: 10px; padding: 9px 0; }
  .product-specs__label { font-size: 11px; line-height: 1.4; }
  .product-specs__val { font-size: 9.5px; }

}
@media (max-width: 480px) {
  .spec-card__image {
    height: min(60vw, 270px);
  }
  .brand-coverage__rail {
    overflow: visible;
  }
  .brand-coverage__rail::before,
  .brand-coverage__rail::after {
    display: none;
  }
  .brand-coverage__track {
    width: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    animation: none;
  }
  .brand-logo[aria-hidden="true"] {
    display: none;
  }
  .brand-logo {
    flex: none;
    height: 82px;
    padding: 18px 16px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .brand-logo img {
    max-width: min(128px, 78%);
    max-height: 32px;
  }
  .reveal-frame {
    min-height: 390px;
  }
  .finance-segment { grid-template-columns: 1fr; }
  .finance-segment label + label { border-left: 0; border-top: 1px solid var(--line); }
  .finance-meter__top,
  .finance-meter__steps { flex-direction: column; }
  .finance-result { padding: 24px 20px; }
  .cat-bar__inner { display: grid; grid-template-columns: 1fr 1fr; }
  .cat-bar__label { grid-column: 1 / -1; margin: 0 0 6px; }
  .cat-pill { justify-content: space-between; width: 100%; padding: 9px 10px; font-size: 10px; }
  .shop-tech-rail,
  .shop-product-grid { grid-template-columns: 1fr; }
  .shop-tech-card { min-height: 148px; grid-template-columns: 34px 58px 1fr auto; grid-template-rows: 1fr; align-items: center; }
  .shop-tech-card__icon { height: auto; }
  .shop-tech-card__count { font-size: 1.45rem; }
  .shop-product { min-height: 0; }
  .shop-product__foot { grid-template-columns: 1fr; }
  .shop-product__cta { width: 100%; }
  .trust-bar { grid-template-columns: 1fr; }
  .compare__head > div,
  .compare__row > div { font-size: 9px; padding: 8px 6px; }
  .section__head h2 { font-size: clamp(1.5rem, 8vw, 2rem); }
  .news-item { padding: 18px 16px; }
  .news-item__meta { flex-direction: row; flex-wrap: wrap; gap: 8px; font-size: 9px; }
  .news-item__title { font-size: 1.05rem; }
}

/* ============================================================
   AUTOFLASHER CURSOR (original no-tail)
   ============================================================ */

@media (hover: hover) and (pointer: fine) {
  html,
  body,
  a,
  button,
  [role="button"],
  input,
  textarea,
  select,
  iframe,
  .spec-card,
  .master-card,
  .feature-tile,
  .mode,
  .cat-pill {
    cursor: url("../img/cursor-no-tail-red.cur"), auto;
  }
}

.breadcrumb {
  display: none !important;
}


/* ============================================================
   NEWS FEED — article-list
   ============================================================ */

.news-feed {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.news-item {
  background: var(--bg);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 32px;
  align-items: start;
  transition: background var(--t-hover) var(--ease-out);
  position: relative;
}
.news-item:hover { background: var(--bg-surface); }
.news-item__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.news-item__date { color: var(--fg); font-weight: 600; font-size: 12px; }
.news-item__cat { color: var(--red); }
.news-item__tag { color: var(--fg-dim); }
.news-item__badge {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 4px;
  padding: 3px 8px;
  background: var(--red);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.news-item__title {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 8px;
  line-height: 1.15;
}
.news-item__desc {
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.7;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  grid-column: 2;
}
.news-item__more {
  grid-column: 2;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  transition: color var(--t-hover) var(--ease-out);
}
.news-item__more:hover { color: var(--red-hot); }
@media (max-width: 880px) {
  .news-item { grid-template-columns: 1fr; gap: 12px; padding: 22px 20px; }
  .news-item__meta { flex-direction: row; flex-wrap: wrap; gap: 12px; }
  .news-item__desc, .news-item__more { grid-column: auto; }
}

/* ============================================================
   VIDEO GRID
   ============================================================ */

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.video-grid--embeds {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.video-card {
  background: var(--bg);
  transition: background var(--t-hover) var(--ease-out);
}
.video-card:hover { background: var(--bg-surface); }
.video-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(255,255,255,0.02) 12px, rgba(255,255,255,0.02) 13px),
    radial-gradient(ellipse at center, rgba(227, 6, 19, 0.12), var(--bg-surface));
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.video-card__thumb::before,
.video-card__thumb::after {
  content: '+';
  position: absolute;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--red);
  line-height: 0;
}
.video-card__thumb::before { top: 0; left: 0; transform: translate(-50%, -50%); }
.video-card__thumb::after { bottom: 0; right: 0; transform: translate(50%, 50%); }
.video-card__id {
  position: absolute;
  top: 12px; left: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.video-card__duration {
  position: absolute;
  top: 12px; right: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--fg);
  background: rgba(10, 10, 10, 0.8);
  padding: 2px 6px;
}
.video-card__play {
  display: inline-flex;
  color: var(--red);
  transition: transform 250ms cubic-bezier(0.23, 1, 0.32, 1);
  filter: drop-shadow(0 0 12px rgba(227, 6, 19, 0.8));
}
.video-card:hover .video-card__play { transform: scale(1.15); }
.video-card__embed {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(255,255,255,0.02) 12px, rgba(255,255,255,0.02) 13px),
    radial-gradient(ellipse at center, rgba(227, 6, 19, 0.1), var(--bg-surface));
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.video-card__embed::before,
.video-card__embed::after {
  content: '+';
  position: absolute;
  z-index: 2;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--red);
  line-height: 0;
  pointer-events: none;
}
.video-card__embed::before { top: 0; left: 0; transform: translate(-50%, -50%); }
.video-card__embed::after { bottom: 0; right: 0; transform: translate(50%, 50%); }
.video-card__embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-card__body { padding: 20px 22px; }
.video-card__cat {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 8px;
}
.video-card__title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.015em;
  color: var(--fg);
  margin-bottom: 6px;
  line-height: 1.2;
}
.video-card__desc {
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.55;
  color: var(--fg-muted);
}
.video-section .section__head-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.video-section .section__head-meta a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.video-section .section__head-meta a:hover { color: var(--gold-hot); }
@media (max-width: 880px) {
  .video-grid,
  .video-grid--embeds { grid-template-columns: 1fr; }
}

/* ============================================================
   DOWNLOAD GRID
   ============================================================ */

.dl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.dl-card {
  background: var(--bg);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  transition: background var(--t-hover) var(--ease-out);
}
.dl-card:hover { background: var(--bg-surface); }
.dl-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.dl-card__id { color: var(--fg-dim); }
.dl-card__ext {
  background: var(--bg-surface);
  border: 1px solid var(--line-bright);
  color: var(--red);
  padding: 2px 8px;
  font-weight: 600;
}
.dl-card__name {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.015em;
  color: var(--fg);
  margin-bottom: 4px;
  line-height: 1.25;
}
.dl-card__type {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.dl-card__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  margin-bottom: 16px;
}
.dl-card__specs > div {
  background: var(--bg-surface);
  padding: 8px 10px;
  font-family: var(--mono);
}
.dl-card__specs dt {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 2px;
}
.dl-card__specs dd {
  font-size: 11px;
  color: var(--fg);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.dl-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  gap: 12px;
}
.dl-card__access {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 8px;
}
.dl-card__access--login {
  color: var(--red);
  border: 1px solid var(--red);
}
.dl-card__access--public {
  color: var(--fg-muted);
  border: 1px solid var(--line-bright);
}
.dl-card__btn {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 12px;
  border: 1px solid var(--line-bright);
  color: var(--fg);
  transition: all var(--t-hover) var(--ease-out);
}
.dl-card__btn:hover {
  border-color: var(--red);
  background: rgba(227, 6, 19, 0.06);
  color: var(--red);
}
@media (max-width: 880px) { .dl-grid { grid-template-columns: 1fr; } }

/* ============================================================
   LEGAL DOCUMENT (TOC + § sections)
   ============================================================ */

.legal-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.legal-toc {
  background: var(--bg);
  padding: 28px 24px;
  position: sticky;
  top: 80px;
  align-self: start;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}
.legal-toc__head {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.legal-toc__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0; padding: 0;
}
.legal-toc__list li { margin: 0; }
.legal-toc__list a {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 8px;
  padding: 8px 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--fg-muted);
  transition: color var(--t-hover) var(--ease-out);
  border-bottom: 1px solid var(--line);
}
.legal-toc__list a:hover { color: var(--fg); }
.legal-toc__num {
  color: var(--red);
  font-weight: 600;
}
.legal-toc__label {
  text-transform: none;
  letter-spacing: 0;
  font-size: 12px;
}
.legal-toc__meta {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.legal-toc__meta div { display: flex; justify-content: space-between; }
.legal-toc__meta dt { color: var(--fg-dim); }
.legal-toc__meta dd { color: var(--fg); }

.legal-doc {
  background: var(--bg);
  padding: 32px 40px;
}
.legal-section {
  border-bottom: 1px solid var(--line);
  padding: 24px 0 32px;
}
.legal-section:last-child { border-bottom: 0; }
.legal-section__head {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 16px;
}
.legal-section__num {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--red);
}
.legal-section__title {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--fg);
  line-height: 1.2;
}
.legal-section__p {
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.75;
  letter-spacing: 0.02em;
  color: var(--fg-muted);
  margin-left: 56px;
  margin-bottom: 12px;
  max-width: 60ch;
}
.legal-section__list {
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.75;
  letter-spacing: 0.02em;
  color: var(--fg-muted);
  margin: 0 0 12px 56px;
  padding-left: 18px;
  list-style: none;
  max-width: 60ch;
}
.legal-section__list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
}
.legal-section__list li::before {
  content: '//';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}
.legal-section__list strong { color: var(--fg); font-weight: 700; }
.legal-section__list a,
.legal-section__p a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(201, 169, 97, 0.5);
}
.legal-section__list a:hover,
.legal-section__p a:hover { color: var(--gold-hot); text-decoration-color: var(--gold-hot); }
.legal-section__p strong { color: var(--fg); font-weight: 700; }

@media (max-width: 880px) {
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: relative; top: 0; max-height: none; }
  .legal-doc { padding: 24px 20px; }
  .legal-section__p { margin-left: 0; }
  .legal-section__list { margin-left: 0; }
}

/* ============================================================
   SPOTLIGHT — entfernt (animate-rückgängig)
   ============================================================ */
/* Bundles + Hot-Specs — Gold Spotlight für Premium-Aktion */
.spec-bundle, .product-bundle {
  border: 1px solid rgba(201, 169, 97, 0.55) !important;
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), rgba(201, 169, 97, 0.03)) !important;
  box-shadow: 0 0 0 1px rgba(201, 169, 97, 0.2), inset 0 1px 0 rgba(201, 169, 97, 0.15);
  position: relative;
  padding: 18px 22px !important;
}
.spec-bundle::before, .product-bundle::before {
  content: '★ AKTION';
  position: absolute;
  top: 0; left: 16px;
  transform: translateY(-50%);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  background: var(--bg);
  padding: 2px 8px;
  border: 1px solid rgba(201, 169, 97, 0.5);
  line-height: 1;
}
.spec-bundle__main, .product-bundle__main {
  color: var(--fg) !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: 0.02em !important;
}
.spec-bundle__val, .product-bundle__val {
  color: var(--gold-hot) !important;
  font-weight: 800 !important;
  font-variant-numeric: tabular-nums;
  font-family: var(--mono) !important;
  font-size: 12px !important;
}

/* Hot Tech-Specs (Boot-Mode / Pro-Badges) — Red Spotlight */
.spec-table__val.hot,
.compare__row > div.hot,
.product-specs__hot {
  color: var(--red) !important;
  font-weight: 700;
  position: relative;
}
.spec-table__val.hot {
  background: rgba(227, 6, 19, 0.08);
  padding: 2px 8px;
  border: 1px solid rgba(227, 6, 19, 0.4);
  margin: -2px 0;
}
.compare__row > div.hot {
  background: rgba(227, 6, 19, 0.06);
  font-weight: 700;
}

/* Spec-Card EMPFOHLEN-Tag bekommt stärkere Präsenz */
.spec-card.pro .spec-card__tag {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  padding: 4px 10px;
}
/* spec-card__tag — keine extra shadow/glow */


/* ============================================================
   ACCESSIBILITY
   ============================================================ */

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}
.btn:focus:not(:focus-visible),
a:focus:not(:focus-visible) { outline: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   FAQ — accordion
   ============================================================ */

.faq-item {
  border-top: 1px solid var(--line);
  padding: 0;
}
.faq-item:last-of-type { border-bottom: 1px solid var(--line); }

.faq-item__q {
  display: grid;
  grid-template-columns: 72px 1fr 32px;
  align-items: center;
  gap: 1.5rem;
  padding: clamp(1.4rem, 2.5vw, 2rem) 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  letter-spacing: -0.01em;
  color: var(--fg);
  transition: color var(--t-hover) var(--ease-out);
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q:hover { color: var(--gold-hot); }

.faq-item__num {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--fg-muted);
  font-weight: 500;
}
.faq-item__title {
  line-height: 1.3;
}
.faq-item__chevron {
  justify-self: end;
  font-family: var(--mono);
  font-size: 1.6rem;
  color: var(--red);
  font-weight: 400;
  line-height: 1;
  transition: transform var(--t-reveal) var(--ease-out);
  transform-origin: center;
}
.faq-item[open] .faq-item__chevron {
  transform: rotate(45deg);
}

.faq-item__a {
  padding: 0 0 clamp(1.4rem, 2.5vw, 2rem) calc(72px + 1.5rem);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--fg);
}
.faq-item__a p { margin: 0 0 1rem; }
.faq-item__a p:last-child { margin-bottom: 0; }
.faq-item__a strong,
.faq-item__a strong .brand {
  color: var(--gold-hot);
  font-weight: 800;
}
.faq-item__a em {
  color: var(--fg);
}
.faq-item__a a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.faq-item__a a:hover { color: var(--gold-hot); }

@media (max-width: 600px) {
  .faq-item__q {
    grid-template-columns: 1fr 24px;
    gap: 1rem;
  }
  .faq-item__num {
    grid-column: 1 / -1;
    font-size: 0.7rem;
  }
  .faq-item__title { grid-row: 2; }
  .faq-item__chevron { grid-row: 2; grid-column: 2; }
  .faq-item__a { padding-left: 0; padding-bottom: 1.4rem; }
}

/* ============================================================
   TIMELINE — Anniversary History
   ============================================================ */

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 110px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: linear-gradient(to bottom, var(--line-bright) 0%, var(--line) 50%, var(--line-bright) 100%);
}

.timeline__item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 2.5rem;
  padding: clamp(1.4rem, 2.5vw, 2.2rem) 0;
  position: relative;
  align-items: start;
}

.timeline__year {
  font-family: var(--mono);
  font-size: clamp(0.85rem, 1.1vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  text-transform: uppercase;
  text-align: right;
  padding-top: 4px;
}

.timeline__node {
  position: absolute;
  left: 110px;
  top: 18px;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: var(--bg);
  border: 2px solid var(--fg-muted);
  z-index: 1;
}
.timeline__node--hot {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.18);
}

.timeline__body {
  padding-left: 1.5rem;
}

.timeline__title {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.timeline__item--featured .timeline__title {
  color: var(--fg);
}
.timeline__item--featured .timeline__year {
  color: var(--red);
}

.timeline__desc {
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--fg-muted);
  margin: 0;
  max-width: 60ch;
}

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

.timeline--updates::before {
  left: 110px;
  top: 0;
  bottom: 0;
  background: rgba(255,255,255,0.08);
}

.timeline--updates .timeline__item {
  min-height: 214px;
  padding: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.025), transparent 44%),
    rgba(10,10,10,0.96);
}

.timeline--updates .timeline__year {
  padding-top: 28px;
  padding-right: 18px;
}

.timeline--updates .timeline__node {
  top: 30px;
}

.timeline--updates .timeline__body {
  display: grid;
  grid-template-columns: minmax(230px, 0.38fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  padding: 24px 28px 24px 1.5rem;
}

.timeline--updates .timeline__title,
.timeline--updates .timeline__desc {
  font-family: var(--mono);
  text-transform: uppercase;
}

.timeline--updates .timeline__title {
  font-size: clamp(0.92rem, 1.2vw, 1.08rem);
  line-height: 1.45;
  letter-spacing: 0.055em;
}

.timeline--updates .timeline__desc {
  font-size: 0.76rem;
  line-height: 1.75;
  letter-spacing: 0.045em;
}

.timeline--updates .timeline__desc strong {
  color: var(--gold-hot);
  font-weight: 800;
}

.timeline__media {
  position: relative;
  min-height: 166px;
  border: 1px solid var(--line-bright);
  overflow: hidden;
  background:
    repeating-linear-gradient(135deg, transparent 0, transparent 12px, rgba(255,255,255,0.025) 12px, rgba(255,255,255,0.025) 13px),
    var(--bg-surface);
}

.timeline__media::before {
  content: 'UPDATE';
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 5px 8px;
  background: rgba(10,10,10,0.72);
  border: 1px solid rgba(227,6,19,0.45);
  color: var(--red-hot);
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.timeline__media img {
  width: 100%;
  height: 100%;
  min-height: 166px;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.06) brightness(0.82);
  transform: scale(1.01);
  transition:
    filter var(--t-hover) var(--ease-out),
    transform var(--t-hover) var(--ease-out);
}

.timeline--updates .timeline__item:hover .timeline__media img {
  filter: saturate(1.08) contrast(1.08) brightness(0.96);
  transform: scale(1.045);
}

.timeline__copy {
  align-self: center;
}

@media (max-width: 700px) {
  .timeline::before { left: 18px; }
  .timeline__item {
    grid-template-columns: 36px 1fr;
    gap: 0.5rem;
  }
  .timeline__year {
    grid-column: 1 / -1;
    text-align: left;
    padding-left: 36px;
    padding-top: 0;
    margin-bottom: 6px;
  }
  .timeline__node { left: 18px; top: 4px; }
  .timeline__body { padding-left: 0.5rem; grid-column: 2; }
  .timeline__title { font-size: 1.05rem; }
  .timeline__desc { font-size: 0.9rem; }
  .timeline--updates .timeline__item {
    min-height: 0;
  }
  .timeline--updates .timeline__body {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px 18px 22px 0.5rem;
  }
  .timeline__media,
  .timeline__media img {
    min-height: 180px;
  }
}

/* ============================================================
   AUTOFILES-CREDITS Spotlight
   ============================================================ */

.credits {
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}
.credits::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 75% 50%, rgba(201, 169, 97, 0.06), transparent 70%);
  pointer-events: none;
}

.credits__head {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 1rem 2rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-muted);
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.credits__bracket { color: var(--gold); font-weight: 700; }
.credits__id { color: var(--fg-muted); }

.credits__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.credits__h {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-transform: uppercase;
  color: var(--fg);
  margin: 0 0 1.4rem;
  padding: 0.05em 0;
}
.credits__intro {
  font-family: var(--mono);
  font-size: 0.82rem;
  line-height: 1.75;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin: 0 0 1rem;
  max-width: 55ch;
}
.credits__intro strong { color: var(--gold); font-weight: 700; }

.credits__table-container {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--bg);
}

.credits-pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--mono);
  font-size: 0.85rem;
  text-align: left;
}

.credits-pricing-table__head {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1.2fr 1.4fr;
  background: #0D0D0D;
  border-bottom: 1px solid var(--line);
}

.credits-pricing-table__th {
  padding: 1rem;
  color: var(--fg-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.credits-pricing-table__row {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1.2fr 1.4fr;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.credits-pricing-table__row:last-child {
  border-bottom: none;
}

.credits-pricing-table__row:hover {
  background: rgba(255, 255, 255, 0.02);
}

.credits-pricing-table__row--lite {
  background: rgba(193, 154, 107, 0.04); /* warm gold tint */
  border-left: 3px solid var(--gold);
}
.credits-pricing-table__row--lite:hover {
  background: rgba(193, 154, 107, 0.08);
}

.credits-pricing-table__row--pro {
  background: rgba(224, 30, 55, 0.04); /* red tint */
  border-left: 3px solid var(--red);
}
.credits-pricing-table__row--pro:hover {
  background: rgba(224, 30, 55, 0.08);
}

.credits-pricing-table__td {
  padding: 0.9rem 1rem;
  color: var(--fg);
}

.credits-pricing-table__row--lite .credits-pricing-table__td {
  color: var(--gold-hot);
}
.credits-pricing-table__row--pro .credits-pricing-table__td {
  color: var(--red);
}

.credits-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.5rem;
  border: 1px solid var(--line-bright);
  color: var(--fg-muted);
}

.credits-badge--lite {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.credits-badge--pro {
  background: var(--red);
  color: var(--fg);
  border-color: var(--red);
}

@media (max-width: 768px) {
  .credits-pricing-table__head {
    display: none;
  }
  .credits-pricing-table__row {
    display: block;
    padding: 1rem;
    border-bottom: 1px solid var(--line);
  }
  .credits-pricing-table__row--lite, .credits-pricing-table__row--pro {
    border-left: 3px solid;
  }
  .credits-pricing-table__td {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    font-size: 0.8rem;
  }
  .credits-pricing-table__td::before {
    content: attr(data-label) ": ";
    font-weight: 700;
    color: var(--fg-muted);
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
  }
}

.credits__foot {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1rem 2rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.credits__foot-note {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.credits__foot-note .red { color: var(--red); margin-right: 0.4em; }

@media (max-width: 860px) {
  .credits__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .credits__head { font-size: 0.68rem; letter-spacing: 0.12em; }
  .credits__foot { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
  .credits__bundles { grid-template-columns: 1fr; }
}

/* ============================================================
   PRODUCT FINDER — landing page recommendation tool
   ============================================================ */

.product-finder {
  background:
    radial-gradient(ellipse 58% 44% at 80% 18%, rgba(227, 6, 19, 0.14), transparent 72%),
    linear-gradient(180deg, rgba(255,255,255,0.018), transparent 28%),
    var(--bg);
  border-bottom: 1px solid var(--line);
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}
.product-finder::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px),
    repeating-linear-gradient(135deg, transparent 0, transparent 12px, rgba(255,255,255,0.014) 12px, rgba(255,255,255,0.014) 13px);
  background-size: 96px 96px, 96px 96px, auto;
  opacity: 0.65;
}
.product-finder .container { z-index: 1; }
.product-finder__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  padding-bottom: clamp(1.6rem, 3vw, 2.4rem);
  border-bottom: 1px solid var(--line);
  margin-bottom: 1px;
}
.product-finder__eyebrow {
  display: block;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}
.product-finder__head h2 {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(2.3rem, 6vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  color: var(--fg);
  max-width: 13ch;
  padding: 0.05em 0;
}
.product-finder__head p {
  font-family: var(--mono);
  font-size: 0.76rem;
  line-height: 1.75;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  color: var(--fg-muted);
  max-width: 48ch;
  justify-self: end;
}
.product-finder__shell {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.52fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.product-finder__questions,
.product-finder__result {
  background: rgba(10,10,10,0.96);
}
.product-finder__questions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
}
.finder-question {
  background: var(--bg);
  min-height: 256px;
  padding: clamp(1.3rem, 2.3vw, 2rem);
  display: flex;
  flex-direction: column;
  position: relative;
}
.finder-question::after {
  content: '+';
  position: absolute;
  right: -4px;
  bottom: -5px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--red);
  line-height: 1;
}
.finder-question__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1.25rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
}
.finder-question__meta span {
  color: var(--red);
  font-weight: 800;
}
.finder-question__meta strong {
  color: var(--fg);
  font-weight: 600;
  text-align: right;
}
.finder-options {
  display: grid;
  gap: 8px;
  margin-top: auto;
}
.finder-options--two {
  grid-template-columns: 1fr 1fr;
}
.finder-option {
  min-height: 70px;
  width: 100%;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid var(--line-bright);
  background: rgba(255,255,255,0.015);
  color: var(--fg-muted);
  text-align: left;
  transition: background var(--t-hover) var(--ease-out),
              border-color var(--t-hover) var(--ease-out),
              color var(--t-hover) var(--ease-out),
              transform var(--t-press) var(--ease-out);
}
.finder-option:hover {
  border-color: var(--fg-dim);
  color: var(--fg);
  background: rgba(255,255,255,0.035);
}
.finder-option:active { transform: scale(0.985); }
.finder-option.is-selected {
  color: var(--fg);
  border-color: var(--red);
  background: linear-gradient(90deg, rgba(227,6,19,0.18), rgba(227,6,19,0.04));
}
.finder-option span {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.finder-option em {
  font-family: var(--mono);
  font-style: normal;
  font-size: 0.62rem;
  line-height: 1.45;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.finder-option.is-selected em { color: rgba(234,234,234,0.72); }
.product-finder__result {
  position: sticky;
  top: 96px;
  min-height: 100%;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border-top: 2px solid var(--red);
  display: flex;
  flex-direction: column;
  align-self: start;
}
.product-finder__progress {
  --finder-progress: 1;
  position: relative;
  height: 34px;
  border: 1px solid var(--line-bright);
  margin-bottom: clamp(1.8rem, 3vw, 2.4rem);
  overflow: hidden;
}
.product-finder__progress::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: calc(var(--finder-progress) * 100%);
  background: linear-gradient(90deg, rgba(227,6,19,0.42), rgba(227,6,19,0.08));
  transition: width 220ms var(--ease-out);
}
.product-finder__progress span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 12px;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg);
}
.product-finder__result-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.product-finder__result-top span {
  font-size: clamp(3.4rem, 7vw, 6rem);
  font-family: var(--sans);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.055em;
  color: var(--red);
}
.product-finder__result-top em {
  font-style: normal;
  font-size: 0.68rem;
  color: var(--gold);
  border: 1px solid rgba(201,169,97,0.45);
  padding: 6px 9px;
  background: rgba(201,169,97,0.06);
}
.product-finder__result h3 {
  font-family: var(--sans);
  font-size: clamp(1.65rem, 2.75vw, 2.55rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 1rem;
  padding: 0.05em 0;
  overflow-wrap: anywhere;
}
.product-finder__result h3 .product-brand {
  white-space: normal;
}
.product-finder__result h3::after { content: none; }
.product-finder__result strong {
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--fg);
  margin-bottom: 0.85rem;
}
.product-finder__result p {
  font-family: var(--mono);
  font-size: 0.76rem;
  line-height: 1.7;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1.4rem;
}
.product-finder__bullets {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin: auto 0 1.6rem;
}
.product-finder__bullets li {
  background: var(--bg);
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  color: var(--fg);
}
.product-finder__bullets li::before {
  content: '•';
  color: var(--red);
  margin-right: 10px;
  font-size: 1.3em;
}
.product-finder__result[data-result="master"] {
  border-top-color: var(--gold);
}
.product-finder__result[data-result="master"] .product-finder__result-top span {
  color: var(--gold);
}
.product-finder__result .btn .brand-reg {
  margin-left: 0.035em;
  margin-right: 0;
}
.product-finder__result .btn .brand-pro {
  margin-left: 0;
}

@media (max-width: 1240px) {
  .product-finder__shell,
  .product-finder__head {
    grid-template-columns: 1fr;
  }
  .product-finder__head p { justify-self: start; }
  .product-finder__result {
    position: relative;
    top: auto;
  }
  .product-finder__result h3 .product-brand {
    white-space: nowrap;
  }
}
@media (max-width: 760px) {
  .product-finder__questions {
    grid-template-columns: 1fr;
  }
  .finder-question {
    min-height: auto;
  }
  .product-finder__result h3 .product-brand {
    white-space: normal;
  }
}
@media (max-width: 520px) {
  .finder-options--two {
    grid-template-columns: 1fr;
  }
  .finder-option {
    min-height: 64px;
  }
}

/* ============================================================
   VIDEOS — Empty state
   ============================================================ */

.video-empty {
  border: 1px solid var(--line);
  padding: clamp(3rem, 6vw, 5rem);
  position: relative;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 14px, rgba(255,255,255,0.012) 14px, rgba(255,255,255,0.012) 15px),
    var(--bg);
  text-align: center;
}
.video-empty::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid var(--line);
  pointer-events: none;
}
.video-empty__id {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.video-empty__h {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--fg);
  margin: 0 0 1.5rem;
  padding: 0.05em 0;
}
.video-empty__p {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 56ch;
  margin: 0 auto 1rem;
}
.video-empty__p a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.video-empty__p a:hover { color: var(--gold-hot); }

/* ============================================================
   SHOPPING CART DRAWER (WOOCOMMERCE SIMULATION)
   ============================================================ */

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  visibility: hidden;
  transition: visibility var(--t-reveal) var(--ease-out);
}

.cart-drawer[aria-hidden="false"] {
  visibility: visible;
}

.cart-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity var(--t-reveal) var(--ease-out);
}

.cart-drawer[aria-hidden="false"] .cart-drawer__overlay {
  opacity: 1;
}

.cart-drawer__content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 480px;
  background: var(--bg);
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--t-reveal) var(--ease-out);
}

.cart-drawer[aria-hidden="false"] .cart-drawer__content {
  transform: translateX(0);
}

.cart-drawer__header {
  padding: 24px clamp(16px, 4vw, 32px);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-drawer__header h3 {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg);
}

.cart-drawer__close {
  font-size: 28px;
  color: var(--fg-muted);
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--t-hover) var(--ease-out);
}

.cart-drawer__close:hover {
  color: var(--red);
}

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 24px clamp(16px, 4vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-item {
  display: flex;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.cart-item__img {
  width: 70px;
  height: 70px;
  border: 1px solid var(--line);
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  flex-shrink: 0;
}

.cart-item__img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cart-item__detail {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item__name {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  color: var(--fg);
  line-height: 1.3;
  margin-bottom: 4px;
}

.cart-item__meta {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--fg-muted);
}

.cart-item__price {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg);
  font-weight: 600;
  margin-top: 4px;
}

.cart-item__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.cart-item__qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--bg-surface);
}

.cart-item__qty-btn {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--t-hover) var(--ease-out), background var(--t-hover) var(--ease-out);
}

.cart-item__qty-btn:hover {
  color: var(--fg);
  background: var(--line);
}

.cart-item__qty-val {
  width: 32px;
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg);
}

.cart-item__remove {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--fg-dim);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--t-hover) var(--ease-out);
}

.cart-item__remove:hover {
  color: var(--red);
}

.cart-drawer__empty {
  margin: auto;
  text-align: center;
  padding: 40px 0;
}

.cart-drawer__empty-icon {
  font-size: 32px;
  color: var(--fg-dim);
  margin-bottom: 16px;
}

.cart-drawer__empty-text {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--fg-muted);
  text-transform: uppercase;
}

.cart-drawer__footer {
  padding: 24px clamp(16px, 4vw, 32px);
  border-top: 1px solid var(--line);
  background: var(--bg-surface);
}

.cart-drawer__summary {
  margin-bottom: 20px;
}

.cart-drawer__subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  color: var(--fg);
  margin-bottom: 4px;
}

.cart-drawer__subtotal-row span:last-child {
  font-family: var(--mono);
  color: var(--red);
}

.cart-drawer__tax-note {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Floating cart button */
.floating-cart-trigger {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  width: 56px;
  height: 56px;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(227, 6, 19, 0.3);
  transition: background var(--t-hover) var(--ease-out), transform var(--t-press) var(--ease-out);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.floating-cart-trigger:hover {
  background: var(--red-hot);
  transform: translateY(-2px);
}

.floating-cart-trigger:active {
  transform: translateY(0);
}

.floating-cart-trigger__count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #fff;
  color: #000;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-cart-trigger svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Product add-to-cart modal */
.cart-upsell-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  pointer-events: none;
}
.cart-upsell-modal[aria-hidden="false"] {
  visibility: visible;
  pointer-events: auto;
}
.cart-upsell-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.84);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity var(--t-reveal) var(--ease-out);
}
.cart-upsell-modal[aria-hidden="false"] .cart-upsell-modal__overlay {
  opacity: 1;
}
.cart-upsell-modal__panel {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  border: 1px solid var(--line-bright);
  background:
    radial-gradient(circle at 78% 12%, rgba(201,169,97,0.12), transparent 38%),
    linear-gradient(135deg, rgba(227,6,19,0.08), transparent 36%),
    var(--bg);
  transform: translateY(18px) scale(0.985);
  opacity: 0;
  transition: transform var(--t-reveal) var(--ease-out), opacity var(--t-reveal) var(--ease-out);
  box-shadow: 0 30px 90px rgba(0,0,0,0.55);
}
.cart-upsell-modal[aria-hidden="false"] .cart-upsell-modal__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.cart-upsell-modal__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  padding: clamp(22px, 4vw, 34px);
  border-bottom: 1px solid var(--line);
}
.cart-upsell-modal__kicker,
.cart-upsell-modal__reason,
.upsell-card__meta,
.upsell-card__text {
  font-family: var(--mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.cart-upsell-modal__kicker {
  display: block;
  margin-bottom: 10px;
  font-size: 10px;
  color: var(--gold-hot);
}
.cart-upsell-modal__head h3 {
  font-family: var(--sans);
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--fg);
}
.cart-upsell-modal__close {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-bright);
  color: var(--fg-muted);
  font-family: var(--mono);
  font-size: 20px;
  line-height: 1;
  transition: color var(--t-hover) var(--ease-out), border-color var(--t-hover) var(--ease-out);
}
.cart-upsell-modal__close:hover {
  color: var(--red);
  border-color: rgba(227,6,19,0.65);
}
.cart-upsell-modal__body {
  padding: clamp(22px, 4vw, 34px);
}
.cart-upsell-modal__reason {
  max-width: 72ch;
  margin-bottom: 22px;
  font-size: 11px;
  line-height: 1.7;
  color: var(--fg-muted);
}
.cart-upsell-modal__reason strong {
  color: var(--gold-hot);
  font-weight: 800;
}
.upsell-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.upsell-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
  min-height: 158px;
  padding: 18px;
  background: rgba(10,10,10,0.92);
}
.upsell-card__image {
  display: grid;
  place-items: center;
  min-height: 96px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.025);
}
.upsell-card__image img {
  max-width: 88px;
  max-height: 88px;
  object-fit: contain;
}
.upsell-card__body {
  display: grid;
  gap: 8px;
  align-content: center;
}
.upsell-card__meta {
  font-size: 9px;
  color: var(--red);
}
.upsell-card__title {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.18;
  color: var(--fg);
}
.upsell-card__text {
  font-size: 10px;
  line-height: 1.55;
  color: var(--fg-muted);
}
.upsell-card__actions {
  display: grid;
  grid-template-columns: auto minmax(130px, max-content);
  gap: 10px;
  align-items: center;
  margin-top: 6px;
}
.upsell-card__price {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  color: var(--gold-hot);
}
.upsell-card__btn {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(227, 6, 19, 0.62);
  background: rgba(227, 6, 19, 0.12);
  color: var(--fg);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background var(--t-hover) var(--ease-out),
    border-color var(--t-hover) var(--ease-out),
    color var(--t-hover) var(--ease-out);
}
.upsell-card__btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.cart-upsell-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

@media (max-width: 720px) {
  .upsell-grid,
  .upsell-card {
    grid-template-columns: 1fr;
  }
  .cart-upsell-modal__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .upsell-card__actions {
    grid-template-columns: 1fr;
  }
  .upsell-card__btn {
    width: 100%;
  }
}

/* Inline Quantity Selector & Purchase Wrapper */
.shop-product__purchase {
  display: grid;
  grid-template-columns: auto minmax(118px, 1fr);
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.shop-product__qty-select {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--bg-surface);
  height: 36px;
  min-width: 78px;
}

.shop-product__qty-btn {
  width: 24px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 14px;
  color: var(--fg-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--t-hover) var(--ease-out), background var(--t-hover) var(--ease-out);
}

.shop-product__qty-btn:hover {
  color: var(--fg);
  background: var(--line);
}

.shop-product__qty-val {
  width: 28px;
  text-align: center;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg);
}

@media (max-width: 1240px) {
  .shop-product__foot {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .shop-product__purchase {
    grid-template-columns: 84px minmax(0, 1fr);
  }
  .shop-product__cta {
    width: 100%;
    min-width: 0;
    padding: 0 10px;
    text-align: center;
  }
}

/* Full Vehicle Database */
.vehicle-database {
  background:
    radial-gradient(circle at 82% 10%, rgba(227, 6, 19, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(201, 169, 97, 0.055), transparent 38%),
    var(--bg);
}

.vehicle-stats {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  background: var(--line);
}

.vehicle-stat {
  min-height: 132px;
  padding: 22px 20px;
  background: rgba(10, 10, 10, 0.94);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.vehicle-stat span,
.vehicle-stat em,
.vehicle-filter-panel label span,
.vehicle-table-head,
.vehicle-table,
.vehicle-pagination {
  font-family: var(--mono);
  text-transform: uppercase;
}

.vehicle-stat span {
  color: var(--red);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.vehicle-stat strong {
  font-family: var(--sans);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 900;
  line-height: 0.95;
  color: var(--fg);
}

.vehicle-stat em {
  font-style: normal;
  color: var(--fg-dim);
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.vehicle-filter-panel {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr auto;
  gap: 1px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  background: var(--line);
}

.vehicle-filter-panel label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  padding: 16px;
  background: rgba(10, 10, 10, 0.96);
}

.vehicle-filter-panel label span {
  color: var(--red);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.vehicle-filter-panel input,
.vehicle-filter-panel select {
  width: 100%;
  min-height: 42px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 0;
  background: #080808;
  color: var(--fg);
  font-family: var(--mono);
  font-size: 12px;
}

.vehicle-filter-panel button {
  align-self: stretch;
  height: auto;
  margin: 0;
  border-color: transparent;
  background: rgba(255, 255, 255, 0.03);
}

.vehicle-table-shell {
  border: 1px solid var(--line);
  background: rgba(10, 10, 10, 0.96);
}

.vehicle-table-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--fg-muted);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.vehicle-table-head span {
  color: var(--fg);
}

.vehicle-table-scroll {
  max-height: 760px;
  overflow: auto;
}

.vehicle-table {
  width: 100%;
  min-width: 1120px;
  border-collapse: collapse;
  font-size: 11px;
}

.vehicle-table th {
  position: sticky;
  top: 0;
  z-index: 2;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: #111;
  color: var(--fg-dim);
  text-align: left;
  letter-spacing: 0.1em;
}

.vehicle-table td {
  padding: 13px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  color: var(--fg-muted);
  vertical-align: top;
}

.vehicle-table tr:hover td {
  background: rgba(227, 6, 19, 0.045);
  color: var(--fg);
}

.vehicle-table td strong {
  color: var(--fg);
  font-weight: 800;
}

.vehicle-table td span:not(.vehicle-method) {
  display: block;
  margin-top: 4px;
  color: var(--fg-dim);
}

.vehicle-method {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  margin: 0 5px 5px 0;
  padding: 5px 7px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.045);
  color: var(--fg);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.vehicle-method--obd {
  border-color: rgba(227, 6, 19, 0.55);
  color: var(--red-hot);
}

.vehicle-method--bench {
  border-color: rgba(201, 169, 97, 0.55);
  color: var(--gold-hot);
}

.vehicle-method--boot {
  border-color: rgba(255, 255, 255, 0.32);
}

.vehicle-empty {
  padding: 50px 20px !important;
  color: var(--fg-dim);
  text-align: center;
}

.vehicle-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 18px;
  border-top: 1px solid var(--line);
  color: var(--fg-muted);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.vehicle-pagination button:disabled {
  opacity: 0.35;
  pointer-events: none;
}

@media (max-width: 1100px) {
  .vehicle-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .vehicle-filter-panel {
    grid-template-columns: 1fr 1fr;
  }

  .vehicle-filter-panel .vehicle-search,
  .vehicle-filter-panel button {
    grid-column: 1 / -1;
  }

  .vehicle-filter-panel button {
    min-height: 48px;
  }
}

@media (max-width: 640px) {
  .vehicle-stats,
  .vehicle-filter-panel {
    grid-template-columns: 1fr;
  }

  .vehicle-stat {
    min-height: 112px;
  }

  .vehicle-table-head {
    flex-direction: column;
  }

  .vehicle-table-scroll {
    max-height: 680px;
  }
}

@media (max-width: 980px) {
  .clone-feature-grid,
  .clone-process-cards {
    grid-template-columns: 1fr;
  }

  .clone-feature-visual {
    grid-column: auto;
    min-height: 220px;
  }

  .clone-process-rail {
    grid-template-columns: 1fr;
  }
}
