/* =============================================================
   eucars — landing styles (vanilla, no build step) · v2 next-gen
   Type: Geist + Geist Mono (neo-grotesque, Helvetica DNA)
   Palette: deep black + warm orange · Motif: double chevron »
   ============================================================= */

:root {
  /* accent (orange) */
  --accent: #FF8A3D;
  --accent-strong: #F2701A;
  --accent-soft: #FF9C57;
  --accent-tint: rgba(255, 138, 61, 0.14);
  --on-accent: #160A02;

  /* ink / surfaces */
  --void: #050505;
  --base: #0A0A0A;
  --inset: #121212;
  --raised: #171717;
  --raised-2: #1C1C1C;
  --overlay: #242424;

  /* text */
  --text-strong: #FFF;
  --text-body: #D4D4D4;
  --text-muted: #9B9B9B;
  --text-faint: #6E6E6E;

  /* lines */
  --border-strong: #383838;
  --border: #262626;
  --border-faint: rgba(255, 255, 255, 0.07);

  /* status */
  --ok: #34D17F;
  --bad: #FF4D4D;

  /* type — Geist neo-grotesque (Helvetica-like), mono for numerics */
  --font-text: 'Inter', 'Helvetica Neue', Helvetica, Arial, system-ui, sans-serif;
  --font-display: 'Inter', 'Helvetica Neue', Helvetica, Arial, system-ui, sans-serif;
  --font-mono: 'Geist Mono', 'JetBrains Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

  /* fluid type scale (min · preferred · max) */
  --fs-hero: clamp(2.75rem, 1.4rem + 6vw, 6rem);
  --fs-section: clamp(2rem, 1.2rem + 3vw, 3.6rem);
  --fs-cta: clamp(1.9rem, 1.1rem + 3vw, 3.3rem);
  --fs-card-title: clamp(1.2rem, 1.05rem + 0.6vw, 1.4rem);
  --fs-lead: clamp(1rem, 0.94rem + 0.4vw, 1.2rem);

  --track-display: -0.035em;
  --track-tight: -0.02em;
  --track-label: 0.16em;

  /* radii */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-pill: 999px;

  /* shadows */
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.62);
  --shadow-accent: 0 12px 38px rgba(255, 138, 61, 0.30);

  /* motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.4, 0.5, 1);
  --dur: 220ms;

  /* layout */
  --container: clamp(1180px, 88vw, 1320px);
  --gutter: clamp(20px, 5vw, 48px);
  --header-h: 70px;
  --section-y: clamp(56px, 9vw, 104px);
}

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 14px);
}

body {
  margin: 0;
  background: var(--base);
  color: var(--text-body);
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ambient: warm corner glow + fine dotted field */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(1100px 640px at 84% -12%, rgba(255, 138, 61, 0.10), transparent 58%),
    radial-gradient(900px 600px at -6% 6%, rgba(255, 138, 61, 0.045), transparent 60%);
  pointer-events: none;
}

h1, h2, h3, p, ol, ul, dl, dd, figure { margin: 0; }
ol, ul { list-style: none; padding: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; color: inherit; cursor: pointer; }
::selection { background: var(--accent); color: var(--on-accent); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* lock scroll when modal open (no JS body style) */
body:has(.modal[aria-hidden="false"]) { overflow: hidden; }

.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; letter-spacing: -0.01em; }
.accent { color: var(--accent); }

/* ---------- layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }
.section__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-section);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--text-strong);
}
.section__title--center { text-align: center; margin-inline: auto; max-width: 18ch; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow--center { display: flex; justify-content: center; }
.eyebrow::before { content: "»"; color: var(--accent); opacity: 0.55; font-weight: 800; }
.hero .eyebrow::before { content: none; }
.included .eyebrow::before { content: none; }

.chev { font-weight: 800; display: inline-block; transition: transform var(--dur) var(--ease); }
.chev--accent { color: var(--accent); }

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 60;
  background: var(--accent);
  color: var(--on-accent);
  font-weight: 700;
  padding: 10px 16px;
  border-radius: var(--r-sm);
  transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---------- buttons ---------- */
.btn {
  --bh: 48px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: var(--bh);
  padding: 0 24px;
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 0.975rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
  border: 1.5px solid transparent;
  border-radius: var(--r-pill);
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease),
    border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), color var(--dur) var(--ease);
}
.btn:hover .chev { transform: translateX(4px); }
.btn:active { transform: scale(0.975); }
.btn--sm { --bh: 40px; padding: 0 17px; font-size: 0.875rem; }
.btn--md { --bh: 48px; }
.btn--lg { --bh: 56px; padding: 0 30px; font-size: 1.05rem; }

