/* roulang page: index */
:root {
      --bg: #fbf7f0;
      --paper: #fffdf8;
      --paper-2: #fff6ea;
      --ink: #211915;
      --muted: #73665d;
      --soft: #9a887b;
      --brand: #6d2f25;
      --brand-dark: #4b1d18;
      --brand-soft: #f3d8cf;
      --accent: #b96b3c;
      --accent-2: #d69b70;
      --line: rgba(78, 48, 34, .12);
      --line-strong: rgba(78, 48, 34, .2);
      --success: #6f8b63;
      --warning: #b88030;
      --danger: #b15e5a;
      --radius-sm: 12px;
      --radius: 18px;
      --radius-lg: 28px;
      --shadow: 0 18px 50px rgba(48, 32, 22, .08);
      --shadow-soft: 0 10px 30px rgba(48, 32, 22, .06);
      --container: 1200px;
      --font: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: var(--font);
      color: var(--ink);
      background:
        radial-gradient(circle at 12% 4%, rgba(217, 177, 136, .18), transparent 30%),
        linear-gradient(180deg, #fffaf3 0%, var(--bg) 42%, #f8f0e6 100%);
      line-height: 1.7;
      font-size: 16px;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: .38;
      background-image:
        linear-gradient(rgba(80, 52, 34, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(80, 52, 34, .028) 1px, transparent 1px);
      background-size: 28px 28px;
      z-index: -1;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img, svg {
      max-width: 100%;
      display: block;
    }

    button, input {
      font: inherit;
    }

    button {
      border: 0;
      cursor: pointer;
    }

    :focus-visible {
      outline: 3px solid rgba(185, 107, 60, .35);
      outline-offset: 3px;
      border-radius: 12px;
    }

    .container {
      width: min(var(--container), calc(100% - 40px));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(18px);
      background: rgba(255, 250, 243, .86);
      border-bottom: 1px solid var(--line);
    }

    .nav-wrap {
      height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: max-content;
      font-weight: 900;
      letter-spacing: -.02em;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      color: #fff;
      background:
        linear-gradient(135deg, var(--brand-dark), var(--brand)),
        radial-gradient(circle at 70% 20%, rgba(255,255,255,.45), transparent 24%);
      box-shadow: 0 10px 22px rgba(109, 47, 37, .24);
      font-size: 18px;
      flex: 0 0 auto;
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1.12;
    }

    .brand-text strong {
      font-size: 18px;
    }

    .brand-text span {
      font-size: 12px;
      color: var(--soft);
      font-weight: 700;
      margin-top: 3px;
    }

    .main-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 7px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255,255,255,.52);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
    }

    .main-nav a {
      min-height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 16px;
      border-radius: 999px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 800;
      transition: background .22s ease, color .22s ease, transform .22s ease;
    }

    .main-nav a:hover,
    .main-nav a.active {
      color: var(--brand-dark);
      background: var(--paper-2);
      transform: translateY(-1px);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .btn {
      min-height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 0 20px;
      border-radius: 999px;
      font-weight: 900;
      font-size: 14px;
      letter-spacing: .01em;
      transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
      white-space: nowrap;
    }

    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--brand), var(--brand-dark));
      box-shadow: 0 14px 28px rgba(109, 47, 37, .22);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 34px rgba(109, 47, 37, .28);
      background: linear-gradient(135deg, #7c372b, #3f1713);
    }

    .btn-secondary {
      color: var(--brand-dark);
      border: 1px solid var(--line-strong);
      background: rgba(255, 253, 248, .82);
    }

    .btn-secondary:hover {
      transform: translateY(-2px);
      background: #fff3e4;
      border-color: rgba(109, 47, 37, .26);
    }

    .btn-text {
      color: var(--brand);
      min-height: 42px;
      padding: 0 8px;
      font-weight: 900;
    }

    .btn-text:hover {
      color: var(--brand-dark);
      transform: translateX(2px);
    }

    .menu-toggle {
      display: none;
      width: 46px;
      height: 46px;
      border-radius: 16px;
      background: var(--paper);
      border: 1px solid var(--line);
      color: var(--brand-dark);
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-soft);
    }

    .menu-toggle span,
    .menu-toggle span::before,
    .menu-toggle span::after {
      content: "";
      width: 18px;
      height: 2px;
      border-radius: 3px;
      background: currentColor;
      display: block;
      position: relative;
      transition: transform .2s ease, opacity .2s ease;
    }

    .menu-toggle span::before {
      position: absolute;
      top: -6px;
    }

    .menu-toggle span::after {
      position: absolute;
      top: 6px;
    }

    .menu-toggle.open span {
      transform: rotate(45deg);
    }

    .menu-toggle.open span::before {
      transform: rotate(90deg) translateX(6px);
    }

    .menu-toggle.open span::after {
      opacity: 0;
    }

    main {
      overflow: hidden;
    }

    section {
      padding: 82px 0;
    }

    .section-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 32px;
      margin-bottom: 30px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 12px;
      border-radius: 999px;
      color: var(--brand-dark);
      background: #f6e1d8;
      font-size: 13px;
      font-weight: 900;
      border: 1px solid rgba(109, 47, 37, .1);
    }

    .eyebrow::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: var(--accent);
      box-shadow: 0 0 0 5px rgba(185, 107, 60, .12);
    }

    h1, h2, h3 {
      margin: 0;
      line-height: 1.16;
      letter-spacing: -.035em;
      color: var(--ink);
    }

    h1 {
      font-size: clamp(32px, 5vw, 56px);
    }

    h2 {
      font-size: clamp(26px, 3vw, 36px);
    }

    h3 {
      font-size: 20px;
    }

    p {
      margin: 0;
      color: var(--muted);
    }

    .lead {
      font-size: 17px;
      color: #5f5148;
      max-width: 760px;
    }

    .hero {
      padding: 52px 0 86px;
    }

    .hero-board {
      position: relative;
      display: grid;
      grid-template-columns: 1.02fr .98fr;
      gap: 28px;
      align-items: stretch;
      padding: 28px;
      border: 1px solid var(--line);
      border-radius: 34px;
      background:
        linear-gradient(135deg, rgba(255,255,255,.78), rgba(255,246,234,.92)),
        radial-gradient(circle at 85% 12%, rgba(185, 107, 60, .16), transparent 32%);
      box-shadow: var(--shadow);
    }

    .hero-copy {
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 520px;
      padding: 22px;
    }

    .hero-copy .lead {
      margin-top: 18px;
      max-width: 660px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }

    .hero-data {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 32px;
      max-width: 660px;
    }

    .data-pill {
      padding: 14px 14px;
      border-radius: 18px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,.72);
    }

    .data-pill strong {
      display: block;
      font-size: 22px;
      line-height: 1;
      color: var(--brand-dark);
      margin-bottom: 8px;
    }

    .data-pill span {
      font-size: 13px;
      color: var(--soft);
      font-weight: 800;
    }

    .hero-stage {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      align-content: center;
    }

    .choice-card {
      position: relative;
      min-height: 212px;
      padding: 20px;
      border-radius: 24px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,.78);
      box-shadow: var(--shadow-soft);
      transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
      overflow: hidden;
    }

    .choice-card:hover {
      transform: translateY(-4px);
      border-color: rgba(109, 47, 37, .28);
      box-shadow: var(--shadow);
    }

    .choice-card.recommend {
      grid-column: 1 / -1;
      min-height: 230px;
      color: #fff;
      background:
        linear-gradient(135deg, rgba(109,47,37,.96), rgba(65,25,20,.96)),
        radial-gradient(circle at 84% 10%, rgba(255,255,255,.24), transparent 26%);
      border-color: rgba(109, 47, 37, .35);
    }

    .choice-card.recommend p,
    .choice-card.recommend .card-meta,
    .choice-card.recommend .mini-tag {
      color: rgba(255,255,255,.78);
    }

    .choice-card.recommend h3 {
      color: #fff;
      font-size: 25px;
    }

    .choice-card.recommend .cover-symbol {
      background: rgba(255,255,255,.16);
      color: #fff;
      border-color: rgba(255,255,255,.18);
    }

    .cover-symbol {
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      border-radius: 18px;
      color: var(--brand);
      background: #fbebdf;
      border: 1px solid var(--line);
      font-weight: 950;
      margin-bottom: 18px;
    }

    .card-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 14px 0 0;
      color: var(--soft);
      font-size: 13px;
      font-weight: 800;
    }

    .mini-tag,
    .tag {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 0 10px;
      border-radius: 999px;
      background: #f7e7dc;
      color: var(--brand-dark);
      border: 1px solid rgba(109, 47, 37, .09);
      font-size: 12px;
      font-weight: 900;
    }

    .directory {
      padding-top: 0;
    }

    .directory-panel {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 22px;
      align-items: stretch;
    }

    .directory-note {
      padding: 28px;
      border-radius: 26px;
      background: var(--ink);
      color: #fff;
      box-shadow: var(--shadow);
    }

    .directory-note h2,
    .directory-note p {
      color: #fff;
    }

    .directory-note p {
      opacity: .78;
      margin-top: 14px;
    }

    .search-box {
      margin-top: 22px;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 8px;
      border-radius: 999px;
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.15);
    }

    .search-box input {
      width: 100%;
      height: 44px;
      border: 0;
      background: transparent;
      color: #fff;
      padding: 0 14px;
      outline: none;
    }

    .search-box input::placeholder {
      color: rgba(255,255,255,.6);
    }

    .search-box button {
      flex: 0 0 auto;
      height: 44px;
      padding: 0 16px;
      border-radius: 999px;
      color: var(--brand-dark);
      background: #fff3e4;
      font-weight: 900;
    }

    .entry-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .entry-tile {
      padding: 22px;
      border-radius: 22px;
      background: var(--paper);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
      min-height: 142px;
      transition: transform .22s ease, border-color .22s ease;
    }

    .entry-tile:hover {
      transform: translateY(-3px);
      border-color: rgba(109, 47, 37, .24);
    }

    .entry-tile strong {
      display: block;
      font-size: 18px;
      margin-bottom: 8px;
    }

    .entry-tile p {
      font-size: 14px;
    }

    .value-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border: 1px solid var(--line);
      border-radius: 28px;
      background: rgba(255,255,255,.58);
      overflow: hidden;
      box-shadow: var(--shadow-soft);
    }

    .value-item {
      padding: 24px;
      border-right: 1px solid var(--line);
    }

    .value-item:last-child {
      border-right: 0;
    }

    .value-item .icon {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 15px;
      color: var(--brand-dark);
      background: #f6ded3;
      margin-bottom: 16px;
      font-weight: 950;
    }

    .value-item h3 {
      margin-bottom: 8px;
      font-size: 18px;
    }

    .value-item p {
      font-size: 14px;
    }

    .hot-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr .9fr;
      grid-auto-rows: 230px;
      gap: 18px;
    }

    .topic-card {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 22px;
      border-radius: 26px;
      border: 1px solid var(--line);
      background: var(--paper);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
      transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
    }

    .topic-card:hover {
      transform: translateY(-4px);
      border-color: rgba(109, 47, 37, .25);
      box-shadow: var(--shadow);
    }

    .topic-card.large {
      grid-row: span 2;
      min-height: 478px;
      background:
        linear-gradient(180deg, rgba(255,255,255,.08), rgba(33,25,21,.92)),
        radial-gradient(circle at 20% 12%, #e3b596, transparent 24%),
        linear-gradient(135deg, #7b463a, #2b1a16);
    }

    .topic-card.large h3,
    .topic-card.large p {
      color: #fff;
    }

    .topic-card.large p {
      opacity: .78;
    }

    .topic-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, rgba(246,225,216,.72), transparent 48%),
        repeating-linear-gradient(45deg, rgba(109,47,37,.035) 0 2px, transparent 2px 10px);
      opacity: .9;
      z-index: 0;
    }

    .topic-card.large::before {
      opacity: .36;
    }

    .topic-card > * {
      position: relative;
      z-index: 1;
    }

    .topic-card h3 {
      margin: 12px 0 8px;
      font-size: 21px;
    }

    .topic-card p {
      font-size: 14px;
    }

    .topic-card .topic-action {
      margin-top: 16px;
      color: var(--brand);
      font-size: 14px;
      font-weight: 950;
    }

    .topic-card.large .topic-action {
      color: #ffe5d2;
    }

    .info-area {
      display: grid;
      grid-template-columns: 1.35fr .65fr;
      gap: 24px;
      align-items: start;
    }

    .news-list {
      border-radius: 26px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,.62);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }

    .news-item {
      display: grid;
      grid-template-columns: 88px 1fr auto;
      gap: 18px;
      align-items: center;
      padding: 20px;
      border-bottom: 1px solid var(--line);
      transition: background .22s ease;
    }

    .news-item:last-child {
      border-bottom: 0;
    }

    .news-item:hover {
      background: #fff6ec;
    }

    .news-date {
      display: grid;
      place-items: center;
      min-height: 66px;
      border-radius: 18px;
      color: var(--brand-dark);
      background: #f6e1d8;
      font-weight: 950;
      text-align: center;
      line-height: 1.15;
      font-size: 13px;
    }

    .news-item h3 {
      font-size: 18px;
      margin-bottom: 6px;
    }

    .news-item p {
      font-size: 14px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .news-arrow {
      width: 42px;
      height: 42px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      color: var(--brand);
      background: #fff;
      border: 1px solid var(--line);
      font-weight: 950;
    }

    .side-recommend {
      padding: 24px;
      border-radius: 26px;
      color: #fff;
      background:
        linear-gradient(135deg, rgba(109,47,37,.96), rgba(33,25,21,.96)),
        radial-gradient(circle at 88% 10%, rgba(255,255,255,.2), transparent 30%);
      box-shadow: var(--shadow);
    }

    .side-recommend h3 {
      color: #fff;
      margin-bottom: 12px;
    }

    .side-recommend p {
      color: rgba(255,255,255,.75);
      font-size: 14px;
    }

    .side-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 18px 0 22px;
    }

    .side-tags .tag {
      background: rgba(255,255,255,.12);
      color: #fff;
      border-color: rgba(255,255,255,.16);
    }

    .review-section {
      background: rgba(255,255,255,.36);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .review-wrap {
      display: grid;
      grid-template-columns: .82fr 1.18fr;
      gap: 24px;
      align-items: center;
    }

    .rating-card {
      padding: 30px;
      border-radius: 28px;
      background: var(--paper);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
    }

    .score {
      display: flex;
      align-items: flex-end;
      gap: 12px;
      margin: 18px 0 10px;
    }

    .score strong {
      font-size: 54px;
      line-height: .95;
      color: var(--brand-dark);
      letter-spacing: -.06em;
    }

    .score span {
      color: var(--warning);
      font-weight: 950;
      padding-bottom: 8px;
    }

    .review-slider {
      position: relative;
      overflow: hidden;
      border-radius: 28px;
    }

    .review-track {
      display: flex;
      transition: transform .35s ease;
    }

    .review-card {
      min-width: 100%;
      padding: 32px;
      border-radius: 28px;
      background:
        linear-gradient(135deg, #fffdf8, #fff2e4);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
    }

    .review-card blockquote {
      margin: 0;
      font-size: 22px;
      line-height: 1.55;
      letter-spacing: -.02em;
      color: var(--ink);
      font-weight: 850;
    }

    .reviewer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      margin-top: 24px;
      color: var(--soft);
      font-weight: 800;
      font-size: 14px;
    }

    .dots {
      display: flex;
      gap: 8px;
      margin-top: 16px;
      justify-content: flex-end;
    }

    .dot {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: rgba(109,47,37,.18);
      transition: width .22s ease, background .22s ease;
    }

    .dot.active {
      width: 28px;
      background: var(--brand);
    }

    .guarantee-bar {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0;
      border-radius: 28px;
      border: 1px solid var(--line);
      background: #fff8ef;
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }

    .guarantee-item {
      padding: 22px;
      border-right: 1px solid var(--line);
    }

    .guarantee-item:last-child {
      border-right: 0;
    }

    .guarantee-item strong {
      display: block;
      margin-bottom: 7px;
      font-size: 16px;
    }

    .guarantee-item p {
      font-size: 13px;
    }

    .download-panel {
      display: grid;
      grid-template-columns: 1fr .92fr;
      gap: 24px;
      align-items: center;
      padding: 34px;
      border-radius: 34px;
      border: 1px solid rgba(109,47,37,.18);
      background:
        linear-gradient(135deg, #fff1e4, #f7d8c5),
        radial-gradient(circle at 90% 20%, rgba(109,47,37,.18), transparent 30%);
      box-shadow: var(--shadow);
    }

    .download-panel .lead {
      margin-top: 14px;
    }

    .form-card {
      padding: 22px;
      border-radius: 26px;
      background: rgba(255,255,255,.72);
      border: 1px solid rgba(109,47,37,.14);
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 10px;
      margin-top: 16px;
    }

    .form-row input {
      height: 50px;
      border-radius: 999px;
      border: 1px solid var(--line-strong);
      background: #fffdf8;
      padding: 0 18px;
      outline: none;
      color: var(--ink);
      min-width: 0;
    }

    .form-row input:focus {
      border-color: rgba(109,47,37,.45);
      box-shadow: 0 0 0 4px rgba(109,47,37,.08);
    }

    .form-hint {
      margin-top: 12px;
      font-size: 13px;
      color: var(--soft);
    }

    .faq-grid {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: 24px;
      align-items: start;
    }

    .faq-list {
      display: grid;
      gap: 12px;
    }

    .faq-item {
      border: 1px solid var(--line);
      border-radius: 20px;
      background: rgba(255,255,255,.68);
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(48,32,22,.04);
    }

    .faq-question {
      width: 100%;
      min-height: 62px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 0 20px;
      color: var(--ink);
      background: transparent;
      text-align: left;
      font-weight: 950;
    }

    .faq-question .chev {
      width: 28px;
      height: 28px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      background: #f7e6dc;
      color: var(--brand);
      transition: transform .22s ease;
      flex: 0 0 auto;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height .25s ease;
    }

    .faq-answer p {
      padding: 0 20px 20px;
      font-size: 15px;
    }

    .faq-item.open .faq-answer {
      max-height: 180px;
    }

    .faq-item.open .chev {
      transform: rotate(45deg);
    }

    .site-footer {
      padding: 56px 0 92px;
      color: rgba(255,255,255,.78);
      background:
        linear-gradient(135deg, #211915, #3b211c);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr .9fr;
      gap: 28px;
      align-items: start;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #fff;
      font-weight: 950;
      margin-bottom: 14px;
    }

    .footer-brand .brand-mark {
      box-shadow: none;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.14);
    }

    .footer-col h3 {
      color: #fff;
      margin-bottom: 14px;
      font-size: 17px;
    }

    .footer-links {
      display: grid;
      gap: 10px;
    }

    .footer-links a {
      color: rgba(255,255,255,.7);
      font-weight: 750;
      transition: color .22s ease, transform .22s ease;
    }

    .footer-links a:hover {
      color: #fff0dd;
      transform: translateX(2px);
    }

    .copyright {
      margin-top: 34px;
      padding-top: 22px;
      border-top: 1px solid rgba(255,255,255,.12);
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
      color: rgba(255,255,255,.62);
      font-size: 13px;
    }

    .float-cta {
      position: fixed;
      left: 50%;
      bottom: 18px;
      transform: translateX(-50%);
      z-index: 60;
      width: min(760px, calc(100% - 28px));
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 10px 12px 10px 18px;
      border-radius: 999px;
      border: 1px solid rgba(109,47,37,.18);
      background: rgba(255,253,248,.92);
      backdrop-filter: blur(18px);
      box-shadow: 0 18px 48px rgba(48,32,22,.16);
    }

    .float-cta strong {
      font-size: 14px;
    }

    .float-cta span {
      color: var(--soft);
      font-size: 13px;
      margin-left: 8px;
    }

    .float-close {
      width: 34px;
      height: 34px;
      border-radius: 999px;
      background: #f5e4d9;
      color: var(--brand-dark);
      font-weight: 950;
    }

    @media (max-width: 1024px) {
      .main-nav {
        display: none;
        position: absolute;
        top: 86px;
        left: 20px;
        right: 20px;
        border-radius: 24px;
        padding: 12px;
        background: rgba(255,253,248,.98);
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: stretch;
      }

      .main-nav.open {
        display: flex;
      }

      .main-nav a {
        justify-content: flex-start;
        border-radius: 16px;
      }

      .menu-toggle {
        display: inline-flex;
      }

      .hero-board,
      .directory-panel,
      .review-wrap,
      .download-panel,
      .faq-grid,
      .info-area {
        grid-template-columns: 1fr;
      }

      .hero-copy {
        min-height: auto;
      }

      .hero-stage {
        grid-template-columns: 1fr 1fr;
      }

      .value-strip,
      .guarantee-bar {
        grid-template-columns: repeat(2, 1fr);
      }

      .value-item:nth-child(2),
      .guarantee-item:nth-child(2),
      .guarantee-item:nth-child(4) {
        border-right: 0;
      }

      .value-item,
      .guarantee-item {
        border-bottom: 1px solid var(--line);
      }

      .value-item:nth-last-child(-n+2),
      .guarantee-item:nth-last-child(-n+1) {
        border-bottom: 0;
      }

      .hot-grid {
        grid-template-columns: 1fr 1fr;
      }

      .topic-card.large {
        grid-column: 1 / -1;
        min-height: 360px;
      }
    }

    @media (max-width: 768px) {
      .container {
        width: min(100% - 28px, var(--container));
      }

      section {
        padding: 58px 0;
      }

      .nav-wrap {
        height: 68px;
      }

      .brand-text span {
        display: none;
      }

      .brand-text strong {
        font-size: 15px;
        max-width: 150px;
      }

      .nav-actions .btn-primary {
        display: none;
      }

      .hero {
        padding-top: 28px;
      }

      .hero-board {
        padding: 18px;
        border-radius: 26px;
      }

      .hero-copy {
        padding: 6px;
      }

      .hero-actions .btn {
        flex: 1 1 100%;
      }

      .hero-data,
      .entry-grid,
      .hero-stage,
      .hot-grid,
      .value-strip,
      .guarantee-bar {
        grid-template-columns: 1fr;
      }

      .choice-card.recommend {
        min-height: 220px;
      }

      .section-head {
        display: block;
      }

      .section-head .btn-text {
        margin-top: 12px;
      }

      .news-item {
        grid-template-columns: 1fr;
        gap: 10px;
      }

      .news-date {
        width: 86px;
      }

      .news-arrow {
        display: none;
      }

      .review-card blockquote {
        font-size: 18px;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .form-row .btn {
        width: 100%;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .float-cta {
        border-radius: 22px;
        align-items: flex-start;
      }

      .float-cta span {
        display: none;
      }
    }

    @media (max-width: 520px) {
      h1 {
        font-size: 31px;
      }

      .hero-data {
        gap: 10px;
      }

      .data-pill {
        padding: 12px;
      }

      .download-panel {
        padding: 22px;
        border-radius: 26px;
      }

      .btn {
        min-height: 48px;
        padding: 0 16px;
      }

      .copyright {
        display: block;
      }

      .copyright span {
        display: block;
        margin-top: 6px;
      }
    }

/* roulang page: category1 */
:root {
      --bg: #fbf6ef;
      --paper: #fffdf9;
      --paper-soft: #f7eee4;
      --ink: #211915;
      --muted: #756a62;
      --muted-2: #9b8f86;
      --line: rgba(77, 54, 42, .12);
      --brand: #6f2f28;
      --brand-dark: #4d211d;
      --accent: #b98252;
      --accent-soft: #f2dcc8;
      --rose-soft: #f7e4e1;
      --green: #6b8b5d;
      --amber: #c28a35;
      --danger: #b8605d;
      --shadow: 0 18px 46px rgba(45, 29, 18, .08);
      --shadow-sm: 0 10px 28px rgba(45, 29, 18, .06);
      --radius-lg: 28px;
      --radius: 20px;
      --radius-sm: 14px;
      --container: 1180px;
      --nav-h: 78px;
      --font: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      text-size-adjust: 100%;
    }

    body {
      font-family: var(--font);
      color: var(--ink);
      background:
        radial-gradient(circle at 8% 8%, rgba(185, 130, 82, .12), transparent 26%),
        linear-gradient(180deg, #fffaf3 0%, var(--bg) 42%, #f8f0e7 100%);
      line-height: 1.7;
      font-size: 16px;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img, svg {
      display: block;
      max-width: 100%;
    }

    button, input {
      font: inherit;
    }

    button {
      border: 0;
      cursor: pointer;
      background: none;
    }

    :focus-visible {
      outline: 3px solid rgba(111, 47, 40, .28);
      outline-offset: 3px;
    }

    .container {
      width: min(var(--container), calc(100% - 40px));
      margin-inline: auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 253, 249, .88);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--line);
    }

    .header-inner {
      min-height: var(--nav-h);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: max-content;
      font-weight: 800;
      letter-spacing: -.02em;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 15px;
      display: inline-grid;
      place-items: center;
      color: #fff;
      background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
      box-shadow: 0 12px 26px rgba(111, 47, 40, .22);
      font-weight: 900;
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1.15;
    }

    .brand-text strong {
      font-size: 17px;
    }

    .brand-text span {
      font-size: 12px;
      color: var(--muted);
      font-weight: 600;
      margin-top: 3px;
    }

    .nav-wrap {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 18px;
    }

    .main-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 7px;
      background: rgba(247, 238, 228, .76);
      border: 1px solid rgba(77, 54, 42, .08);
      border-radius: 999px;
    }

    .main-nav a {
      min-height: 40px;
      display: inline-flex;
      align-items: center;
      padding: 0 16px;
      border-radius: 999px;
      color: #594c43;
      font-weight: 700;
      font-size: 14px;
      transition: .2s ease;
      white-space: nowrap;
    }

    .main-nav a:hover {
      background: rgba(255, 253, 249, .9);
      color: var(--brand);
    }

    .main-nav a.active {
      background: var(--ink);
      color: #fff;
      box-shadow: 0 8px 18px rgba(33, 25, 21, .12);
    }

    .nav-cta,
    .btn-primary {
      min-height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 0 20px;
      border-radius: 999px;
      background: var(--brand);
      color: #fff;
      font-weight: 800;
      box-shadow: 0 14px 28px rgba(111, 47, 40, .18);
      transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
      white-space: nowrap;
    }

    .nav-cta:hover,
    .btn-primary:hover {
      transform: translateY(-2px);
      background: var(--brand-dark);
      box-shadow: 0 18px 34px rgba(111, 47, 40, .24);
    }

    .btn-secondary {
      min-height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 0 20px;
      border-radius: 999px;
      background: #fffaf4;
      color: var(--brand);
      border: 1px solid rgba(111, 47, 40, .18);
      font-weight: 800;
      transition: .2s ease;
    }

    .btn-secondary:hover {
      background: var(--accent-soft);
      border-color: rgba(111, 47, 40, .28);
      transform: translateY(-2px);
    }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border-radius: 14px;
      background: #fffaf4;
      border: 1px solid var(--line);
      color: var(--ink);
      align-items: center;
      justify-content: center;
    }

    .menu-toggle span,
    .menu-toggle span::before,
    .menu-toggle span::after {
      display: block;
      width: 18px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
      position: relative;
      transition: .2s ease;
    }

    .menu-toggle span::before,
    .menu-toggle span::after {
      content: "";
      position: absolute;
      left: 0;
    }

    .menu-toggle span::before {
      top: -6px;
    }

    .menu-toggle span::after {
      top: 6px;
    }

    .section {
      padding: 84px 0;
    }

    .section-tight {
      padding: 56px 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(242, 220, 200, .75);
      color: var(--brand);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .02em;
    }

    .eyebrow::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--brand);
      box-shadow: 0 0 0 5px rgba(111, 47, 40, .1);
    }

    .category-hero {
      padding: 54px 0 42px;
    }

    .hero-panel {
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 32px;
      align-items: stretch;
      background:
        linear-gradient(135deg, #221815 0%, #3a241f 58%, #6f2f28 100%);
      color: #fff;
      border-radius: 34px;
      box-shadow: var(--shadow);
      padding: 34px;
    }

    .hero-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
      background-size: 34px 34px;
      mask-image: linear-gradient(90deg, rgba(0,0,0,.9), transparent 78%);
      pointer-events: none;
    }

    .hero-copy {
      position: relative;
      z-index: 1;
      padding: 18px 4px;
    }

    .hero-copy .eyebrow {
      background: rgba(255, 255, 255, .1);
      color: #ffe9d7;
      border: 1px solid rgba(255,255,255,.14);
    }

    .hero-copy .eyebrow::before {
      background: #ffe0c4;
      box-shadow: 0 0 0 5px rgba(255,255,255,.1);
    }

    h1 {
      margin-top: 22px;
      font-size: clamp(32px, 5vw, 52px);
      line-height: 1.08;
      letter-spacing: -.05em;
      max-width: 760px;
    }

    .hero-lead {
      margin-top: 18px;
      max-width: 720px;
      color: rgba(255,255,255,.78);
      font-size: 17px;
      line-height: 1.8;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 30px;
    }

    .hero-actions .btn-primary {
      background: #fff7ed;
      color: var(--brand-dark);
      box-shadow: 0 18px 36px rgba(0,0,0,.18);
    }

    .hero-actions .btn-primary:hover {
      background: #fff;
    }

    .hero-actions .btn-secondary {
      color: #fff;
      background: rgba(255,255,255,.08);
      border-color: rgba(255,255,255,.18);
    }

    .hero-actions .btn-secondary:hover {
      background: rgba(255,255,255,.14);
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 28px;
    }

    .hero-meta span {
      padding: 8px 12px;
      border-radius: 999px;
      color: rgba(255,255,255,.82);
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
      font-size: 13px;
      font-weight: 700;
    }

    .rank-card {
      position: relative;
      z-index: 1;
      background: rgba(255, 253, 249, .96);
      color: var(--ink);
      border-radius: 26px;
      padding: 24px;
      box-shadow: 0 20px 50px rgba(0,0,0,.18);
      align-self: stretch;
    }

    .rank-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 18px;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--line);
    }

    .rank-head h2 {
      font-size: 22px;
      line-height: 1.25;
      letter-spacing: -.03em;
    }

    .rank-head p {
      margin-top: 5px;
      color: var(--muted);
      font-size: 14px;
    }

    .mini-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: max-content;
      height: 34px;
      padding: 0 12px;
      border-radius: 999px;
      background: var(--rose-soft);
      color: var(--brand);
      font-size: 13px;
      font-weight: 900;
    }

    .rank-list {
      display: grid;
      gap: 12px;
    }

    .rank-item {
      display: grid;
      grid-template-columns: 38px 1fr auto;
      gap: 12px;
      align-items: center;
      padding: 13px;
      border-radius: 18px;
      background: #fff8f0;
      border: 1px solid rgba(77, 54, 42, .08);
      transition: .2s ease;
    }

    .rank-item:hover {
      transform: translateX(3px);
      background: #fff;
      border-color: rgba(111, 47, 40, .16);
    }

    .rank-no {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border-radius: 14px;
      background: var(--ink);
      color: #fff;
      font-weight: 900;
    }

    .rank-title {
      font-weight: 900;
      line-height: 1.35;
    }

    .rank-desc {
      color: var(--muted);
      font-size: 13px;
      margin-top: 2px;
    }

    .rank-trend {
      color: var(--green);
      font-size: 13px;
      font-weight: 900;
    }

    .section-head {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px;
      align-items: end;
      margin-bottom: 28px;
    }

    .section-head h2 {
      font-size: clamp(26px, 3.2vw, 36px);
      line-height: 1.18;
      letter-spacing: -.04em;
    }

    .section-head p {
      margin-top: 10px;
      max-width: 720px;
      color: var(--muted);
      font-size: 16px;
    }

    .filter-panel {
      position: relative;
      margin-top: -12px;
      background: rgba(255,253,249,.82);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
      padding: 18px;
    }

    .filter-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
    }

    .filter-label {
      color: var(--muted);
      font-weight: 900;
      margin-right: 4px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 36px;
      padding: 0 13px;
      border-radius: 999px;
      background: #fff;
      border: 1px solid var(--line);
      color: #5c5048;
      font-size: 14px;
      font-weight: 800;
      transition: .2s ease;
    }

    .tag:hover,
    .tag.active {
      background: var(--brand);
      color: #fff;
      border-color: var(--brand);
      transform: translateY(-1px);
    }

    .content-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 320px;
      gap: 26px;
      align-items: start;
    }

    .article-list {
      display: grid;
      gap: 16px;
    }

    .article-card {
      display: grid;
      grid-template-columns: 220px minmax(0, 1fr);
      gap: 20px;
      padding: 16px;
      border-radius: 24px;
      background: rgba(255, 253, 249, .92);
      border: 1px solid var(--line);
      box-shadow: 0 8px 24px rgba(45, 29, 18, .04);
      transition: .22s ease;
    }

    .article-card:hover {
      transform: translateY(-3px);
      border-color: rgba(111, 47, 40, .22);
      box-shadow: var(--shadow-sm);
    }

    .cover {
      position: relative;
      min-height: 152px;
      aspect-ratio: 4 / 3;
      border-radius: 18px;
      overflow: hidden;
      background:
        linear-gradient(135deg, rgba(111,47,40,.9), rgba(185,130,82,.72)),
        repeating-linear-gradient(45deg, rgba(255,255,255,.12) 0 8px, transparent 8px 18px);
    }

    .cover.alt {
      background:
        linear-gradient(135deg, rgba(33,25,21,.9), rgba(111,47,40,.78)),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,.25), transparent 30%);
    }

    .cover.light {
      background:
        linear-gradient(135deg, rgba(247,228,225,.95), rgba(242,220,200,.9)),
        linear-gradient(90deg, rgba(111,47,40,.12), transparent);
    }

    .cover::after {
      content: attr(data-title);
      position: absolute;
      left: 16px;
      right: 16px;
      bottom: 14px;
      color: #fff;
      font-size: 22px;
      line-height: 1.18;
      font-weight: 900;
      letter-spacing: -.03em;
      text-shadow: 0 8px 18px rgba(0,0,0,.22);
    }

    .cover.light::after {
      color: var(--brand-dark);
      text-shadow: none;
    }

    .cover-label {
      position: absolute;
      top: 12px;
      left: 12px;
      z-index: 1;
      display: inline-flex;
      min-height: 28px;
      align-items: center;
      padding: 0 10px;
      border-radius: 999px;
      background: rgba(255,255,255,.88);
      color: var(--brand);
      font-size: 12px;
      font-weight: 900;
    }

    .article-body {
      min-width: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .article-body h3 {
      font-size: 21px;
      line-height: 1.35;
      letter-spacing: -.02em;
      margin-bottom: 8px;
    }

    .article-body p {
      color: var(--muted);
      font-size: 15px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .card-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 14px 0;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 0 10px;
      border-radius: 999px;
      background: var(--paper-soft);
      color: var(--brand);
      font-size: 12px;
      font-weight: 900;
    }

    .article-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding-top: 12px;
      border-top: 1px dashed rgba(77,54,42,.14);
    }

    .date {
      color: var(--muted-2);
      font-size: 13px;
      font-weight: 700;
    }

    .text-link {
      color: var(--brand);
      font-weight: 900;
      transition: .2s ease;
      white-space: nowrap;
    }

    .text-link:hover {
      color: var(--brand-dark);
      transform: translateX(2px);
    }

    .side-stack {
      position: sticky;
      top: 102px;
      display: grid;
      gap: 16px;
    }

    .side-card {
      padding: 20px;
      border-radius: 24px;
      background: rgba(255,253,249,.9);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-sm);
    }

    .side-card h3 {
      font-size: 18px;
      margin-bottom: 12px;
      letter-spacing: -.02em;
    }

    .side-card p {
      color: var(--muted);
      font-size: 14px;
      margin-bottom: 12px;
    }

    .keyword-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .update-list {
      list-style: none;
      display: grid;
      gap: 10px;
    }

    .update-list li {
      display: grid;
      grid-template-columns: 8px 1fr;
      gap: 10px;
      align-items: start;
      color: var(--muted);
      font-size: 14px;
    }

    .update-list li::before {
      content: "";
      width: 8px;
      height: 8px;
      margin-top: 9px;
      border-radius: 50%;
      background: var(--accent);
    }

    .recommend-strip {
      display: grid;
      grid-template-columns: 1.1fr 1fr 1fr;
      gap: 18px;
      align-items: stretch;
    }

    .strip-card {
      position: relative;
      overflow: hidden;
      min-height: 210px;
      padding: 24px;
      border-radius: 26px;
      border: 1px solid var(--line);
      background: var(--paper);
      box-shadow: var(--shadow-sm);
      transition: .22s ease;
    }

    .strip-card:hover {
      transform: translateY(-3px);
      border-color: rgba(111,47,40,.2);
    }

    .strip-card.featured {
      background:
        linear-gradient(135deg, rgba(111,47,40,.96), rgba(185,130,82,.82)),
        var(--brand);
      color: #fff;
    }

    .strip-card.featured p {
      color: rgba(255,255,255,.78);
    }

    .strip-card h3 {
      font-size: 22px;
      line-height: 1.25;
      margin: 12px 0 10px;
      letter-spacing: -.03em;
    }

    .strip-card p {
      color: var(--muted);
      font-size: 15px;
    }

    .strip-icon {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      background: var(--accent-soft);
      color: var(--brand);
      font-weight: 900;
    }

    .featured .strip-icon {
      background: rgba(255,255,255,.16);
      color: #fff;
    }

    .trust-bar {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      padding: 18px;
      border-radius: 28px;
      background: rgba(255,253,249,.82);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-sm);
    }

    .trust-item {
      padding: 18px;
      border-radius: 20px;
      background: #fff8f0;
      border: 1px solid rgba(77,54,42,.08);
    }

    .trust-item strong {
      display: block;
      font-size: 16px;
      margin-bottom: 5px;
    }

    .trust-item span {
      display: block;
      color: var(--muted);
      font-size: 14px;
    }

    .cta-panel {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 28px;
      align-items: center;
      padding: 34px;
      border-radius: 32px;
      background:
        radial-gradient(circle at 88% 18%, rgba(255,255,255,.52), transparent 26%),
        linear-gradient(135deg, #f3ddc9, #fffaf4 54%, #f7e4e1);
      border: 1px solid rgba(77,54,42,.1);
      box-shadow: var(--shadow);
    }

    .cta-panel h2 {
      font-size: clamp(26px, 3vw, 38px);
      line-height: 1.18;
      letter-spacing: -.04em;
    }

    .cta-panel p {
      margin-top: 10px;
      color: var(--muted);
      max-width: 780px;
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: flex-end;
    }

    .faq-wrap {
      display: grid;
      grid-template-columns: .82fr 1.18fr;
      gap: 28px;
      align-items: start;
    }

    .faq-intro {
      padding: 24px;
      border-radius: 26px;
      background: var(--paper);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-sm);
    }

    .faq-intro h2 {
      font-size: 30px;
      line-height: 1.2;
      letter-spacing: -.04em;
      margin-top: 14px;
    }

    .faq-intro p {
      margin-top: 10px;
      color: var(--muted);
    }

    .faq-list {
      display: grid;
      gap: 12px;
    }

    .faq-item {
      border-radius: 20px;
      background: rgba(255,253,249,.9);
      border: 1px solid var(--line);
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      min-height: 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 18px 20px;
      color: var(--ink);
      font-weight: 900;
      text-align: left;
    }

    .faq-question .arrow {
      width: 28px;
      height: 28px;
      min-width: 28px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--paper-soft);
      color: var(--brand);
      transition: .2s ease;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height .24s ease;
    }

    .faq-answer p {
      padding: 0 20px 18px;
      color: var(--muted);
      font-size: 15px;
    }

    .faq-item.open .faq-answer {
      max-height: 180px;
    }

    .faq-item.open .arrow {
      transform: rotate(45deg);
      background: var(--brand);
      color: #fff;
    }

    .site-footer {
      margin-top: 50px;
      padding: 56px 0 26px;
      background: #211915;
      color: rgba(255,255,255,.78);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.35fr .8fr .8fr;
      gap: 36px;
      padding-bottom: 34px;
      border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: #fff;
      margin-bottom: 14px;
    }

    .footer-col p {
      max-width: 430px;
      color: rgba(255,255,255,.62);
      font-size: 15px;
    }

    .footer-col h3 {
      color: #fff;
      font-size: 16px;
      margin-bottom: 14px;
    }

    .footer-links {
      display: grid;
      gap: 10px;
    }

    .footer-links a {
      color: rgba(255,255,255,.64);
      transition: .2s ease;
    }

    .footer-links a:hover {
      color: #fff;
      transform: translateX(3px);
    }

    .copyright {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding-top: 22px;
      color: rgba(255,255,255,.48);
      font-size: 13px;
    }

    @media (max-width: 1024px) {
      :root {
        --nav-h: 72px;
      }

      .header-inner {
        gap: 14px;
      }

      .menu-toggle {
        display: inline-flex;
      }

      .nav-wrap {
        flex: unset;
      }

      .main-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 10px;
        border-radius: 24px;
        background: rgba(255,253,249,.98);
        box-shadow: var(--shadow);
      }

      .main-nav.open {
        display: flex;
      }

      .main-nav a {
        width: 100%;
        justify-content: center;
        border-radius: 16px;
      }

      .hero-panel,
      .content-layout,
      .faq-wrap {
        grid-template-columns: 1fr;
      }

      .side-stack {
        position: static;
        grid-template-columns: repeat(2, 1fr);
      }

      .recommend-strip {
        grid-template-columns: 1fr 1fr;
      }

      .trust-bar {
        grid-template-columns: repeat(2, 1fr);
      }

      .cta-panel {
        grid-template-columns: 1fr;
      }

      .cta-actions {
        justify-content: flex-start;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .footer-grid .footer-col:first-child {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 760px) {
      .container {
        width: min(100% - 28px, var(--container));
      }

      .brand-text span {
        display: none;
      }

      .brand-text strong {
        max-width: 176px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .nav-cta {
        min-height: 40px;
        padding: 0 13px;
        font-size: 13px;
      }

      .category-hero {
        padding-top: 30px;
      }

      .hero-panel {
        border-radius: 26px;
        padding: 22px;
      }

      .rank-card {
        padding: 18px;
      }

      .rank-item {
        grid-template-columns: 34px 1fr;
      }

      .rank-trend {
        grid-column: 2;
      }

      .section,
      .section-tight {
        padding: 52px 0;
      }

      .section-head {
        grid-template-columns: 1fr;
      }

      .article-card {
        grid-template-columns: 1fr;
        padding: 14px;
      }

      .cover {
        min-height: 180px;
      }

      .article-foot {
        align-items: flex-start;
        flex-direction: column;
      }

      .side-stack,
      .recommend-strip,
      .trust-bar,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .cta-panel {
        padding: 24px;
        border-radius: 26px;
      }

      .btn-primary,
      .btn-secondary {
        width: 100%;
      }

      .hero-actions,
      .cta-actions {
        width: 100%;
      }

      .copyright {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media (max-width: 520px) {
      body {
        font-size: 15px;
      }

      .header-inner {
        min-height: 66px;
      }

      .brand-mark {
        width: 38px;
        height: 38px;
        border-radius: 13px;
      }

      .nav-cta {
        display: none;
      }

      .hero-lead {
        font-size: 15px;
      }

      .hero-meta span,
      .tag {
        font-size: 12px;
      }

      .cover {
        min-height: 154px;
      }

      .filter-panel {
        padding: 14px;
      }
    }

/* roulang page: category2 */
:root {
      --bg: #fbf6ee;
      --paper: #fffdf8;
      --paper-strong: #fff8ec;
      --ink: #241915;
      --muted: #75665c;
      --soft: #9a8778;
      --line: rgba(70, 45, 30, .12);
      --line-strong: rgba(70, 45, 30, .2);
      --brand: #6e2f28;
      --brand-dark: #51211c;
      --brand-soft: #f4ded8;
      --caramel: #b77941;
      --apricot: #f6e7d2;
      --rose: #d9aaa1;
      --green: #5f7d62;
      --amber: #a16b2b;
      --shadow: 0 16px 42px rgba(41, 25, 13, .08);
      --shadow-soft: 0 10px 26px rgba(41, 25, 13, .06);
      --radius-xl: 28px;
      --radius-lg: 22px;
      --radius-md: 16px;
      --radius-sm: 12px;
      --container: 1180px;
      --nav-height: 76px;
      --font: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      text-size-adjust: 100%;
    }

    body {
      font-family: var(--font);
      color: var(--ink);
      background:
        radial-gradient(circle at 12% 8%, rgba(244, 222, 216, .55), transparent 30%),
        linear-gradient(180deg, #fffaf2 0%, var(--bg) 44%, #f8efe4 100%);
      line-height: 1.7;
      min-height: 100vh;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img, svg {
      display: block;
      max-width: 100%;
    }

    button, input {
      font: inherit;
    }

    button {
      cursor: pointer;
      border: 0;
      background: transparent;
    }

    input {
      border: 0;
      outline: none;
    }

    ::selection {
      background: var(--brand-soft);
      color: var(--brand-dark);
    }

    .container {
      width: min(var(--container), calc(100% - 40px));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 253, 248, .88);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--line);
    }

    .header-inner {
      height: var(--nav-height);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-width: max-content;
      font-weight: 800;
      letter-spacing: -.02em;
    }

    .brand-mark {
      width: 38px;
      height: 38px;
      border-radius: 14px;
      display: inline-grid;
      place-items: center;
      color: #fff;
      font-weight: 900;
      background:
        linear-gradient(135deg, var(--brand) 0%, var(--caramel) 100%);
      box-shadow: 0 10px 22px rgba(110, 47, 40, .2);
    }

    .brand strong {
      font-size: 17px;
      line-height: 1.2;
    }

    .main-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 7px;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, .62);
      border-radius: 999px;
      box-shadow: 0 6px 18px rgba(41, 25, 13, .035);
    }

    .main-nav a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 38px;
      padding: 8px 15px;
      border-radius: 999px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 700;
      transition: background .22s ease, color .22s ease, transform .22s ease;
      white-space: nowrap;
    }

    .main-nav a:hover {
      color: var(--brand-dark);
      background: var(--paper-strong);
      transform: translateY(-1px);
    }

    .main-nav a.active {
      color: #fff;
      background: var(--brand);
      box-shadow: 0 8px 16px rgba(110, 47, 40, .18);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      min-width: max-content;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 46px;
      padding: 12px 20px;
      border-radius: 999px;
      font-weight: 800;
      font-size: 15px;
      transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
      user-select: none;
    }

    .btn:focus-visible,
    .main-nav a:focus-visible,
    .mobile-toggle:focus-visible,
    .tag:focus-visible,
    .faq-question:focus-visible,
    input:focus-visible {
      outline: 3px solid rgba(183, 121, 65, .28);
      outline-offset: 3px;
    }

    .btn-primary {
      color: #fff;
      background: var(--brand);
      box-shadow: 0 14px 26px rgba(110, 47, 40, .18);
    }

    .btn-primary:hover {
      background: var(--brand-dark);
      transform: translateY(-2px);
      box-shadow: 0 18px 34px rgba(110, 47, 40, .24);
    }

    .btn-secondary {
      color: var(--brand-dark);
      border: 1px solid var(--line-strong);
      background: rgba(255, 255, 255, .72);
    }

    .btn-secondary:hover {
      border-color: rgba(110, 47, 40, .35);
      background: var(--paper-strong);
      transform: translateY(-2px);
    }

    .btn-text {
      color: var(--brand);
      min-height: 40px;
      padding: 8px 2px;
      border-radius: 8px;
      font-weight: 800;
    }

    .btn-text:hover {
      color: var(--brand-dark);
      transform: translateX(2px);
    }

    .mobile-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border-radius: 14px;
      border: 1px solid var(--line);
      background: #fff;
      color: var(--ink);
      align-items: center;
      justify-content: center;
      transition: background .2s ease, border-color .2s ease;
    }

    .mobile-toggle span {
      position: relative;
      width: 18px;
      height: 2px;
      background: currentColor;
      border-radius: 99px;
    }

    .mobile-toggle span::before,
    .mobile-toggle span::after {
      content: "";
      position: absolute;
      left: 0;
      width: 18px;
      height: 2px;
      background: currentColor;
      border-radius: 99px;
      transition: transform .2s ease, top .2s ease;
    }

    .mobile-toggle span::before { top: -6px; }
    .mobile-toggle span::after { top: 6px; }

    .mobile-toggle.is-open span {
      background: transparent;
    }

    .mobile-toggle.is-open span::before {
      top: 0;
      transform: rotate(45deg);
    }

    .mobile-toggle.is-open span::after {
      top: 0;
      transform: rotate(-45deg);
    }

    main {
      overflow: hidden;
    }

    .section {
      padding: 76px 0;
    }

    .section-tight {
      padding: 52px 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 12px;
      border-radius: 999px;
      background: var(--brand-soft);
      color: var(--brand-dark);
      font-size: 13px;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 18px;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--brand);
      box-shadow: 0 0 0 5px rgba(110, 47, 40, .08);
    }

    .hero {
      padding: 42px 0 64px;
    }

    .hero-shell {
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
      gap: 34px;
      align-items: stretch;
    }

    .hero-copy {
      padding: 34px 0 28px;
    }

    .breadcrumb {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center;
      color: var(--soft);
      font-size: 14px;
      margin-bottom: 22px;
    }

    .breadcrumb a {
      color: var(--muted);
      font-weight: 700;
    }

    .breadcrumb a:hover {
      color: var(--brand);
    }

    h1 {
      font-size: clamp(32px, 4.6vw, 54px);
      line-height: 1.08;
      letter-spacing: -.045em;
      margin-bottom: 18px;
    }

    .hero-subtitle {
      color: var(--muted);
      font-size: 17px;
      max-width: 680px;
      margin-bottom: 24px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin: 26px 0 30px;
    }

    .hero-notes {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      max-width: 620px;
    }

    .note-card {
      padding: 14px;
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      background: rgba(255, 253, 248, .68);
    }

    .note-card strong {
      display: block;
      color: var(--ink);
      font-size: 18px;
      line-height: 1.1;
      margin-bottom: 4px;
    }

    .note-card span {
      color: var(--soft);
      font-size: 13px;
      line-height: 1.4;
    }

    .catalog-panel {
      position: relative;
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      background:
        linear-gradient(135deg, rgba(255, 253, 248, .96), rgba(248, 235, 218, .78));
      box-shadow: var(--shadow);
      padding: 22px;
      overflow: hidden;
    }

    .catalog-panel::before {
      content: "";
      position: absolute;
      inset: 18px auto auto 18px;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: rgba(217, 170, 161, .22);
      filter: blur(2px);
      pointer-events: none;
    }

    .catalog-top {
      position: relative;
      display: grid;
      grid-template-columns: 172px 1fr;
      gap: 18px;
      align-items: stretch;
      margin-bottom: 18px;
    }

    .directory-cover {
      min-height: 230px;
      padding: 18px;
      border-radius: 24px;
      background:
        linear-gradient(160deg, rgba(110, 47, 40, .95), rgba(183, 121, 65, .92)),
        repeating-linear-gradient(45deg, rgba(255,255,255,.09) 0 1px, transparent 1px 12px);
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: 0 18px 28px rgba(110, 47, 40, .18);
    }

    .directory-cover .cover-label {
      align-self: flex-start;
      padding: 5px 9px;
      border: 1px solid rgba(255,255,255,.32);
      border-radius: 999px;
      font-size: 12px;
      font-weight: 800;
      background: rgba(255,255,255,.12);
    }

    .directory-cover h2 {
      font-size: 25px;
      line-height: 1.18;
      letter-spacing: -.03em;
    }

    .directory-cover p {
      font-size: 13px;
      color: rgba(255,255,255,.82);
    }

    .summary-box {
      padding: 18px;
      border-radius: 22px;
      background: rgba(255, 255, 255, .72);
      border: 1px solid var(--line);
    }

    .summary-box h2 {
      font-size: 22px;
      letter-spacing: -.02em;
      margin-bottom: 12px;
    }

    .summary-list {
      display: grid;
      gap: 10px;
      list-style: none;
      margin-bottom: 16px;
    }

    .summary-list li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      color: var(--muted);
      font-size: 14px;
    }

    .summary-list li::before {
      content: "✓";
      flex: 0 0 20px;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(95, 125, 98, .14);
      color: var(--green);
      font-size: 12px;
      font-weight: 900;
      margin-top: 2px;
    }

    .lead-form {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 10px;
      padding: 8px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: #fff;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
    }

    .lead-form input {
      min-width: 0;
      padding: 0 12px;
      color: var(--ink);
      background: transparent;
    }

    .lead-form input::placeholder {
      color: #a9998e;
    }

    .form-tip {
      margin-top: 10px;
      color: var(--soft);
      font-size: 12px;
    }

    .mini-matrix {
      position: relative;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 10px;
    }

    .mini-item {
      min-height: 86px;
      border-radius: 18px;
      padding: 12px;
      border: 1px solid var(--line);
      background:
        linear-gradient(145deg, rgba(255,255,255,.78), rgba(250,239,224,.82));
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
    }

    .mini-item:hover {
      transform: translateY(-3px);
      border-color: rgba(110, 47, 40, .22);
      box-shadow: var(--shadow-soft);
    }

    .mini-item b {
      font-size: 14px;
    }

    .mini-item span {
      color: var(--soft);
      font-size: 12px;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 26px;
    }

    .section-head h2 {
      font-size: clamp(26px, 3vw, 36px);
      line-height: 1.16;
      letter-spacing: -.035em;
    }

    .section-head p {
      color: var(--muted);
      max-width: 560px;
      font-size: 15px;
    }

    .tag-bar {
      display: flex;
      gap: 10px;
      overflow-x: auto;
      padding: 4px 0 12px;
      scrollbar-width: thin;
      margin-bottom: 22px;
    }

    .tag {
      flex: 0 0 auto;
      min-height: 40px;
      display: inline-flex;
      align-items: center;
      padding: 9px 15px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255, 253, 248, .74);
      color: var(--muted);
      font-size: 14px;
      font-weight: 800;
      transition: background .22s ease, color .22s ease, border-color .22s ease, transform .22s ease;
    }

    .tag:hover,
    .tag.active {
      color: #fff;
      border-color: var(--brand);
      background: var(--brand);
      transform: translateY(-1px);
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 18px;
    }

    .cover-card {
      position: relative;
      grid-column: span 4;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: rgba(255, 253, 248, .82);
      box-shadow: var(--shadow-soft);
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }

    .cover-card.feature {
      grid-column: span 6;
    }

    .cover-card:hover {
      transform: translateY(-4px);
      border-color: rgba(110, 47, 40, .24);
      box-shadow: var(--shadow);
    }

    .cover-art {
      position: relative;
      aspect-ratio: 16 / 10;
      overflow: hidden;
      background:
        radial-gradient(circle at 30% 25%, rgba(255,255,255,.32), transparent 22%),
        linear-gradient(135deg, #7a352d, #bd8553);
    }

    .cover-card:nth-child(2) .cover-art { background: linear-gradient(135deg, #6f5344, #d9aaa1); }
    .cover-card:nth-child(3) .cover-art { background: linear-gradient(135deg, #5e6b55, #e7c391); }
    .cover-card:nth-child(4) .cover-art { background: linear-gradient(135deg, #4b3b35, #b77941); }
    .cover-card:nth-child(5) .cover-art { background: linear-gradient(135deg, #8a4c42, #f0d5c2); }
    .cover-card:nth-child(6) .cover-art { background: linear-gradient(135deg, #725f51, #f3cfa2); }
    .cover-card:nth-child(7) .cover-art { background: linear-gradient(135deg, #53312d, #c99b73); }
    .cover-card:nth-child(8) .cover-art { background: linear-gradient(135deg, #6a755f, #dbc8aa); }

    .cover-art::after {
      content: "";
      position: absolute;
      inset: 12px;
      border: 1px solid rgba(255,255,255,.42);
      border-radius: 18px;
      background:
        linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px) 0 0 / 18px 18px,
        linear-gradient(0deg, rgba(255,255,255,.14) 1px, transparent 1px) 0 0 / 18px 18px;
      opacity: .6;
    }

    .cover-title-mark {
      position: absolute;
      left: 20px;
      bottom: 18px;
      right: 20px;
      color: #fff;
      z-index: 2;
      text-shadow: 0 3px 12px rgba(0,0,0,.22);
    }

    .cover-title-mark span {
      display: inline-flex;
      margin-bottom: 8px;
      padding: 4px 9px;
      border-radius: 999px;
      background: rgba(255,255,255,.18);
      border: 1px solid rgba(255,255,255,.28);
      font-size: 12px;
      font-weight: 800;
    }

    .cover-title-mark b {
      display: block;
      font-size: 22px;
      line-height: 1.18;
      letter-spacing: -.02em;
    }

    .cover-body {
      padding: 18px;
    }

    .cover-body h3 {
      font-size: 20px;
      line-height: 1.28;
      letter-spacing: -.02em;
      margin-bottom: 8px;
    }

    .cover-body p {
      color: var(--muted);
      font-size: 14px;
      margin-bottom: 14px;
    }

    .meta-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      flex-wrap: wrap;
    }

    .badge-group {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      min-height: 26px;
      padding: 4px 9px;
      border-radius: 999px;
      color: var(--brand-dark);
      background: var(--brand-soft);
      font-size: 12px;
      font-weight: 800;
    }

    .badge.light {
      color: var(--muted);
      background: #f2e6d8;
    }

    .recommend-strip {
      display: grid;
      grid-template-columns: 1.2fr repeat(3, 1fr);
      gap: 16px;
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      padding: 18px;
      background: linear-gradient(135deg, rgba(255,253,248,.88), rgba(247,230,210,.78));
      box-shadow: var(--shadow-soft);
    }

    .strip-title {
      padding: 10px;
    }

    .strip-title h2 {
      font-size: 28px;
      line-height: 1.18;
      letter-spacing: -.03em;
      margin-bottom: 8px;
    }

    .strip-title p {
      color: var(--muted);
      font-size: 14px;
    }

    .strip-item {
      border-radius: 20px;
      padding: 18px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,.68);
      transition: transform .22s ease, background .22s ease, border-color .22s ease;
    }

    .strip-item:hover {
      transform: translateY(-3px);
      border-color: rgba(110, 47, 40, .24);
      background: #fff;
    }

    .strip-item span {
      display: inline-flex;
      width: 34px;
      height: 34px;
      border-radius: 12px;
      align-items: center;
      justify-content: center;
      background: var(--brand);
      color: #fff;
      font-weight: 900;
      margin-bottom: 16px;
    }

    .strip-item h3 {
      font-size: 17px;
      line-height: 1.3;
      margin-bottom: 6px;
    }

    .strip-item p {
      color: var(--muted);
      font-size: 13px;
    }

    .insight-layout {
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      gap: 24px;
      align-items: stretch;
    }

    .quote-card,
    .safe-card {
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      background: rgba(255, 253, 248, .82);
      box-shadow: var(--shadow-soft);
      padding: 26px;
    }

    .quote-card {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 330px;
      background:
        linear-gradient(160deg, rgba(110,47,40,.96), rgba(81,33,28,.92));
      color: #fff;
    }

    .quote-card .stars {
      letter-spacing: 3px;
      color: #ffdca8;
      margin-bottom: 18px;
    }

    .quote-card blockquote {
      font-size: 24px;
      line-height: 1.45;
      font-weight: 800;
      letter-spacing: -.03em;
    }

    .quote-card footer {
      color: rgba(255,255,255,.72);
      font-size: 14px;
      margin-top: 22px;
    }

    .safe-list {
      display: grid;
      gap: 14px;
    }

    .safe-row {
      display: grid;
      grid-template-columns: 42px 1fr;
      gap: 13px;
      align-items: start;
      padding: 14px;
      border: 1px solid var(--line);
      border-radius: 18px;
      background: rgba(255,255,255,.6);
      transition: transform .22s ease, background .22s ease;
    }

    .safe-row:hover {
      transform: translateX(3px);
      background: #fff;
    }

    .icon-dot {
      width: 42px;
      height: 42px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: var(--apricot);
      color: var(--brand);
      font-weight: 900;
    }

    .safe-row h3 {
      font-size: 17px;
      margin-bottom: 3px;
    }

    .safe-row p {
      color: var(--muted);
      font-size: 14px;
    }

    .flow-board {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .flow-step {
      position: relative;
      padding: 22px;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: rgba(255, 253, 248, .82);
      min-height: 188px;
      box-shadow: var(--shadow-soft);
    }

    .flow-step .num {
      display: inline-flex;
      width: 36px;
      height: 36px;
      border-radius: 13px;
      align-items: center;
      justify-content: center;
      background: var(--brand-soft);
      color: var(--brand-dark);
      font-weight: 900;
      margin-bottom: 18px;
    }

    .flow-step h3 {
      font-size: 18px;
      margin-bottom: 8px;
    }

    .flow-step p {
      color: var(--muted);
      font-size: 14px;
    }

    .faq-wrap {
      display: grid;
      grid-template-columns: .82fr 1.18fr;
      gap: 28px;
      align-items: start;
    }

    .faq-intro {
      position: sticky;
      top: calc(var(--nav-height) + 24px);
    }

    .faq-intro h2 {
      font-size: clamp(26px, 3vw, 36px);
      line-height: 1.18;
      letter-spacing: -.035em;
      margin-bottom: 12px;
    }

    .faq-intro p {
      color: var(--muted);
    }

    .faq-list {
      display: grid;
      gap: 12px;
    }

    .faq-item {
      border: 1px solid var(--line);
      border-radius: 18px;
      background: rgba(255, 253, 248, .86);
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(41, 25, 13, .035);
    }

    .faq-question {
      width: 100%;
      min-height: 58px;
      padding: 16px 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      color: var(--ink);
      text-align: left;
      font-weight: 900;
    }

    .faq-question::after {
      content: "⌄";
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--apricot);
      color: var(--brand);
      transition: transform .2s ease;
      flex: 0 0 auto;
    }

    .faq-item.is-open .faq-question::after {
      transform: rotate(180deg);
    }

    .faq-answer {
      display: none;
      padding: 0 18px 18px;
      color: var(--muted);
      font-size: 15px;
    }

    .faq-item.is-open .faq-answer {
      display: block;
    }

    .cta-panel {
      position: relative;
      overflow: hidden;
      border-radius: 34px;
      border: 1px solid rgba(255,255,255,.18);
      background:
        linear-gradient(135deg, var(--brand-dark), var(--brand) 55%, #8b4c34);
      color: #fff;
      padding: 42px;
      box-shadow: 0 24px 52px rgba(81,33,28,.22);
    }

    .cta-panel::before {
      content: "";
      position: absolute;
      width: 260px;
      height: 260px;
      right: -80px;
      top: -100px;
      border-radius: 50%;
      background: rgba(255,255,255,.12);
    }

    .cta-panel::after {
      content: "";
      position: absolute;
      inset: auto 36px 28px auto;
      width: 180px;
      height: 110px;
      border-radius: 24px;
      border: 1px solid rgba(255,255,255,.16);
      background:
        linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px) 0 0 / 22px 22px,
        linear-gradient(0deg, rgba(255,255,255,.12) 1px, transparent 1px) 0 0 / 22px 22px;
      opacity: .55;
    }

    .cta-content {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px;
      align-items: center;
    }

    .cta-content h2 {
      font-size: clamp(28px, 3.2vw, 42px);
      line-height: 1.16;
      letter-spacing: -.04em;
      margin-bottom: 10px;
      max-width: 720px;
    }

    .cta-content p {
      color: rgba(255,255,255,.78);
      max-width: 650px;
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: flex-end;
    }

    .cta-panel .btn-primary {
      background: #fff;
      color: var(--brand-dark);
      box-shadow: 0 14px 30px rgba(0,0,0,.16);
    }

    .cta-panel .btn-primary:hover {
      background: var(--paper-strong);
    }

    .cta-panel .btn-secondary {
      color: #fff;
      background: rgba(255,255,255,.1);
      border-color: rgba(255,255,255,.24);
    }

    .cta-panel .btn-secondary:hover {
      background: rgba(255,255,255,.16);
      border-color: rgba(255,255,255,.36);
    }

    .site-footer {
      padding: 54px 0 28px;
      color: rgba(255, 255, 255, .78);
      background:
        radial-gradient(circle at 12% 0%, rgba(183, 121, 65, .16), transparent 34%),
        #211815;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr .8fr .8fr;
      gap: 28px;
      padding-bottom: 34px;
      border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .footer-col p {
      max-width: 440px;
      color: rgba(255,255,255,.68);
      font-size: 14px;
      margin-top: 14px;
    }

    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: #fff;
    }

    .footer-brand .brand-mark {
      box-shadow: none;
    }

    .footer-col h3 {
      color: #fff;
      font-size: 16px;
      margin-bottom: 14px;
    }

    .footer-links {
      display: grid;
      gap: 9px;
    }

    .footer-links a {
      color: rgba(255,255,255,.66);
      font-size: 14px;
      transition: color .2s ease, transform .2s ease;
    }

    .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,255,255,.52);
      font-size: 13px;
    }

    @media (max-width: 1060px) {
      .header-inner {
        gap: 14px;
      }

      .brand strong {
        max-width: 190px;
      }

      .main-nav a {
        padding: 8px 12px;
      }

      .hero-shell,
      .insight-layout,
      .faq-wrap {
        grid-template-columns: 1fr;
      }

      .catalog-top {
        grid-template-columns: 160px 1fr;
      }

      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .cover-card,
      .cover-card.feature {
        grid-column: auto;
      }

      .recommend-strip {
        grid-template-columns: repeat(2, 1fr);
      }

      .strip-title {
        grid-column: 1 / -1;
      }

      .flow-board {
        grid-template-columns: repeat(2, 1fr);
      }

      .faq-intro {
        position: static;
      }
    }

    @media (max-width: 860px) {
      :root {
        --nav-height: 68px;
      }

      .container {
        width: min(100% - 28px, var(--container));
      }

      .site-header {
        position: sticky;
      }

      .main-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 14px;
        right: 14px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        border-radius: 22px;
        padding: 10px;
        background: rgba(255,253,248,.98);
        box-shadow: var(--shadow);
      }

      .main-nav.is-open {
        display: flex;
      }

      .main-nav a {
        justify-content: flex-start;
        border-radius: 14px;
        padding: 12px 14px;
      }

      .mobile-toggle {
        display: inline-flex;
      }

      .header-actions .btn {
        min-height: 42px;
        padding: 9px 13px;
        font-size: 13px;
      }

      .hero {
        padding: 28px 0 46px;
      }

      .hero-shell {
        gap: 20px;
      }

      .hero-copy {
        padding: 18px 0 6px;
      }

      .hero-notes {
        grid-template-columns: 1fr;
      }

      .catalog-top {
        grid-template-columns: 1fr;
      }

      .directory-cover {
        min-height: 210px;
      }

      .mini-matrix {
        grid-template-columns: repeat(2, 1fr);
      }

      .section {
        padding: 54px 0;
      }

      .section-tight {
        padding: 40px 0;
      }

      .section-head {
        display: block;
      }

      .section-head p {
        margin-top: 10px;
      }

      .lead-form {
        grid-template-columns: 1fr;
        border-radius: 22px;
      }

      .lead-form input {
        min-height: 42px;
      }

      .lead-form .btn {
        width: 100%;
      }

      .cta-content {
        grid-template-columns: 1fr;
      }

      .cta-actions {
        justify-content: flex-start;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 560px) {
      .brand strong {
        max-width: 142px;
        font-size: 14px;
      }

      .brand-mark {
        width: 34px;
        height: 34px;
        border-radius: 12px;
      }

      .header-actions .btn {
        display: none;
      }

      .hero-actions .btn,
      .cta-actions .btn {
        width: 100%;
      }

      .catalog-panel {
        padding: 14px;
        border-radius: 24px;
      }

      .summary-box,
      .quote-card,
      .safe-card,
      .cta-panel {
        padding: 22px;
      }

      .gallery-grid {
        grid-template-columns: 1fr;
      }

      .cover-title-mark b {
        font-size: 20px;
      }

      .recommend-strip,
      .flow-board {
        grid-template-columns: 1fr;
      }

      .mini-matrix {
        grid-template-columns: 1fr;
      }

      .quote-card blockquote {
        font-size: 20px;
      }

      .copyright {
        display: grid;
      }
    }
