body {
  background:
    linear-gradient(rgba(20, 25, 27, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 25, 27, 0.026) 1px, transparent 1px),
    var(--paper);
  background-size: 30px 30px;
}

.hero {
  padding: clamp(34px, 5vw, 54px) 0 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  gap: 22px;
  align-items: stretch;
}

.hero-left {
  display: flex;
  flex-direction: column;
}

.hero-eyebrow,
.scope-head,
.scope-body,
.sources-in,
.src,
.block-head,
.split-head,
.map-foot,
.band,
.toolbar,
.entity-head,
.compare-head,
.detail-head,
.offer-row,
.kpi-grid {
  display: flex;
}

.hero-eyebrow {
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.flag-pair {
  display: flex;
  gap: 5px;
}

.hero-title {
  max-width: 820px;
  margin: 0 0 18px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(38px, 5.2vw, 64px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 0.99;
}

.hero-title em {
  color: var(--signal);
  font-style: normal;
}

.hero-lead {
  max-width: 54ch;
  margin: 0 0 26px;
  color: var(--ink-soft);
  font-size: 16px;
}

.picker {
  margin-top: auto;
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  background: rgba(241, 242, 238, 0.84);
}

.picker-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 13px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.picker-go,
.band-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  border-radius: var(--r-sm);
  background: var(--signal);
  color: #fff;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  transition: background var(--t), transform var(--t);
}

.picker-go {
  width: 100%;
}

.picker-go svg,
.band-btn svg,
.seeall svg {
  width: 17px;
  height: 17px;
  flex: none;
}

.picker-go:hover,
.band-btn:hover {
  background: var(--signal-deep);
}

.picker-go:hover svg,
.band-btn:hover svg,
.seeall:hover svg {
  transform: translateX(3px);
}

.hero-visual-panel {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--r);
  background: var(--asphalt);
  box-shadow: 0 24px 70px -42px rgba(20, 25, 27, 0.72);
}

.hero-visual-panel::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(241, 242, 238, 0.12);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.velo-hero-art {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
}

.scope-panel {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  overflow: hidden;
  padding: 20px;
  border-radius: var(--r);
  background:
    radial-gradient(circle at 74% 20%, rgba(255, 90, 31, 0.22), transparent 30%),
    var(--asphalt);
  color: var(--paper);
}

.scope-head {
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.scope-head .eyebrow {
  color: rgba(241, 242, 238, 0.58);
}

.live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--live);
  font-family: var(--mono);
  font-size: 11px;
}

.scope-body {
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.scope-ring {
  position: relative;
  width: 132px;
  height: 132px;
  flex: none;
}

.scope-ring svg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(255, 90, 31, 0.58), rgba(255, 90, 31, 0) 58deg, transparent 100%);
  animation: radarSweep 4.2s linear infinite;
}

@keyframes radarSweep {
  to { transform: rotate(360deg); }
}

.blip {
  position: absolute;
  z-index: 2;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 8px var(--signal);
  transform: translate(-50%, -50%);
}

.blip.g {
  background: var(--live);
  box-shadow: 0 0 8px var(--live);
}

.scope-readout {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  gap: 9px;
}

.ro-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 7px;
  border-bottom: 1px dashed rgba(241, 242, 238, 0.18);
  font-family: var(--mono);
  font-size: 12px;
}

.video-toolbar {
  justify-content: space-between;
  margin: 18px 0 20px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.video-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}

.video-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}

.video-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--asphalt);
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .2s ease;
}

.video-card:hover .video-thumb img {
  transform: scale(1.035);
}

.video-thumb .feed-type {
  position: absolute;
  top: 10px;
  left: 10px;
}

.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(241, 242, 238, .55);
  border-radius: 50%;
  background: rgba(20, 25, 27, .72);
  color: var(--paper);
  font-size: 17px;
  transform: translate(-50%, -50%);
}

.video-thumb-empty {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: var(--paper);
}

.video-thumb-empty svg {
  width: 44px;
  height: 44px;
}

.video-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 14px;
}

.video-title {
  margin: 3px 0 9px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.12;
}

.video-title a {
  color: var(--ink);
}

.video-body p {
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}

.ro-row span {
  color: rgba(241, 242, 238, 0.58);
}

.ro-row .kzt {
  color: var(--signal);
}

.ro-row .kgs {
  color: var(--live);
}

.scope-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  margin-top: auto;
  border-radius: var(--r-sm);
  background: rgba(241, 242, 238, 0.14);
}

.scope-stats .stat {
  border: 0;
  border-radius: 0;
  background: var(--asphalt);
}