.btn--primary { background: var(--accent); color: var(--on-accent); box-shadow: var(--shadow-accent); }
.btn--primary:hover { background: var(--accent-soft); box-shadow: 0 16px 44px rgba(255, 138, 61, 0.42); transform: translateY(-1px); }

.btn--secondary { background: transparent; color: var(--text-strong); border-color: var(--border-strong); }
.btn--secondary:hover { border-color: var(--accent); color: var(--accent); }

.btn--ghost { background: rgba(255, 255, 255, 0.04); color: var(--text-strong); border-color: var(--border-faint); }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: var(--border-strong); }

.btn--dark { background: var(--base); color: var(--text-strong); }
.btn--dark:hover { background: #000; transform: translateY(-1px); }

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(10, 10, 10, 0.55);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.header[data-scrolled] {
  background: rgba(10, 10, 10, 0.88);
  border-bottom-color: var(--border-faint);
}
.header__in {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: var(--header-h);
}

.logo { display: inline-flex; align-items: center; gap: 9px; flex: none; }
.logo__mark { display: block; border-radius: 7px; transition: transform var(--dur) var(--ease-spring); }
.logo:hover .logo__mark { transform: rotate(-6deg) scale(1.05); }
.logo__word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: var(--track-tight);
  color: var(--text-strong);
  line-height: 1;
}

.nav { display: flex; align-items: center; gap: 28px; margin-left: 8px; }
.nav a {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--dur) var(--ease);
  position: relative;
  padding-block: 4px;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1.5px;
  width: 0;
  background: var(--accent);
  transition: width var(--dur) var(--ease);
}
.nav a:hover { color: var(--text-strong); }
.nav a:hover::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.header__phone {
  font-size: 0.9rem;
  color: var(--text-body);
  white-space: nowrap;
  transition: color var(--dur) var(--ease);
}
.header__phone:hover { color: var(--accent); }

/* masked-phone reveal hint (shown under the number until the visitor taps) */
[data-phone-locked] { cursor: pointer; }
.phone-hint {
  display: block;
  margin-top: 3px;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: 500;
  text-transform: none;
  color: var(--accent);
  opacity: 0.85;
  transition: opacity var(--dur) var(--ease);
}
.phone-hint::before { content: '👁 '; }
[data-phone]:hover .phone-hint { opacity: 1; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 11px;
  background: var(--overlay);
  border: 1px solid var(--border-faint);
  border-radius: var(--r-sm);
}
.burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text-strong);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero { padding-block: clamp(44px, 7vw, 88px) clamp(28px, 4vw, 44px); }
.hero__in {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--fs-hero);
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: var(--text-strong);
  margin-top: 20px;
  text-wrap: balance;
}
.hero__sub {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--text-body);
  margin-top: 22px;
  max-width: 46ch;
  text-wrap: pretty;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.hero__stats { display: flex; flex-wrap: wrap; gap: clamp(26px, 4vw, 52px); margin-top: clamp(34px, 4vw, 48px); }
.stat { position: relative; padding-left: 16px; }
.stat::before { content: ""; position: absolute; left: 0; top: 3px; bottom: 3px; width: 2px; border-radius: 2px; background: var(--accent); opacity: 0.55; }
.stat__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.55rem, 1rem + 1.4vw, 2rem);
  letter-spacing: var(--track-tight);
  color: var(--text-strong);
  line-height: 1;
}
.stat__num.mono { font-family: var(--font-mono); }
.stat__lab { font-size: 0.82rem; color: var(--text-muted); margin-top: 7px; }

/* hero signature art — EU » RU route */
.hero__art { min-width: 0; }
.route {
  position: relative;
  aspect-ratio: 4 / 3.1;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: linear-gradient(155deg, #161616, #0a0a0a 62%);
  overflow: hidden;
}
.route__grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 27px 27px;
  -webkit-mask-image: radial-gradient(125% 125% at 50% 42%, #000 34%, transparent 80%);
  mask-image: radial-gradient(125% 125% at 50% 42%, #000 34%, transparent 80%);
}
.route__glow {
  position: absolute;
  width: 72%;
  height: 72%;
  right: -12%;
  top: -14%;
  background: radial-gradient(circle, rgba(255, 138, 61, 0.30), transparent 62%);
  filter: blur(8px);
}
.route__watermark { position: absolute; right: -4%; bottom: -8%; width: 40%; opacity: 0.12; }
.route__line {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-inline: clamp(18px, 5%, 30px);
}
.route__node {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  letter-spacing: 0;
  color: var(--text-strong);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-faint);
  border-radius: var(--r-md);
  padding: 11px 15px;
  flex: none;
}
.route__node--ru { color: var(--on-accent); background: var(--accent); border-color: transparent; }
.route__march {
  flex: 1;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  color: var(--accent);
  font-weight: 800;
  font-size: clamp(1rem, 2.4vw, 1.65rem);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}
.route__march span { animation: march 2.4s linear infinite; opacity: 0.85; }
.route__march span:nth-child(2) { animation-delay: 0.2s; }
.route__march span:nth-child(3) { animation-delay: 0.4s; }
.route__march span:nth-child(4) { animation-delay: 0.6s; }
.route__march span:nth-child(5) { animation-delay: 0.8s; }
.route__march span:nth-child(6) { animation-delay: 1s; }
@keyframes march {
  0% { opacity: 0.12; transform: translateX(-5px); }
  45% { opacity: 1; }
  100% { opacity: 0.12; transform: translateX(7px); }
}
.route__badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(10, 10, 10, 0.72);
  border: 1px solid var(--border-faint);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-body);
}
.route__badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 3px rgba(52, 209, 127, 0.18); }

