/* roulang page: index */
:root {
      --bg: #080706;
      --bg-2: #121014;
      --bg-3: #1b1510;
      --panel: rgba(24, 18, 16, .88);
      --panel-2: rgba(28, 22, 30, .82);
      --gold: #d8b66a;
      --gold-2: #f0d58a;
      --bronze: #b8863b;
      --wine: #6f243a;
      --purple: #4a2f80;
      --teal: #0f6b67;
      --text: #f4ead8;
      --muted: #c9bda7;
      --soft: #8f826e;
      --line: rgba(216, 182, 106, .28);
      --line-strong: rgba(240, 213, 138, .52);
      --shadow: 0 24px 70px rgba(0, 0, 0, .48);
      --glow: 0 0 34px rgba(216, 182, 106, .16);
      --radius: 24px;
      --radius-lg: 34px;
      --ease: all .25s ease;
      --container: 1180px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--text);
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      line-height: 1.75;
      background:
        radial-gradient(circle at 12% 6%, rgba(111, 36, 58, .38), transparent 34%),
        radial-gradient(circle at 82% 10%, rgba(74, 47, 128, .34), transparent 36%),
        radial-gradient(circle at 70% 78%, rgba(15, 107, 103, .2), transparent 32%),
        linear-gradient(135deg, #080706 0%, #121014 46%, #21131b 100%);
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: -1;
      opacity: .25;
      background-image:
        linear-gradient(rgba(216, 182, 106, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(216, 182, 106, .06) 1px, transparent 1px);
      background-size: 72px 72px;
      mask-image: radial-gradient(circle at center, black, transparent 78%);
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: var(--ease);
    }

    a:hover,
    a:focus {
      color: var(--gold-2);
    }

    button,
    input,
    select,
    textarea {
      font-family: inherit;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    :focus-visible {
      outline: 2px solid var(--gold-2);
      outline-offset: 3px;
      border-radius: 12px;
    }

    .site-container {
      width: min(var(--container), calc(100% - 32px));
      margin-inline: auto;
    }

    .top-strip {
      border-bottom: 1px solid var(--line);
      background: rgba(8, 7, 6, .9);
      backdrop-filter: blur(14px);
      position: relative;
      z-index: 20;
    }

    .top-strip-inner {
      min-height: 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      color: var(--muted);
      font-size: 13px;
    }

    .strip-tags {
      display: flex;
      gap: 10px;
      align-items: center;
      flex-wrap: wrap;
    }

    .strip-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 10px;
      border: 1px solid rgba(216, 182, 106, .22);
      border-radius: 999px;
      color: #e3d3b6;
      background: rgba(216, 182, 106, .06);
      white-space: nowrap;
    }

    .strip-action {
      color: var(--gold-2);
      font-weight: 700;
      white-space: nowrap;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 19;
      border-bottom: 1px solid rgba(216, 182, 106, .2);
      background: rgba(12, 10, 10, .82);
      backdrop-filter: blur(18px);
      box-shadow: 0 12px 34px rgba(0, 0, 0, .28);
    }

    .title-bar {
      background: rgba(12, 10, 10, .96);
      padding: 12px 16px;
      border-bottom: 1px solid var(--line);
    }

    .menu-icon::after {
      background: var(--gold-2);
      box-shadow: 0 7px 0 var(--gold-2), 0 14px 0 var(--gold-2);
    }

    .top-bar {
      background: transparent;
      padding: 14px 0;
    }

    .top-bar ul {
      background: transparent;
    }

    .brand-mark {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: max-content;
      font-weight: 900;
      letter-spacing: .02em;
      color: var(--text);
    }

    .brand-shield {
      width: 48px;
      height: 48px;
      border-radius: 16px 16px 20px 20px;
      display: grid;
      place-items: center;
      color: #16100a;
      font-weight: 950;
      background:
        linear-gradient(135deg, var(--gold-2), var(--bronze));
      border: 1px solid rgba(240, 213, 138, .76);
      box-shadow: inset 0 0 0 3px rgba(8, 7, 6, .18), var(--glow);
    }

    .brand-name {
      display: flex;
      flex-direction: column;
      line-height: 1.2;
      font-size: 18px;
    }

    .brand-sub {
      color: var(--soft);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .18em;
    }

    .main-menu {
      gap: 6px;
      justify-content: center;
    }

    .main-menu a {
      position: relative;
      padding: 12px 14px !important;
      color: var(--muted);
      border-radius: 999px;
      font-size: 15px;
      font-weight: 700;
    }

    .main-menu a:hover {
      color: var(--gold-2);
      background: rgba(216, 182, 106, .08);
    }

    .main-menu a.active {
      color: #16100a;
      background: linear-gradient(135deg, var(--gold-2), var(--bronze));
      box-shadow: 0 10px 26px rgba(184, 134, 59, .22);
    }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 12px 18px;
      border-radius: 999px;
      color: #15100a;
      font-weight: 900;
      background: linear-gradient(135deg, var(--gold-2), var(--bronze));
      box-shadow: 0 14px 34px rgba(184, 134, 59, .25);
      border: 1px solid rgba(240, 213, 138, .62);
    }

    .nav-cta:hover {
      color: #090705;
      transform: translateY(-2px);
      box-shadow: 0 18px 42px rgba(216, 182, 106, .34);
    }

    main {
      overflow: hidden;
    }

    section {
      padding: 82px 0;
      position: relative;
    }

    .hero {
      padding: 76px 0 86px;
    }

    .hero-stage {
      border: 1px solid var(--line);
      border-radius: 38px;
      background:
        linear-gradient(135deg, rgba(216, 182, 106, .1), transparent 32%),
        radial-gradient(circle at 20% 12%, rgba(240, 213, 138, .16), transparent 24%),
        linear-gradient(145deg, rgba(27, 21, 16, .92), rgba(18, 16, 20, .92));
      box-shadow: var(--shadow), inset 0 1px 0 rgba(240, 213, 138, .18);
      overflow: hidden;
      position: relative;
      padding: clamp(28px, 5vw, 58px);
    }

    .hero-stage::after {
      content: "";
      position: absolute;
      inset: auto -12% -42% 30%;
      height: 300px;
      background: radial-gradient(circle, rgba(216, 182, 106, .22), transparent 68%);
      pointer-events: none;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 14px;
      border-radius: 999px;
      color: var(--gold-2);
      border: 1px solid var(--line);
      background: rgba(8, 7, 6, .42);
      font-weight: 800;
      font-size: 13px;
      letter-spacing: .05em;
      margin-bottom: 18px;
    }

    .hero h1 {
      margin: 0;
      max-width: 840px;
      font-size: clamp(34px, 6vw, 58px);
      line-height: 1.14;
      letter-spacing: -.04em;
      color: #fff6df;
    }

    .hero-lead {
      max-width: 780px;
      margin: 22px 0 0;
      color: #dfd1b9;
      font-size: 17px;
      line-height: 1.85;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      align-items: center;
      margin-top: 30px;
    }

    .button.gold-btn,
    .gold-btn {
      margin: 0;
      min-height: 48px;
      padding: 14px 22px;
      border-radius: 999px;
      border: 1px solid rgba(240, 213, 138, .72);
      color: #15100a;
      font-weight: 950;
      background: linear-gradient(135deg, #f0d58a 0%, #d8b66a 48%, #b8863b 100%);
      box-shadow: 0 14px 36px rgba(184, 134, 59, .28), inset 0 1px 0 rgba(255, 255, 255, .35);
    }

    .button.gold-btn:hover,
    .gold-btn:hover {
      color: #080706;
      transform: translateY(-3px);
      box-shadow: 0 20px 48px rgba(216, 182, 106, .38);
    }

    .button.ghost-btn,
    .ghost-btn {
      margin: 0;
      min-height: 48px;
      padding: 14px 22px;
      border-radius: 999px;
      color: var(--text);
      border: 1px solid var(--line-strong);
      background: rgba(8, 7, 6, .26);
      font-weight: 850;
    }

    .button.ghost-btn:hover,
    .ghost-btn:hover {
      color: var(--gold-2);
      background: rgba(216, 182, 106, .1);
      transform: translateY(-3px);
    }

    .tier-row {
      margin-top: 38px;
    }

    .tier-card {
      position: relative;
      min-height: 100%;
      padding: 24px;
      border-radius: 28px;
      border: 1px solid rgba(216, 182, 106, .22);
      background: rgba(8, 7, 6, .34);
      box-shadow: inset 0 1px 0 rgba(240, 213, 138, .09);
      transition: var(--ease);
    }

    .tier-card.recommended {
      border-color: rgba(240, 213, 138, .7);
      background:
        linear-gradient(145deg, rgba(216, 182, 106, .18), rgba(8, 7, 6, .34)),
        rgba(8, 7, 6, .44);
      box-shadow: var(--glow), inset 0 1px 0 rgba(240, 213, 138, .2);
      transform: translateY(-8px);
    }

    .tier-card:hover {
      transform: translateY(-5px);
      border-color: var(--line-strong);
      box-shadow: var(--glow);
    }

    .tier-card.recommended:hover {
      transform: translateY(-12px);
    }

    .tier-label,
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      width: fit-content;
      padding: 5px 10px;
      border-radius: 999px;
      color: var(--gold-2);
      font-size: 12px;
      font-weight: 850;
      border: 1px solid rgba(216, 182, 106, .32);
      background: rgba(216, 182, 106, .08);
    }

    .tier-card h3 {
      margin: 16px 0 8px;
      color: #fff2d5;
      font-size: 22px;
      font-weight: 950;
    }

    .tier-card p {
      color: var(--muted);
      margin-bottom: 16px;
    }

    .check-list {
      margin: 0;
      list-style: none;
    }

    .check-list li {
      position: relative;
      padding-left: 24px;
      color: #d8cbb4;
      margin: 8px 0;
      font-size: 14px;
    }

    .check-list li::before {
      content: "◆";
      position: absolute;
      left: 0;
      top: 0;
      color: var(--gold);
      font-size: 12px;
    }

    .proof-strip {
      margin-top: 26px;
      display: flex;
      gap: 12px;
      align-items: center;
      flex-wrap: wrap;
    }

    .proof-pill {
      padding: 9px 14px;
      color: #ecdfc4;
      border-radius: 999px;
      border: 1px solid rgba(216, 182, 106, .22);
      background: rgba(8, 7, 6, .36);
      font-size: 13px;
      font-weight: 760;
    }

    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 24px;
      margin-bottom: 32px;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 12px;
      color: var(--gold-2);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .14em;
    }

    .section-kicker::before {
      content: "";
      width: 24px;
      height: 1px;
      background: var(--gold);
    }

    .section-title {
      margin: 0;
      color: #fff2d5;
      font-size: clamp(28px, 4vw, 38px);
      line-height: 1.22;
      letter-spacing: -.025em;
      font-weight: 950;
    }

    .section-desc {
      max-width: 620px;
      margin: 12px 0 0;
      color: var(--muted);
      font-size: 16px;
    }

    .directory-wrap {
      padding-top: 74px;
    }

    .entry-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }

    .entry-card,
    .value-card,
    .case-card,
    .news-panel,
    .form-panel,
    .faq-side,
    .step-card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: linear-gradient(145deg, rgba(28, 22, 30, .78), rgba(18, 16, 20, .78));
      box-shadow: inset 0 1px 0 rgba(240, 213, 138, .1), 0 18px 42px rgba(0, 0, 0, .28);
      transition: var(--ease);
    }

    .entry-card {
      padding: 22px;
      min-height: 190px;
      position: relative;
      overflow: hidden;
    }

    .entry-card::after {
      content: "";
      position: absolute;
      width: 80px;
      height: 80px;
      right: -26px;
      bottom: -26px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(216, 182, 106, .18), transparent 70%);
    }

    .entry-card:hover,
    .value-card:hover,
    .case-card:hover,
    .news-panel:hover,
    .step-card:hover {
      transform: translateY(-4px);
      border-color: var(--line-strong);
      box-shadow: var(--glow), 0 22px 50px rgba(0, 0, 0, .34);
    }

    .entry-icon {
      width: 46px;
      height: 46px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      color: #15100a;
      background: linear-gradient(135deg, var(--gold-2), var(--bronze));
      margin-bottom: 18px;
      font-weight: 950;
    }

    .entry-card h3,
    .value-card h3,
    .case-card h3,
    .step-card h3 {
      margin: 0 0 10px;
      color: #fff4d9;
      font-size: 20px;
      font-weight: 950;
    }

    .entry-card p,
    .value-card p,
    .case-card p,
    .step-card p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
    }

    .value-band {
      background:
        linear-gradient(90deg, rgba(111, 36, 58, .24), transparent 52%),
        rgba(8, 7, 6, .2);
      border-top: 1px solid rgba(216, 182, 106, .12);
      border-bottom: 1px solid rgba(216, 182, 106, .12);
    }

    .value-card {
      padding: 26px;
      height: 100%;
    }

    .value-card.compact {
      min-height: 150px;
    }

    .value-number {
      color: var(--gold-2);
      font-size: 34px;
      line-height: 1;
      font-weight: 950;
      margin-bottom: 16px;
    }

    .step-track {
      position: relative;
    }

    .step-track::before {
      content: "";
      position: absolute;
      left: 8%;
      right: 8%;
      top: 52px;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(216, 182, 106, .55), transparent);
    }

    .step-card {
      position: relative;
      padding: 26px;
      min-height: 100%;
      background: linear-gradient(150deg, rgba(27, 21, 16, .86), rgba(24, 18, 16, .72));
    }

    .step-no {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      margin-bottom: 20px;
      color: #15100a;
      background: linear-gradient(135deg, var(--gold-2), var(--bronze));
      border: 3px solid rgba(8, 7, 6, .72);
      box-shadow: 0 0 0 1px rgba(240, 213, 138, .62), var(--glow);
      font-weight: 950;
      font-size: 18px;
    }

    .bento-cases {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 18px;
    }

    .case-card {
      padding: 28px;
    }

    .case-card.large {
      min-height: 410px;
      background:
        radial-gradient(circle at 80% 12%, rgba(216, 182, 106, .15), transparent 30%),
        linear-gradient(145deg, rgba(34, 22, 17, .92), rgba(19, 14, 18, .82));
    }

    .case-stack {
      display: grid;
      gap: 18px;
    }

    .result-line {
      margin-top: 22px;
      padding: 14px 16px;
      border-radius: 16px;
      color: #f2e5ca;
      background: rgba(216, 182, 106, .08);
      border: 1px solid rgba(216, 182, 106, .22);
      font-weight: 800;
    }

    .news-section {
      background: rgba(8, 7, 6, .18);
    }

    .news-panel {
      padding: 24px;
      height: 100%;
    }

    .news-list {
      margin: 0;
      list-style: none;
    }

    .news-list li + li {
      border-top: 1px solid rgba(216, 182, 106, .13);
    }

    .news-link {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 12px;
      align-items: start;
      padding: 16px 0;
      color: var(--text);
    }

    .news-index {
      color: var(--gold-2);
      font-weight: 950;
      font-size: 15px;
      padding-top: 2px;
    }

    .news-link strong {
      display: block;
      color: #fff1d4;
      margin-bottom: 4px;
      font-size: 16px;
    }

    .news-link span {
      display: block;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.6;
    }

    .news-link em {
      font-style: normal;
      color: var(--gold);
      font-size: 13px;
      white-space: nowrap;
    }

    .recommend-box {
      border-radius: 22px;
      padding: 22px;
      background:
        linear-gradient(145deg, rgba(216, 182, 106, .14), rgba(111, 36, 58, .16)),
        rgba(8, 7, 6, .32);
      border: 1px solid rgba(216, 182, 106, .3);
    }

    .mini-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-top: 20px;
    }

    .mini-stat {
      padding: 14px;
      border-radius: 16px;
      background: rgba(8, 7, 6, .36);
      border: 1px solid rgba(216, 182, 106, .17);
    }

    .mini-stat strong {
      display: block;
      color: var(--gold-2);
      font-size: 20px;
    }

    .mini-stat span {
      color: var(--muted);
      font-size: 13px;
    }

    .faq-layout {
      align-items: start;
    }

    .faq-side {
      padding: 28px;
      background:
        radial-gradient(circle at 20% 18%, rgba(240, 213, 138, .13), transparent 28%),
        rgba(24, 18, 16, .78);
    }

    .faq-side .shield-big {
      width: 74px;
      height: 86px;
      border-radius: 22px 22px 30px 30px;
      display: grid;
      place-items: center;
      color: #15100a;
      font-size: 32px;
      font-weight: 950;
      background: linear-gradient(135deg, var(--gold-2), var(--bronze));
      margin-bottom: 22px;
      box-shadow: var(--glow);
    }

    .accordion {
      background: transparent;
    }

    .accordion-item {
      margin-bottom: 12px;
      border: 1px solid var(--line);
      border-radius: 18px;
      overflow: hidden;
      background: rgba(18, 16, 20, .72);
    }

    .accordion-title {
      border: 0 !important;
      color: #fff0d0;
      background: rgba(24, 18, 16, .68);
      font-weight: 900;
      padding: 18px 52px 18px 20px;
      font-size: 16px;
    }

    .accordion-title:hover,
    .accordion-title:focus {
      color: var(--gold-2);
      background: rgba(216, 182, 106, .08);
    }

    .accordion-title::before {
      color: var(--gold-2);
      font-size: 22px;
      margin-top: -13px;
    }

    .accordion-content {
      border: 0 !important;
      background: rgba(8, 7, 6, .34);
      color: var(--muted);
      padding: 0 20px 20px;
      border-left: 3px solid var(--gold) !important;
      line-height: 1.8;
    }

    .lead-section {
      padding-bottom: 110px;
    }

    .form-panel {
      padding: clamp(24px, 4vw, 36px);
      background:
        radial-gradient(circle at 86% 18%, rgba(15, 107, 103, .22), transparent 28%),
        linear-gradient(145deg, rgba(31, 20, 18, .94), rgba(18, 16, 20, .88));
    }

    .badge-wall {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin: 22px 0 0;
    }

    .benefit-badge {
      min-width: 112px;
      min-height: 86px;
      border-radius: 22px;
      display: grid;
      place-items: center;
      text-align: center;
      padding: 12px;
      color: #eedfc1;
      border: 1px solid rgba(216, 182, 106, .32);
      background: rgba(8, 7, 6, .28);
      font-size: 13px;
      font-weight: 850;
      box-shadow: inset 0 1px 0 rgba(240, 213, 138, .12);
    }

    .lead-form label {
      color: #f1dfbd;
      font-weight: 850;
      margin-bottom: 8px;
      font-size: 14px;
    }

    .lead-form input,
    .lead-form select,
    .lead-form textarea {
      min-height: 48px;
      border-radius: 16px;
      border: 1px solid rgba(216, 182, 106, .26);
      background: rgba(8, 7, 6, .42);
      color: var(--text);
      box-shadow: none;
      margin-bottom: 16px;
    }

    .lead-form textarea {
      min-height: 108px;
      resize: vertical;
    }

    .lead-form input::placeholder,
    .lead-form textarea::placeholder {
      color: rgba(201, 189, 167, .72);
    }

    .lead-form input:focus,
    .lead-form select:focus,
    .lead-form textarea:focus {
      border-color: var(--gold-2);
      background: rgba(8, 7, 6, .56);
      box-shadow: 0 0 0 4px rgba(216, 182, 106, .1);
    }

    .site-footer {
      border-top: 1px solid var(--line);
      background:
        linear-gradient(180deg, rgba(8, 7, 6, .72), rgba(8, 7, 6, .98)),
        #080706;
      padding: 46px 0 28px;
    }

    .footer-brand {
      display: flex;
      gap: 14px;
      align-items: center;
      margin-bottom: 16px;
      font-weight: 950;
      color: #fff0d0;
      font-size: 18px;
    }

    .footer-links {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: flex-end;
      margin: 0;
      list-style: none;
    }

    .footer-links a {
      color: var(--muted);
      padding: 6px 0;
      font-weight: 760;
    }

    .footer-links a:hover {
      color: var(--gold-2);
    }

    .footer-note {
      color: var(--soft);
      font-size: 13px;
      margin-top: 18px;
      border-top: 1px solid rgba(216, 182, 106, .12);
      padding-top: 18px;
    }

    .fixed-cta {
      position: fixed;
      left: 50%;
      bottom: 18px;
      transform: translateX(-50%);
      z-index: 18;
      width: min(680px, calc(100% - 28px));
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 12px 14px 12px 18px;
      border-radius: 999px;
      background: rgba(18, 16, 20, .9);
      border: 1px solid rgba(216, 182, 106, .32);
      box-shadow: 0 18px 50px rgba(0, 0, 0, .46);
      backdrop-filter: blur(16px);
    }

    .fixed-cta span {
      color: #eadcc1;
      font-weight: 850;
      font-size: 14px;
    }

    .fixed-cta a {
      flex: 0 0 auto;
      padding: 10px 16px;
      min-height: 40px;
      font-size: 13px;
    }

    @media (max-width: 1024px) {
      .entry-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .bento-cases {
        grid-template-columns: 1fr;
      }

      .tier-card.recommended {
        transform: none;
      }

      .step-track::before {
        display: none;
      }
    }

    @media (max-width: 768px) {
      section {
        padding: 58px 0;
      }

      .top-strip-inner {
        justify-content: center;
        flex-wrap: wrap;
        padding: 8px 0;
      }

      .strip-tags {
        display: none;
      }

      .top-bar {
        padding: 12px 0;
      }

      .top-bar-left,
      .top-bar-right {
        width: 100%;
      }

      .main-menu {
        margin-top: 14px;
        gap: 8px;
      }

      .main-menu li,
      .main-menu a,
      .nav-cta {
        width: 100%;
      }

      .main-menu a {
        text-align: center;
      }

      .nav-cta {
        margin-top: 10px;
      }

      .hero-stage {
        border-radius: 28px;
      }

      .hero-actions .button,
      .hero-actions a {
        width: 100%;
        justify-content: center;
        text-align: center;
      }

      .section-head {
        display: block;
      }

      .entry-grid {
        grid-template-columns: 1fr;
      }

      .news-link {
        grid-template-columns: auto 1fr;
      }

      .news-link em {
        grid-column: 2;
      }

      .footer-links {
        justify-content: flex-start;
        margin-top: 18px;
      }

      .fixed-cta {
        border-radius: 22px;
        align-items: stretch;
        flex-direction: column;
        text-align: center;
      }

      .fixed-cta a {
        width: 100%;
      }
    }

    @media (max-width: 520px) {
      .site-container {
        width: min(100% - 22px, var(--container));
      }

      .brand-shield {
        width: 42px;
        height: 42px;
      }

      .brand-name {
        font-size: 15px;
      }

      .hero {
        padding-top: 42px;
      }

      .hero h1 {
        font-size: 34px;
      }

      .hero-lead {
        font-size: 15px;
      }

      .tier-card,
      .entry-card,
      .value-card,
      .case-card,
      .news-panel,
      .form-panel,
      .faq-side,
      .step-card {
        border-radius: 20px;
        padding: 20px;
      }

      .mini-stats {
        grid-template-columns: 1fr;
      }

      .benefit-badge {
        width: 100%;
        min-height: 62px;
      }
    }