.scope-stats .stat .n {
  color: var(--paper);
  font-family: var(--display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.scope-stats .stat .l {
  margin-top: 6px;
  color: rgba(241, 242, 238, 0.54);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sources {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.34);
}

.sources-in {
  align-items: center;
  gap: 18px 22px;
  flex-wrap: wrap;
}

.sources-label {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sources-schedule {
  margin-left: auto;
}

.src {
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12.5px;
}

.src .bar {
  overflow: hidden;
  width: 42px;
  height: 6px;
  border-radius: var(--r-pill);
  background: var(--paper-2);
}

.src .bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--signal);
}

.src .bar.kg i {
  background: var(--trail);
}

.src small,
.src-mini {
  color: var(--ink-soft);
}

section.block,
.page {
  padding: 42px 0;
}

.page-hero {
  padding: 34px 0 18px;
}

.page-hero .lead {
  max-width: 760px;
  margin-top: 10px;
}

.block-head,
.split-head {
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.block-head h2,
.page-hero h1 {
  margin: 0;
}

.block-head .sub {
  margin: 5px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.seeall {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 8px 15px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  color: var(--ink);
  font-family: var(--display);
  font-size: 13.5px;
  font-weight: 700;
  transition: background var(--t), color var(--t), border-color var(--t);
}

.seeall:hover {
  border-color: var(--asphalt);
  background: var(--asphalt);
  color: var(--paper);
}

.block-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.seeall--ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, .64);
  color: var(--ink-soft);
}

.focus-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: -8px 0 16px;
}

.focus-summary span {
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .72);
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 10.5px;
}

.models,
.catalog-grid,
.entity-grid,
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.catalog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.entity-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stats-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 18px;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-img .bike-fallback {
  width: 62%;
  height: 62%;
  opacity: 0.34;
}

.card-best {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
}

.card-why {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  min-height: 25px;
  margin: -2px 0 10px;
}

.card-why span {
  padding: 3px 7px;
  border: 1px solid rgba(255, 90, 31, .28);
  border-radius: var(--r-pill);
  background: rgba(255, 90, 31, .08);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
}

.scenarios {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 13px;
}

.scenarios span {
  padding: 2px 7px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 11px;
}

.ratings {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 13px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.6fr);
  gap: 22px;
  align-items: start;
}

.feed {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
}

.feed-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  transition: background var(--t);
}

.feed-item:last-child {
  border-bottom: 0;
}

.feed-item:hover {
  background: var(--paper);
}

.feed-main {
  min-width: 0;
  flex: 1;
}

.feed-title {
  margin-bottom: 5px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

.feed-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 11px;
}

.side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mini {
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
}

.mini-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.mini-head h3 {
  margin: 0;
}

.mini-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: 12.5px;
  font-weight: 700;
}

.mini-link:hover {
  color: var(--ink);
}

.mini-link svg {
  width: 14px;
  height: 14px;
}

.cnt {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 11px;
}

.map-mini,
.map-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #eef0eb;
}

.map-canvas {
  position: relative;
  height: 168px;
  background:
    linear-gradient(rgba(20, 25, 27, 0.05) 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(90deg, rgba(20, 25, 27, 0.05) 1px, transparent 1px) 0 0 / 24px 24px,
    radial-gradient(circle at 78% 22%, rgba(19, 122, 99, .13), transparent 30%),
    radial-gradient(circle at 20% 76%, rgba(255, 90, 31, .12), transparent 28%),
    #eef0eb;
}

.map-panel .map-canvas {
  height: min(52vh, 440px);
}

.route-line {
  fill: none;
  stroke: var(--signal);
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, .55));
}

.route-line-alt {
  stroke: var(--trail);
  opacity: 0.86;
}

.route-map-svg {
  position: absolute;
  inset: 0;
}