/* ---------- marques marquee (running strip) ---------- */
.marquee {
  border-block: 1px solid var(--border-faint);
  background: rgba(255, 255, 255, 0.012);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
  padding-block: clamp(15px, 2.2vw, 20px);
}
.marquee:hover .marquee__track, .marquee:focus-within .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-text);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0 clamp(16px, 2.2vw, 28px);
  white-space: nowrap;
}
.marquee__item .sep { color: var(--accent); font-weight: 800; margin-left: 0.5em; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- process ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 16px;
  margin-top: clamp(30px, 4vw, 48px);
}
.step {
  position: relative;
  background: linear-gradient(180deg, var(--raised), var(--inset));
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(22px, 2.4vw, 28px);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.step::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.step:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.step:hover::after { transform: scaleX(1); }
.step__no { font-family: var(--font-mono); font-weight: 700; font-size: 0.85rem; color: var(--accent); }
.step__no::after { content: " »"; color: var(--text-faint); }
.step__t {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.28rem;
  letter-spacing: var(--track-tight);
  color: var(--text-strong);
  margin-top: 14px;
}
.step__d { font-size: 0.92rem; color: var(--text-muted); margin-top: 9px; }

/* ---------- catalog ---------- */
.catalog__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.catalog__head .eyebrow { margin-bottom: 12px; }
.catalog__count { font-size: 0.95rem; color: var(--text-muted); }

.filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  align-items: end;
  margin-top: clamp(22px, 3vw, 30px);
  padding: clamp(16px, 2vw, 20px);
  background: var(--inset);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.field label, .field__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.field select, .field input {
  width: 100%;
  height: 44px;
  padding: 0 13px;
  background: var(--base);
  color: var(--text-strong);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: 0.92rem;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field input::placeholder { color: var(--text-muted); }
.field select:hover, .field input:hover { border-color: var(--border-strong); }
.field select:focus, .field input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-tint);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239B9B9B' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 34px;
}
.field--pair .pair { display: flex; align-items: center; gap: 8px; }
.field--pair .pair .chev { color: var(--text-faint); flex: none; }
.field--pair input { text-align: center; }
.filters__reset { align-self: end; height: 44px; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: clamp(16px, 2vw, 22px);
  margin-top: clamp(22px, 3vw, 30px);
}