/* roulang page: category1 */
:root {
      --bg: #080706;
      --bg-2: #121014;
      --bg-3: #1b1510;
      --panel: rgba(24, 20, 18, 0.92);
      --panel-2: rgba(34, 25, 28, 0.9);
      --gold: #d8b66a;
      --gold-2: #b8863b;
      --gold-3: #f0d58a;
      --wine: #6f243a;
      --purple: #4a2f80;
      --teal: #0f6b67;
      --text: #f4ead8;
      --muted: #b9ad99;
      --weak: #897d6f;
      --line: rgba(216, 182, 106, 0.22);
      --line-strong: rgba(240, 213, 138, 0.52);
      --shadow: 0 22px 70px rgba(0, 0, 0, 0.46);
      --glow: 0 0 28px rgba(216, 182, 106, 0.18);
      --radius-sm: 14px;
      --radius: 22px;
      --radius-lg: 32px;
      --space: clamp(58px, 7vw, 104px);
      --font: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: var(--font);
      color: var(--text);
      background:
        radial-gradient(circle at 8% 4%, rgba(111, 36, 58, 0.28), transparent 32%),
        radial-gradient(circle at 92% 18%, rgba(15, 107, 103, 0.2), transparent 30%),
        linear-gradient(135deg, #080706 0%, #121014 45%, #1b1510 100%);
      line-height: 1.75;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: 0.38;
      background-image:
        linear-gradient(rgba(216, 182, 106, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(216, 182, 106, 0.04) 1px, transparent 1px);
      background-size: 44px 44px;
      mask-image: radial-gradient(circle at center, black, transparent 78%);
      z-index: -1;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
    }

    a:hover,
    a:focus {
      color: var(--gold-3);
      outline: none;
    }

    button,
    input,
    textarea,
    select {
      font-family: inherit;
    }

    input,
    textarea,
    select {
      width: 100%;
      min-height: 48px;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: rgba(8, 7, 6, 0.72);
      color: var(--text);
      padding: 12px 14px;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
      transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    textarea {
      min-height: 110px;
      resize: vertical;
    }

    input::placeholder,
    textarea::placeholder {
      color: rgba(185, 173, 153, 0.72);
    }

    input:focus,
    textarea:focus,
    select:focus {
      border-color: var(--gold);
      background: rgba(18, 16, 20, 0.96);
      box-shadow: 0 0 0 4px rgba(216, 182, 106, 0.12);
      outline: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .site-container {
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
    }

    .info-strip {
      border-bottom: 1px solid rgba(216, 182, 106, 0.28);
      background: rgba(5, 4, 4, 0.88);
      backdrop-filter: blur(14px);
      font-size: 13px;
      color: var(--muted);
    }

    .info-strip .site-container {
      min-height: 38px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .strip-left,
    .strip-tags,
    .strip-action {
      display: flex;
      align-items: center;
      gap: 10px;
      white-space: nowrap;
    }

    .strip-domain {
      color: var(--gold-3);
      letter-spacing: 0.02em;
    }

    .strip-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 3px 10px;
      border: 1px solid rgba(216, 182, 106, 0.2);
      border-radius: 999px;
      background: rgba(216, 182, 106, 0.07);
      color: #d7ccb7;
    }

    .strip-action a {
      color: var(--gold);
      border-bottom: 1px solid rgba(216, 182, 106, 0.48);
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 40;
      background: rgba(8, 7, 6, 0.84);
      border-bottom: 1px solid var(--line);
      backdrop-filter: blur(18px);
      box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
    }

    .title-bar {
      background: rgba(8, 7, 6, 0.95);
      border-bottom: 1px solid var(--line);
      color: var(--text);
      padding: 12px 16px;
    }

    .menu-icon::after {
      background: var(--gold);
      box-shadow: 0 7px 0 var(--gold), 0 14px 0 var(--gold);
    }

    .title-bar-title {
      font-weight: 800;
      letter-spacing: 0.02em;
    }

    .top-bar {
      padding: 13px 0;
      background: transparent;
    }

    .top-bar,
    .top-bar ul {
      background: transparent;
    }

    .top-bar-right {
      display: flex;
      justify-content: flex-end;
      align-items: center;
    }

    .main-menu {
      display: flex;
      align-items: center;
      gap: 8px;
      margin: 0;
      list-style: none;
    }

    .brand-mark {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 268px;
    }

    .brand-shield {
      width: 42px;
      height: 42px;
      flex: 0 0 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 14px;
      color: var(--gold-3);
      font-weight: 900;
      background:
        linear-gradient(145deg, rgba(240, 213, 138, 0.16), rgba(184, 134, 59, 0.08)),
        #11100f;
      border: 1px solid rgba(240, 213, 138, 0.58);
      box-shadow: inset 0 0 18px rgba(216, 182, 106, 0.12), var(--glow);
      position: relative;
    }

    .brand-shield::after {
      content: "";
      position: absolute;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      top: 7px;
      right: 7px;
      background: var(--gold-3);
      box-shadow: 0 0 12px rgba(240, 213, 138, 0.7);
    }

    .brand-name {
      display: flex;
      flex-direction: column;
      line-height: 1.2;
      font-weight: 900;
      letter-spacing: 0.01em;
      color: var(--text);
    }

    .brand-sub {
      margin-top: 3px;
      font-size: 12px;
      font-weight: 600;
      color: var(--gold);
      letter-spacing: 0.08em;
    }

    .main-menu a {
      display: inline-flex;
      align-items: center;
      min-height: 42px;
      padding: 8px 14px;
      border-radius: 999px;
      color: #d8cfbe;
      font-size: 14px;
      font-weight: 700;
      border: 1px solid transparent;
    }

    .main-menu a:hover {
      border-color: rgba(216, 182, 106, 0.26);
      background: rgba(216, 182, 106, 0.07);
      color: var(--gold-3);
      transform: translateY(-1px);
    }

    .main-menu a.active {
      color: var(--gold-3);
      background: linear-gradient(135deg, rgba(184, 134, 59, 0.24), rgba(111, 36, 58, 0.18));
      border-color: rgba(216, 182, 106, 0.38);
      box-shadow: inset 0 -1px 0 rgba(240, 213, 138, 0.2);
    }

    .main-menu .nav-cta {
      color: #15100a;
      background: linear-gradient(135deg, var(--gold-3), var(--gold), var(--gold-2));
      border-color: rgba(240, 213, 138, 0.74);
      box-shadow: 0 12px 28px rgba(216, 182, 106, 0.18);
    }

    .main-menu .nav-cta:hover {
      color: #0d0905;
      background: linear-gradient(135deg, #ffe9a8, var(--gold-3), var(--gold-2));
      box-shadow: 0 16px 34px rgba(216, 182, 106, 0.28);
    }

    .page-shell {
      padding-top: 34px;
    }

    .breadcrumb-wrap {
      margin: 18px 0 22px;
      color: var(--weak);
      font-size: 13px;
    }

    .breadcrumb-wrap a {
      color: var(--muted);
    }

    .breadcrumb-wrap .sep {
      color: var(--gold);
      margin: 0 8px;
    }

    .hero-category {
      padding: 34px 0 54px;
    }

    .hero-panel {
      position: relative;
      overflow: hidden;
      padding: clamp(24px, 4vw, 42px);
      border-radius: var(--radius-lg);
      background:
        radial-gradient(circle at 28% 0%, rgba(216, 182, 106, 0.18), transparent 32%),
        linear-gradient(135deg, rgba(26, 21, 16, 0.96), rgba(17, 15, 19, 0.94) 55%, rgba(33, 19, 27, 0.96));
      border: 1px solid rgba(216, 182, 106, 0.28);
      box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    }

    .hero-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(115deg, transparent 0 38%, rgba(240, 213, 138, 0.08) 39%, transparent 40% 100%),
        radial-gradient(circle at 90% 20%, rgba(15, 107, 103, 0.22), transparent 24%);
      pointer-events: none;
    }

    .hero-copy,
    .ranking-card {
      position: relative;
      z-index: 1;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(216, 182, 106, 0.09);
      border: 1px solid rgba(216, 182, 106, 0.34);
      color: var(--gold-3);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.06em;
      margin-bottom: 18px;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--gold-3);
      box-shadow: 0 0 16px rgba(240, 213, 138, 0.72);
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      max-width: 760px;
      font-size: clamp(32px, 5.2vw, 56px);
      line-height: 1.13;
      letter-spacing: -0.04em;
      margin-bottom: 18px;
      color: #fff4dc;
    }

    .hero-summary {
      max-width: 720px;
      color: #cbbfae;
      font-size: clamp(16px, 2vw, 18px);
      margin-bottom: 24px;
    }

    .hero-actions,
    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }

    .button.gold-button,
    .button.ghost-button {
      margin: 0;
      border-radius: 999px;
      min-height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 13px 21px;
      font-weight: 900;
      letter-spacing: 0.01em;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    }

    .button.gold-button {
      color: #150f08;
      background: linear-gradient(135deg, #ffe7a2, var(--gold), var(--gold-2));
      border: 1px solid rgba(240, 213, 138, 0.78);
      box-shadow: 0 16px 34px rgba(216, 182, 106, 0.2);
    }

    .button.gold-button:hover,
    .button.gold-button:focus {
      color: #0c0804;
      transform: translateY(-2px);
      box-shadow: 0 20px 44px rgba(216, 182, 106, 0.3);
      background: linear-gradient(135deg, #fff0bc, #e4c477, #c18e41);
    }

    .button.ghost-button {
      color: var(--gold-3);
      background: rgba(8, 7, 6, 0.28);
      border: 1px solid rgba(216, 182, 106, 0.42);
    }

    .button.ghost-button:hover,
    .button.ghost-button:focus {
      color: var(--gold-3);
      transform: translateY(-2px);
      background: rgba(216, 182, 106, 0.12);
      border-color: rgba(240, 213, 138, 0.68);
    }

    .trust-line {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 26px;
    }

    .mini-badge,
    .filter-chip,
    .status-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 800;
      line-height: 1;
      white-space: nowrap;
    }

    .mini-badge {
      padding: 9px 12px;
      color: #dfd2bb;
      border: 1px solid rgba(216, 182, 106, 0.25);
      background: rgba(216, 182, 106, 0.07);
    }

    .ranking-card {
      border-radius: 26px;
      background:
        linear-gradient(180deg, rgba(8, 7, 6, 0.62), rgba(18, 16, 20, 0.86)),
        radial-gradient(circle at top right, rgba(74, 47, 128, 0.2), transparent 42%);
      border: 1px solid rgba(216, 182, 106, 0.25);
      padding: 20px;
      box-shadow: inset 0 0 30px rgba(216, 182, 106, 0.06);
    }

    .ranking-head {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: flex-start;
      margin-bottom: 16px;
    }

    .ranking-head h2 {
      font-size: 22px;
      margin: 0;
      color: #fff0d1;
    }

    .ranking-head span {
      color: var(--gold);
      font-size: 12px;
      border: 1px solid rgba(216, 182, 106, 0.26);
      padding: 5px 8px;
      border-radius: 999px;
      background: rgba(216, 182, 106, 0.08);
    }

    .rank-item {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 12px;
      align-items: center;
      padding: 13px 0;
      border-top: 1px solid rgba(216, 182, 106, 0.12);
    }

    .rank-num {
      width: 34px;
      height: 34px;
      border-radius: 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #140d06;
      background: linear-gradient(135deg, var(--gold-3), var(--gold-2));
      font-weight: 900;
      box-shadow: var(--glow);
    }

    .rank-title {
      font-weight: 900;
      color: var(--text);
      line-height: 1.3;
    }

    .rank-note {
      display: block;
      font-size: 13px;
      color: var(--muted);
      margin-top: 2px;
      font-weight: 500;
    }

    .rank-pill {
      color: var(--gold-3);
      font-size: 12px;
      font-weight: 900;
      padding: 6px 9px;
      border-radius: 999px;
      background: rgba(216, 182, 106, 0.09);
      border: 1px solid rgba(216, 182, 106, 0.2);
    }

    .section {
      padding: var(--space) 0;
      position: relative;
    }

    .section-tight {
      padding: 48px 0;
    }

    .section-kicker {
      color: var(--gold);
      font-weight: 900;
      letter-spacing: 0.08em;
      font-size: 13px;
      margin-bottom: 10px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .section-kicker::before {
      content: "";
      width: 22px;
      height: 1px;
      background: var(--gold);
    }

    .section-title {
      font-size: clamp(28px, 4vw, 38px);
      line-height: 1.2;
      color: #fff1d4;
      margin-bottom: 12px;
      letter-spacing: -0.03em;
    }

    .section-desc {
      color: var(--muted);
      max-width: 760px;
      margin-bottom: 0;
    }

    .filter-bar {
      border-radius: 24px;
      padding: 16px;
      background: rgba(18, 16, 20, 0.74);
      border: 1px solid rgba(216, 182, 106, 0.22);
      box-shadow: var(--shadow);
    }

    .filter-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
    }

    .filter-chip {
      padding: 10px 14px;
      color: #d8ccba;
      background: rgba(8, 7, 6, 0.62);
      border: 1px solid rgba(216, 182, 106, 0.18);
      cursor: default;
    }

    .filter-chip.active,
    .filter-chip:hover {
      color: #160f08;
      background: linear-gradient(135deg, var(--gold-3), var(--gold-2));
      border-color: rgba(240, 213, 138, 0.72);
    }

    .filter-chip small {
      color: inherit;
      opacity: 0.72;
      font-weight: 900;
    }

    .content-board {
      margin-top: 28px;
    }

    .entry-card,
    .side-card,
    .proof-card,
    .process-card,
    .faq-panel,
    .lead-panel {
      background:
        linear-gradient(180deg, rgba(28, 22, 18, 0.92), rgba(14, 12, 13, 0.94));
      border: 1px solid rgba(216, 182, 106, 0.2);
      border-radius: var(--radius);
      box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.025);
      transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .entry-card:hover,
    .side-card:hover,
    .proof-card:hover,
    .process-card:hover {
      transform: translateY(-3px);
      border-color: rgba(240, 213, 138, 0.48);
      box-shadow: 0 24px 58px rgba(0, 0, 0, 0.38), 0 0 28px rgba(216, 182, 106, 0.1);
    }

    .entry-card {
      padding: 22px;
      min-height: 100%;
      position: relative;
      overflow: hidden;
    }

    .entry-card::after {
      content: "";
      position: absolute;
      right: -28px;
      top: -28px;
      width: 100px;
      height: 100px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(216, 182, 106, 0.16), transparent 68%);
    }

    .entry-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 18px;
      position: relative;
      z-index: 1;
    }

    .entry-icon {
      width: 48px;
      height: 48px;
      border-radius: 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--gold-3);
      border: 1px solid rgba(216, 182, 106, 0.34);
      background: linear-gradient(145deg, rgba(216, 182, 106, 0.14), rgba(74, 47, 128, 0.12));
      font-size: 22px;
      box-shadow: inset 0 0 18px rgba(216, 182, 106, 0.08);
    }

    .status-badge {
      padding: 8px 10px;
      color: var(--gold-3);
      background: rgba(216, 182, 106, 0.08);
      border: 1px solid rgba(216, 182, 106, 0.22);
      font-size: 12px;
    }

    .entry-card h2,
    .entry-card h3,
    .side-card h2,
    .side-card h3,
    .proof-card h3,
    .process-card h3 {
      color: #fff0d1;
      line-height: 1.28;
    }

    .entry-card h2,
    .entry-card h3 {
      font-size: 22px;
      margin-bottom: 10px;
    }

    .entry-card p,
    .side-card p,
    .proof-card p,
    .process-card p {
      color: var(--muted);
      margin-bottom: 14px;
    }

    .detail-list {
      list-style: none;
      margin: 0 0 18px;
      padding: 0;
      display: grid;
      gap: 9px;
    }

    .detail-list li {
      color: #d7ccba;
      display: flex;
      gap: 9px;
      align-items: flex-start;
      font-size: 14px;
    }

    .detail-list li::before {
      content: "◆";
      color: var(--gold);
      font-size: 10px;
      margin-top: 5px;
    }

    .text-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--gold-3);
      font-weight: 900;
      border-bottom: 1px solid rgba(216, 182, 106, 0.36);
    }

    .text-link:hover {
      gap: 12px;
      border-bottom-color: var(--gold-3);
    }

    .side-stack {
      display: grid;
      gap: 18px;
    }

    .side-card {
      padding: 22px;
    }

    .side-card.accent {
      background:
        radial-gradient(circle at top right, rgba(111, 36, 58, 0.3), transparent 45%),
        linear-gradient(180deg, rgba(30, 22, 22, 0.96), rgba(12, 10, 12, 0.94));
    }

    .badge-wall {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 14px;
    }

    .benefit-badge {
      min-width: 82px;
      min-height: 82px;
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
      border-radius: 22px;
      color: var(--gold-3);
      border: 1px solid rgba(216, 182, 106, 0.3);
      background: rgba(216, 182, 106, 0.07);
      box-shadow: inset 0 0 16px rgba(216, 182, 106, 0.06);
      font-size: 12px;
      font-weight: 900;
      text-align: center;
    }

    .benefit-badge strong {
      font-size: 20px;
      line-height: 1;
    }

    .notice-box {
      margin-top: 16px;
      padding: 14px;
      border-left: 3px solid var(--gold);
      border-radius: 14px;
      background: rgba(216, 182, 106, 0.07);
      color: #d8cfbe;
      font-size: 14px;
    }

    .process-track {
      position: relative;
      margin-top: 28px;
    }

    .process-track::before {
      content: "";
      position: absolute;
      left: 8%;
      right: 8%;
      top: 40px;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(216, 182, 106, 0.46), transparent);
    }

    .process-card {
      padding: 22px;
      position: relative;
      min-height: 100%;
    }

    .step-number {
      width: 52px;
      height: 52px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 18px;
      color: #150f08;
      background: linear-gradient(135deg, var(--gold-3), var(--gold-2));
      font-weight: 950;
      font-size: 20px;
      margin-bottom: 18px;
      box-shadow: 0 0 28px rgba(216, 182, 106, 0.2);
    }

    .proof-layout {
      margin-top: 30px;
    }

    .proof-card {
      padding: 24px;
      min-height: 100%;
    }

    .proof-card.featured {
      min-height: 360px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background:
        radial-gradient(circle at 12% 16%, rgba(216, 182, 106, 0.2), transparent 30%),
        radial-gradient(circle at 92% 70%, rgba(15, 107, 103, 0.18), transparent 34%),
        linear-gradient(135deg, rgba(35, 26, 18, 0.96), rgba(17, 14, 16, 0.96));
    }

    .proof-label {
      display: inline-flex;
      align-self: flex-start;
      padding: 8px 11px;
      border-radius: 999px;
      color: var(--gold-3);
      background: rgba(216, 182, 106, 0.08);
      border: 1px solid rgba(216, 182, 106, 0.26);
      font-size: 12px;
      font-weight: 900;
      margin-bottom: 16px;
    }

    .proof-note {
      margin-top: 18px;
      padding: 14px;
      border-radius: 16px;
      background: rgba(8, 7, 6, 0.58);
      border: 1px solid rgba(216, 182, 106, 0.16);
      color: #d8cfbe;
      font-size: 14px;
    }

    .faq-section {
      background:
        linear-gradient(180deg, rgba(8, 7, 6, 0), rgba(8, 7, 6, 0.42), rgba(8, 7, 6, 0));
    }

    .faq-panel {
      padding: 24px;
    }

    .accordion {
      background: transparent;
      margin: 0;
    }

    .accordion-item {
      margin-bottom: 12px;
      border: 1px solid rgba(216, 182, 106, 0.18);
      border-radius: 18px;
      overflow: hidden;
      background: rgba(8, 7, 6, 0.42);
    }

    .accordion-title {
      border: 0;
      color: #f2e6cf;
      font-weight: 900;
      font-size: 16px;
      padding: 18px 48px 18px 18px;
      background: rgba(18, 16, 20, 0.72);
    }

    .accordion-title:hover,
    .accordion-title:focus {
      color: var(--gold-3);
      background: rgba(216, 182, 106, 0.08);
    }

    .accordion-title::before {
      color: var(--gold-3);
      font-size: 22px;
      margin-top: -14px;
    }

    .accordion-content {
      border: 0;
      border-top: 1px solid rgba(216, 182, 106, 0.15);
      background: rgba(8, 7, 6, 0.3);
      color: var(--muted);
      padding: 16px 18px 18px;
      line-height: 1.75;
    }

    .faq-aside {
      height: 100%;
      padding: 26px;
      border-radius: var(--radius);
      background:
        radial-gradient(circle at top left, rgba(216, 182, 106, 0.18), transparent 35%),
        linear-gradient(180deg, rgba(34, 20, 25, 0.92), rgba(13, 11, 12, 0.94));
      border: 1px solid rgba(216, 182, 106, 0.22);
      box-shadow: var(--shadow);
    }

    .faq-aside h2 {
      font-size: 28px;
      color: #fff0d1;
      line-height: 1.2;
    }

    .lead-panel {
      position: relative;
      overflow: hidden;
      padding: clamp(24px, 4vw, 42px);
      background:
        radial-gradient(circle at 15% 20%, rgba(216, 182, 106, 0.18), transparent 28%),
        radial-gradient(circle at 86% 18%, rgba(74, 47, 128, 0.2), transparent 32%),
        linear-gradient(135deg, rgba(28, 20, 18, 0.98), rgba(18, 13, 18, 0.96));
    }

    .lead-panel::after {
      content: "";
      position: absolute;
      inset: auto -60px -80px auto;
      width: 240px;
      height: 240px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(216, 182, 106, 0.16), transparent 68%);
      pointer-events: none;
    }

    .lead-copy {
      position: relative;
      z-index: 1;
    }

    .lead-form {
      position: relative;
      z-index: 1;
      padding: 20px;
      border-radius: 22px;
      background: rgba(8, 7, 6, 0.48);
      border: 1px solid rgba(216, 182, 106, 0.2);
    }

    .lead-form label {
      color: #e8ddca;
      font-size: 13px;
      font-weight: 900;
      margin-bottom: 7px;
    }

    .form-row {
      margin-bottom: 14px;
    }

    .site-footer {
      border-top: 1px solid rgba(216, 182, 106, 0.3);
      background:
        radial-gradient(circle at 12% 10%, rgba(111, 36, 58, 0.16), transparent 30%),
        #050404;
      padding: 42px 0 28px;
      color: var(--muted);
    }

    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: var(--text);
      font-weight: 900;
      font-size: 20px;
      margin-bottom: 14px;
    }

    .footer-links {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 10px;
    }

    .footer-links a {
      display: inline-flex;
      padding: 9px 12px;
      border-radius: 999px;
      color: #d8cfbe;
      border: 1px solid rgba(216, 182, 106, 0.14);
      background: rgba(216, 182, 106, 0.04);
      font-size: 14px;
      font-weight: 800;
    }

    .footer-links a:hover {
      color: var(--gold-3);
      border-color: rgba(216, 182, 106, 0.36);
      background: rgba(216, 182, 106, 0.08);
    }

    .footer-note {
      margin-top: 26px;
      padding-top: 18px;
      border-top: 1px solid rgba(216, 182, 106, 0.14);
      color: var(--weak);
      font-size: 13px;
    }

    @media (max-width: 1024px) {
      .brand-mark {
        min-width: 220px;
      }

      .main-menu a {
        padding: 8px 10px;
      }

      .process-track::before {
        display: none;
      }
    }

    @media (max-width: 768px) {
      .info-strip .site-container {
        justify-content: center;
        flex-wrap: wrap;
        padding: 8px 0;
      }

      .strip-tags {
        display: none;
      }

      .site-header {
        position: sticky;
      }

      .top-bar {
        padding: 12px 0 16px;
        display: block;
      }

      .top-bar-left,
      .top-bar-right {
        width: 100%;
      }

      .brand-mark {
        min-width: auto;
        margin-bottom: 12px;
      }

      .main-menu {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
      }

      .main-menu a {
        justify-content: center;
        min-height: 46px;
      }

      .hero-category {
        padding-top: 18px;
      }

      .hero-panel,
      .lead-panel {
        border-radius: 24px;
      }

      .ranking-card {
        margin-top: 24px;
      }

      .section {
        padding: 58px 0;
      }

      .filter-row {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 2px;
      }

      .footer-links {
        justify-content: flex-start;
        margin-top: 18px;
      }
    }

    @media (max-width: 520px) {
      .site-container {
        width: min(100% - 22px, 1180px);
      }

      .hero-panel,
      .lead-panel,
      .faq-panel,
      .entry-card,
      .side-card,
      .proof-card,
      .process-card {
        border-radius: 20px;
      }

      .hero-actions .button,
      .cta-actions .button,
      .lead-form .button {
        width: 100%;
      }

      .rank-item {
        grid-template-columns: auto 1fr;
      }

      .rank-pill {
        grid-column: 2;
        justify-self: start;
      }

      .benefit-badge {
        min-width: calc(50% - 5px);
      }

      .breadcrumb-wrap {
        font-size: 12px;
      }

      h1 {
        letter-spacing: -0.03em;
      }
    }