.map-road {
  fill: none;
  stroke: rgba(20, 25, 27, .18);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.map-road--thin {
  stroke-width: 4;
  opacity: .72;
}

.map-pin-svg {
  fill: var(--live);
  stroke: #fff;
  stroke-width: 2;
  filter: drop-shadow(0 1px 4px rgba(20, 25, 27, .22));
}

.map-foot {
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 16px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.mf-t {
  font-family: var(--display);
  font-size: 13.5px;
  font-weight: 700;
}

.mf-m {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 10.5px;
}

.band {
  position: relative;
  overflow: hidden;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(22px, 4vw, 34px);
  border-radius: var(--r);
  background: var(--asphalt);
  color: var(--paper);
}

.band::before {
  position: absolute;
  inset: auto -80px -120px auto;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 90, 31, 0.36);
  border-radius: 50%;
  content: "";
}

.band-tx {
  position: relative;
  max-width: 720px;
}

.band h2 {
  margin: 0;
  color: var(--paper);
}

.band p {
  margin: 8px 0 0;
  color: rgba(241, 242, 238, 0.68);
}

.band-btn {
  position: relative;
  padding: 0 18px;
  flex: none;
}

.toolbar {
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.catalog-toolbar {
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.62);
  padding: 14px;
}

.catalog-toolbar-top {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.toolbar .input {
  min-width: min(100%, 340px);
}

.catalog-search {
  flex: 1;
}

.filter-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.catalog-filter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 8px;
  width: 100%;
}

.catalog-select {
  justify-content: space-between;
  min-width: 0;
  width: 100%;
}

.catalog-select span {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.catalog-select select {
  min-width: 0;
  width: 100%;
  text-align: right;
}

.chip--reset {
  flex: none;
}

.empty {
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink-soft);
}

.entity-card {
  min-height: 230px;
}

.entity-head {
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.entity-logo {
  position: relative;
  display: flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  color: var(--signal);
  font-family: var(--display);
  font-weight: 700;
}

.entity-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.entity-logo--generated {
  flex-direction: column;
  gap: 3px;
  background:
    radial-gradient(circle at 74% 22%, rgba(255, 90, 31, .30), transparent 32%),
    linear-gradient(rgba(20, 25, 27, .06) 1px, transparent 1px) 0 0 / 12px 12px,
    var(--surface);
}

.entity-logo--workshop {
  background:
    radial-gradient(circle at 76% 24%, rgba(19, 122, 99, .28), transparent 34%),
    linear-gradient(rgba(20, 25, 27, .06) 1px, transparent 1px) 0 0 / 12px 12px,
    var(--surface);
  color: var(--trail);
}

.entity-logo--generated svg {
  width: 20px;
  height: 20px;
}

.entity-logo--generated strong {
  color: var(--ink);
  font-size: 13px;
  line-height: 1;
}

.entity-card p,
.detail-copy,
.muted {
  color: var(--ink-soft);
}

.entity-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 24px;
  margin: 10px 0 14px;
}

.entity-facts span {
  max-width: 100%;
  padding: 4px 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: var(--paper);
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 10.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(var(--cols, 3), minmax(220px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.compare-card {
  min-width: 220px;
}

.compare-card .card-img {
  aspect-ratio: 16 / 9;
}

.compare-matrix {
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
}

.compare-row {
  display: grid;
  grid-template-columns: 170px repeat(var(--cols, 3), minmax(180px, 1fr));
  border-bottom: 1px solid var(--line);
}

.compare-row:last-child {
  border-bottom: 0;
}

.compare-row > div {
  padding: 12px 14px;
  border-right: 1px solid var(--line);
}

.compare-row > div:last-child {
  border-right: 0;
}

.compare-label {
  background: var(--paper-2);
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 22px;
  align-items: start;
}

.detail-gallery {
  display: grid;
  gap: 10px;
}

.detail-media {
  display: flex;
  width: 100%;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--paper-2);
  cursor: zoom-in;
  padding: 0;
}

.detail-media img,
.detail-media .bike-fallback {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--surface);
}

.detail-media .bike-fallback {
  padding: 18%;
  color: var(--ink-soft);
}

.detail-thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.detail-thumbs button {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: var(--surface);
  cursor: zoom-in;
  padding: 0;
}

.detail-thumbs img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 4px;
}

.detail-head {
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.detail-head h1 {
  margin: 4px 0 8px;
}

.detail-copy-wrap {
  max-width: 64ch;
}

.detail-copy {
  margin-bottom: 10px;
}

.detail-copy.is-collapsed {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
}

.detail-more {
  margin-top: 2px;
}

.kpi-grid {
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0;
}

.kpi-grid .stat {
  flex: 1 1 140px;
}

.offers-list {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
}

.offer-row {
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.offer-row:last-child {
  border-bottom: 0;
}

.offer-main strong {
  display: block;
  font-family: var(--display);
}

.offer-main span {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 11px;
}

.picker-layout {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.picker-panel {
  position: sticky;
  top: 78px;
}

.picker-group {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.picker-group:last-of-type {
  margin-bottom: 0;
}

.picker-group .chips {
  margin-bottom: 0;
}

.rider-profile {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 90, 31, 0.12), transparent 34%),
    var(--surface);
}

.picker-group-title {
  margin-bottom: 10px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rider-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.rider-field {
  display: grid;
  gap: 5px;
}

.rider-field span {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rider-field > div {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: var(--paper);
  padding: 0 10px;
}

.rider-field input,
.wizard-number input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
}

.rider-field b,
.wizard-number b {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 11px;
}

.rider-gender {
  margin-top: 10px;
}

.fit-note {
  display: grid;
  gap: 3px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.fit-note strong {
  font-family: var(--display);
  font-size: 18px;
}

.fit-note span {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 11px;
}

.picker-actions {
  padding-top: 2px;
}

.fit-advice-panel {
  display: grid;
  grid-template-columns: minmax(190px, 0.36fr) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background:
    linear-gradient(135deg, rgba(198, 255, 61, 0.12), transparent 38%),
    var(--surface);
}

.fit-advice-panel strong,
.fit-advice-panel small {
  display: block;
}

.fit-advice-panel strong {
  margin-top: 4px;
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1;
}

.fit-advice-panel small {
  margin-top: 6px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 11px;
}

.fit-advice-panel p {
  margin: 0;
  color: var(--ink-soft);
}

.picker-summary {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.picker-lead-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 20px;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background:
    radial-gradient(circle at 94% 0%, rgba(255, 90, 31, 0.14), transparent 32%),
    var(--surface);
}

.picker-lead-card h2 {
  margin: 4px 0 8px;
}

.picker-lead-card p {
  max-width: 760px;
  margin: 0 0 12px;
  color: var(--ink-soft);
}

.picker-lead-side {
  display: flex;
  min-width: 180px;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.picker-results-head {
  margin-top: 4px;
}

.picker-card .match {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
}

.picker-card .card-img {
  aspect-ratio: 16 / 10;
}

.region-note {
  display: inline-flex;
  align-items: center;
  min-height: 35px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  background: var(--paper-2);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  padding: 0 12px;
}

body.external-modal-open,
body.picker-modal-open,
body.gallery-modal-open {
  overflow: hidden;
}

.gallery-modal[hidden] {
  display: none;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 245;
  display: grid;
  place-items: center;
  padding: 5vh 5vw;
}

.gallery-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 25, 27, 0.58);
  backdrop-filter: blur(12px);
}

.gallery-panel {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(90vw, 1080px);
  height: 90vh;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(241, 242, 238, 0.16);
  border-radius: var(--r);
  background: var(--asphalt);
  color: var(--paper);
  box-shadow: 0 24px 80px -32px rgba(20, 25, 27, 0.72);
}

.gallery-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  padding: 48px 64px 58px;
}

.gallery-close,
.gallery-nav {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(241, 242, 238, 0.24);
  border-radius: var(--r-sm);
  background: rgba(22, 25, 27, 0.72);
  color: var(--paper);
  cursor: pointer;
}

.gallery-close {
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
}

.gallery-close svg {
  width: 18px;
  height: 18px;
}

.gallery-nav {
  top: 50%;
  width: 44px;
  height: 58px;
  font-size: 34px;
  transform: translateY(-50%);
}

.gallery-nav--prev {
  left: 14px;
}

.gallery-nav--next {
  right: 14px;
}

.gallery-caption {
  position: absolute;
  right: 16px;
  bottom: 14px;
  left: 16px;
  overflow: hidden;
  color: rgba(241, 242, 238, 0.7);
  font-family: var(--mono);
  font-size: 11px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.picker-wizard-modal[hidden] {
  display: none;
}

.picker-wizard-modal {
  position: fixed;
  inset: 0;
  z-index: 230;
  display: grid;
  place-items: center;
  padding: 5vh 5vw;
}

.picker-wizard-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 25, 27, 0.5);
  backdrop-filter: blur(12px);
}

.picker-wizard-panel {
  position: relative;
  z-index: 1;
  width: min(90vw, 780px);
  max-height: 90vh;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  box-shadow: 0 24px 80px -30px rgba(20, 25, 27, 0.7);
}

.picker-wizard-content {
  display: grid;
  max-height: 90vh;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
}

.picker-wizard-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 24px 14px;
}

.picker-wizard-kicker {
  margin-bottom: 7px;
  color: var(--signal);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.picker-wizard-head h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1;
}

.picker-wizard-close {
  display: inline-flex;
  width: 40px;
  height: 40px;
  flex: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.picker-wizard-close:hover {
  border-color: var(--asphalt);
  background: var(--asphalt);
  color: var(--paper);
}

.picker-wizard-close svg {
  width: 18px;
  height: 18px;
}

.picker-wizard-progress {
  display: grid;
  grid-template-columns: repeat(var(--wizard-steps, 6), minmax(0, 1fr));
  gap: 6px;
  padding: 0 24px 18px;
}

.picker-wizard-progress span {
  height: 5px;
  border-radius: var(--r-pill);
  background: var(--paper-2);
}

.picker-wizard-progress span.on {
  background: var(--signal);
}

.picker-wizard-body,
.picker-wizard-result {
  overflow-y: auto;
  padding: 0 24px 22px;
}

.picker-wizard-body p,
.picker-wizard-result > p {
  max-width: 58ch;
  margin: 0 0 18px;
  color: var(--ink-soft);
}

.wizard-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.wizard-number {
  display: grid;
  gap: 8px;
  max-width: 360px;
}

.wizard-number > span {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.wizard-number-control {
  display: flex;
  min-height: 62px;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: var(--paper);
  padding: 0 16px;
}

.wizard-number input {
  font-size: 34px;
}

.wizard-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.wizard-option {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: flex-start;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 16px;
  text-align: left;
  transition: border-color var(--t), background var(--t), color var(--t), transform var(--t);
}

.wizard-option:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
}

.wizard-option[aria-pressed="true"] {
  border-color: var(--asphalt);
  background: var(--asphalt);
  color: var(--paper);
}

.picker-wizard-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.picker-wizard-actions .btn[disabled] {
  cursor: not-allowed;
  opacity: 0.45;
}

.wizard-result-list {
  display: grid;
  gap: 10px;
}

.wizard-result-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--surface);
  padding: 10px;
}