/* car card */
.card {
  display: flex;
  flex-direction: column;
  background: var(--raised-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.card:hover { transform: translateY(-5px); border-color: var(--border-strong); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 18px 40px -14px rgba(0, 0, 0, 0.65); }
.card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(150deg, #1f1f1f, #0e0e0e);
  overflow: hidden;
}
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }
.card__ph { position: absolute; inset: 0; display: grid; place-items: center; }
.card__ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(120% 120% at 70% 30%, #000 30%, transparent 75%);
  mask-image: radial-gradient(120% 120% at 70% 30%, #000 30%, transparent 75%);
}
.card__ph svg { width: 44%; opacity: 0.5; position: relative; }
.card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 66px;
  background: linear-gradient(transparent, rgba(5, 5, 5, 0.85));
  pointer-events: none;
}
.card__logo { position: absolute; right: 12px; bottom: 11px; opacity: 0.85; z-index: 1; }
.card__media--zoom { cursor: zoom-in; }
.card__media--zoom img { transition: transform 500ms var(--ease); }
.card__media--zoom:hover img { transform: scale(1.05); }
.card__count {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--r-pill);
  background: rgba(10, 10, 10, 0.72);
  color: var(--text-strong);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

/* ---------- photo lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(4px, 2vw, 18px);
  padding: clamp(14px, 4vw, 44px);
  background: rgba(5, 5, 5, 0.92);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  opacity: 0;
  transition: opacity 0.2s var(--ease);
}
.lightbox.is-on { opacity: 1; }
.lightbox__stage { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 12px; min-width: 0; }
.lightbox__img { max-width: 100%; max-height: 82vh; border-radius: var(--r-md); box-shadow: var(--shadow-lg); object-fit: contain; }
.lightbox__cap { font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-muted); }
.lightbox__nav {
  width: 52px; height: 52px; flex: none;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-strong);
  border-radius: 50%;
  font-size: 1.7rem; line-height: 1; cursor: pointer;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.lightbox__nav:hover { background: rgba(255, 255, 255, 0.14); border-color: var(--accent); }
.lightbox__x {
  position: absolute; top: 16px; right: 16px;
  width: 42px; height: 42px;
  border: none; border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-strong); font-size: 1.4rem; line-height: 1; cursor: pointer;
}
.lightbox__x:hover { background: rgba(255, 255, 255, 0.16); }
@media (max-width: 560px) {
  .lightbox__nav { width: 40px; height: 40px; font-size: 1.3rem; }
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  line-height: 1;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.badge[data-s="available"] { background: rgba(52, 209, 127, 0.18); color: var(--ok); }
.badge[data-s="in_transit"] { background: var(--accent-tint); color: var(--accent-soft); }
.badge[data-s="to_order"] { background: rgba(99, 153, 233, 0.18); color: #9CC0FF; }
.badge[data-s="reserved"] { background: rgba(255, 255, 255, 0.12); color: var(--text-body); }
.badge[data-s="sold"] { background: rgba(255, 77, 77, 0.18); color: var(--bad); }

.card__body { display: flex; flex-direction: column; flex: 1; padding: 17px 19px 19px; }
.card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-card-title);
  letter-spacing: var(--track-tight);
  line-height: 1.08;
  color: var(--text-strong);
}
.card__title { overflow-wrap: anywhere; }
.card__desc {
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--text-muted);
  margin-top: 9px;
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card__tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 15px 0; }
.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 11px;
  background: var(--overlay);
  border: 1px solid var(--border-faint);
  border-radius: var(--r-sm);
  font-size: 0.82rem;
  color: var(--text-body);
  line-height: 1;
  white-space: nowrap;
}
.tag.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
.card__foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-top: auto; }
.price { display: flex; flex-direction: column; gap: 3px; }
.price__num { font-family: var(--font-mono); font-weight: 700; font-size: 1.4rem; letter-spacing: -0.02em; color: var(--text-strong); line-height: 1; }
.price__num .cur { color: var(--accent); font-weight: 500; font-size: 0.85em; margin-left: 2px; }
.price__cap { font-size: 0.64rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }

.empty {
  display: none;
  text-align: center;
  padding: clamp(38px, 6vw, 68px) 20px;
  background: var(--inset);
  border: 1px dashed var(--border-strong);
  border-radius: var(--r-lg);
  margin-top: 22px;
}
.empty:not([hidden]) { display: block; }
.empty__t { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; letter-spacing: var(--track-tight); color: var(--text-strong); }
.empty__d { color: var(--text-muted); margin: 8px auto 18px; max-width: 42ch; }

/* "не нашли авто?" — тонкая подпись под каталогом */
.catalog__hint {
  margin-top: clamp(20px, 3vw, 30px);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.catalog__hint-link { color: var(--accent); text-decoration: none; border-bottom: 1px solid rgba(255, 106, 26, 0.45); }
.catalog__hint-link:hover { border-bottom-color: var(--accent); }

/* ---------- included ---------- */
.included { background: var(--void); border-block: 1px solid var(--border-faint); }
.included__in {
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 60px);
  align-items: center;
}
.included__lead { color: var(--text-body); margin: 15px 0 24px; max-width: 42ch; }
.perks { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 238px), 1fr)); gap: 12px; }
.perk {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px 17px;
  background: var(--raised-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-weight: 500;
  font-size: 0.94rem;
  color: var(--text-body);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.perk:hover { transform: translateY(-2px); border-color: var(--border-strong); }
.perk__check {
  display: inline-grid;
  place-items: center;
  width: 25px;
  height: 25px;
  flex: none;
  border-radius: 50%;
  background: rgba(52, 209, 127, 0.16);
  color: var(--ok);
  font-weight: 800;
  font-size: 0.85rem;
}

/* ---------- CTA band ---------- */
.cta {
  position: relative;
  overflow: hidden;
  background: radial-gradient(130% 150% at 50% 0%, var(--accent-soft) 0%, var(--accent) 46%, var(--accent-strong) 100%);
  border-radius: var(--r-xl);
  padding: clamp(40px, 6vw, 84px) clamp(28px, 5vw, 64px);
  box-shadow: var(--shadow-accent);
  text-align: center;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(22, 10, 2, 0.18) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(105deg, transparent 42%, #000);
  mask-image: linear-gradient(105deg, transparent 42%, #000);
  opacity: 0.5;
  pointer-events: none;
}

/* brand chevrons frame the centered message on both edges */
.cta__art {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(2px, 2vw, 40px);
  opacity: 0.15;
  pointer-events: none;
}
.cta__art svg { width: clamp(96px, 15vw, 215px); }
.cta__art svg:first-child { transform: scaleX(-1); }
.cta__art path { fill: none; stroke: var(--on-accent); stroke-width: 9; stroke-linecap: round; stroke-linejoin: round; }
.cta__body { position: relative; z-index: 1; max-width: 34ch; margin-inline: auto; }
@media (max-width: 600px) {
  .cta__art { opacity: 0.1; }
  .cta__art svg { width: 84px; }
}
.cta__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-cta);
  line-height: 1;
  letter-spacing: -0.032em;
  color: var(--on-accent);
  text-wrap: balance;
}
.cta__sub { color: rgba(22, 10, 2, 0.82); font-weight: 500; margin: 14px auto 30px; max-width: 42ch; }
.cta__sub-term { display: inline-block; margin-top: 8px; font-weight: 700; color: var(--on-accent); }

/* ---------- footer ---------- */
.footer { background: var(--base); border-top: 1px solid var(--border-faint); padding-block: clamp(42px, 5vw, 56px) 28px; }
.footer__in { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer__tag { color: var(--text-muted); font-size: 0.85rem; margin-top: 13px; max-width: 36ch; }
.footer__contacts { display: flex; gap: clamp(16px, 3vw, 34px); flex-wrap: wrap; }
.footer__c { display: inline-flex; align-items: center; gap: 9px; color: var(--text-body); font-weight: 500; font-size: 0.95rem; transition: color var(--dur) var(--ease); }
.footer__c:hover { color: var(--accent); }
.footer__sub {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border-faint);
  color: var(--text-muted);
  font-size: 0.82rem;
}
.footer__chev { color: var(--border-strong); letter-spacing: 0.3em; }
.footer__chev::before { content: "» » »"; }

.ico { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.footer__c .ico, .modal__row .ico { fill: currentColor; stroke: none; width: 18px; height: 18px; }

/* ---------- modal ---------- */
.modal { position: fixed; inset: 0; z-index: 50; display: none; }
.modal[aria-hidden="false"] { display: grid; place-items: center; padding: 20px; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.68); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); animation: fade-in 200ms var(--ease); }
.modal__card {
  position: relative;
  width: 100%;
  max-width: 384px;
  background: var(--raised-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  animation: modal-in 320ms var(--ease);
}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes modal-in { from { opacity: 0; transform: translateY(14px) scale(0.97); } to { opacity: 1; transform: none; } }

/* lead questionnaire form inside the modal */
.lead-form { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }
.lead-input { width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 12px; background: rgba(255, 255, 255, 0.03); color: var(--text-strong); font-family: var(--font-text); font-size: 0.97rem; }
.lead-input::placeholder { color: var(--text-faint); }
.lead-input:focus { outline: none; border-color: var(--accent); }
textarea.lead-input { resize: vertical; min-height: 62px; }
.lead-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.lead-submit { margin-top: 4px; width: 100%; justify-content: center; transition: background-color 450ms ease, color 450ms ease, box-shadow 450ms ease; }
.lead-submit.is-sent { background: var(--ok); color: #06201a; box-shadow: 0 8px 26px rgba(52, 209, 127, 0.35); }
.lead-form.sent .lead-input { display: none; }
.lead-error { color: #ff7a7a; font-size: 0.88rem; margin: 2px 2px 0; }
.lead-done { text-align: center; padding: 22px 6px 6px; }
.lead-done__t { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; color: var(--text-strong); }
.lead-done__d { color: var(--text-muted); margin-top: 10px; }

.modal__x {
  position: absolute;
  top: 13px;
  right: 13px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 1.3rem;
  line-height: 1;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.modal__x:hover { background: rgba(255, 255, 255, 0.12); color: var(--text-strong); }
.modal__manager { display: flex; align-items: center; gap: 14px; margin-bottom: 17px; }
.avatar {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  flex: none;
  border-radius: 50%;
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 0 0 2px var(--base), 0 0 0 4px var(--accent);
}
.modal__name { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; letter-spacing: var(--track-tight); color: var(--text-strong); }
.modal__role { font-size: 0.78rem; color: var(--accent-soft); margin-top: 2px; }
.modal__t { font-family: var(--font-display); font-weight: 700; font-size: 1.42rem; letter-spacing: var(--track-tight); color: var(--text-strong); margin-top: 4px; }
.modal__t [data-modal-model] { color: var(--accent); }
.modal__d { color: var(--text-body); font-size: 0.95rem; margin: 11px 0 19px; }
.modal__rows { display: flex; flex-direction: column; gap: 10px; }
.modal__row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 15px;
  background: var(--inset);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.modal__row:hover { border-color: var(--accent); transform: translateX(3px); }
.modal__row .ico { width: 22px; height: 22px; flex: none; color: var(--accent); }
.modal__row > span:nth-child(2) { display: flex; flex-direction: column; }
.modal__row b { font-weight: 600; font-size: 0.95rem; color: var(--text-strong); }
.modal__row i { font-style: normal; font-size: 0.85rem; color: var(--text-muted); }
.modal__row .chev { margin-left: auto; color: var(--accent); }

/* ---------- reveal motion (staggered) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(13px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), filter 0.5s var(--ease);
  transition-delay: calc(var(--ri, 0) * 55ms);
}
.hero__copy .reveal { transform: none; filter: blur(7px); }
.cta.reveal, .included__intro.reveal, .hero__art.reveal { transform: scale(0.985); }
.reveal.in { opacity: 1; transform: none; filter: none; }

/* ===================== HERO · minimal (spacious) ===================== */
.hero--min {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: center;
  min-height: calc(100svh - var(--header-h));
  padding-block: clamp(48px, 9vh, 104px);
  text-align: left;
}
#bg3d { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; opacity: 0; transition: opacity 1.2s var(--ease); }
#bg3d.is-on { opacity: 1; }
.hero__veil { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: radial-gradient(72% 64% at 50% 46%, rgba(10, 10, 10, 0.82), rgba(10, 10, 10, 0.34) 60%, transparent 88%); }
.hero__min { position: relative; z-index: 2; width: 100%; }
.hero--min .eyebrow { color: var(--text-muted); }
.hero--min .eyebrow .chev { color: var(--accent); }
.hero__h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.9rem, 7.4vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
  color: var(--text-strong);
  margin-top: clamp(20px, 3vw, 34px);
  text-wrap: balance;
}
.hero__lead {
  font-size: clamp(1.05rem, 0.55vw + 0.95rem, 1.35rem);
  line-height: 1.55;
  color: var(--text-body);
  margin: clamp(20px, 2.6vw, 30px) 0 0;
  max-width: 52ch;
  text-wrap: pretty;
}
.hero--min .hero__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-start; margin-top: clamp(28px, 3.6vw, 44px); }
.hero__facts { display: flex; flex-wrap: wrap; justify-content: flex-start; align-items: center; margin-top: clamp(40px, 7vh, 84px); font-size: 0.92rem; color: var(--text-muted); }
.hero__facts li { display: inline-flex; align-items: center; gap: 8px; }
.hero__facts li:not(:last-child)::after { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--border-strong); margin-inline: clamp(14px, 2.2vw, 28px); }
.hero__facts b { color: var(--text-strong); font-weight: 700; }
@media (max-width: 540px) {
  .hero__facts { gap: 9px 0; }
  .hero__facts li:not(:last-child)::after { margin-inline: 13px; }
}

/* ===================== HERO · operations deck ===================== */
.deck {
  display: flex;
  align-items: center;
  min-height: calc(100svh - var(--header-h));
  padding-block: clamp(20px, 3vw, 36px) clamp(28px, 4vw, 48px);
}
.deck__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(86px, auto);
  gap: 12px;
  width: 100%;
}

/* tile material — brushed dark metal (no glass cliché) */
.tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--border-faint);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 42%), var(--raised-2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), var(--shadow-md);
  contain: layout paint;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.tile:hover { transform: translateY(-2px); border-color: rgba(255, 255, 255, 0.14); }

