/* roulang page: index */
:root {
      --sand-50: #fbf6ee;
      --sand-100: #f4eadb;
      --sand-200: #ead8c0;
      --clay-400: #bd7358;
      --clay-500: #a95f46;
      --clay-600: #8f4935;
      --walnut-700: #4f3428;
      --walnut-800: #39251d;
      --walnut-900: #241814;
      --copper: #d6a36e;
      --rust: #7b2e24;
      --graphite: #2f302d;
      --muted: #70685f;
      --line: rgba(79, 52, 40, .16);
      --white: #fffdfa;
      --shadow-sm: 0 10px 30px rgba(79, 52, 40, .08);
      --shadow-md: 0 18px 50px rgba(79, 52, 40, .14);
      --radius-xl: 28px;
      --radius-lg: 20px;
      --radius-md: 16px;
      --radius-pill: 999px;
      --max: 1220px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--graphite);
      background:
        radial-gradient(circle at 18% 12%, rgba(214, 163, 110, .22), transparent 26%),
        linear-gradient(180deg, var(--sand-50) 0%, #fffaf3 46%, var(--sand-100) 100%);
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      line-height: 1.75;
      letter-spacing: 0;
      padding-bottom: 78px;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .22s ease, background .22s ease, transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }

    a:hover,
    a:focus {
      color: var(--clay-600);
    }

    button,
    .button {
      font-family: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .site-wrap {
      overflow: hidden;
    }

    .rl-container {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
    }

    .top-strip {
      background: var(--walnut-800);
      color: rgba(255, 250, 241, .86);
      font-size: 13px;
      line-height: 1.4;
    }

    .top-strip-inner {
      min-height: 38px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .top-strip .strip-left,
    .top-strip .strip-right {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--copper);
      display: inline-block;
      margin-right: 7px;
      vertical-align: middle;
    }

    .strip-link {
      color: #fff5e7;
      border-bottom: 1px solid rgba(214, 163, 110, .45);
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 30;
      background: rgba(251, 246, 238, .88);
      border-bottom: 1px solid var(--line);
      backdrop-filter: blur(16px);
      box-shadow: 0 8px 26px rgba(57, 37, 29, .05);
    }

    .main-nav {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 260px;
      font-weight: 800;
      color: var(--walnut-900);
      line-height: 1.2;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      background:
        linear-gradient(135deg, rgba(214, 163, 110, .95), rgba(123, 46, 36, .92)),
        repeating-linear-gradient(90deg, transparent 0 8px, rgba(255,255,255,.15) 8px 9px);
      color: #fffaf2;
      display: grid;
      place-items: center;
      box-shadow: 0 12px 28px rgba(123, 46, 36, .22);
      font-size: 18px;
      letter-spacing: 0;
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .brand-text strong {
      font-size: 17px;
      letter-spacing: 0;
    }

    .brand-text span {
      color: var(--muted);
      font-size: 12px;
      font-weight: 600;
    }

    .nav-menu {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      margin: 0;
      list-style: none;
      flex: 1;
    }

    .nav-menu a {
      display: inline-flex;
      align-items: center;
      min-height: 42px;
      padding: 0 15px;
      border-radius: var(--radius-pill);
      color: var(--walnut-700);
      font-size: 15px;
      font-weight: 700;
      white-space: nowrap;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
      color: var(--rust);
      background: rgba(189, 115, 88, .13);
    }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 0 20px;
      border-radius: var(--radius-pill);
      background: linear-gradient(135deg, var(--clay-500), var(--rust));
      color: #fffaf2;
      font-weight: 800;
      box-shadow: 0 12px 28px rgba(123, 46, 36, .2);
      white-space: nowrap;
    }

    .nav-cta:hover,
    .nav-cta:focus {
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 18px 36px rgba(123, 46, 36, .25);
    }

    .mobile-toggle {
      display: none;
      border: 1px solid var(--line);
      background: var(--white);
      border-radius: 14px;
      width: 44px;
      height: 44px;
      color: var(--walnut-800);
      font-weight: 800;
      cursor: pointer;
    }

    .section {
      padding: 82px 0;
    }

    .section-tight {
      padding: 58px 0;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 28px;
      margin-bottom: 30px;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 10px;
      color: var(--clay-600);
      font-size: 13px;
      font-weight: 800;
    }

    .section-title {
      margin: 0;
      color: var(--walnut-900);
      font-size: clamp(28px, 3vw, 36px);
      line-height: 1.24;
      font-weight: 800;
    }

    .section-copy {
      max-width: 660px;
      margin: 12px 0 0;
      color: var(--muted);
      font-size: 16px;
    }

    .hero {
      padding: 54px 0 72px;
    }

    .hero-cover {
      position: relative;
      min-height: 560px;
      border-radius: 34px;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(36, 24, 20, .82), rgba(57, 37, 29, .52) 46%, rgba(251, 246, 238, .88)),
        linear-gradient(135deg, #5b382b 0%, #c99465 58%, #f8ead7 100%);
      box-shadow: var(--shadow-md);
      isolation: isolate;
    }

    .hero-cover:before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,.06) 1px, transparent 1px);
      background-size: 64px 64px;
      opacity: .38;
      z-index: -1;
    }

    .hero-grid {
      min-height: 560px;
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 30px;
      align-items: stretch;
      padding: 46px;
    }

    .hero-copy {
      color: #fff8ec;
      display: flex;
      flex-direction: column;
      justify-content: center;
      max-width: 620px;
    }

    .live-label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      width: fit-content;
      padding: 9px 14px;
      border-radius: var(--radius-pill);
      background: rgba(255, 250, 242, .14);
      border: 1px solid rgba(255, 250, 242, .22);
      color: #fff6e8;
      font-size: 13px;
      font-weight: 800;
    }

    .pulse {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: #ffcf8e;
      box-shadow: 0 0 0 0 rgba(255, 207, 142, .65);
      animation: pulse 1.8s infinite;
    }

    @keyframes pulse {
      70% { box-shadow: 0 0 0 12px rgba(255, 207, 142, 0); }
      100% { box-shadow: 0 0 0 0 rgba(255, 207, 142, 0); }
    }

    h1 {
      margin: 24px 0 18px;
      color: #fffaf2;
      font-size: clamp(34px, 5vw, 52px);
      line-height: 1.16;
      font-weight: 800;
      letter-spacing: 0;
    }

    .hero-intro {
      max-width: 600px;
      margin: 0;
      color: rgba(255, 250, 242, .9);
      font-size: 17px;
      line-height: 1.9;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 28px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-ghost {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 48px;
      padding: 0 22px;
      border-radius: var(--radius-pill);
      font-size: 15px;
      font-weight: 800;
      border: 1px solid transparent;
      cursor: pointer;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--clay-500), var(--rust));
      color: #fffaf2;
      box-shadow: 0 14px 32px rgba(123, 46, 36, .24);
    }

    .btn-primary:hover,
    .btn-primary:focus {
      color: #fff;
      transform: translateY(-3px);
      box-shadow: 0 20px 38px rgba(123, 46, 36, .3);
    }

    .btn-secondary {
      color: var(--walnut-800);
      background: var(--white);
      border-color: rgba(79, 52, 40, .18);
    }

    .btn-secondary:hover,
    .btn-secondary:focus {
      color: var(--rust);
      background: #fff1df;
      transform: translateY(-2px);
    }

    .btn-ghost {
      color: #fff8ec;
      border-color: rgba(255,255,255,.28);
      background: rgba(255,255,255,.09);
    }

    .btn-ghost:hover,
    .btn-ghost:focus {
      color: #fff;
      background: rgba(255,255,255,.16);
      transform: translateY(-2px);
    }

    .hero-points {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 34px;
      max-width: 620px;
    }

    .point {
      padding: 14px;
      border-radius: 18px;
      background: rgba(255, 250, 242, .12);
      border: 1px solid rgba(255, 250, 242, .18);
    }

    .point strong {
      display: block;
      color: #fffaf2;
      font-size: 21px;
      line-height: 1.2;
    }

    .point span {
      color: rgba(255, 250, 242, .78);
      font-size: 12px;
      font-weight: 700;
    }

    .hero-panel {
      align-self: center;
      background: rgba(255, 252, 247, .94);
      border: 1px solid rgba(255,255,255,.72);
      border-radius: 30px;
      padding: 24px;
      box-shadow: 0 18px 50px rgba(36, 24, 20, .2);
    }

    .countdown {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
      margin-bottom: 18px;
    }

    .count-box {
      text-align: center;
      padding: 15px 8px;
      border-radius: 18px;
      background: linear-gradient(180deg, #fff9f0, #f2dfc8);
      border: 1px solid rgba(79,52,40,.12);
    }

    .count-box b {
      display: block;
      color: var(--walnut-900);
      font-size: 25px;
      line-height: 1.1;
    }

    .count-box span {
      color: var(--muted);
      font-size: 12px;
      font-weight: 700;
    }

    .panel-title {
      margin: 0 0 8px;
      color: var(--walnut-900);
      font-size: 22px;
      font-weight: 800;
    }

    .panel-copy {
      margin: 0 0 18px;
      color: var(--muted);
      font-size: 15px;
    }

    .index-wall {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 18px;
    }

    .index-tile {
      min-height: 112px;
      padding: 16px;
      border-radius: 20px;
      background: var(--sand-50);
      border: 1px solid var(--line);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .index-tile:nth-child(1) {
      grid-row: span 2;
      background:
        linear-gradient(160deg, rgba(169,95,70,.12), rgba(255,253,250,.86)),
        var(--sand-100);
    }

    .tile-no {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border-radius: 12px;
      background: var(--walnut-800);
      color: #fffaf2;
      font-weight: 800;
      font-size: 13px;
    }

    .index-tile strong {
      display: block;
      margin-top: 14px;
      color: var(--walnut-900);
      font-size: 16px;
      line-height: 1.35;
    }

    .index-tile span {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.55;
    }

    .trust-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      margin-top: 22px;
    }

    .trust-item {
      padding: 16px;
      border-radius: 18px;
      background: rgba(255, 253, 250, .72);
      border: 1px solid var(--line);
      color: var(--walnut-700);
      font-weight: 800;
      font-size: 14px;
      box-shadow: var(--shadow-sm);
    }

    .trust-item i {
      width: 30px;
      height: 30px;
      display: inline-grid;
      place-items: center;
      margin-right: 8px;
      border-radius: 50%;
      background: rgba(189,115,88,.13);
      color: var(--clay-600);
      font-style: normal;
    }

    .feature-strip {
      margin-top: -36px;
      position: relative;
      z-index: 2;
    }

    .feature-bar {
      display: grid;
      grid-template-columns: 1.2fr repeat(3, 1fr);
      gap: 14px;
      padding: 16px;
      border-radius: 26px;
      background: rgba(255, 253, 250, .92);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-md);
    }

    .feature-note,
    .metric-card,
    .catalog-card,
    .entry-card,
    .recommend-card,
    .review-card,
    .update-card,
    .rank-card,
    .faq-wrap,
    .cta-panel {
      background: rgba(255, 253, 250, .86);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-sm);
    }

    .feature-note {
      padding: 18px 20px;
      border-radius: 20px;
      background: linear-gradient(135deg, var(--walnut-800), var(--walnut-700));
      color: #fff8ec;
    }

    .feature-note strong {
      display: block;
      font-size: 18px;
      line-height: 1.35;
      margin-bottom: 5px;
    }

    .feature-note span {
      color: rgba(255,248,236,.75);
      font-size: 13px;
    }

    .metric-card {
      padding: 18px;
      border-radius: 20px;
    }

    .metric-card b {
      display: block;
      color: var(--rust);
      font-size: 26px;
      line-height: 1.1;
    }

    .metric-card span {
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    .catalog-mosaic {
      display: grid;
      grid-template-columns: 1.2fr .8fr .8fr;
      grid-auto-rows: minmax(178px, auto);
      gap: 18px;
    }

    .catalog-card {
      position: relative;
      padding: 24px;
      border-radius: var(--radius-xl);
      overflow: hidden;
      min-height: 178px;
    }

    .catalog-card.large {
      grid-row: span 2;
      background:
        linear-gradient(145deg, rgba(169,95,70,.16), rgba(255,253,250,.9)),
        repeating-linear-gradient(90deg, rgba(79,52,40,.04) 0 1px, transparent 1px 32px);
    }

    .catalog-card.wide {
      grid-column: span 2;
    }

    .catalog-card:hover,
    .entry-card:hover,
    .recommend-card:hover,
    .review-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .badge {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 0 10px;
      border-radius: var(--radius-pill);
      background: rgba(189, 115, 88, .13);
      color: var(--clay-600);
      font-size: 12px;
      font-weight: 800;
    }

    .catalog-no {
      position: absolute;
      right: 20px;
      top: 18px;
      color: rgba(79,52,40,.14);
      font-size: 52px;
      line-height: 1;
      font-weight: 800;
    }

    .catalog-card h3,
    .entry-card h3,
    .recommend-card h3,
    .update-card h3,
    .rank-card h3 {
      margin: 14px 0 10px;
      color: var(--walnut-900);
      font-size: 21px;
      line-height: 1.35;
      font-weight: 800;
    }

    .catalog-card p,
    .entry-card p,
    .recommend-card p,
    .review-card p,
    .update-card p {
      margin: 0 0 18px;
      color: var(--muted);
      font-size: 15px;
    }

    .mini-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--rust);
      font-size: 14px;
      font-weight: 800;
    }

    .mini-link:hover {
      gap: 12px;
    }

    .entries-layout {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 22px;
      align-items: start;
    }

    .entry-card {
      border-radius: var(--radius-xl);
      padding: 24px;
      min-height: 230px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .entry-card.featured {
      min-height: 482px;
      background:
        linear-gradient(150deg, rgba(57,37,29,.9), rgba(123,46,36,.72)),
        linear-gradient(135deg, #c99b6d, #fbf0df);
      color: #fff8ec;
    }

    .entry-card.featured h3,
    .entry-card.featured p {
      color: #fff8ec;
    }

    .entry-card.featured p {
      color: rgba(255,248,236,.82);
    }

    .entry-list {
      display: grid;
      gap: 18px;
    }

    .entry-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
      margin-top: 18px;
    }

    .info-loop {
      background:
        linear-gradient(180deg, rgba(244,234,219,.68), rgba(255,253,250,.62));
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .news-board {
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: 24px;
      align-items: start;
    }

    .news-list {
      background: rgba(255,253,250,.9);
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }

    .news-item {
      display: grid;
      grid-template-columns: 132px 1fr auto;
      gap: 18px;
      align-items: center;
      padding: 20px 22px;
      border-bottom: 1px solid var(--line);
    }

    .news-item:last-child {
      border-bottom: 0;
    }

    .news-time {
      color: var(--clay-600);
      font-size: 13px;
      font-weight: 800;
    }

    .news-item a {
      color: var(--walnut-900);
      font-size: 17px;
      font-weight: 800;
      line-height: 1.45;
    }

    .news-item p {
      margin: 4px 0 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.6;
    }

    .news-arrow {
      color: var(--rust);
      font-weight: 800;
    }

    .side-recommend {
      display: grid;
      gap: 14px;
    }

    .recommend-card {
      border-radius: 22px;
      padding: 20px;
    }

    .rank-board {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 22px;
      align-items: stretch;
    }

    .rank-card {
      border-radius: var(--radius-xl);
      padding: 26px;
    }

    .rank-list {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 12px;
    }

    .rank-list li {
      display: grid;
      grid-template-columns: 42px 1fr auto;
      gap: 12px;
      align-items: center;
      padding: 14px;
      border-radius: 18px;
      background: var(--sand-50);
      border: 1px solid rgba(79,52,40,.1);
    }

    .rank-num {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border-radius: 12px;
      background: var(--walnut-800);
      color: #fffaf2;
      font-weight: 800;
      font-size: 13px;
    }

    .rank-title {
      color: var(--walnut-900);
      font-weight: 800;
      line-height: 1.35;
    }

    .rank-sub {
      display: block;
      color: var(--muted);
      font-size: 13px;
      font-weight: 600;
      margin-top: 3px;
    }

    .rank-score {
      color: var(--clay-600);
      font-weight: 800;
      font-size: 13px;
      white-space: nowrap;
    }

    .reviews {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .review-card {
      border-radius: 24px;
      padding: 22px;
    }

    .stars {
      color: var(--copper);
      font-size: 18px;
      letter-spacing: 0;
      margin-bottom: 10px;
    }

    .reviewer {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 18px;
      color: var(--walnut-900);
      font-weight: 800;
    }

    .avatar {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--sand-200), var(--clay-400));
      display: grid;
      place-items: center;
      color: var(--walnut-900);
      font-weight: 800;
    }

    .update-flow {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .update-card {
      border-radius: 24px;
      padding: 22px;
      position: relative;
    }

    .update-card:before {
      content: "";
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--clay-500);
      position: absolute;
      left: 22px;
      top: -6px;
      box-shadow: 0 0 0 6px rgba(189,115,88,.14);
    }

    .update-date {
      display: inline-flex;
      margin-bottom: 8px;
      color: var(--clay-600);
      font-size: 12px;
      font-weight: 800;
    }

    .faq-wrap {
      border-radius: var(--radius-xl);
      padding: 10px;
    }

    .accordion {
      background: transparent;
      margin: 0;
    }

    .accordion-item {
      border-radius: 18px;
      overflow: hidden;
      margin: 8px;
      border: 1px solid rgba(79,52,40,.1);
      background: #fffaf3;
    }

    .accordion-title {
      border: 0;
      color: var(--walnut-900);
      font-size: 16px;
      font-weight: 800;
      padding: 18px 48px 18px 20px;
      background: #fffaf3;
    }

    .accordion-title:hover,
    .accordion-title:focus {
      color: var(--rust);
      background: #fff2e3;
    }

    .accordion-content {
      border: 0;
      border-top: 1px solid rgba(189,115,88,.18);
      background: #fffdf8;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.8;
      padding: 18px 20px 20px;
    }

    .cta-section {
      padding: 84px 0 96px;
    }

    .cta-panel {
      position: relative;
      overflow: hidden;
      border-radius: 34px;
      padding: 46px;
      background:
        linear-gradient(135deg, rgba(36,24,20,.94), rgba(123,46,36,.86)),
        linear-gradient(45deg, #c79a6b, #fbecd8);
      color: #fff8ec;
      box-shadow: var(--shadow-md);
    }

    .cta-panel:after {
      content: "";
      position: absolute;
      right: -70px;
      top: -90px;
      width: 270px;
      height: 270px;
      border: 1px solid rgba(255,250,242,.18);
      border-radius: 38px;
      transform: rotate(18deg);
    }

    .cta-panel h2 {
      position: relative;
      z-index: 1;
      max-width: 720px;
      margin: 0;
      color: #fffaf2;
      font-size: clamp(28px, 4vw, 42px);
      line-height: 1.24;
      font-weight: 800;
    }

    .cta-panel p {
      position: relative;
      z-index: 1;
      max-width: 720px;
      margin: 14px 0 28px;
      color: rgba(255,248,236,.82);
      font-size: 16px;
    }

    .cta-panel .btn-secondary {
      background: #fff8ec;
    }

    .site-footer {
      background: var(--walnut-900);
      color: rgba(255, 248, 236, .78);
      padding: 58px 0 28px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr .9fr;
      gap: 32px;
      padding-bottom: 34px;
      border-bottom: 1px solid rgba(214,163,110,.24);
    }

    .footer-brand {
      color: #fff8ec;
      font-size: 22px;
      font-weight: 800;
      margin-bottom: 12px;
    }

    .footer-text {
      margin: 0;
      max-width: 460px;
      font-size: 14px;
      line-height: 1.8;
    }

    .footer-title {
      color: #fff8ec;
      font-size: 15px;
      font-weight: 800;
      margin-bottom: 12px;
    }

    .footer-links {
      display: grid;
      gap: 10px;
    }

    .footer-links a {
      color: rgba(255,248,236,.78);
      font-size: 14px;
    }

    .footer-links a:hover {
      color: var(--copper);
    }

    .copyright {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
      padding-top: 22px;
      color: rgba(255,248,236,.56);
      font-size: 13px;
    }

    .fixed-cta {
      position: fixed;
      z-index: 60;
      left: 50%;
      bottom: 18px;
      width: min(760px, calc(100% - 32px));
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 12px;
      border-radius: 22px;
      background: rgba(255,253,250,.94);
      border: 1px solid var(--line);
      box-shadow: 0 18px 46px rgba(36,24,20,.2);
      backdrop-filter: blur(16px);
    }

    .fixed-cta span {
      color: var(--walnut-700);
      font-size: 13px;
      font-weight: 800;
      padding-left: 8px;
      white-space: nowrap;
    }

    .fixed-actions {
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .fixed-cta .btn-primary,
    .fixed-cta .btn-secondary {
      min-height: 42px;
      padding: 0 16px;
      font-size: 14px;
    }

    a:focus-visible,
    button:focus-visible,
    .accordion-title:focus-visible {
      outline: 3px solid rgba(214,163,110,.62);
      outline-offset: 3px;
    }

    @media (max-width: 1024px) {
      .brand {
        min-width: auto;
      }

      .brand-text span {
        display: none;
      }

      .nav-menu {
        gap: 2px;
      }

      .nav-menu a {
        padding: 0 11px;
        font-size: 14px;
      }

      .hero-grid,
      .entries-layout,
      .news-board,
      .rank-board {
        grid-template-columns: 1fr;
      }

      .hero-cover,
      .hero-grid {
        min-height: auto;
      }

      .catalog-mosaic {
        grid-template-columns: 1fr 1fr;
      }

      .catalog-card.large,
      .catalog-card.wide {
        grid-row: auto;
        grid-column: auto;
      }

      .feature-bar,
      .trust-row,
      .update-flow {
        grid-template-columns: repeat(2, 1fr);
      }

      .reviews {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      body {
        padding-bottom: 116px;
      }

      .rl-container {
        width: min(100% - 28px, var(--max));
      }

      .top-strip-inner {
        align-items: flex-start;
        padding: 9px 0;
      }

      .top-strip .strip-right {
        display: none;
      }

      .main-nav {
        min-height: 66px;
        flex-wrap: wrap;
        gap: 12px;
        padding: 10px 0;
      }

      .mobile-toggle {
        display: inline-grid;
        place-items: center;
        margin-left: auto;
      }

      .nav-menu {
        order: 5;
        flex-basis: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 10px 0;
      }

      .nav-menu.is-open {
        display: flex;
      }

      .nav-menu a {
        justify-content: center;
        min-height: 44px;
      }

      .nav-cta {
        display: none;
      }

      .brand-mark {
        width: 38px;
        height: 38px;
      }

      .brand-text strong {
        font-size: 15px;
      }

      .hero {
        padding: 34px 0 56px;
      }

      .hero-cover {
        border-radius: 24px;
      }

      .hero-grid {
        padding: 26px;
      }

      .hero-points,
      .countdown,
      .index-wall,
      .feature-bar,
      .trust-row,
      .catalog-mosaic,
      .reviews,
      .update-flow {
        grid-template-columns: 1fr;
      }

      .section {
        padding: 56px 0;
      }

      .section-tight {
        padding: 42px 0;
      }

      .section-head {
        display: block;
      }

      .news-item {
        grid-template-columns: 1fr;
        gap: 8px;
      }

      .news-arrow {
        display: none;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .cta-panel {
        padding: 30px 24px;
        border-radius: 26px;
      }

      .fixed-cta {
        align-items: stretch;
        flex-direction: column;
        bottom: 12px;
      }

      .fixed-cta span {
        white-space: normal;
        text-align: center;
        padding-left: 0;
      }

      .fixed-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 520px) {
      .hero-actions,
      .cta-panel .hero-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .btn-primary,
      .btn-secondary,
      .btn-ghost {
        width: 100%;
      }

      .point,
      .metric-card,
      .trust-item {
        min-height: auto;
      }

      .rank-list li {
        grid-template-columns: 36px 1fr;
      }

      .rank-score {
        grid-column: 2;
      }

      .copyright {
        display: block;
      }
    }

/* roulang page: category1 */
:root {
      --rl-bg: #f7efe4;
      --rl-bg-soft: #fbf6ee;
      --rl-panel: #fffaf3;
      --rl-panel-strong: #efe1d0;
      --rl-ink: #2d211b;
      --rl-muted: #75665b;
      --rl-faint: #9a897b;
      --rl-line: #e2d2bf;
      --rl-brand: #8f4b32;
      --rl-brand-dark: #5a2f24;
      --rl-copper: #bf7a4d;
      --rl-walnut: #2b1b16;
      --rl-accent: #b45b45;
      --rl-radius-lg: 26px;
      --rl-radius-md: 18px;
      --rl-radius-sm: 12px;
      --rl-shadow: 0 22px 60px rgba(72, 45, 32, .13);
      --rl-shadow-soft: 0 12px 34px rgba(72, 45, 32, .09);
      --rl-focus: 0 0 0 4px rgba(180, 91, 69, .22);
      --rl-width: 1200px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--rl-ink);
      background:
        radial-gradient(circle at 12% 6%, rgba(191, 122, 77, .10), transparent 28%),
        linear-gradient(180deg, #fbf4eb 0%, var(--rl-bg) 46%, #f5eadb 100%);
      font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      font-size: 16px;
      line-height: 1.72;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input {
      font: inherit;
    }

    button:focus-visible,
    a:focus-visible,
    input:focus-visible {
      outline: none;
      box-shadow: var(--rl-focus);
    }

    .rl-container {
      width: min(calc(100% - 32px), var(--rl-width));
      margin: 0 auto;
    }

    .top-strip {
      background: #3a241c;
      color: rgba(255, 250, 243, .88);
      font-size: 13px;
      border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .top-strip .rl-container {
      min-height: 38px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .strip-left,
    .strip-right {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .strip-pill {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 5px 10px;
      border: 1px solid rgba(255, 250, 243, .16);
      border-radius: 999px;
      background: rgba(255, 250, 243, .06);
      line-height: 1.2;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 30;
      background: rgba(255, 250, 243, .92);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(143, 75, 50, .14);
      box-shadow: 0 8px 28px rgba(58, 36, 28, .06);
    }

    .main-nav {
      min-height: 78px;
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 290px;
    }

    .brand-mark {
      width: 44px;
      height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
      border-radius: 14px;
      color: #fff7ec;
      background:
        linear-gradient(135deg, var(--rl-brand-dark), var(--rl-brand)),
        repeating-linear-gradient(90deg, transparent 0 12px, rgba(255,255,255,.12) 12px 13px);
      font-weight: 800;
      box-shadow: 0 10px 22px rgba(90, 47, 36, .22);
    }

    .brand-text {
      display: grid;
      line-height: 1.25;
    }

    .brand-text strong {
      font-size: 17px;
      font-weight: 800;
      letter-spacing: 0;
      color: var(--rl-ink);
    }

    .brand-text span {
      margin-top: 2px;
      font-size: 12px;
      color: var(--rl-muted);
    }

    .mobile-toggle {
      display: none;
      margin-left: auto;
      width: 42px;
      height: 42px;
      border: 1px solid var(--rl-line);
      border-radius: 12px;
      background: #fff9f1;
      color: var(--rl-brand-dark);
      cursor: pointer;
    }

    .nav-menu {
      margin: 0;
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      flex: 1;
    }

    .nav-menu a {
      display: inline-flex;
      align-items: center;
      min-height: 40px;
      padding: 8px 14px;
      border-radius: 999px;
      color: var(--rl-muted);
      font-weight: 700;
      font-size: 14px;
      white-space: nowrap;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
      color: var(--rl-brand-dark);
      background: #f0ddca;
    }

    .nav-cta,
    .button.rl-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 46px;
      padding: 12px 22px;
      border-radius: 999px;
      border: 0;
      color: #fffaf3;
      background: linear-gradient(135deg, var(--rl-brand), var(--rl-brand-dark));
      font-weight: 800;
      box-shadow: 0 14px 28px rgba(143, 75, 50, .24);
      cursor: pointer;
    }

    .nav-cta:hover,
    .button.rl-primary:hover {
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 18px 36px rgba(90, 47, 36, .28);
    }

    .button.rl-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 11px 20px;
      border-radius: 999px;
      color: var(--rl-brand-dark);
      background: rgba(255, 250, 243, .74);
      border: 1px solid rgba(143, 75, 50, .28);
      font-weight: 800;
    }

    .button.rl-secondary:hover {
      color: var(--rl-brand-dark);
      background: #f2dfcd;
      transform: translateY(-2px);
    }

    .section {
      padding: 78px 0;
      position: relative;
    }

    .section-tight {
      padding: 54px 0;
    }

    .section-head {
      max-width: 760px;
      margin-bottom: 28px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 12px;
      border-radius: 999px;
      background: #edddcc;
      color: var(--rl-brand-dark);
      font-size: 13px;
      font-weight: 800;
      line-height: 1.2;
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      margin-bottom: 18px;
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1.14;
      font-weight: 800;
      letter-spacing: 0;
      color: var(--rl-ink);
    }

    h2 {
      margin-bottom: 12px;
      font-size: clamp(1.7rem, 3vw, 2.15rem);
      line-height: 1.18;
      font-weight: 800;
      letter-spacing: 0;
    }

    h3 {
      margin-bottom: 10px;
      font-size: 1.22rem;
      line-height: 1.35;
      font-weight: 800;
    }

    .lead {
      color: var(--rl-muted);
      font-size: 17px;
      max-width: 700px;
    }

    .hero {
      padding: 66px 0 46px;
      background:
        linear-gradient(135deg, rgba(255, 250, 243, .66), rgba(239, 225, 208, .72)),
        radial-gradient(circle at 85% 10%, rgba(180, 91, 69, .12), transparent 28%);
      border-bottom: 1px solid rgba(143, 75, 50, .12);
    }

    .hero-shell {
      display: grid;
      grid-template-columns: minmax(0, 1.04fr) minmax(320px, .72fr);
      gap: 28px;
      align-items: stretch;
    }

    .hero-copy {
      padding: 34px;
      border-radius: var(--rl-radius-lg);
      background:
        linear-gradient(135deg, rgba(255, 250, 243, .92), rgba(244, 230, 215, .78)),
        repeating-linear-gradient(45deg, rgba(143,75,50,.025) 0 9px, transparent 9px 18px);
      border: 1px solid rgba(143, 75, 50, .14);
      box-shadow: var(--rl-shadow);
      overflow: hidden;
      position: relative;
    }

    .hero-copy:after {
      content: "01";
      position: absolute;
      right: 30px;
      bottom: -12px;
      color: rgba(143, 75, 50, .10);
      font-size: 92px;
      line-height: 1;
      font-weight: 800;
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 26px;
      position: relative;
      z-index: 1;
    }

    .benefit-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin: 24px 0 0;
      padding: 0;
      list-style: none;
      position: relative;
      z-index: 1;
    }

    .benefit-list li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      padding: 13px 14px;
      border: 1px solid rgba(143, 75, 50, .12);
      border-radius: 16px;
      background: rgba(255, 250, 243, .62);
      color: var(--rl-muted);
      font-weight: 600;
    }

    .check-dot {
      width: 22px;
      height: 22px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
      border-radius: 50%;
      background: #e6c5ae;
      color: var(--rl-brand-dark);
      font-size: 13px;
      font-weight: 900;
    }

    .summary-card {
      padding: 26px;
      border-radius: var(--rl-radius-lg);
      background: #352018;
      color: #fff7ec;
      box-shadow: var(--rl-shadow);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 100%;
      position: relative;
      overflow: hidden;
    }

    .summary-card:before {
      content: "";
      position: absolute;
      inset: 18px;
      border: 1px solid rgba(255, 250, 243, .14);
      border-radius: 20px;
      pointer-events: none;
    }

    .summary-card h2 {
      color: #fff7ec;
      font-size: 1.55rem;
      position: relative;
      z-index: 1;
    }

    .index-steps {
      display: grid;
      gap: 12px;
      position: relative;
      z-index: 1;
    }

    .index-step {
      display: grid;
      grid-template-columns: 42px minmax(0, 1fr);
      gap: 12px;
      align-items: start;
      padding: 14px;
      border-radius: 18px;
      background: rgba(255, 250, 243, .08);
      border: 1px solid rgba(255, 250, 243, .12);
    }

    .index-step span {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #c38258;
      color: #fffaf3;
      font-weight: 900;
    }

    .index-step strong {
      display: block;
      margin-bottom: 4px;
      color: #fffaf3;
    }

    .index-step p {
      margin: 0;
      color: rgba(255, 250, 243, .74);
      font-size: 14px;
      line-height: 1.6;
    }

    .trust-row {
      margin-top: 24px;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
    }

    .trust-item {
      padding: 14px;
      border-radius: 18px;
      background: rgba(255, 250, 243, .78);
      border: 1px solid rgba(143, 75, 50, .12);
      box-shadow: 0 10px 24px rgba(72, 45, 32, .06);
      font-size: 14px;
      font-weight: 800;
      color: var(--rl-brand-dark);
      text-align: center;
    }

    .content-panel,
    .filter-board,
    .entry-card,
    .compact-card,
    .recommend-card,
    .faq-wrap {
      border: 1px solid rgba(143, 75, 50, .14);
      background: rgba(255, 250, 243, .78);
      border-radius: var(--rl-radius-lg);
      box-shadow: var(--rl-shadow-soft);
    }

    .content-panel {
      padding: 30px;
    }

    .content-panel p:last-child {
      margin-bottom: 0;
    }

    .note-grid {
      display: grid;
      grid-template-columns: .82fr 1.18fr;
      gap: 18px;
      align-items: stretch;
    }

    .note-block {
      padding: 24px;
      border-radius: 22px;
      background: #ead8c4;
      min-height: 100%;
    }

    .note-block strong {
      display: block;
      margin-bottom: 8px;
      color: var(--rl-brand-dark);
      font-size: 18px;
    }

    .filter-board {
      padding: 24px;
      background:
        linear-gradient(135deg, rgba(255, 250, 243, .94), rgba(239, 225, 208, .82));
    }

    .filter-row {
      display: grid;
      grid-template-columns: 120px minmax(0, 1fr);
      gap: 18px;
      align-items: start;
      padding: 16px 0;
      border-bottom: 1px solid rgba(143, 75, 50, .13);
    }

    .filter-row:last-child {
      border-bottom: 0;
      padding-bottom: 0;
    }

    .filter-label {
      color: var(--rl-brand-dark);
      font-weight: 900;
    }

    .pill-group {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      min-height: 36px;
      padding: 8px 13px;
      border-radius: 999px;
      color: var(--rl-muted);
      background: rgba(255, 250, 243, .86);
      border: 1px solid rgba(143, 75, 50, .16);
      font-size: 14px;
      font-weight: 800;
    }

    .pill.is-on,
    .pill:hover {
      color: #fffaf3;
      background: var(--rl-brand);
      border-color: var(--rl-brand);
    }

    .entry-layout {
      display: grid;
      grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
      gap: 20px;
      align-items: start;
    }

    .entry-card {
      padding: 0;
      overflow: hidden;
      transition: transform .22s ease, box-shadow .22s ease;
    }

    .entry-card:hover,
    .compact-card:hover,
    .recommend-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--rl-shadow);
    }

    .entry-cover {
      min-height: 238px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background:
        linear-gradient(135deg, #6a392b, #c27c55),
        repeating-linear-gradient(90deg, rgba(255,255,255,.08) 0 1px, transparent 1px 34px);
      color: #fffaf3;
      position: relative;
    }

    .entry-cover:after {
      content: "";
      position: absolute;
      right: 24px;
      top: 24px;
      width: 92px;
      height: 92px;
      border: 1px solid rgba(255, 250, 243, .24);
      border-radius: 26px;
      transform: rotate(8deg);
    }

    .entry-cover .badge {
      width: fit-content;
      border-radius: 999px;
      background: rgba(255, 250, 243, .16);
      color: #fffaf3;
      font-weight: 900;
    }

    .entry-body {
      padding: 24px;
    }

    .meta-line {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 14px 0 18px;
      color: var(--rl-faint);
      font-size: 13px;
      font-weight: 700;
    }

    .compact-list {
      display: grid;
      gap: 14px;
    }

    .compact-card {
      padding: 18px;
      display: grid;
      grid-template-columns: 58px minmax(0, 1fr);
      gap: 14px;
      transition: transform .22s ease, box-shadow .22s ease;
    }

    .compact-num {
      width: 58px;
      height: 58px;
      border-radius: 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--rl-brand-dark);
      background: #ead3bd;
      font-weight: 900;
      font-size: 18px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      width: fit-content;
      padding: 5px 10px;
      border-radius: 999px;
      color: var(--rl-brand-dark);
      background: #efd9c6;
      font-size: 12px;
      font-weight: 900;
      line-height: 1.2;
    }

    .compact-card p,
    .entry-card p,
    .recommend-card p {
      color: var(--rl-muted);
      margin-bottom: 0;
    }

    .text-link {
      display: inline-flex;
      margin-top: 14px;
      color: var(--rl-brand);
      font-weight: 900;
    }

    .text-link:hover {
      color: var(--rl-brand-dark);
      transform: translateX(3px);
    }

    .recommend-band {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 18px;
      align-items: stretch;
    }

    .recommend-card {
      padding: 24px;
      min-height: 190px;
      transition: transform .22s ease, box-shadow .22s ease;
    }

    .recommend-card.is-dark {
      color: #fffaf3;
      background:
        linear-gradient(135deg, #382018, #7b3f2d);
      border-color: rgba(255, 250, 243, .12);
    }

    .recommend-card.is-dark p,
    .recommend-card.is-dark .meta-line {
      color: rgba(255, 250, 243, .75);
    }

    .security-strip {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
      padding: 18px;
      border-radius: var(--rl-radius-lg);
      background: #3a241c;
      color: #fff7ec;
      box-shadow: var(--rl-shadow-soft);
    }

    .security-item {
      padding: 18px;
      border-radius: 18px;
      background: rgba(255, 250, 243, .08);
      border: 1px solid rgba(255, 250, 243, .12);
    }

    .security-item strong {
      display: block;
      margin-bottom: 4px;
      color: #fffaf3;
    }

    .security-item span {
      color: rgba(255, 250, 243, .72);
      font-size: 14px;
    }

    .accordion {
      background: transparent;
    }

    .faq-wrap {
      padding: 12px;
    }

    .accordion-item {
      border-radius: 18px;
      overflow: hidden;
      margin-bottom: 10px;
      border: 1px solid rgba(143, 75, 50, .13);
      background: #fffaf3;
    }

    .accordion-item:last-child {
      margin-bottom: 0;
    }

    .accordion-title {
      border: 0;
      color: var(--rl-ink);
      font-weight: 900;
      font-size: 16px;
      padding: 18px 48px 18px 18px;
    }

    .accordion-title:hover,
    .accordion-title:focus {
      background: #f2dfcd;
      color: var(--rl-brand-dark);
    }

    .accordion-content {
      border: 0;
      background: #fffaf3;
      color: var(--rl-muted);
      padding: 0 18px 18px;
    }

    .final-cta {
      padding: 34px;
      border-radius: 30px;
      color: #fffaf3;
      background:
        linear-gradient(135deg, #7e442f, #2e1d18),
        repeating-linear-gradient(45deg, rgba(255,255,255,.04) 0 10px, transparent 10px 22px);
      box-shadow: var(--rl-shadow);
      overflow: hidden;
      position: relative;
    }

    .final-cta:after {
      content: "INDEX";
      position: absolute;
      right: 24px;
      bottom: -8px;
      color: rgba(255, 250, 243, .08);
      font-size: 78px;
      font-weight: 900;
      line-height: 1;
    }

    .final-cta h2 {
      color: #fffaf3;
      position: relative;
      z-index: 1;
    }

    .final-cta p {
      max-width: 760px;
      color: rgba(255, 250, 243, .76);
      position: relative;
      z-index: 1;
    }

    .final-cta .hero-actions {
      position: relative;
      z-index: 1;
    }

    .final-cta .button.rl-secondary {
      background: rgba(255, 250, 243, .10);
      color: #fffaf3;
      border-color: rgba(255, 250, 243, .26);
    }

    .final-cta .button.rl-secondary:hover {
      background: rgba(255, 250, 243, .18);
      color: #fff;
    }

    .site-footer {
      padding: 56px 0 96px;
      background: #241611;
      color: rgba(255, 250, 243, .78);
      border-top: 4px solid #b8754c;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.25fr .75fr .75fr;
      gap: 34px;
    }

    .footer-brand {
      margin-bottom: 12px;
      color: #fffaf3;
      font-size: 20px;
      font-weight: 900;
    }

    .footer-text {
      max-width: 540px;
      color: rgba(255, 250, 243, .70);
      margin-bottom: 0;
    }

    .footer-title {
      margin-bottom: 12px;
      color: #e6b287;
      font-weight: 900;
    }

    .footer-links {
      display: grid;
      gap: 9px;
    }

    .footer-links a {
      color: rgba(255, 250, 243, .72);
    }

    .footer-links a:hover {
      color: #fffaf3;
      transform: translateX(3px);
    }

    .copyright {
      margin-top: 34px;
      padding-top: 18px;
      border-top: 1px solid rgba(255, 250, 243, .12);
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
      color: rgba(255, 250, 243, .56);
      font-size: 13px;
    }

    .fixed-cta {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 40;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px;
      border-radius: 999px;
      background: rgba(255, 250, 243, .94);
      border: 1px solid rgba(143, 75, 50, .18);
      box-shadow: 0 16px 40px rgba(58, 36, 28, .20);
      backdrop-filter: blur(14px);
    }

    .fixed-cta span {
      color: var(--rl-muted);
      font-size: 13px;
      font-weight: 800;
      padding-left: 8px;
      white-space: nowrap;
    }

    .fixed-cta a {
      min-height: 40px;
      padding: 9px 14px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 900;
    }

    .fixed-primary {
      color: #fffaf3;
      background: var(--rl-brand);
    }

    .fixed-secondary {
      color: var(--rl-brand-dark);
      background: #efd9c6;
    }

    @media (max-width: 1024px) {
      .main-nav {
        gap: 14px;
      }

      .brand {
        min-width: auto;
      }

      .brand-text span {
        display: none;
      }

      .nav-menu a {
        padding: 8px 10px;
      }

      .hero-shell,
      .entry-layout,
      .recommend-band,
      .note-grid {
        grid-template-columns: 1fr;
      }

      .trust-row,
      .security-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 768px) {
      body {
        font-size: 15px;
        padding-bottom: 84px;
      }

      .top-strip .rl-container {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        padding: 9px 0;
      }

      .strip-right {
        gap: 8px;
      }

      .main-nav {
        min-height: 68px;
        flex-wrap: wrap;
        padding: 12px 0;
      }

      .mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }

      .nav-menu {
        display: none;
        order: 5;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        padding: 10px;
        border-radius: 18px;
        background: #fff7ee;
        border: 1px solid rgba(143, 75, 50, .14);
      }

      .nav-menu.is-open {
        display: flex;
      }

      .nav-menu a {
        justify-content: center;
      }

      .nav-cta {
        display: none;
      }

      .hero {
        padding: 42px 0 32px;
      }

      .section {
        padding: 52px 0;
      }

      .section-tight {
        padding: 40px 0;
      }

      .hero-copy,
      .summary-card,
      .content-panel,
      .filter-board,
      .final-cta {
        padding: 22px;
      }

      .benefit-list,
      .trust-row,
      .security-strip,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .filter-row {
        grid-template-columns: 1fr;
        gap: 10px;
      }

      .compact-card {
        grid-template-columns: 48px minmax(0, 1fr);
      }

      .compact-num {
        width: 48px;
        height: 48px;
      }

      .fixed-cta {
        left: 10px;
        right: 10px;
        bottom: 10px;
        border-radius: 22px;
        justify-content: space-between;
      }

      .fixed-cta span {
        display: none;
      }

      .fixed-cta a {
        flex: 1;
        text-align: center;
        justify-content: center;
      }
    }

    @media (max-width: 520px) {
      .rl-container {
        width: min(calc(100% - 24px), var(--rl-width));
      }

      .brand-text strong {
        font-size: 14px;
      }

      .brand-mark {
        width: 40px;
        height: 40px;
      }

      h1 {
        font-size: 2rem;
      }

      .hero-actions .button,
      .hero-actions a {
        width: 100%;
      }

      .entry-cover {
        min-height: 200px;
      }

      .final-cta:after,
      .hero-copy:after {
        display: none;
      }

      .copyright {
        display: grid;
      }
    }

/* roulang page: category2 */
:root {
      --bg: #f7efe3;
      --bg-soft: #fff9ef;
      --surface: #fffaf2;
      --surface-strong: #fff3df;
      --ink: #2d211b;
      --muted: #74665d;
      --muted-2: #9a8779;
      --line: rgba(80, 52, 38, .16);
      --brand: #7a3f2a;
      --brand-dark: #4b241b;
      --brand-soft: #c97855;
      --copper: #b77449;
      --accent: #9f3c2d;
      --green: #657257;
      --shadow: 0 18px 50px rgba(75, 36, 27, .12);
      --shadow-soft: 0 10px 28px rgba(75, 36, 27, .08);
      --radius-xl: 28px;
      --radius-lg: 22px;
      --radius-md: 16px;
      --radius-sm: 12px;
      --max: 1200px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      color: var(--ink);
      background:
        radial-gradient(circle at 12% 8%, rgba(199, 120, 85, .16), transparent 32%),
        linear-gradient(180deg, #f9f1e6 0%, #f6eadb 48%, #fff8ee 100%);
      line-height: 1.75;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .2s ease, background .2s ease, transform .2s ease, border-color .2s ease;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    .button {
      font-family: inherit;
    }

    button:focus,
    a:focus,
    input:focus {
      outline: 3px solid rgba(183, 116, 73, .34);
      outline-offset: 3px;
    }

    .rl-container {
      width: min(calc(100% - 36px), var(--max));
      margin: 0 auto;
    }

    .top-strip {
      background: #4b241b;
      color: rgba(255, 249, 239, .86);
      font-size: 13px;
      border-bottom: 1px solid rgba(255, 249, 239, .12);
    }

    .top-strip .rl-container {
      min-height: 38px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
    }

    .top-strip strong {
      color: #fff3df;
      font-weight: 700;
    }

    .strip-links {
      display: flex;
      align-items: center;
      gap: 14px;
      white-space: nowrap;
    }

    .strip-links a {
      color: rgba(255, 249, 239, .86);
      border-bottom: 1px solid transparent;
    }

    .strip-links a:hover {
      color: #fff;
      border-color: rgba(255, 255, 255, .45);
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 248, 238, .92);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--line);
      box-shadow: 0 8px 24px rgba(75, 36, 27, .06);
    }

    .main-nav {
      min-height: 78px;
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 288px;
    }

    .brand-mark {
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      border-radius: 14px;
      color: #fff8ee;
      font-weight: 800;
      background: linear-gradient(135deg, var(--brand), var(--brand-dark));
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .2), 0 10px 24px rgba(75, 36, 27, .22);
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1.25;
    }

    .brand-text strong {
      font-size: 17px;
      letter-spacing: 0;
    }

    .brand-text span {
      color: var(--muted);
      font-size: 12px;
      margin-top: 2px;
    }

    .nav-menu {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 6px;
      margin: 0;
      padding: 0;
      flex: 1;
      justify-content: center;
    }

    .nav-menu a {
      display: inline-flex;
      align-items: center;
      min-height: 42px;
      padding: 0 15px;
      border-radius: 999px;
      color: var(--muted);
      font-weight: 700;
      font-size: 14px;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
      background: #efe0cf;
      color: var(--brand-dark);
    }

    .nav-cta,
    .btn-primary,
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 46px;
      padding: 0 20px;
      border-radius: 999px;
      font-weight: 800;
      line-height: 1;
      border: 1px solid transparent;
      cursor: pointer;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
    }

    .nav-cta,
    .btn-primary {
      color: #fffaf2;
      background: linear-gradient(135deg, var(--brand), var(--accent));
      box-shadow: 0 12px 28px rgba(122, 63, 42, .22);
    }

    .nav-cta:hover,
    .btn-primary:hover {
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 16px 34px rgba(122, 63, 42, .28);
    }

    .btn-secondary {
      color: var(--brand-dark);
      background: rgba(255, 250, 242, .74);
      border-color: rgba(122, 63, 42, .24);
    }

    .btn-secondary:hover {
      color: var(--brand-dark);
      background: #f0dfcf;
      transform: translateY(-2px);
    }

    .mobile-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: var(--surface);
      color: var(--brand-dark);
      font-size: 22px;
      line-height: 1;
    }

    main {
      padding-bottom: 110px;
    }

    .section {
      padding: 82px 0;
    }

    .section.tight {
      padding-top: 54px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 14px;
      color: var(--brand);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0;
    }

    .eyebrow::before {
      content: "";
      width: 28px;
      height: 2px;
      border-radius: 999px;
      background: var(--copper);
    }

    .section-title {
      max-width: 760px;
      margin: 0 0 14px;
      font-size: clamp(28px, 4vw, 42px);
      line-height: 1.16;
      font-weight: 800;
      letter-spacing: 0;
    }

    .section-lead {
      max-width: 760px;
      margin: 0;
      color: var(--muted);
      font-size: 16px;
    }

    .hero-board {
      padding: 58px 0 42px;
    }

    .flash-bar {
      display: grid;
      grid-template-columns: 1fr auto auto;
      gap: 18px;
      align-items: center;
      padding: 14px 18px;
      margin-bottom: 24px;
      border: 1px solid rgba(122, 63, 42, .18);
      border-radius: 999px;
      background: linear-gradient(135deg, #fff6e9, #ead2bc);
      box-shadow: var(--shadow-soft);
    }

    .flash-label {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--brand-dark);
      font-weight: 800;
    }

    .flash-label span:first-child {
      width: 30px;
      height: 30px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #fff;
      background: var(--accent);
    }

    .countdown {
      display: flex;
      gap: 6px;
      align-items: center;
      color: var(--brand-dark);
      font-weight: 800;
    }

    .countdown b {
      min-width: 34px;
      padding: 4px 7px;
      border-radius: 10px;
      text-align: center;
      color: #fffaf2;
      background: var(--brand-dark);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.02fr) minmax(340px, .78fr);
      gap: 28px;
      align-items: stretch;
    }

    .hero-copy {
      position: relative;
      overflow: hidden;
      padding: clamp(30px, 5vw, 54px);
      border-radius: var(--radius-xl);
      background:
        linear-gradient(135deg, rgba(255, 250, 242, .94), rgba(239, 218, 195, .78)),
        repeating-linear-gradient(90deg, rgba(122, 63, 42, .05) 0 1px, transparent 1px 22px);
      border: 1px solid rgba(122, 63, 42, .16);
      box-shadow: var(--shadow);
    }

    .hero-copy::after {
      content: "02";
      position: absolute;
      right: 26px;
      bottom: -28px;
      color: rgba(122, 63, 42, .08);
      font-size: 150px;
      line-height: 1;
      font-weight: 800;
    }

    h1 {
      position: relative;
      z-index: 1;
      max-width: 780px;
      margin: 0;
      font-size: clamp(31px, 5vw, 48px);
      line-height: 1.12;
      letter-spacing: 0;
      font-weight: 800;
    }

    .hero-copy p {
      position: relative;
      z-index: 1;
      max-width: 650px;
      margin: 18px 0 0;
      color: var(--muted);
      font-size: 17px;
    }

    .hero-actions {
      position: relative;
      z-index: 1;
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 28px;
    }

    .hero-note {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
      margin-top: 30px;
    }

    .note-item {
      padding: 13px 12px;
      border-radius: 16px;
      background: rgba(255, 250, 242, .72);
      border: 1px solid rgba(122, 63, 42, .12);
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    .note-item strong {
      display: block;
      margin-bottom: 2px;
      color: var(--brand-dark);
      font-size: 16px;
    }

    .index-wall {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .wall-card {
      min-height: 154px;
      padding: 22px;
      border-radius: 24px;
      border: 1px solid rgba(122, 63, 42, .14);
      background: var(--surface);
      box-shadow: var(--shadow-soft);
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .wall-card:nth-child(2) {
      background: #efe2d1;
    }

    .wall-card:nth-child(3) {
      background: #f8ead6;
    }

    .wall-card.feature {
      grid-column: span 2;
      min-height: 176px;
      color: #fff8ee;
      background:
        linear-gradient(135deg, rgba(75, 36, 27, .96), rgba(122, 63, 42, .9)),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 18px);
    }

    .wall-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
    }

    .wall-card .num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 28px;
      margin-bottom: 18px;
      border-radius: 999px;
      color: #fffaf2;
      background: var(--brand);
      font-size: 13px;
      font-weight: 800;
    }

    .wall-card.feature .num {
      color: var(--brand-dark);
      background: #f2d4b5;
    }

    .wall-card h2,
    .wall-card h3 {
      margin: 0 0 8px;
      font-size: 21px;
      line-height: 1.28;
      font-weight: 800;
    }

    .wall-card p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .wall-card.feature p {
      color: rgba(255, 248, 238, .78);
    }

    .trust-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      margin-top: 28px;
    }

    .trust-item {
      padding: 18px;
      border-radius: 18px;
      background: rgba(255, 250, 242, .82);
      border: 1px solid rgba(122, 63, 42, .13);
      color: var(--muted);
      box-shadow: 0 8px 20px rgba(75, 36, 27, .05);
    }

    .trust-item b {
      display: block;
      color: var(--brand-dark);
      font-size: 16px;
      margin-bottom: 3px;
    }

    .moodboard {
      margin-top: 34px;
      display: grid;
      grid-template-columns: 1.2fr .8fr 1fr;
      grid-auto-rows: minmax(170px, auto);
      gap: 16px;
    }

    .mood-card {
      position: relative;
      overflow: hidden;
      padding: 24px;
      border-radius: var(--radius-lg);
      background: var(--surface);
      border: 1px solid rgba(122, 63, 42, .14);
      box-shadow: var(--shadow-soft);
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .mood-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
    }

    .mood-card.large {
      grid-row: span 2;
      background:
        linear-gradient(145deg, #fff9ef 0%, #ecd7c0 100%);
    }

    .mood-card.dark {
      color: #fff8ee;
      background: linear-gradient(135deg, #4b241b, #7a3f2a);
    }

    .mood-card.wide {
      grid-column: span 2;
      background:
        linear-gradient(135deg, #f6eadb, #fffaf2);
    }

    .tag {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 0 11px;
      margin: 0 6px 8px 0;
      border-radius: 999px;
      background: rgba(122, 63, 42, .1);
      color: var(--brand);
      font-size: 12px;
      font-weight: 800;
    }

    .dark .tag {
      color: #fff4df;
      background: rgba(255, 255, 255, .14);
    }

    .mood-card h3 {
      margin: 10px 0 8px;
      font-size: 22px;
      line-height: 1.28;
      font-weight: 800;
    }

    .mood-card p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
    }

    .mood-card.dark p {
      color: rgba(255, 248, 238, .78);
    }

    .guide-layout {
      display: grid;
      grid-template-columns: minmax(0, .92fr) minmax(300px, .48fr);
      gap: 22px;
      margin-top: 34px;
      align-items: start;
    }

    .feature-list {
      display: grid;
      gap: 14px;
    }

    .feature-row {
      display: grid;
      grid-template-columns: 82px 1fr auto;
      gap: 18px;
      align-items: center;
      padding: 20px;
      border-radius: 22px;
      background: rgba(255, 250, 242, .86);
      border: 1px solid rgba(122, 63, 42, .13);
      box-shadow: var(--shadow-soft);
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .feature-row:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow);
    }

    .feature-code {
      min-height: 64px;
      display: grid;
      place-items: center;
      border-radius: 18px;
      color: #fff8ee;
      background: linear-gradient(135deg, var(--brand), var(--copper));
      font-weight: 800;
      font-size: 18px;
    }

    .feature-row h3 {
      margin: 0 0 5px;
      font-size: 20px;
      font-weight: 800;
    }

    .feature-row p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
    }

    .small-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 38px;
      padding: 0 14px;
      border-radius: 999px;
      background: #efe0cf;
      color: var(--brand-dark);
      font-size: 13px;
      font-weight: 800;
      white-space: nowrap;
    }

    .small-link:hover {
      background: var(--brand);
      color: #fff;
    }

    .side-panel {
      position: sticky;
      top: 112px;
      padding: 24px;
      border-radius: var(--radius-lg);
      background: #4b241b;
      color: #fff8ee;
      box-shadow: var(--shadow);
    }

    .side-panel h3 {
      margin: 0 0 12px;
      font-size: 22px;
      font-weight: 800;
    }

    .side-panel p {
      color: rgba(255, 248, 238, .75);
      margin-bottom: 18px;
    }

    .check-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 10px;
    }

    .check-list li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      color: rgba(255, 248, 238, .86);
      font-size: 14px;
    }

    .check-list li::before {
      content: "✓";
      flex: 0 0 24px;
      height: 24px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: var(--brand-dark);
      background: #f0d5b5;
      font-weight: 900;
      line-height: 1;
    }

    .timeline {
      display: grid;
      grid-template-columns: .7fr 1fr;
      gap: 24px;
      margin-top: 34px;
    }

    .timeline-intro {
      padding: 28px;
      border-radius: var(--radius-lg);
      background: var(--surface-strong);
      border: 1px solid rgba(122, 63, 42, .14);
    }

    .timeline-intro h3 {
      margin: 0 0 12px;
      font-size: 24px;
      font-weight: 800;
    }

    .timeline-intro p {
      color: var(--muted);
      margin: 0 0 18px;
    }

    .timeline-list {
      display: grid;
      gap: 14px;
    }

    .timeline-item {
      display: grid;
      grid-template-columns: 42px 1fr;
      gap: 16px;
      padding: 20px;
      border-radius: 20px;
      background: rgba(255, 250, 242, .84);
      border: 1px solid rgba(122, 63, 42, .13);
    }

    .timeline-dot {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 14px;
      color: #fff;
      background: var(--brand);
      font-weight: 800;
    }

    .timeline-item h3 {
      margin: 0 0 5px;
      font-size: 18px;
      font-weight: 800;
    }

    .timeline-item p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
    }

    .security-band {
      background: #fff6e9;
      border-top: 1px solid rgba(122, 63, 42, .12);
      border-bottom: 1px solid rgba(122, 63, 42, .12);
    }

    .security-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      margin-top: 30px;
    }

    .security-card {
      padding: 22px;
      border-radius: 20px;
      background: var(--surface);
      border: 1px solid rgba(122, 63, 42, .13);
    }

    .security-card .icon {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      margin-bottom: 14px;
      border-radius: 15px;
      color: #fff;
      background: linear-gradient(135deg, var(--brand), var(--accent));
      font-weight: 900;
    }

    .security-card h3 {
      margin: 0 0 7px;
      font-size: 18px;
      font-weight: 800;
    }

    .security-card p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .faq-wrap {
      margin-top: 30px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(122, 63, 42, .12);
      background: var(--surface);
    }

    .accordion {
      margin: 0;
      background: transparent;
    }

    .accordion-title {
      padding: 20px 56px 20px 22px;
      color: var(--brand-dark);
      font-size: 17px;
      font-weight: 800;
      border: 0;
      border-bottom: 1px solid rgba(122, 63, 42, .1);
      background: var(--surface);
    }

    .accordion-title:hover,
    .accordion-title:focus {
      color: var(--brand-dark);
      background: #f4e5d4;
    }

    .accordion-content {
      padding: 20px 22px;
      color: var(--muted);
      border: 0;
      border-bottom: 1px solid rgba(122, 63, 42, .1);
      background: #fffaf2;
      font-size: 15px;
    }

    .cta-panel {
      position: relative;
      overflow: hidden;
      padding: clamp(30px, 5vw, 50px);
      border-radius: var(--radius-xl);
      color: #fff8ee;
      background:
        linear-gradient(135deg, rgba(75, 36, 27, .96), rgba(122, 63, 42, .92)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 24px);
      box-shadow: var(--shadow);
    }

    .cta-panel::after {
      content: "";
      position: absolute;
      inset: auto -80px -120px auto;
      width: 280px;
      height: 280px;
      border-radius: 44px;
      transform: rotate(22deg);
      background: rgba(255, 248, 238, .08);
    }

    .cta-panel h2 {
      position: relative;
      z-index: 1;
      margin: 0 0 12px;
      font-size: clamp(28px, 4vw, 40px);
      line-height: 1.16;
      font-weight: 800;
    }

    .cta-panel p {
      position: relative;
      z-index: 1;
      max-width: 720px;
      color: rgba(255, 248, 238, .78);
      margin: 0;
    }

    .cta-actions {
      position: relative;
      z-index: 1;
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 26px;
    }

    .cta-panel .btn-primary {
      background: #fff3df;
      color: var(--brand-dark);
      box-shadow: none;
    }

    .cta-panel .btn-primary:hover {
      background: #ffffff;
      color: var(--brand-dark);
    }

    .cta-panel .btn-secondary {
      color: #fff8ee;
      border-color: rgba(255, 248, 238, .3);
      background: rgba(255, 255, 255, .08);
    }

    .site-footer {
      background: #2d211b;
      color: rgba(255, 248, 238, .78);
      padding: 62px 0 28px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr .75fr .75fr;
      gap: 34px;
      padding-bottom: 34px;
      border-bottom: 1px solid rgba(255, 248, 238, .14);
    }

    .footer-brand {
      color: #fff8ee;
      font-size: 22px;
      font-weight: 800;
      margin-bottom: 12px;
    }

    .footer-text {
      max-width: 520px;
      margin: 0;
      color: rgba(255, 248, 238, .68);
      font-size: 14px;
    }

    .footer-title {
      color: #f3d2ad;
      font-weight: 800;
      margin-bottom: 12px;
    }

    .footer-links {
      display: grid;
      gap: 9px;
    }

    .footer-links a {
      color: rgba(255, 248, 238, .72);
      font-size: 14px;
    }

    .footer-links a:hover {
      color: #fff;
      transform: translateX(3px);
    }

    .copyright {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      padding-top: 22px;
      color: rgba(255, 248, 238, .56);
      font-size: 13px;
    }

    .fixed-cta {
      position: fixed;
      z-index: 60;
      left: 50%;
      bottom: 18px;
      transform: translateX(-50%);
      width: min(calc(100% - 32px), 760px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 10px 12px 10px 18px;
      border: 1px solid rgba(122, 63, 42, .18);
      border-radius: 999px;
      background: rgba(255, 250, 242, .94);
      backdrop-filter: blur(16px);
      box-shadow: 0 18px 50px rgba(75, 36, 27, .18);
    }

    .fixed-cta span {
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    .fixed-actions {
      display: flex;
      gap: 8px;
      flex-shrink: 0;
    }

    .fixed-actions a {
      min-height: 40px;
      padding-inline: 15px;
      font-size: 13px;
    }

    @media (max-width: 1024px) {
      .main-nav {
        gap: 14px;
      }

      .brand {
        min-width: auto;
      }

      .brand-text span {
        display: none;
      }

      .nav-menu a {
        padding: 0 11px;
      }

      .hero-grid,
      .guide-layout,
      .timeline {
        grid-template-columns: 1fr;
      }

      .side-panel {
        position: static;
      }

      .hero-note,
      .trust-strip,
      .security-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .moodboard {
        grid-template-columns: repeat(2, 1fr);
      }

      .mood-card.large,
      .mood-card.wide {
        grid-column: span 2;
        grid-row: auto;
      }
    }

    @media (max-width: 768px) {
      .top-strip .rl-container {
        padding: 8px 0;
        justify-content: center;
        text-align: center;
      }

      .strip-links {
        width: 100%;
        justify-content: center;
      }

      .main-nav {
        min-height: 68px;
        justify-content: space-between;
        flex-wrap: wrap;
      }

      .mobile-toggle {
        display: inline-grid;
        place-items: center;
      }

      .nav-menu {
        order: 4;
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 8px 0 14px;
      }

      .nav-menu.is-open {
        display: flex;
      }

      .nav-menu a {
        justify-content: center;
        min-height: 46px;
      }

      .nav-cta {
        display: none;
      }

      .hero-board {
        padding-top: 32px;
      }

      .flash-bar {
        grid-template-columns: 1fr;
        border-radius: 22px;
      }

      .flash-bar .btn-primary {
        width: 100%;
      }

      .hero-grid,
      .index-wall,
      .moodboard {
        display: grid;
        grid-template-columns: 1fr;
      }

      .wall-card.feature,
      .mood-card.large,
      .mood-card.wide {
        grid-column: auto;
      }

      .section {
        padding: 54px 0;
      }

      .feature-row {
        grid-template-columns: 1fr;
      }

      .feature-code {
        width: 82px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 520px) {
      .rl-container {
        width: min(calc(100% - 28px), var(--max));
      }

      .brand-text strong {
        font-size: 14px;
      }

      .brand-mark {
        width: 40px;
        height: 40px;
      }

      .hero-copy {
        padding: 26px;
        border-radius: 22px;
      }

      .hero-actions,
      .cta-actions {
        flex-direction: column;
      }

      .btn-primary,
      .btn-secondary {
        width: 100%;
      }

      .hero-note,
      .trust-strip,
      .security-grid {
        grid-template-columns: 1fr;
      }

      .fixed-cta {
        width: 100%;
        left: 0;
        bottom: 0;
        transform: none;
        border-radius: 18px 18px 0 0;
        flex-direction: column;
        align-items: stretch;
        padding: 10px 14px 12px;
      }

      .fixed-cta span {
        text-align: center;
      }

      .fixed-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
      }

      .fixed-actions a {
        width: 100%;
      }
    }
