/* roulang page: index */
:root {
      --color-bg: #f6f3ed;
      --color-surface: #fffdf8;
      --color-surface-2: #f0ebe1;
      --color-dark: #121510;
      --color-dark-2: #1d2118;
      --color-text: #20231f;
      --color-muted: #6d7169;
      --color-soft: #9ea391;
      --color-line: rgba(32, 35, 31, .12);
      --color-line-dark: rgba(255, 255, 255, .14);
      --color-primary: #b7772a;
      --color-primary-2: #d89a47;
      --color-accent: #6f8d5b;
      --color-accent-2: #dfe8d2;
      --color-danger: #c75c44;
      --color-success: #4f8b5c;
      --radius-sm: 10px;
      --radius-md: 18px;
      --radius-lg: 28px;
      --radius-xl: 36px;
      --shadow-sm: 0 8px 24px rgba(18, 21, 16, .08);
      --shadow-md: 0 18px 50px rgba(18, 21, 16, .12);
      --shadow-lg: 0 32px 80px rgba(18, 21, 16, .18);
      --container: 1180px;
      --nav-height: 76px;
      --ease: cubic-bezier(.2, .8, .2, 1);
      --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-width: 320px;
      font-family: var(--font-main);
      color: var(--color-text);
      background:
        radial-gradient(circle at 10% 4%, rgba(216, 154, 71, .16), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(111, 141, 91, .14), transparent 30%),
        linear-gradient(180deg, #fbf7ef 0%, var(--color-bg) 42%, #f8f5ee 100%);
      line-height: 1.72;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .22s var(--ease), background .22s var(--ease), border-color .22s var(--ease), transform .22s var(--ease);
    }

    a:hover,
    a:focus {
      color: var(--color-primary);
      outline: none;
    }

    img,
    svg {
      max-width: 100%;
      height: auto;
      display: block;
    }

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    ::selection {
      color: #fff;
      background: var(--color-primary);
    }

    .site-shell {
      overflow: hidden;
      position: relative;
    }

    .container {
      width: min(calc(100% - 40px), var(--container));
      margin: 0 auto;
    }

    .section {
      padding: 82px 0;
      position: relative;
    }

    .section-tight {
      padding: 54px 0;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      min-height: 30px;
      padding: 5px 12px;
      border-radius: 999px;
      color: #5c4829;
      background: rgba(183, 119, 42, .11);
      border: 1px solid rgba(183, 119, 42, .18);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .04em;
    }

    .section-kicker i {
      color: var(--color-primary);
      font-size: 12px;
    }

    .section-heading {
      margin-bottom: 28px;
    }

    .section-heading.split {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
      align-items: end;
      gap: 28px;
    }

    .section-title {
      margin: 16px 0 0;
      font-size: clamp(30px, 4vw, 52px);
      line-height: 1.08;
      letter-spacing: -.055em;
      color: var(--color-dark);
      font-weight: 850;
    }

    .section-desc {
      margin: 12px 0 0;
      color: var(--color-muted);
      font-size: 16px;
      max-width: 720px;
    }

    .muted {
      color: var(--color-muted);
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 7px 11px;
      border-radius: 999px;
      border: 1px solid var(--color-line);
      background: rgba(255, 253, 248, .78);
      color: #4b5048;
      font-size: 12px;
      font-weight: 750;
      line-height: 1;
      white-space: nowrap;
    }

    .badge.hot {
      color: #7a431f;
      background: rgba(216, 154, 71, .18);
      border-color: rgba(183, 119, 42, .24);
    }

    .badge.safe {
      color: #365e3d;
      background: rgba(111, 141, 91, .14);
      border-color: rgba(111, 141, 91, .22);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 46px;
      padding: 13px 18px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-size: 15px;
      font-weight: 800;
      line-height: 1;
      letter-spacing: -.01em;
      box-shadow: none;
      transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease), border-color .22s var(--ease), color .22s var(--ease);
    }

    .btn:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-sm);
    }

    .btn:active {
      transform: translateY(0);
      box-shadow: none;
    }

    .btn:focus-visible,
    input:focus-visible,
    textarea:focus-visible,
    select:focus-visible,
    .nav-link:focus-visible,
    .lang-pill a:focus-visible {
      outline: 3px solid rgba(216, 154, 71, .38);
      outline-offset: 3px;
    }

    .btn-primary {
      color: #141711;
      background: linear-gradient(135deg, #f1c178, var(--color-primary-2));
      border-color: rgba(255, 255, 255, .28);
    }

    .btn-primary:hover,
    .btn-primary:focus {
      color: #10130f;
      background: linear-gradient(135deg, #ffd08a, #d98f34);
    }

    .btn-dark {
      color: #fffdf8;
      background: var(--color-dark);
      border-color: rgba(255, 255, 255, .08);
    }

    .btn-dark:hover,
    .btn-dark:focus {
      color: #fff;
      background: #252a20;
    }

    .btn-ghost {
      color: var(--color-dark);
      background: rgba(255, 253, 248, .76);
      border-color: var(--color-line);
    }

    .btn-ghost:hover,
    .btn-ghost:focus {
      color: var(--color-dark);
      background: #fffdf8;
      border-color: rgba(183, 119, 42, .35);
    }

    .header {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(18px);
      background: rgba(251, 247, 239, .78);
      border-bottom: 1px solid rgba(32, 35, 31, .09);
    }

    .nav-wrap {
      height: var(--nav-height);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 900;
      color: var(--color-dark);
      letter-spacing: -.04em;
      font-size: 20px;
      white-space: nowrap;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 15px;
      display: grid;
      place-items: center;
      color: #fff7e8;
      background:
        linear-gradient(135deg, rgba(216, 154, 71, .95), rgba(111, 141, 91, .96)),
        radial-gradient(circle at 35% 25%, rgba(255,255,255,.38), transparent 35%);
      box-shadow: 0 12px 28px rgba(183, 119, 42, .24);
      position: relative;
      overflow: hidden;
    }

    .brand-mark::after {
      content: "";
      position: absolute;
      inset: 10px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, .42);
    }

    .brand-mark span {
      position: relative;
      z-index: 1;
      font-size: 13px;
      letter-spacing: -.02em;
      font-weight: 900;
    }

    .nav-main {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-left: auto;
    }

    .nav-link {
      display: inline-flex;
      align-items: center;
      min-height: 40px;
      padding: 9px 14px;
      border-radius: 999px;
      color: #41463e;
      font-size: 14px;
      font-weight: 800;
      border: 1px solid transparent;
    }

    .nav-link:hover {
      color: var(--color-dark);
      background: rgba(255, 253, 248, .78);
      border-color: rgba(32, 35, 31, .08);
    }

    .nav-link.active {
      color: #6b431b;
      background: rgba(216, 154, 71, .14);
      border-color: rgba(183, 119, 42, .18);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .nav-search {
      width: 210px;
      height: 42px;
      border-radius: 999px;
      border: 1px solid rgba(32, 35, 31, .11);
      background: rgba(255, 253, 248, .72);
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 0 13px;
      color: var(--color-muted);
      transition: border-color .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease);
    }

    .nav-search:focus-within {
      border-color: rgba(183, 119, 42, .38);
      background: #fffdf8;
      box-shadow: 0 0 0 4px rgba(216, 154, 71, .12);
    }

    .nav-search input {
      border: 0;
      background: transparent;
      box-shadow: none;
      height: 40px;
      margin: 0;
      padding: 0;
      color: var(--color-text);
      font-size: 13px;
    }

    .nav-search input::placeholder {
      color: #8d9189;
    }

    .nav-search input:focus {
      box-shadow: none;
      border: 0;
    }

    .lang-pill {
      display: inline-flex;
      align-items: center;
      gap: 2px;
      padding: 4px;
      border-radius: 999px;
      border: 1px solid rgba(32, 35, 31, .1);
      background: rgba(255, 253, 248, .72);
      white-space: nowrap;
    }

    .lang-pill a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 32px;
      padding: 7px 10px;
      border-radius: 999px;
      color: var(--color-muted);
      font-size: 12px;
      font-weight: 800;
    }

    .lang-pill a.active {
      color: #fffdf8;
      background: var(--color-dark);
    }

    .menu-toggle {
      display: none;
      width: 42px;
      height: 42px;
      border-radius: 14px;
      border: 1px solid var(--color-line);
      background: rgba(255, 253, 248, .8);
      color: var(--color-dark);
      align-items: center;
      justify-content: center;
      transition: background .22s var(--ease), transform .22s var(--ease);
    }

    .menu-toggle:hover {
      background: #fffdf8;
      transform: translateY(-1px);
    }

    .hero {
      padding: 44px 0 40px;
    }

    .hero-panel {
      min-height: 570px;
      border-radius: var(--radius-xl);
      background:
        linear-gradient(115deg, rgba(18, 21, 16, .96), rgba(29, 33, 24, .94)),
        radial-gradient(circle at 18% 20%, rgba(216, 154, 71, .32), transparent 35%),
        radial-gradient(circle at 80% 40%, rgba(111, 141, 91, .22), transparent 34%);
      color: #f8f2e7;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      border: 1px solid rgba(255, 255, 255, .08);
    }

    .hero-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
      background-size: 52px 52px;
      mask-image: linear-gradient(90deg, rgba(0,0,0,.65), transparent 86%);
      pointer-events: none;
    }

    .hero-panel::after {
      content: "";
      position: absolute;
      width: 520px;
      height: 520px;
      right: -180px;
      top: -190px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(216,154,71,.24), transparent 64%);
      pointer-events: none;
    }

    .hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(280px, .78fr) minmax(300px, .86fr);
      gap: 22px;
      padding: 42px;
      height: 100%;
      align-items: stretch;
    }

    .hero-copy {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 28px;
      min-height: 484px;
    }

    .hero-copy-top {
      max-width: 620px;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .12);
      color: #ead7b8;
      font-size: 13px;
      font-weight: 800;
      backdrop-filter: blur(12px);
    }

    .hero-eyebrow .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #7fd170;
      box-shadow: 0 0 0 6px rgba(127, 209, 112, .1);
    }

    h1 {
      margin: 22px 0 0;
      color: #fffaf0;
      font-size: clamp(34px, 5.2vw, 68px);
      line-height: .98;
      letter-spacing: -.07em;
      font-weight: 920;
    }

    .hero-intro {
      margin: 22px 0 0;
      max-width: 610px;
      color: rgba(255, 250, 240, .76);
      font-size: 17px;
      line-height: 1.9;
    }

    .hero-cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 26px;
    }

    .hero-mini-stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
    }

    .hero-stat {
      padding: 16px 15px;
      border-radius: 20px;
      background: rgba(255, 255, 255, .075);
      border: 1px solid rgba(255, 255, 255, .1);
      backdrop-filter: blur(14px);
    }

    .hero-stat strong {
      display: block;
      color: #fff6e7;
      font-size: 24px;
      line-height: 1;
      letter-spacing: -.04em;
    }

    .hero-stat span {
      display: block;
      color: rgba(255, 250, 240, .62);
      margin-top: 8px;
      font-size: 12px;
      font-weight: 700;
    }

    .entry-panel,
    .rank-panel {
      border-radius: 28px;
      background: rgba(255, 253, 248, .08);
      border: 1px solid rgba(255, 255, 255, .12);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
      backdrop-filter: blur(16px);
      padding: 20px;
      min-height: 484px;
    }

    .entry-title,
    .rank-title {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      color: #fffaf0;
      font-size: 15px;
      font-weight: 900;
      margin-bottom: 16px;
    }

    .entry-title span,
    .rank-title span {
      color: rgba(255, 250, 240, .56);
      font-size: 12px;
      font-weight: 750;
    }

    .entry-list {
      display: grid;
      gap: 12px;
    }

    .entry-card {
      position: relative;
      padding: 18px;
      min-height: 102px;
      border-radius: 22px;
      background: rgba(255, 255, 255, .075);
      border: 1px solid rgba(255, 255, 255, .1);
      overflow: hidden;
      transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
    }

    .entry-card:hover {
      transform: translateY(-3px);
      background: rgba(255, 255, 255, .105);
      border-color: rgba(216, 154, 71, .36);
    }

    .entry-card::after {
      content: "";
      position: absolute;
      right: -24px;
      top: -24px;
      width: 86px;
      height: 86px;
      border-radius: 50%;
      background: rgba(216, 154, 71, .12);
    }

    .entry-card i {
      color: #f1c178;
      margin-bottom: 10px;
    }

    .entry-card strong {
      display: block;
      color: #fff7ea;
      font-size: 16px;
      line-height: 1.25;
    }

    .entry-card p {
      margin: 7px 0 0;
      color: rgba(255, 250, 240, .63);
      font-size: 13px;
      line-height: 1.65;
    }

    .rank-list {
      display: grid;
      gap: 12px;
    }

    .rank-item {
      display: grid;
      grid-template-columns: 34px 1fr auto;
      gap: 12px;
      align-items: center;
      padding: 14px;
      border-radius: 18px;
      background: rgba(255, 255, 255, .07);
      border: 1px solid rgba(255, 255, 255, .1);
    }

    .rank-no {
      width: 34px;
      height: 34px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      color: #1c2017;
      background: #f1c178;
      font-size: 13px;
      font-weight: 900;
    }

    .rank-item:nth-child(n+4) .rank-no {
      color: #f7ead7;
      background: rgba(255, 255, 255, .12);
    }

    .rank-copy strong {
      display: block;
      color: #fff7e8;
      font-size: 14px;
      line-height: 1.2;
    }

    .rank-copy span {
      display: block;
      color: rgba(255, 250, 240, .56);
      margin-top: 5px;
      font-size: 12px;
    }

    .rank-score {
      color: #d9f0cd;
      font-size: 12px;
      font-weight: 850;
    }

    .rank-foot {
      margin-top: 16px;
      padding: 16px;
      border-radius: 20px;
      background: rgba(111, 141, 91, .14);
      border: 1px solid rgba(127, 209, 112, .14);
      color: rgba(255, 250, 240, .7);
      font-size: 13px;
      line-height: 1.7;
    }

    .deal-rail {
      display: grid;
      grid-template-columns: 290px minmax(0, 1fr);
      gap: 22px;
      align-items: stretch;
    }

    .deal-note {
      border-radius: var(--radius-lg);
      background: var(--color-dark);
      color: #f8f2e7;
      padding: 28px;
      position: relative;
      overflow: hidden;
      min-height: 310px;
    }

    .deal-note::before {
      content: "";
      position: absolute;
      inset: auto -80px -100px auto;
      width: 230px;
      height: 230px;
      border-radius: 50%;
      background: rgba(216, 154, 71, .22);
    }

    .deal-note h2 {
      position: relative;
      margin: 14px 0 12px;
      color: #fffaf0;
      font-size: 34px;
      line-height: 1.08;
      letter-spacing: -.05em;
      font-weight: 900;
    }

    .deal-note p {
      position: relative;
      color: rgba(255, 250, 240, .7);
      font-size: 15px;
      line-height: 1.85;
      margin: 0;
    }

    .deal-countdown {
      position: relative;
      display: flex;
      gap: 8px;
      margin-top: 24px;
      flex-wrap: wrap;
    }

    .time-chip {
      min-width: 58px;
      padding: 9px 10px;
      text-align: center;
      border-radius: 15px;
      background: rgba(255, 255, 255, .09);
      border: 1px solid rgba(255, 255, 255, .12);
    }

    .time-chip strong {
      display: block;
      color: #f1c178;
      font-size: 20px;
      line-height: 1;
    }

    .time-chip span {
      display: block;
      margin-top: 5px;
      color: rgba(255, 250, 240, .52);
      font-size: 11px;
      font-weight: 800;
    }

    .deal-track {
      min-width: 0;
      display: flex;
      gap: 16px;
      overflow-x: auto;
      padding: 4px 4px 18px;
      scroll-snap-type: x mandatory;
      scrollbar-color: rgba(183, 119, 42, .38) transparent;
    }

    .deal-card {
      flex: 0 0 272px;
      scroll-snap-align: start;
      border-radius: 26px;
      background: rgba(255, 253, 248, .86);
      border: 1px solid rgba(32, 35, 31, .09);
      box-shadow: var(--shadow-sm);
      padding: 22px;
      transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
      position: relative;
      overflow: hidden;
    }

    .deal-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
      border-color: rgba(183, 119, 42, .25);
    }

    .deal-card::after {
      content: "";
      position: absolute;
      inset: auto -34px -34px auto;
      width: 108px;
      height: 108px;
      border-radius: 50%;
      background: rgba(111, 141, 91, .1);
    }

    .deal-card .icon {
      width: 48px;
      height: 48px;
      border-radius: 17px;
      display: grid;
      place-items: center;
      color: #fffaf0;
      background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
      margin-bottom: 18px;
    }

    .deal-card h3 {
      margin: 0;
      color: var(--color-dark);
      font-size: 20px;
      line-height: 1.2;
      letter-spacing: -.04em;
      font-weight: 900;
    }

    .deal-card p {
      margin: 10px 0 18px;
      color: var(--color-muted);
      font-size: 14px;
      line-height: 1.7;
    }

    .price-line {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 12px;
      margin-top: 14px;
      padding-top: 16px;
      border-top: 1px solid var(--color-line);
    }

    .price-line strong {
      color: var(--color-primary);
      font-size: 24px;
      letter-spacing: -.05em;
    }

    .price-line span {
      color: var(--color-muted);
      font-size: 12px;
      font-weight: 750;
    }

    .inventory-panel {
      border-radius: var(--radius-xl);
      background: var(--color-surface);
      border: 1px solid rgba(32, 35, 31, .1);
      box-shadow: var(--shadow-md);
      overflow: hidden;
    }

    .inventory-top {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 330px;
      gap: 0;
      border-bottom: 1px solid var(--color-line);
    }

    .inventory-copy {
      padding: 32px;
    }

    .inventory-copy h2 {
      margin: 12px 0 10px;
      font-size: clamp(28px, 4vw, 46px);
      line-height: 1.08;
      letter-spacing: -.055em;
      font-weight: 900;
    }

    .inventory-copy p {
      max-width: 680px;
      color: var(--color-muted);
      margin: 0;
      font-size: 16px;
    }

    .inventory-meter {
      padding: 32px;
      background:
        linear-gradient(180deg, rgba(111, 141, 91, .12), rgba(216, 154, 71, .08));
      border-left: 1px solid var(--color-line);
    }

    .meter-value {
      display: flex;
      align-items: end;
      gap: 8px;
      color: var(--color-dark);
      line-height: 1;
    }

    .meter-value strong {
      font-size: 54px;
      letter-spacing: -.08em;
      font-weight: 920;
    }

    .meter-value span {
      padding-bottom: 8px;
      color: var(--color-muted);
      font-size: 13px;
      font-weight: 800;
    }

    .progress {
      height: 10px;
      margin: 16px 0 0;
      border-radius: 999px;
      background: rgba(32, 35, 31, .09);
      overflow: hidden;
    }

    .progress .bar {
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--color-accent), var(--color-primary-2));
      width: var(--w);
      transition: width .6s var(--ease);
    }

    .inventory-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .inventory-item {
      padding: 24px;
      border-right: 1px solid var(--color-line);
      min-height: 148px;
    }

    .inventory-item:last-child {
      border-right: 0;
    }

    .inventory-item i {
      color: var(--color-primary);
      margin-bottom: 12px;
    }

    .inventory-item strong {
      display: block;
      color: var(--color-dark);
      font-size: 17px;
      line-height: 1.28;
      font-weight: 900;
    }

    .inventory-item span {
      display: block;
      margin-top: 8px;
      color: var(--color-muted);
      font-size: 13px;
      line-height: 1.65;
    }

    .info-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.35fr) 360px;
      gap: 24px;
      align-items: start;
    }

    .news-list {
      border-radius: var(--radius-lg);
      background: rgba(255, 253, 248, .84);
      border: 1px solid rgba(32, 35, 31, .09);
      box-shadow: var(--shadow-sm);
      overflow: hidden;
    }

    .news-item {
      display: grid;
      grid-template-columns: 96px 1fr auto;
      gap: 18px;
      align-items: center;
      padding: 20px 22px;
      border-bottom: 1px solid var(--color-line);
      transition: background .22s var(--ease);
    }

    .news-item:last-child {
      border-bottom: 0;
    }

    .news-item:hover {
      background: rgba(216, 154, 71, .07);
    }

    .news-date {
      display: grid;
      place-items: center;
      min-height: 58px;
      border-radius: 18px;
      background: rgba(111, 141, 91, .11);
      color: #45613e;
      font-size: 12px;
      font-weight: 900;
      text-align: center;
    }

    .news-copy a {
      color: var(--color-dark);
      font-size: 18px;
      line-height: 1.35;
      font-weight: 900;
      letter-spacing: -.025em;
    }

    .news-copy a:hover {
      color: var(--color-primary);
    }

    .news-copy p {
      margin: 7px 0 0;
      color: var(--color-muted);
      font-size: 14px;
      line-height: 1.65;
    }

    .news-arrow {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(32, 35, 31, .05);
      color: var(--color-muted);
      transition: transform .22s var(--ease), background .22s var(--ease), color .22s var(--ease);
    }

    .news-item:hover .news-arrow {
      transform: translateX(3px);
      color: #fff;
      background: var(--color-primary);
    }

    .recommend-card {
      border-radius: var(--radius-lg);
      background: var(--color-dark);
      color: #f8f2e7;
      padding: 26px;
      box-shadow: var(--shadow-md);
      position: sticky;
      top: calc(var(--nav-height) + 18px);
      overflow: hidden;
    }

    .recommend-card::after {
      content: "";
      position: absolute;
      right: -58px;
      top: -58px;
      width: 160px;
      height: 160px;
      border-radius: 50%;
      background: rgba(216, 154, 71, .18);
    }

    .recommend-card h3 {
      position: relative;
      margin: 14px 0 10px;
      color: #fffaf0;
      font-size: 26px;
      line-height: 1.15;
      letter-spacing: -.05em;
      font-weight: 900;
    }

    .recommend-card p {
      position: relative;
      margin: 0;
      color: rgba(255, 250, 240, .68);
      font-size: 14px;
      line-height: 1.8;
    }

    .recommend-list {
      position: relative;
      display: grid;
      gap: 10px;
      margin-top: 20px;
    }

    .recommend-list a {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      padding: 12px 0;
      border-bottom: 1px solid rgba(255,255,255,.1);
      color: rgba(255, 250, 240, .82);
      font-size: 14px;
      font-weight: 800;
    }

    .recommend-list a:hover {
      color: #f1c178;
    }

    .action-grid {
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
      gap: 24px;
      align-items: stretch;
    }

    .button-cluster {
      border-radius: var(--radius-xl);
      background: var(--color-surface);
      border: 1px solid rgba(32, 35, 31, .09);
      box-shadow: var(--shadow-md);
      padding: 28px;
    }

    .button-cluster h2,
    .lead-box h2 {
      margin: 14px 0 10px;
      font-size: clamp(28px, 4vw, 44px);
      line-height: 1.08;
      letter-spacing: -.055em;
      font-weight: 900;
    }

    .button-cluster p,
    .lead-box p {
      color: var(--color-muted);
      margin: 0;
      font-size: 15px;
    }

    .choice-buttons {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-top: 22px;
    }

    .choice-btn {
      min-height: 92px;
      padding: 16px;
      border-radius: 22px;
      border: 1px solid var(--color-line);
      background: rgba(246, 243, 237, .76);
      text-align: left;
      transition: transform .22s var(--ease), background .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease);
    }

    .choice-btn:hover {
      transform: translateY(-4px);
      background: #fffdf8;
      border-color: rgba(183, 119, 42, .28);
      box-shadow: var(--shadow-sm);
      color: var(--color-dark);
    }

    .choice-btn strong {
      display: flex;
      align-items: center;
      gap: 9px;
      color: var(--color-dark);
      font-size: 15px;
      line-height: 1.25;
      font-weight: 900;
    }

    .choice-btn strong i {
      color: var(--color-primary);
    }

    .choice-btn span {
      display: block;
      margin-top: 7px;
      color: var(--color-muted);
      font-size: 12px;
      line-height: 1.6;
    }

    .lead-box {
      border-radius: var(--radius-xl);
      background:
        linear-gradient(145deg, rgba(111, 141, 91, .14), rgba(216, 154, 71, .11)),
        var(--color-surface);
      border: 1px solid rgba(32, 35, 31, .09);
      box-shadow: var(--shadow-md);
      padding: 28px;
    }

    .lead-form {
      display: grid;
      gap: 14px;
      margin-top: 22px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .field label {
      display: block;
      margin-bottom: 7px;
      color: #454a42;
      font-size: 13px;
      font-weight: 850;
    }

    .field input,
    .field select,
    .field textarea {
      width: 100%;
      margin: 0;
      min-height: 48px;
      border-radius: 16px;
      border: 1px solid rgba(32, 35, 31, .12);
      background: rgba(255, 253, 248, .85);
      color: var(--color-text);
      padding: 12px 14px;
      box-shadow: none;
      transition: border-color .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease);
    }

    .field textarea {
      min-height: 94px;
      resize: vertical;
    }

    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      border-color: rgba(183, 119, 42, .42);
      background: #fffdf8;
      box-shadow: 0 0 0 4px rgba(216, 154, 71, .13);
      outline: 0;
    }

    .form-note {
      color: var(--color-muted);
      font-size: 12px;
      line-height: 1.65;
      margin: 0;
    }

    .form-result {
      display: none;
      padding: 12px 14px;
      border-radius: 16px;
      background: rgba(79, 139, 92, .12);
      border: 1px solid rgba(79, 139, 92, .2);
      color: #315b39;
      font-size: 13px;
      font-weight: 800;
    }

    .scenario-wrap {
      border-radius: var(--radius-xl);
      background: var(--color-dark);
      color: #f8f2e7;
      padding: 30px;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }

    .scenario-wrap::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 16% 18%, rgba(216,154,71,.2), transparent 30%),
        radial-gradient(circle at 92% 76%, rgba(111,141,91,.22), transparent 35%);
      pointer-events: none;
    }

    .scenario-inner {
      position: relative;
      display: grid;
      grid-template-columns: 380px minmax(0, 1fr);
      gap: 28px;
      align-items: start;
    }

    .scenario-copy h2 {
      margin: 14px 0 12px;
      color: #fffaf0;
      font-size: clamp(30px, 4vw, 46px);
      line-height: 1.08;
      letter-spacing: -.055em;
      font-weight: 900;
    }

    .scenario-copy p {
      color: rgba(255, 250, 240, .68);
      margin: 0;
      font-size: 15px;
      line-height: 1.85;
    }

    .route-steps {
      display: grid;
      gap: 14px;
      counter-reset: route;
    }

    .route-step {
      counter-increment: route;
      display: grid;
      grid-template-columns: 46px 1fr;
      gap: 14px;
      padding: 18px;
      border-radius: 22px;
      background: rgba(255,255,255,.075);
      border: 1px solid rgba(255,255,255,.11);
      transition: transform .22s var(--ease), background .22s var(--ease);
    }

    .route-step:hover {
      transform: translateX(4px);
      background: rgba(255,255,255,.1);
    }

    .route-step::before {
      content: counter(route);
      width: 46px;
      height: 46px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: rgba(241, 193, 120, .18);
      color: #f1c178;
      font-weight: 950;
    }

    .route-step strong {
      display: block;
      color: #fff7e8;
      font-size: 16px;
      font-weight: 900;
    }

    .route-step span {
      display: block;
      color: rgba(255,250,240,.62);
      margin-top: 5px;
      font-size: 13px;
      line-height: 1.65;
    }

    .collection-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .collection-card {
      border-radius: 28px;
      background: rgba(255, 253, 248, .85);
      border: 1px solid rgba(32, 35, 31, .09);
      box-shadow: var(--shadow-sm);
      padding: 24px;
      min-height: 250px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
      transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
    }

    .collection-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
      border-color: rgba(111, 141, 91, .25);
    }

    .collection-card::before {
      content: "";
      position: absolute;
      right: -44px;
      top: -44px;
      width: 132px;
      height: 132px;
      border-radius: 50%;
      background: rgba(216, 154, 71, .1);
    }

    .collection-card h3 {
      position: relative;
      margin: 18px 0 10px;
      color: var(--color-dark);
      font-size: 24px;
      line-height: 1.12;
      letter-spacing: -.05em;
      font-weight: 900;
    }

    .collection-card p {
      position: relative;
      margin: 0;
      color: var(--color-muted);
      font-size: 14px;
      line-height: 1.7;
    }

    .collection-meta {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-top: 24px;
      padding-top: 16px;
      border-top: 1px solid var(--color-line);
    }

    .collection-meta span {
      color: var(--color-muted);
      font-size: 12px;
      font-weight: 800;
    }

    .collection-meta a {
      color: var(--color-primary);
      font-size: 13px;
      font-weight: 900;
    }

    .proof-strip {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: var(--color-line);
      box-shadow: var(--shadow-sm);
    }

    .proof-item {
      padding: 26px;
      background: rgba(255, 253, 248, .86);
    }

    .proof-item strong {
      display: block;
      color: var(--color-dark);
      font-size: 32px;
      line-height: 1;
      letter-spacing: -.06em;
      font-weight: 920;
    }

    .proof-item span {
      display: block;
      margin-top: 9px;
      color: var(--color-muted);
      font-size: 13px;
      line-height: 1.6;
      font-weight: 700;
    }

    .faq-layout {
      display: grid;
      grid-template-columns: 340px minmax(0, 1fr);
      gap: 28px;
      align-items: start;
    }

    .faq-side {
      position: sticky;
      top: calc(var(--nav-height) + 18px);
    }

    .faq-side h2 {
      margin: 14px 0 12px;
      color: var(--color-dark);
      font-size: clamp(30px, 4vw, 46px);
      line-height: 1.08;
      letter-spacing: -.055em;
      font-weight: 900;
    }

    .faq-side p {
      color: var(--color-muted);
      margin: 0 0 20px;
      font-size: 15px;
    }

    .faq-list {
      display: grid;
      gap: 12px;
    }

    .faq-item {
      border-radius: 22px;
      background: rgba(255, 253, 248, .88);
      border: 1px solid rgba(32, 35, 31, .09);
      box-shadow: var(--shadow-sm);
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      min-height: 64px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      padding: 20px 22px;
      border: 0;
      background: transparent;
      color: var(--color-dark);
      text-align: left;
      font-size: 16px;
      font-weight: 900;
      line-height: 1.4;
    }

    .faq-question i {
      color: var(--color-primary);
      transition: transform .22s var(--ease);
    }

    .faq-item.active .faq-question i {
      transform: rotate(45deg);
    }

    .faq-answer {
      display: none;
      padding: 0 22px 22px;
      color: var(--color-muted);
      font-size: 14px;
      line-height: 1.85;
    }

    .faq-item.active .faq-answer {
      display: block;
    }

    .footer {
      color: rgba(255, 250, 240, .74);
      background:
        radial-gradient(circle at 18% 10%, rgba(216,154,71,.18), transparent 32%),
        linear-gradient(180deg, #171b14, #10130f);
      padding: 56px 0 28px;
      margin-top: 28px;
    }

    .footer-top {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 360px;
      gap: 32px;
      padding-bottom: 34px;
      border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #fffaf0;
      font-size: 22px;
      font-weight: 900;
      letter-spacing: -.04em;
      margin-bottom: 14px;
    }

    .footer p {
      margin: 0;
      max-width: 700px;
      color: rgba(255,250,240,.62);
      font-size: 14px;
      line-height: 1.85;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: flex-end;
      align-content: start;
    }

    .footer-links a {
      display: inline-flex;
      align-items: center;
      min-height: 38px;
      padding: 8px 12px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.1);
      color: rgba(255,250,240,.72);
      font-size: 13px;
      font-weight: 800;
      background: rgba(255,255,255,.04);
    }

    .footer-links a:hover {
      color: #f1c178;
      border-color: rgba(241,193,120,.35);
      background: rgba(241,193,120,.08);
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding-top: 22px;
      color: rgba(255,250,240,.48);
      font-size: 12px;
      line-height: 1.7;
    }

    .floating-cta {
      position: fixed;
      left: 50%;
      bottom: 18px;
      transform: translateX(-50%);
      z-index: 45;
      width: min(calc(100% - 32px), 720px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 10px 12px 10px 18px;
      border-radius: 999px;
      background: rgba(18, 21, 16, .9);
      color: #fffaf0;
      border: 1px solid rgba(255,255,255,.12);
      box-shadow: 0 18px 44px rgba(18,21,16,.22);
      backdrop-filter: blur(18px);
    }

    .floating-cta span {
      font-size: 13px;
      font-weight: 800;
      color: rgba(255,250,240,.74);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .floating-cta .btn {
      min-height: 40px;
      padding: 11px 15px;
      font-size: 13px;
    }

    @media screen and (max-width: 1120px) {
      .nav-search {
        display: none;
      }

      .hero-grid {
        grid-template-columns: 1fr 1fr;
      }

      .hero-copy {
        grid-column: 1 / -1;
        min-height: auto;
      }

      .entry-panel,
      .rank-panel {
        min-height: auto;
      }

      .inventory-grid,
      .proof-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .inventory-item:nth-child(2) {
        border-right: 0;
      }

      .inventory-item:nth-child(-n+2) {
        border-bottom: 1px solid var(--color-line);
      }

      .collection-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media screen and (max-width: 900px) {
      :root {
        --nav-height: auto;
      }

      .container {
        width: min(calc(100% - 28px), var(--container));
      }

      .section {
        padding: 62px 0;
      }

      .nav-wrap {
        min-height: 70px;
        height: auto;
        flex-wrap: wrap;
        padding: 12px 0;
      }

      .menu-toggle {
        display: inline-flex;
        margin-left: auto;
      }

      .nav-main {
        order: 5;
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding-top: 10px;
      }

      .nav-main.open {
        display: flex;
      }

      .nav-link {
        justify-content: center;
        background: rgba(255,253,248,.72);
        border-color: rgba(32,35,31,.08);
      }

      .nav-actions {
        margin-left: 0;
      }

      .hero {
        padding-top: 24px;
      }

      .hero-grid {
        grid-template-columns: 1fr;
        padding: 24px;
      }

      .hero-mini-stats {
        grid-template-columns: 1fr;
      }

      .deal-rail,
      .inventory-top,
      .info-layout,
      .action-grid,
      .scenario-inner,
      .faq-layout,
      .footer-top {
        grid-template-columns: 1fr;
      }

      .inventory-meter {
        border-left: 0;
        border-top: 1px solid var(--color-line);
      }

      .recommend-card,
      .faq-side {
        position: static;
      }

      .footer-links {
        justify-content: flex-start;
      }

      .section-heading.split {
        grid-template-columns: 1fr;
      }
    }

    @media screen and (max-width: 620px) {
      body {
        line-height: 1.68;
      }

      .brand {
        font-size: 18px;
      }

      .brand-mark {
        width: 38px;
        height: 38px;
        border-radius: 14px;
      }

      .lang-pill a {
        padding: 6px 8px;
      }

      .hero-panel,
      .scenario-wrap,
      .inventory-panel,
      .button-cluster,
      .lead-box {
        border-radius: 24px;
      }

      .hero-grid {
        padding: 20px;
        gap: 16px;
      }

      h1 {
        font-size: 38px;
      }

      .hero-intro {
        font-size: 15px;
      }

      .hero-cta-row .btn,
      .choice-buttons,
      .form-row {
        width: 100%;
        grid-template-columns: 1fr;
      }

      .hero-cta-row .btn {
        justify-content: center;
      }

      .deal-card {
        flex-basis: 238px;
      }

      .inventory-grid,
      .proof-strip,
      .collection-grid {
        grid-template-columns: 1fr;
      }

      .inventory-item {
        border-right: 0;
        border-bottom: 1px solid var(--color-line);
      }

      .inventory-item:last-child {
        border-bottom: 0;
      }

      .news-item {
        grid-template-columns: 1fr auto;
        gap: 12px;
      }

      .news-date {
        grid-column: 1 / -1;
        justify-content: start;
        place-items: center start;
        padding: 0 14px;
        min-height: 42px;
      }

      .section-title,
      .inventory-copy h2,
      .button-cluster h2,
      .lead-box h2,
      .scenario-copy h2,
      .faq-side h2 {
        font-size: 31px;
      }

      .floating-cta {
        border-radius: 22px;
        align-items: stretch;
        flex-direction: column;
        padding: 12px;
      }

      .floating-cta span {
        white-space: normal;
        text-align: center;
      }

      .floating-cta .btn {
        width: 100%;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
    }