/* zone placement (desktop) */
.tile--hero { grid-column: 1 / 8; grid-row: 1 / 4; display: flex; flex-direction: column; padding: clamp(22px, 2.6vw, 38px); }
.tile--count { grid-column: 8 / 11; grid-row: 1 / 2; }
.tile--timer { grid-column: 11 / 13; grid-row: 1 / 2; }
.tile--map { grid-column: 8 / 13; grid-row: 2 / 3; padding: 0; }
.tile--inspect { grid-column: 8 / 13; grid-row: 3 / 4; }
.tile--ticker { grid-column: 1 / 13; grid-row: 4 / 5; }

/* hero tile */
.tile--hero {
  background:
    radial-gradient(120% 92% at 100% 116%, var(--accent-tint), transparent 56%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 42%),
    var(--raised-2);
}
.deck__eyebrow { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-right: clamp(58px, 8vw, 108px); font-size: 0.72rem; letter-spacing: var(--track-label); text-transform: uppercase; color: var(--text-muted); }
.deck__eyebrow .deck__idx { color: var(--accent); }
.deck__waypoints { display: flex; align-items: center; gap: 7px; margin-top: 14px; padding-right: clamp(58px, 8vw, 108px); font-size: 0.64rem; letter-spacing: 0.16em; color: var(--text-faint); }
.deck__waypoints i { flex: 1; height: 1px; background: linear-gradient(90deg, var(--border-strong), transparent); }
.deck__waypoints em { font-style: normal; margin-left: 4px; color: var(--accent); }
.deck__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 4.4vw, 4.3rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--text-strong);
  margin-top: clamp(14px, 2vw, 26px);
  text-wrap: balance;
}
.deck__sub { font-size: var(--fs-lead); line-height: 1.5; color: var(--text-body); margin-top: 16px; max-width: 46ch; text-wrap: pretty; }
.deck__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: clamp(18px, 2.4vw, 30px); }
.deck__pulse { display: flex; flex-wrap: wrap; align-items: center; margin-top: auto; padding-top: clamp(20px, 2.6vw, 30px); font-size: 0.82rem; color: var(--text-muted); }
.deck__pulse li { display: inline-flex; align-items: center; }
.deck__pulse li:not(:last-child)::after { content: "·"; margin: 0 12px; color: var(--text-faint); }
.deck__pulse b { color: var(--text-strong); font-weight: 700; }
.deck__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.deck__chips li { display: inline-flex; align-items: center; gap: 7px; padding: 7px 12px; background: rgba(255, 255, 255, 0.025); border: 1px solid var(--border-faint); border-radius: var(--r-pill); font-size: 0.8rem; color: var(--text-body); }
.deck__chips span { color: var(--ok); font-weight: 800; }