.wizard-result-img {
  display: flex;
  min-height: 104px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper-2);
}

.wizard-result-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.wizard-result-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}

.external-modal[hidden] {
  display: none;
}

.external-modal {
  position: fixed;
  inset: 0;
  z-index: 240;
  display: grid;
  place-items: center;
  padding: 5vh 5vw;
}

.external-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 25, 27, 0.48);
  backdrop-filter: blur(12px);
}

.external-modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  width: 90vw;
  height: 90vh;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(241, 242, 238, 0.18);
  border-radius: var(--r);
  background: var(--surface);
  box-shadow: 0 24px 80px -32px rgba(20, 25, 27, 0.72);
}

.external-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  padding: 10px 12px 10px 18px;
  background: var(--asphalt);
  color: var(--paper);
}

.external-modal-head > div {
  min-width: 0;
}

.external-modal-label {
  color: rgba(241, 242, 238, 0.52);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.external-modal-url {
  overflow: hidden;
  max-width: min(70vw, 880px);
  margin-top: 2px;
  color: rgba(241, 242, 238, 0.8);
  font-family: var(--mono);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.external-modal-source {
  display: inline-flex;
  min-height: 40px;
  flex: none;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(241, 242, 238, 0.22);
  border-radius: var(--r-sm);
  color: var(--paper);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  padding: 0 14px;
}

.external-modal-source:hover {
  border-color: var(--live);
  background: rgba(175, 255, 39, 0.12);
}

.external-modal-close {
  display: inline-flex;
  width: 40px;
  height: 40px;
  flex: none;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(241, 242, 238, 0.22);
  border-radius: var(--r-sm);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
}

.external-modal-close:hover {
  border-color: var(--signal);
  background: var(--signal);
}

.external-modal-close svg {
  width: 18px;
  height: 18px;
}

.external-modal-body {
  position: relative;
  min-height: 0;
  background: #fff;
}

.external-modal-frame {
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

.external-modal-state {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: none;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(rgba(241, 242, 238, 0.9), rgba(241, 242, 238, 0.88)),
    var(--paper);
}

.external-modal.is-loading .external-modal-state,
.external-modal.has-fallback .external-modal-state {
  display: grid;
}

.external-modal.is-loading .external-modal-state {
  pointer-events: none;
}

.external-modal.is-loading .external-modal-state-card .btn {
  display: none;
}

.external-modal-state-card {
  width: min(560px, 100%);
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  background: var(--surface);
  padding: 24px;
  box-shadow: 0 20px 70px -38px rgba(20, 25, 27, 0.62);
}

.external-modal-state-card h2 {
  margin: 8px 0 10px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
}

.external-modal-state-card p {
  margin: 0 0 16px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

@media (max-width: 1080px) {
  .hero-grid,
  .split,
  .detail-layout,
  .picker-layout {
    grid-template-columns: 1fr;
  }

  .models,
  .catalog-grid,
  .entity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .scope-panel,
  .hero-visual-panel {
    min-height: auto;
  }

  .picker-panel {
    position: static;
  }

  .picker-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .wrap {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-title {
    font-size: clamp(34px, 12vw, 46px);
  }

  .picker-label,
  .scope-body,
  .band,
  .map-foot,
  .offer-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .scope-ring {
    align-self: center;
    width: 160px;
    height: 160px;
  }

  .hero-visual-panel,
  .velo-hero-art {
    min-height: 320px;
  }

  .scope-stats,
  .models,
  .catalog-grid,
  .entity-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .sources-schedule {
    margin-left: 0;
  }

  .feed-item {
    flex-direction: column;
  }

  .feed-type {
    min-width: 0;
  }

  .band-btn,
  .toolbar .input {
    width: 100%;
  }

  .catalog-toolbar-top {
    align-items: stretch;
    flex-direction: column;
  }

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

  .catalog-select select {
    text-align: left;
  }

  .chip--reset {
    justify-content: center;
    width: 100%;
  }

  .compare-row {
    grid-template-columns: 130px repeat(var(--cols, 3), minmax(160px, 1fr));
  }

  .picker-summary,
  .picker-lead-card,
  .fit-advice-panel {
    grid-template-columns: 1fr;
  }

  .picker-lead-side {
    align-items: stretch;
  }

  .picker-wizard-modal {
    padding: 12px;
  }

  .picker-wizard-panel,
  .picker-wizard-content {
    width: 100%;
    max-height: calc(100vh - 24px);
  }

  .picker-wizard-head {
    padding: 18px 16px 12px;
  }

  .picker-wizard-progress,
  .picker-wizard-body,
  .picker-wizard-result {
    padding-right: 16px;
    padding-left: 16px;
  }

  .wizard-options,
  .wizard-result-card {
    grid-template-columns: 1fr;
  }

  .wizard-result-img {
    min-height: 150px;
  }

  .picker-wizard-actions {
    align-items: stretch;
    flex-direction: column-reverse;
    padding: 14px 16px 16px;
  }

  .picker-wizard-actions .btn {
    width: 100%;
  }

  .detail-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .gallery-modal {
    padding: 12px;
  }

  .gallery-panel {
    width: 100%;
    height: calc(100vh - 24px);
  }

  .gallery-image {
    padding: 58px 12px 62px;
  }

  .gallery-nav {
    top: auto;
    bottom: 14px;
    width: 42px;
    height: 42px;
    font-size: 30px;
    transform: none;
  }

  .external-modal {
    padding: 3vh 3vw;
  }

  .external-modal-panel {
    width: 94vw;
    height: 94vh;
  }

  .external-modal-head {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .external-modal-source {
    order: 3;
    width: calc(100% - 52px);
  }

  .external-modal-url {
    max-width: calc(94vw - 92px);
  }
}

/* ====== UX/UI PASS 2026-06: orientation, density, product clarity ====== */
.nav {
  box-shadow: 0 10px 34px -30px rgba(20, 25, 27, .55);
}

.nav-links a.active,
.m-drawer-links a.active {
  background: var(--asphalt);
  color: var(--paper);
}

.nav-links a.active:hover,
.m-drawer-links a.active:hover {
  background: var(--asphalt);
  color: var(--paper);
}

.hero {
  padding-top: clamp(28px, 4vw, 44px);
}

.hero-grid {
  gap: clamp(18px, 3vw, 30px);
}

.hero-title {
  max-width: 760px;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 62ch;
  margin-bottom: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 14px;
}

.hero-actions .btn {
  min-height: 43px;
  padding-right: 15px;
  padding-left: 15px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 18px;
}

.hero-metrics a,
.hero-metrics div {
  min-width: 0;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, .58);
  color: inherit;
  text-decoration: none;
  transition: transform var(--t), border-color var(--t), background var(--t);
}

.hero-metrics a:hover {
  transform: translateY(-1px);
  border-color: var(--asphalt);
  background: rgba(255, 255, 255, .88);
}

.hero-metrics a:focus-visible {
  outline: 2px solid var(--live);
  outline-offset: 3px;
}

.hero-metrics strong {
  display: block;
  font-family: var(--display);
  font-size: 23px;
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 5px;
  overflow: hidden;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .05em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.picker {
  border-color: rgba(20, 25, 27, .18);
  box-shadow: 0 14px 34px -30px rgba(20, 25, 27, .5);
}

section.block,
.page {
  padding: 34px 0;
}

.page-hero {
  padding: 28px 0 20px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(20, 25, 27, .018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 25, 27, .018) 1px, transparent 1px),
    rgba(255, 255, 255, .22);
  background-size: 30px 30px;
}

.page-hero .lead {
  max-width: 860px;
  font-size: 15px;
}

.block-head {
  margin-bottom: 18px;
}

.section-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, .62);
  color: var(--ink-soft);
  font-size: 13.5px;
}

.section-note strong {
  flex: none;
  color: var(--ink);
  font-family: var(--display);
  font-size: 14px;
}

.section-note .btn {
  margin-left: auto;
  padding: 8px 13px;
}

.stats-grid {
  gap: 10px;
  margin-bottom: 14px;
}

.stats-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat {
  padding: 13px 14px;
}

.stat .sv {
  font-size: 24px;
}

.stat-link {
  color: inherit;
  text-decoration: none;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}

.stat-link:hover {
  transform: translateY(-2px);
  border-color: var(--asphalt);
  box-shadow: 0 18px 34px -30px rgba(20, 25, 27, .55);
}

.stat-link:focus-visible {
  outline: 2px solid var(--live);
  outline-offset: 3px;
}

.btn--disabled {
  pointer-events: none;
  opacity: .62;
}

.compare-toggle.is-on,
.compare-detail.is-on {
  border-color: var(--live);
  background: var(--asphalt);
  color: var(--live);
  box-shadow: 0 0 0 3px rgba(199, 242, 62, .18);
}

.compare-toggle.is-on:hover,
.compare-detail.is-on:hover {
  border-color: var(--signal);
  color: var(--paper);
}

.seo-text {
  margin-top: 26px;
  margin-bottom: 44px;
}

.seo-text details {
  border: 1px solid rgba(20, 25, 27, .12);
  border-radius: var(--r);
  background: rgba(255, 255, 255, .58);
}

.seo-text summary {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  cursor: pointer;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 700;
  list-style: none;
}

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

.seo-text summary::after {
  width: 24px;
  height: 24px;
  flex: none;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--ink-soft);
  content: "+";
  font-family: var(--mono);
  font-size: 15px;
  line-height: 21px;
  text-align: center;
}

.seo-text details[open] summary::after {
  content: "-";
}

.seo-text summary small {
  margin-left: auto;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.seo-text-body {
  display: grid;
  gap: 13px;
  padding: 0 18px 18px;
  color: var(--ink-soft);
  font-size: 14px;
}

.seo-text-body h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.08;
}

.seo-text-body p {
  max-width: 82ch;
}

.seo-text-body ul {
  display: grid;
  gap: 6px;
  padding-left: 18px;
}

.seo-text-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 4px;
}

.seo-text-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .72);
  color: var(--ink);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
}

