:root {
      --ink: #111114;
      --ink-soft: #26262b;
      --paper: #f4f1eb;
      --paper-strong: #fffdf9;
      --line: #d8d2c8;
      --muted: #6e6a63;
      --red: #d71920;
      --red-dark: #a60f14;
      --white: #ffffff;
      --shadow: 0 18px 45px rgba(20, 18, 16, 0.11);
      --max: 1440px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      background: var(--paper);
      color: var(--ink);
      font-family: "Segoe UI", Arial, Helvetica, sans-serif;
      -webkit-font-smoothing: antialiased;
    }

    button,
    input,
    select {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

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

    .shell {
      width: min(calc(100% - 44px), var(--max));
      margin-inline: auto;
    }

    .masthead {
      position: sticky;
      top: 0;
      z-index: 50;
      color: var(--white);
      background: rgba(10, 10, 11, 0.97);
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(18px);
    }

    .masthead-main {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 13px;
      min-width: 240px;
    }

    .brand-mark {
      width: 40px;
      height: 40px;
      display: grid;
      place-items: center;
      border: 2px solid var(--red);
      color: var(--white);
      font-size: 14px;
      font-weight: 900;
      letter-spacing: -0.06em;
    }

    .brand-name {
      display: block;
      font-size: 17px;
      font-weight: 900;
      letter-spacing: 0.08em;
    }

    .brand-tagline {
      display: block;
      margin-top: 2px;
      color: #a8a8ae;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 6px;
      flex-wrap: wrap;
    }

    .nav button {
      padding: 10px 13px;
      border: 0;
      color: #d6d6da;
      background: transparent;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .nav button:hover,
    .nav button:focus-visible {
      color: var(--white);
      outline: 1px solid rgba(255, 255, 255, 0.3);
      outline-offset: -1px;
    }

    .market-strip {
      color: #d2d2d6;
      background: #171719;
      border-bottom: 1px solid #2b2b2e;
    }

    .market-strip-inner {
      min-height: 34px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      overflow: hidden;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .market-strip strong {
      color: #ff5257;
    }

    .hero {
      position: relative;
      min-height: 660px;
      overflow: hidden;
      color: var(--white);
      background: var(--ink);
    }

    .hero-media {
      position: absolute;
      inset: 0;
    }

    .hero-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(7, 7, 8, 0.98) 0%, rgba(7, 7, 8, 0.85) 38%, rgba(7, 7, 8, 0.24) 76%, rgba(7, 7, 8, 0.46) 100%);
    }

    .hero-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      filter: saturate(0.92) contrast(1.04);
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      min-height: 660px;
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.45fr);
      align-items: end;
      gap: 70px;
      padding-block: 92px 72px;
    }

    .kicker {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      color: #ff666b;
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .kicker::before {
      content: "";
      width: 34px;
      height: 2px;
      background: var(--red);
    }

    .hero h1 {
      max-width: 820px;
      margin: 24px 0 22px;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(48px, 6.2vw, 92px);
      font-weight: 500;
      letter-spacing: -0.052em;
      line-height: 0.94;
    }

    .hero-intro {
      max-width: 670px;
      margin: 0;
      color: #d0d0d3;
      font-size: clamp(16px, 1.6vw, 21px);
      line-height: 1.6;
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 34px;
    }

    .primary-btn,
    .secondary-btn {
      min-height: 48px;
      padding: 0 19px;
      border: 1px solid transparent;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.09em;
      text-transform: uppercase;
    }

    .primary-btn {
      color: var(--white);
      background: var(--red);
    }

    .primary-btn:hover,
    .primary-btn:focus-visible {
      background: var(--red-dark);
    }

    .secondary-btn {
      color: var(--white);
      background: rgba(255, 255, 255, 0.05);
      border-color: rgba(255, 255, 255, 0.35);
    }

    .secondary-btn:hover,
    .secondary-btn:focus-visible {
      background: rgba(255, 255, 255, 0.12);
    }

    .hero-card {
      padding: 25px;
      background: rgba(9, 9, 10, 0.78);
      border-top: 3px solid var(--red);
      box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
      backdrop-filter: blur(16px);
    }

    .hero-card-label {
      color: #9f9fa5;
      font-size: 10px;
      font-weight: 900;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .hero-card h2 {
      margin: 14px 0 7px;
      font-size: clamp(24px, 3vw, 38px);
      letter-spacing: -0.035em;
      line-height: 1.06;
    }

    .hero-card-meta {
      margin: 0 0 28px;
      color: #bbbbc0;
      font-size: 13px;
      font-weight: 700;
    }

    .hero-price {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 20px;
      padding-top: 18px;
      border-top: 1px solid rgba(255, 255, 255, 0.18);
    }

    .hero-price span {
      color: #9f9fa5;
      font-size: 10px;
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .hero-price strong {
      color: var(--white);
      font-size: 20px;
      letter-spacing: -0.02em;
      text-align: right;
    }

    .section {
      padding-block: 88px;
    }

    .section-dark {
      color: var(--white);
      background: var(--ink);
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 36px;
      margin-bottom: 36px;
    }

    .section-label {
      margin: 0 0 10px;
      color: var(--red);
      font-size: 10px;
      font-weight: 900;
      letter-spacing: 0.17em;
      text-transform: uppercase;
    }

    .section-head h2 {
      max-width: 760px;
      margin: 0;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(34px, 4vw, 58px);
      font-weight: 500;
      letter-spacing: -0.045em;
      line-height: 1.02;
    }

    .section-note {
      max-width: 430px;
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.7;
    }

    .section-dark .section-note {
      color: #a7a7ad;
    }

    .filter-panel {
      margin-bottom: 28px;
      background: var(--paper-strong);
      border: 1px solid var(--line);
      box-shadow: 0 13px 30px rgba(38, 33, 27, 0.06);
    }

    .filter-main {
      display: grid;
      grid-template-columns: minmax(230px, 1.5fr) repeat(2, minmax(170px, 0.55fr)) auto;
      gap: 1px;
      background: var(--line);
    }

    .control {
      min-height: 58px;
      width: 100%;
      padding: 0 17px;
      border: 0;
      border-radius: 0;
      color: var(--ink);
      background: var(--paper-strong);
      outline: none;
    }

    .control:focus {
      box-shadow: inset 0 -3px 0 var(--red);
    }

    .shuffle-btn {
      min-width: 142px;
      min-height: 58px;
      padding: 0 18px;
      border: 0;
      color: var(--white);
      background: var(--ink);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .shuffle-btn:hover,
    .shuffle-btn:focus-visible {
      background: var(--red);
    }

    .brand-filters {
      display: flex;
      gap: 7px;
      padding: 14px;
      overflow-x: auto;
      scrollbar-width: thin;
    }

    .brand-filter {
      flex: 0 0 auto;
      padding: 9px 13px;
      border: 1px solid var(--line);
      color: #58544d;
      background: transparent;
      font-size: 10px;
      font-weight: 900;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .brand-filter:hover,
    .brand-filter:focus-visible,
    .brand-filter.active {
      color: var(--white);
      background: var(--ink);
      border-color: var(--ink);
    }

    .results-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 18px;
      color: var(--muted);
      font-size: 12px;
    }

    .random-note {
      color: var(--red-dark);
      font-weight: 800;
    }

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

    .news-card {
      min-width: 0;
      overflow: hidden;
      background: var(--paper-strong);
      border: 1px solid var(--line);
      transition: transform 170ms ease, box-shadow 170ms ease;
    }

    .news-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
    }

    .card-media {
      position: relative;
      aspect-ratio: 16 / 10;
      overflow: hidden;
      background: #e9e6e0;
      border-bottom: 1px solid var(--line);
    }

    .card-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 380ms ease;
    }

    .news-card:hover .card-media img {
      transform: scale(1.025);
    }

    .card-flags {
      position: absolute;
      left: 13px;
      right: 13px;
      bottom: 12px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
    }

    .flag {
      padding: 7px 9px;
      color: var(--white);
      background: rgba(12, 12, 13, 0.88);
      font-size: 9px;
      font-weight: 900;
      letter-spacing: 0.11em;
      text-transform: uppercase;
      backdrop-filter: blur(8px);
    }

    .flag.price {
      background: var(--red);
    }

    .card-body {
      padding: 22px;
    }

    .card-brand {
      margin: 0 0 9px;
      color: var(--red-dark);
      font-size: 10px;
      font-weight: 900;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .card-body h3 {
      margin: 0;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 25px;
      font-weight: 600;
      letter-spacing: -0.032em;
      line-height: 1.05;
    }

    .card-summary {
      min-height: 66px;
      margin: 13px 0 18px;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.65;
    }

    .card-price {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 12px;
      padding-top: 16px;
      border-top: 1px solid var(--line);
    }

    .card-price span {
      color: var(--muted);
      font-size: 9px;
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .card-price strong {
      font-size: 17px;
      letter-spacing: -0.025em;
      text-align: right;
    }

    .load-row {
      display: flex;
      justify-content: center;
      margin-top: 40px;
    }

    .load-more {
      min-width: 220px;
      min-height: 50px;
      padding: 0 22px;
      border: 1px solid var(--ink);
      color: var(--ink);
      background: transparent;
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .load-more:hover,
    .load-more:focus-visible {
      color: var(--white);
      background: var(--ink);
    }

    .empty {
      display: none;
      padding: 80px 24px;
      color: var(--muted);
      background: var(--paper-strong);
      border: 1px solid var(--line);
      text-align: center;
    }

    .desk-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 1px;
      margin-top: 44px;
      background: #333337;
      border: 1px solid #333337;
    }

    .desk-panel {
      min-height: 220px;
      padding: 30px;
      background: #18181b;
    }

    .desk-panel h3 {
      margin: 0 0 14px;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 29px;
      font-weight: 500;
      letter-spacing: -0.03em;
    }

    .desk-panel p {
      max-width: 650px;
      margin: 0;
      color: #a5a5ab;
      font-size: 14px;
      line-height: 1.8;
    }

    .desk-metrics {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      height: 100%;
      background: #333337;
    }

    .desk-metric {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 26px 18px;
      background: #111113;
    }

    .desk-metric strong {
      color: var(--white);
      font-size: clamp(28px, 3vw, 44px);
      letter-spacing: -0.06em;
    }

    .desk-metric span {
      color: #8b8b91;
      font-size: 9px;
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    footer {
      padding-block: 44px;
      color: #77777d;
      background: #09090a;
      border-top: 1px solid #2a2a2d;
    }

    .footer-inner {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 30px;
    }

    .footer-title {
      margin: 0 0 8px;
      color: var(--white);
      font-size: 16px;
      font-weight: 900;
      letter-spacing: 0.08em;
    }

    .footer-copy,
    .footer-note {
      max-width: 650px;
      margin: 0;
      font-size: 11px;
      line-height: 1.7;
    }

    .footer-note {
      text-align: right;
    }

    @media (max-width: 1120px) {
      .hero-inner {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.46fr);
        gap: 38px;
      }

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

      .filter-main {
        grid-template-columns: minmax(230px, 1fr) repeat(2, minmax(160px, 0.55fr));
      }

      .shuffle-btn {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 820px) {
      .shell {
        width: min(calc(100% - 30px), var(--max));
      }

      .masthead-main {
        min-height: 68px;
      }

      .nav button:not(:last-child) {
        display: none;
      }

      .market-strip-inner span:nth-child(n+3) {
        display: none;
      }

      .hero,
      .hero-inner {
        min-height: 700px;
      }

      .hero-inner {
        grid-template-columns: 1fr;
        align-content: end;
        gap: 30px;
        padding-block: 110px 44px;
      }

      .hero h1 {
        font-size: clamp(47px, 13vw, 72px);
      }

      .hero-media::after {
        background: linear-gradient(0deg, rgba(7, 7, 8, 0.98) 0%, rgba(7, 7, 8, 0.73) 67%, rgba(7, 7, 8, 0.34) 100%);
      }

      .section {
        padding-block: 66px;
      }

      .section-head {
        align-items: start;
        flex-direction: column;
        gap: 18px;
      }

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

      .filter-main .search-control {
        grid-column: 1 / -1;
      }

      .desk-grid {
        grid-template-columns: 1fr;
      }

      .footer-inner {
        align-items: start;
        flex-direction: column;
      }

      .footer-note {
        text-align: left;
      }
    }

    @media (max-width: 580px) {
      .brand {
        min-width: 0;
      }

      .brand-tagline {
        display: none;
      }

      .nav button {
        padding-inline: 8px;
      }

      .hero-actions {
        display: grid;
      }

      .primary-btn,
      .secondary-btn {
        width: 100%;
      }

      .hero-card {
        padding: 20px;
      }

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

      .filter-main .search-control,
      .shuffle-btn {
        grid-column: auto;
      }

      .news-grid {
        grid-template-columns: 1fr;
      }

      .card-summary {
        min-height: 0;
      }

      .desk-metrics {
        grid-template-columns: 1fr;
      }

      .desk-metric {
        min-height: 120px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
      }
    }
  