/* rotating customs stamp */
.deck__stamp { position: absolute; top: clamp(16px, 2vw, 26px); right: clamp(16px, 2vw, 26px); width: clamp(60px, 7vw, 92px); height: clamp(60px, 7vw, 92px); }
.deck__stamp-text { font-family: var(--font-mono); font-size: 8.4px; letter-spacing: 0.14em; fill: var(--text-muted); text-transform: uppercase; }
.deck__stamp-rot { transform-box: fill-box; transform-origin: center; animation: spin 26s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* count + timer tiles */
.tile--count, .tile--timer { display: flex; flex-direction: column; justify-content: center; padding: clamp(16px, 1.8vw, 24px); }
.tile__lab { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); }
.tile__big { display: flex; align-items: center; gap: 12px; font-family: var(--font-mono); font-weight: 700; font-size: clamp(2.1rem, 3.4vw, 3.2rem); line-height: 1; letter-spacing: -0.03em; color: var(--text-strong); margin-top: 8px; white-space: nowrap; }
.tile__cap { font-size: 0.76rem; color: var(--text-muted); margin-top: 10px; }
.pulse-dot { width: 9px; height: 9px; flex: none; border-radius: 50%; background: var(--ok); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(52, 209, 127, 0.5); } 50% { box-shadow: 0 0 0 7px rgba(52, 209, 127, 0); } }
.tile__bar { height: 4px; margin-top: 16px; border-radius: 2px; background: var(--overlay); overflow: hidden; }
.tile__bar i { display: block; height: 100%; width: 62%; border-radius: 2px; background: linear-gradient(90deg, var(--accent), var(--accent-soft)); }