.seo-text-links a:hover {
  border-color: var(--asphalt);
  background: var(--asphalt);
  color: var(--paper);
}

.catalog-toolbar {
  position: sticky;
  top: 72px;
  z-index: 12;
  margin-bottom: 18px;
  border-color: rgba(20, 25, 27, .18);
  background: rgba(241, 242, 238, .88);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 32px -30px rgba(20, 25, 27, .6);
}

.catalog-more {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.catalog-more .btn {
  min-width: min(100%, 280px);
}

.catalog-end {
  margin-top: 18px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 11px;
  text-align: center;
}

.catalog-toolbar .filter-row,
.catalog-filter-grid {
  align-items: center;
}

.catalog-filter-grid {
  gap: 10px;
}

.input,
.select-box {
  border-color: rgba(20, 25, 27, .2);
}

.catalog-select {
  min-height: 45px;
  background: rgba(255, 255, 255, .78);
}

.chip {
  min-height: 35px;
}

.models,
.catalog-grid,
.entity-grid,
.video-grid {
  gap: 14px;
}

.card,
.video-card,
.mini,
.feed,
.map-panel,
.map-mini,
.offers-list,
.compare-matrix {
  border-color: rgba(20, 25, 27, .14);
  box-shadow: 0 10px 28px -28px rgba(20, 25, 27, .45);
}

.card:hover,
.video-card:hover {
  box-shadow: 0 18px 38px -28px rgba(20, 25, 27, .55);
}

.card:focus-within,
.video-card:focus-within,
.entity-card:focus-within {
  border-color: var(--signal);
  box-shadow: 0 0 0 3px rgba(255, 90, 31, .12), 0 18px 38px -30px rgba(20, 25, 27, .55);
}

.card-img {
  background:
    linear-gradient(135deg, rgba(241, 242, 238, .72), rgba(255, 255, 255, .92));
  min-height: 190px;
  padding: 18px;
}

.card-img img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: scale-down;
  object-position: center;
  padding: 0;
  background: #fff;
}

.picker-card .card-img,
.models--focus .card-img,
.catalog-grid .card-img {
  aspect-ratio: 4 / 3;
}

.card-brand {
  min-height: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-name {
  display: -webkit-box;
  min-height: 37px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  letter-spacing: 0;
}

.scenarios {
  min-height: 24px;
}

.rate .rt {
  height: 6px;
}

.feed-item {
  min-height: 70px;
}

.feed-title,
.video-title,
.entity-card .h3 {
  letter-spacing: 0;
}

.video-body p,
.entity-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.video-body p {
  -webkit-line-clamp: 3;
}

.entity-card p {
  -webkit-line-clamp: 4;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: 13.5px;
  font-weight: 700;
}

.back-link svg {
  width: 15px;
  height: 15px;
  transform: rotate(180deg);
}

.back-link:hover {
  color: var(--signal);
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: -2px 0 16px;
}

.detail-tags span {
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .62);
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 10.5px;
}

.detail-head {
  margin-bottom: 10px;
}

.detail-copy.is-collapsed {
  -webkit-line-clamp: 6;
}

.detail-media {
  background: #fff;
}

.detail-thumbs button:hover {
  border-color: var(--signal);
}

.compare-note {
  align-items: center;
}

.compare-row {
  min-width: calc(170px + var(--cols, 3) * 180px);
}