/* route map */
.map { display: block; width: 100%; height: 100%; min-height: 132px; }
.map__grid path { stroke: rgba(255, 255, 255, 0.045); stroke-width: 1; }
.map__chev { opacity: 0.08; }
.map__flow { opacity: 0.55; animation: flow 8s linear infinite; }
@keyframes flow { to { stroke-dashoffset: -44; } }
.map__border { opacity: 0.5; }
.map__node circle { fill: var(--inset); stroke: var(--border-strong); stroke-width: 1.5; }
.map__node text { font-family: var(--font-mono); font-weight: 700; font-size: 12px; fill: var(--text-strong); text-anchor: middle; }
.map__node--ru circle { fill: var(--accent); stroke: none; }
.map__node--ru text { fill: var(--on-accent); }
.map__haul { offset-path: path("M44 112 C180 44 344 44 476 96"); offset-distance: 0%; offset-rotate: 0deg; fill: var(--accent); filter: drop-shadow(0 0 6px var(--accent)); animation: haul 9s linear infinite; }
@keyframes haul { to { offset-distance: 100%; } }
@supports not (offset-path: path("M0 0")) { .map__haul { display: none; } }
.map__label { position: absolute; left: 50%; top: 11px; transform: translateX(-50%); font-size: 0.58rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); white-space: nowrap; }
.map__badge { position: absolute; left: 14px; bottom: 12px; font-size: 0.72rem; color: var(--text-muted); }
.map__badge b { color: var(--text-strong); }
.map__tip { position: absolute; right: 14px; bottom: 12px; max-width: 52%; font-size: 0.68rem; color: var(--text-faint); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* inspector + ledger */
.tile--inspect { display: flex; flex-direction: column; gap: 14px; padding: clamp(16px, 1.8vw, 24px); }
.inspect { display: flex; flex-direction: column; gap: 9px; }
.inspect li { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-left: 20px; font-size: 0.84rem; }
.inspect li::before { content: ""; position: absolute; left: 3px; top: 50%; transform: translateY(-50%); width: 9px; height: 9px; border-radius: 50%; background: var(--border-strong); }
.inspect li.is-done::before { background: var(--ok); }
.inspect li.is-now::before { background: var(--accent); box-shadow: 0 0 0 4px var(--accent-tint); }
.inspect__city { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.inspect__st { color: var(--text-body); }
.inspect li.is-done .inspect__st { color: var(--ok); }
.inspect li.is-now .inspect__st { color: var(--accent); }
.ledger { display: flex; flex-direction: column; gap: 7px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border-faint); font-size: 0.8rem; }
.ledger > div { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.ledger dt { color: var(--text-muted); }
.ledger dd { color: var(--text-body); white-space: nowrap; }
.ledger__total dt { color: var(--text-strong); font-weight: 700; }
.ledger__total dd { color: var(--accent); font-weight: 700; }
.ledger__note { font-size: 0.66rem; color: var(--text-faint); margin-top: 2px; }

/* live ticker */
.tile--ticker { display: flex; align-items: center; padding: 0; }
.ticker__track { display: inline-flex; align-items: center; white-space: nowrap; will-change: transform; animation: ticker 42s linear infinite; }
.tile--ticker:hover .ticker__track, .tile--ticker:focus-within .ticker__track { animation-play-state: paused; }
@keyframes ticker { to { transform: translateX(-50%); } }
.ticker__item { padding: 0 16px; font-family: var(--font-mono); font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.ticker__sep { color: var(--accent); font-weight: 800; }

/* deck responsive */
@media (max-width: 1024px) {
  .deck { min-height: 0; }
  .deck__grid { grid-template-columns: repeat(6, 1fr); }
  .tile--hero { grid-column: 1 / 7; grid-row: auto; }
  .tile--count { grid-column: 1 / 4; grid-row: auto; }
  .tile--timer { grid-column: 4 / 7; grid-row: auto; }
  .tile--map { grid-column: 1 / 7; grid-row: auto; }
  .tile--inspect { grid-column: 1 / 7; grid-row: auto; }
  .tile--ticker { grid-column: 1 / 7; grid-row: auto; }
}
@media (max-width: 560px) {
  .deck__grid { grid-template-columns: 1fr 1fr; }
  .tile--hero { grid-column: 1 / 3; padding: 22px 18px; }
  .tile--count { grid-column: 1 / 2; }
  .tile--timer { grid-column: 2 / 3; }
  .tile--map { grid-column: 1 / 3; }
  .tile--inspect { grid-column: 1 / 3; }
  .tile--ticker { grid-column: 1 / 3; }
  .deck__stamp { width: 54px; height: 54px; top: 14px; right: 14px; }
  .deck__eyebrow .deck__idx { display: none; }
}

/* deck reduced motion */
@media (prefers-reduced-motion: reduce) {
  .tile { transition: none; }
  .map__haul { animation: none; offset-distance: 70%; }
  .map__flow, .deck__stamp-rot, .ticker__track, .pulse-dot { animation: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 920px) {
  .hero__in { grid-template-columns: 1fr; }
  .hero__art { max-width: 540px; margin-inline: auto; }
  .included__in { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  :root { --header-h: 60px; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 8px var(--gutter) 16px;
    background: rgba(10, 10, 10, 0.97);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-faint);
    display: none;
  }
  .header:has([data-nav-toggle][aria-expanded="true"]) .nav { display: flex; }
  .nav a { padding: 14px 4px; border-bottom: 1px solid var(--border-faint); font-size: 1rem; }
  .nav a::after { display: none; }
  .nav a:last-child { border-bottom: none; }
  .header__phone, .header__cta { display: none; }
  .burger { display: flex; }
  .catalog__head { align-items: flex-start; }
}

@media (max-width: 430px) {
  .filters { grid-template-columns: 1fr 1fr; }
  .filters__reset { grid-column: span 2; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  .route__march span { animation: none; opacity: 0.8; }
  .modal__card, .modal__backdrop { animation: none; }
  .card:hover .card__media img { transform: none; }
  .marquee__track { animation: none; }
  * { scroll-behavior: auto; }
}