.compare-label {
  position: sticky;
  left: 0;
  z-index: 1;
}

.map-panel .map-canvas {
  height: min(44vh, 360px);
}

.map-canvas::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 20%, rgba(255, 90, 31, .16), transparent 38%);
  content: "";
  pointer-events: none;
}

.empty {
  min-height: 110px;
}

.empty {
  display: flex;
  min-height: 140px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.empty strong {
  font-family: var(--display);
  font-size: 16px;
}

.empty-icon {
  display: flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 90, 31, .22), transparent 34%),
    var(--surface);
  color: var(--ink);
}

.empty-icon svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 1080px) {
  .catalog-toolbar {
    position: static;
  }

  .stats-grid--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-metrics a,
  .hero-metrics div {
    padding: 10px;
  }

  .section-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-note .btn {
    width: 100%;
    margin-left: 0;
  }

  .stats-grid--three {
    grid-template-columns: 1fr;
  }

  .card-img {
    min-height: 168px;
    padding: 10px;
  }

  .card-name {
    min-height: auto;
  }
}

.feed-item {
  align-items: center;
  gap: 14px;
  min-height: 96px;
  padding: 12px 14px;
}

.feed-thumb {
  display: flex;
  flex: 0 0 112px;
  width: 112px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
}

.feed-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t);
}

.feed-item:hover .feed-thumb img {
  transform: scale(1.035);
}

.feed-thumb-empty {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  background:
    linear-gradient(rgba(20, 25, 27, .05) 1px, transparent 1px) 0 0 / 14px 14px,
    linear-gradient(90deg, rgba(20, 25, 27, .05) 1px, transparent 1px) 0 0 / 14px 14px,
    var(--surface);
}

.feed-thumb-empty svg {
  width: 28px;
  height: 28px;
}

.feed-kicker {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 6px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 10.5px;
}

.feed-kicker .feed-type {
  min-width: 0;
}

.feed-title {
  font-size: 16px;
}

.feed-meta {
  gap: 8px;
}

.list-row {
  gap: 12px;
  min-width: 0;
}

.list-row .lr-preview {
  position: relative;
  display: flex;
  flex: 0 0 54px;
  width: 54px;
  height: 44px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
}

.list-row .lr-tx,
.list-row .lr-name,
.list-row .lr-meta {
  min-width: 0;
}

.list-row .lr-name,
.list-row .lr-meta {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.list-row .lr-meta {
  margin-top: 4px;
  line-height: 1.25;
}

.list-row .lr-preview::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 48%, rgba(255, 90, 31, .18));
  content: "";
  pointer-events: none;
}

.list-row .lr-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lr-preview-art {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(20, 25, 27, .06) 1px, transparent 1px) 0 0 / 12px 12px,
    linear-gradient(90deg, rgba(20, 25, 27, .06) 1px, transparent 1px) 0 0 / 12px 12px,
    var(--surface);
  color: var(--ink);
}

.lr-preview-art svg {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
}

.lr-preview--group .lr-preview-art {
  background:
    radial-gradient(circle at 74% 20%, rgba(198, 255, 61, .38), transparent 28%),
    linear-gradient(rgba(20, 25, 27, .06) 1px, transparent 1px) 0 0 / 12px 12px,
    var(--surface);
}

.lr-preview--route .lr-preview-art {
  background:
    radial-gradient(circle at 28% 72%, rgba(255, 90, 31, .32), transparent 30%),
    linear-gradient(135deg, rgba(20, 25, 27, .1), transparent 54%),
    var(--surface);
}

.lr-preview--workshop .lr-preview-art,
.lr-preview--shop .lr-preview-art {
  background:
    radial-gradient(circle at 76% 26%, rgba(255, 90, 31, .28), transparent 32%),
    linear-gradient(rgba(20, 25, 27, .06) 1px, transparent 1px) 0 0 / 12px 12px,
    var(--surface);
}

.legal-page {
  padding-top: 34px;
}

.legal-hero .lead {
  max-width: 780px;
}

.advisor-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr .86fr;
  gap: 14px;
  margin-bottom: 34px;
}

.advisor-card,
.law-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--shadow-soft);
}

.advisor-card {
  padding: 22px;
}

.advisor-card--dark {
  border-color: rgba(20, 25, 27, .86);
  background: var(--ink);
  color: var(--paper);
}

.advisor-card h2,
.law-card h2 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.04;
}

.advisor-card p,
.law-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.48;
}

.advisor-card--dark p,
.advisor-card--dark .eyebrow {
  color: rgba(244, 245, 240, .78);
}

.advisor-card ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--ink-soft);
  line-height: 1.42;
}

.advisor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.advisor-tags span {
  padding: 6px 9px;
  border: 1px solid rgba(244, 245, 240, .22);
  border-radius: 999px;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.block-head--legal {
  margin-top: 4px;
  margin-bottom: 14px;
}

.law-grid,
.law-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.law-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 18px;
}

.law-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 18px;
}

.law-card-top,
.law-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.law-card-top {
  margin-bottom: 14px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
}

.law-points {
  display: grid;
  gap: 8px;
  margin: 16px 0 18px;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.42;
}

.law-card-foot {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 11px;
}

.seeall--compact {
  min-height: 36px;
  padding: 7px 10px;
  font-size: 13px;
}

.legal-note {
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 90, 31, .25);
  border-radius: 12px;
  background: rgba(255, 90, 31, .07);
  color: var(--ink-soft);
  line-height: 1.48;
}

@media (max-width: 720px) {
  .feed-item {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    align-items: start;
  }

  .feed-thumb {
    width: 104px;
    flex-basis: 104px;
  }
}

@media (max-width: 960px) {
  .advisor-grid,
  .law-grid,
  .law-strip,
  .law-grid--two {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  .feed-item {
    grid-template-columns: 1fr;
  }

  .feed-thumb {
    width: 100%;
    flex-basis: auto;
    aspect-ratio: 16 / 9;
  }
}
