/* roulang page: index */
:root {
      --brand: #ff6f4f;
      --brand-strong: #e94d2e;
      --amber: #ffb23f;
      --sage: #6f8f72;
      --wine: #8b3145;
      --ink: #201c1a;
      --muted: #6f6660;
      --soft: #fbf5ef;
      --paper: #fffaf6;
      --line: #eaded4;
      --white: #ffffff;
      --radius: 8px;
      --shadow: 0 16px 40px rgba(76, 49, 34, .10);
      --shadow-sm: 0 8px 22px rgba(76, 49, 34, .08);
      --container: 1240px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
      color: var(--ink);
      background: linear-gradient(180deg, #fffaf6 0%, #fff 46%, #fbf5ef 100%);
      line-height: 1.7;
      letter-spacing: 0;
    }

    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,
    input {
      font: inherit;
    }

    .site-wrap {
      overflow: hidden;
    }

    .container-page {
      width: min(100% - 32px, var(--container));
      margin-inline: auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 250, 246, .92);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(234, 222, 212, .82);
    }

    .nav-shell {
      min-height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .brand-mark {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      color: var(--ink);
      white-space: nowrap;
    }

    .brand-dot {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, #ffd7a3, var(--brand) 55%, var(--wine));
      box-shadow: 0 8px 20px rgba(255, 111, 79, .24);
    }

    .brand-text {
      font-size: 18px;
    }

    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 34px;
      color: var(--muted);
      font-size: 15px;
    }

    .nav-link-custom {
      position: relative;
      padding: 28px 0 24px;
    }

    .nav-link-custom:hover {
      color: var(--ink);
    }

    .nav-link-custom.active {
      color: var(--ink);
      font-weight: 700;
    }

    .nav-link-custom.active::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 17px;
      height: 2px;
      background: var(--brand);
      border-radius: 999px;
    }

    .nav-action {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid var(--line);
      border-radius: 999px;
      padding: 9px 15px;
      color: var(--ink);
      background: rgba(255, 255, 255, .6);
    }

    .nav-action:hover {
      border-color: var(--brand);
      color: var(--brand-strong);
      transform: translateY(-1px);
    }

    .mobile-menu-btn {
      border: 1px solid var(--line);
      background: var(--white);
      color: var(--ink);
      width: 42px;
      height: 42px;
      border-radius: 999px;
      display: none;
      align-items: center;
      justify-content: center;
    }

    .offcanvas {
      background: var(--paper);
      color: var(--ink);
    }

    .offcanvas .nav-link-custom {
      display: block;
      padding: 16px 0;
      border-bottom: 1px solid var(--line);
    }

    .btn-brand,
    .btn-soft,
    .btn-line {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 46px;
      border-radius: 999px;
      padding: 11px 18px;
      font-weight: 700;
      border: 1px solid transparent;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
    }

    .btn-brand {
      color: #fff;
      background: var(--brand);
      box-shadow: 0 12px 26px rgba(255, 111, 79, .28);
    }

    .btn-brand:hover,
    .btn-brand:focus {
      color: #fff;
      background: var(--brand-strong);
      transform: translateY(-2px);
      box-shadow: 0 16px 32px rgba(255, 111, 79, .34);
    }

    .btn-soft {
      color: var(--ink);
      background: #fff3e7;
      border-color: #f3d7c7;
    }

    .btn-soft:hover,
    .btn-soft:focus {
      color: var(--brand-strong);
      background: #ffe8d6;
      transform: translateY(-2px);
    }

    .btn-line {
      color: var(--ink);
      background: var(--white);
      border-color: var(--line);
    }

    .btn-line:hover,
    .btn-line:focus {
      border-color: var(--brand);
      color: var(--brand-strong);
      transform: translateY(-2px);
    }

    .btn-brand:focus-visible,
    .btn-soft:focus-visible,
    .btn-line:focus-visible,
    .mobile-menu-btn:focus-visible,
    .form-control:focus-visible {
      outline: 3px solid rgba(255, 178, 63, .32);
      outline-offset: 3px;
    }

    main section {
      padding: 72px 0;
    }

    .hero {
      padding: 64px 0 76px;
      background:
        linear-gradient(135deg, rgba(255, 111, 79, .10), rgba(255, 178, 63, .12) 42%, rgba(111, 143, 114, .10)),
        var(--paper);
      border-bottom: 1px solid var(--line);
    }

    .hero-stage {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 28px;
      align-items: stretch;
    }

    .hero-copy {
      padding: 18px 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .76);
      border: 1px solid var(--line);
      color: var(--wine);
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 20px;
    }

    h1 {
      font-size: 52px;
      line-height: 1.12;
      margin: 0 0 20px;
      font-weight: 900;
      letter-spacing: 0;
    }

    .hero-lead {
      font-size: 18px;
      color: var(--muted);
      max-width: 760px;
      margin: 0 0 26px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 28px;
    }

    .hero-metrics {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .metric-pill {
      min-width: 150px;
      padding: 12px 14px;
      background: rgba(255, 255, 255, .72);
      border: 1px solid var(--line);
      border-radius: var(--radius);
    }

    .metric-pill strong {
      display: block;
      font-size: 22px;
      line-height: 1.2;
    }

    .metric-pill span {
      color: var(--muted);
      font-size: 13px;
    }

    .recommend-panel {
      background: rgba(255, 255, 255, .78);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 18px;
      display: grid;
      gap: 14px;
    }

    .recommend-card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 18px;
      background: var(--white);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .recommend-card:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-sm);
      border-color: rgba(255, 111, 79, .5);
    }

    .recommend-card.highlight {
      border-color: rgba(255, 111, 79, .55);
      background: linear-gradient(180deg, #fff7ef, #fff);
    }

    .card-topline {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      margin-bottom: 8px;
    }

    .badge-soft,
    .tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border-radius: 999px;
      padding: 5px 10px;
      font-size: 12px;
      font-weight: 700;
      border: 1px solid var(--line);
      background: #fff7ef;
      color: var(--wine);
      white-space: nowrap;
    }

    .tag.sage {
      background: #f0f6ef;
      color: #526f55;
    }

    .tag.dark {
      background: #26211f;
      color: #fff;
      border-color: #26211f;
    }

    .recommend-card h2,
    .recommend-card h3 {
      font-size: 22px;
      margin: 0 0 8px;
      font-weight: 850;
    }

    .recommend-card p {
      margin: 0 0 14px;
      color: var(--muted);
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 28px;
      margin-bottom: 28px;
    }

    .section-head h2 {
      font-size: 34px;
      line-height: 1.18;
      margin: 0 0 8px;
      font-weight: 880;
    }

    .section-head p {
      margin: 0;
      max-width: 680px;
      color: var(--muted);
    }

    .tier-track {
      position: relative;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    .tier-card,
    .feature-card,
    .scene-strip,
    .review-bubble,
    .news-list,
    .side-reco,
    .cta-box,
    .faq-wrap {
      background: rgba(255, 255, 255, .86);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow-sm);
    }

    .tier-card {
      padding: 18px;
      min-height: 190px;
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .tier-card:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow);
    }

    .tier-card strong {
      display: block;
      font-size: 22px;
      margin: 8px 0 6px;
    }

    .tier-card p {
      color: var(--muted);
      margin: 0 0 14px;
      font-size: 14px;
    }

    .progress-slim {
      height: 8px;
      background: #f1dfd2;
      border-radius: 999px;
      overflow: hidden;
    }

    .progress-slim span {
      display: block;
      height: 100%;
      background: linear-gradient(90deg, var(--brand), var(--amber));
      border-radius: inherit;
    }

    .compare-area {
      display: grid;
      grid-template-columns: .78fr 1.22fr;
      gap: 18px;
      align-items: start;
    }

    .plan-focus {
      padding: 24px;
      background: #27211f;
      color: #fff;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    .plan-focus p {
      color: rgba(255, 255, 255, .76);
      margin: 0 0 18px;
    }

    .price-line {
      display: flex;
      align-items: baseline;
      gap: 10px;
      margin: 14px 0;
    }

    .price-line strong {
      font-size: 36px;
    }

    .compare-table {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }

    .compare-row {
      display: grid;
      grid-template-columns: 1fr repeat(3, .75fr);
      border-bottom: 1px solid var(--line);
      min-height: 62px;
      align-items: center;
    }

    .compare-row:last-child {
      border-bottom: 0;
    }

    .compare-row > div {
      padding: 14px 16px;
      color: var(--muted);
    }

    .compare-row.header {
      background: #fff5eb;
      font-weight: 800;
      color: var(--ink);
    }

    .compare-row.header > div {
      color: var(--ink);
    }

    .compare-row .yes {
      color: var(--sage);
      font-weight: 800;
    }

    .guarantee {
      padding: 28px 0;
      background: #26211f;
      color: #fff;
    }

    .guarantee section {
      padding: 0;
    }

    .guarantee-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }

    .guarantee-item {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      padding: 18px;
      border: 1px solid rgba(255, 255, 255, .14);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .05);
    }

    .guarantee-item i {
      color: var(--amber);
      font-size: 20px;
    }

    .guarantee-item strong {
      display: block;
      margin-bottom: 3px;
    }

    .guarantee-item span {
      color: rgba(255, 255, 255, .68);
      font-size: 13px;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr 1fr;
      gap: 14px;
    }

    .feature-card {
      padding: 20px;
      min-height: 210px;
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .feature-card.wide {
      grid-column: span 2;
      min-height: 170px;
    }

    .feature-card:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow);
    }

    .icon-box {
      width: 42px;
      height: 42px;
      border-radius: var(--radius);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #fff0e5;
      color: var(--brand-strong);
      margin-bottom: 14px;
      font-size: 20px;
    }

    .feature-card h3,
    .scene-strip h3,
    .review-bubble h3,
    .side-reco h3 {
      font-size: 20px;
      margin: 0 0 9px;
      font-weight: 830;
    }

    .feature-card p,
    .scene-strip p,
    .review-bubble p,
    .side-reco p {
      margin: 0;
      color: var(--muted);
    }

    .scene-tabs .nav-pills {
      gap: 10px;
      margin-bottom: 18px;
      flex-wrap: wrap;
    }

    .scene-tabs .nav-link {
      border-radius: 999px;
      border: 1px solid var(--line);
      color: var(--muted);
      background: var(--white);
      font-weight: 700;
    }

    .scene-tabs .nav-link.active {
      background: var(--ink);
      color: #fff;
      border-color: var(--ink);
    }

    .scene-strip {
      padding: 22px;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 14px;
    }

    .scene-chip {
      padding: 16px;
      border-radius: var(--radius);
      background: #fff7ef;
      border: 1px solid #f3ded0;
    }

    .review-wall {
      display: grid;
      grid-template-columns: 1fr 1.1fr 1fr;
      gap: 14px;
      align-items: start;
    }

    .review-bubble {
      padding: 18px;
      position: relative;
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .review-bubble:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow);
    }

    .avatar-line {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px;
    }

    .avatar {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: linear-gradient(135deg, #ffd4b7, #ff7f60);
      border: 2px solid #fff;
      box-shadow: 0 4px 12px rgba(255, 111, 79, .18);
    }

    .avatar.sage {
      background: linear-gradient(135deg, #dfead9, #6f8f72);
    }

    .avatar.wine {
      background: linear-gradient(135deg, #f1c6cf, #8b3145);
    }

    .stars {
      color: var(--amber);
      letter-spacing: 1px;
      font-size: 13px;
    }

    .news-layout {
      display: grid;
      grid-template-columns: 1.4fr .8fr;
      gap: 18px;
    }

    .news-list {
      overflow: hidden;
    }

    .news-item {
      display: grid;
      grid-template-columns: 112px 1fr auto;
      align-items: center;
      gap: 18px;
      padding: 18px;
      border-bottom: 1px solid var(--line);
    }

    .news-item:last-child {
      border-bottom: 0;
    }

    .news-date {
      font-weight: 800;
      color: var(--brand-strong);
      background: #fff3e7;
      border: 1px solid #f2d8c9;
      border-radius: var(--radius);
      padding: 10px;
      text-align: center;
    }

    .news-item h3 {
      font-size: 18px;
      margin: 0 0 5px;
      font-weight: 820;
    }

    .news-item p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .side-reco {
      padding: 20px;
    }

    .tag-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
      margin-top: 15px;
    }

    .onboard-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    .step-card {
      padding: 18px;
      border-radius: var(--radius);
      background: var(--white);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-sm);
    }

    .step-num {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--ink);
      color: #fff;
      font-weight: 800;
      margin-bottom: 12px;
    }

    .step-card h3 {
      font-size: 18px;
      margin: 0 0 8px;
      font-weight: 820;
    }

    .step-card p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .festival {
      background: linear-gradient(135deg, #fff0e5, #f6fff3);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .festival-grid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 18px;
      align-items: stretch;
    }

    .poster-block {
      padding: 28px;
      border-radius: var(--radius);
      background: #26211f;
      color: #fff;
      min-height: 320px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .poster-block p {
      color: rgba(255, 255, 255, .72);
    }

    .gift-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .gift-card {
      background: rgba(255, 255, 255, .86);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 20px;
      box-shadow: var(--shadow-sm);
    }

    .faq-wrap {
      padding: 10px;
    }

    .accordion-item {
      border: 0;
      border-bottom: 1px solid var(--line);
      background: transparent;
    }

    .accordion-item:last-child {
      border-bottom: 0;
    }

    .accordion-button {
      background: transparent;
      color: var(--ink);
      font-weight: 800;
      padding: 18px;
      box-shadow: none;
    }

    .accordion-button:not(.collapsed) {
      color: var(--brand-strong);
      background: #fff7ef;
      box-shadow: none;
    }

    .accordion-button:focus {
      box-shadow: 0 0 0 3px rgba(255, 178, 63, .25);
      border-color: transparent;
    }

    .accordion-body {
      color: var(--muted);
      padding: 0 18px 18px;
    }

    .limit-entry {
      padding-top: 0;
    }

    .cta-box {
      padding: 34px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px;
      align-items: center;
      background:
        linear-gradient(135deg, rgba(255, 111, 79, .10), rgba(255, 178, 63, .10)),
        var(--white);
    }

    .cta-box h2 {
      margin: 0 0 8px;
      font-size: 30px;
      font-weight: 880;
    }

    .cta-box p {
      margin: 0;
      color: var(--muted);
      max-width: 720px;
    }

    .site-footer {
      padding: 42px 0 30px;
      background: #201c1a;
      color: #fff;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr .8fr;
      gap: 26px;
      padding-bottom: 28px;
      border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .footer-grid p,
    .footer-bottom {
      color: rgba(255, 255, 255, .68);
      margin: 0;
    }

    .footer-title {
      font-weight: 850;
      margin-bottom: 12px;
    }

    .footer-links {
      display: grid;
      gap: 8px;
    }

    .footer-links a {
      color: rgba(255, 255, 255, .72);
    }

    .footer-links a:hover {
      color: #fff;
      transform: translateX(2px);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
      padding-top: 20px;
      font-size: 13px;
    }

    @media (max-width: 1024px) {
      h1 {
        font-size: 42px;
      }

      .hero-stage,
      .compare-area,
      .news-layout,
      .festival-grid {
        grid-template-columns: 1fr;
      }

      .tier-track,
      .guarantee-grid,
      .onboard-steps {
        grid-template-columns: repeat(2, 1fr);
      }

      .feature-grid {
        grid-template-columns: 1fr 1fr;
      }

      .feature-card.wide {
        grid-column: span 1;
      }

      .review-wall {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .desktop-nav,
      .nav-action {
        display: none;
      }

      .mobile-menu-btn {
        display: inline-flex;
      }

      .nav-shell {
        min-height: 68px;
      }

      main section {
        padding: 52px 0;
      }

      .hero {
        padding: 46px 0 56px;
      }

      h1 {
        font-size: 34px;
      }

      .hero-lead {
        font-size: 16px;
      }

      .section-head {
        display: block;
      }

      .section-head h2 {
        font-size: 28px;
      }

      .scene-strip,
      .review-wall,
      .footer-grid,
      .cta-box {
        grid-template-columns: 1fr;
      }

      .compare-row {
        grid-template-columns: 1.15fr .85fr;
      }

      .compare-row > div:nth-child(3),
      .compare-row > div:nth-child(4) {
        display: none;
      }

      .news-item {
        grid-template-columns: 1fr;
        gap: 10px;
      }

      .news-date {
        text-align: left;
        width: fit-content;
      }

      .cta-box {
        padding: 24px;
      }
    }

    @media (max-width: 520px) {
      .container-page {
        width: min(100% - 24px, var(--container));
      }

      h1 {
        font-size: 30px;
      }

      .hero-actions,
      .hero-metrics {
        flex-direction: column;
      }

      .btn-brand,
      .btn-soft,
      .btn-line {
        width: 100%;
      }

      .tier-track,
      .guarantee-grid,
      .feature-grid,
      .onboard-steps,
      .gift-grid {
        grid-template-columns: 1fr;
      }

      .brand-text {
        font-size: 16px;
        max-width: 240px;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .recommend-card h2,
      .recommend-card h3 {
        font-size: 20px;
      }
    }

/* roulang page: category1 */
:root {
      --color-bg: #fffaf6;
      --color-surface: #ffffff;
      --color-surface-soft: #fff1ea;
      --color-text: #23211f;
      --color-muted: #756d66;
      --color-faint: #9a9088;
      --color-line: #eadfd7;
      --color-primary: #f06f4f;
      --color-primary-dark: #d85436;
      --color-amber: #f5b64a;
      --color-sage: #7f9f86;
      --color-wine: #8d3f4f;
      --shadow-sm: 0 8px 22px rgba(54, 41, 32, .07);
      --shadow-md: 0 14px 36px rgba(54, 41, 32, .11);
      --radius-xs: 6px;
      --radius-sm: 8px;
      --radius-pill: 999px;
      --container: 1220px;
      --header-h: 78px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
      color: var(--color-text);
      background:
        radial-gradient(circle at 12% 12%, rgba(240, 111, 79, .06), transparent 28%),
        linear-gradient(180deg, #fffaf6 0%, #fff 38%, #fffaf6 100%);
      line-height: 1.72;
      letter-spacing: 0;
      text-rendering: optimizeLegibility;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .18s ease, border-color .18s ease, background-color .18s ease, transform .18s ease;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    .container-page {
      width: min(100% - 40px, var(--container));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 250, 246, .92);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(234, 223, 215, .9);
    }

    .nav-shell {
      min-height: var(--header-h);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .brand-mark {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-width: 0;
      color: var(--color-text);
      font-weight: 800;
    }

    .brand-dot {
      width: 13px;
      height: 13px;
      border-radius: 50%;
      background: var(--color-primary);
      box-shadow: 0 0 0 7px rgba(240, 111, 79, .12);
      flex: 0 0 auto;
    }

    .brand-text {
      font-size: 18px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-left: auto;
    }

    .nav-link-custom {
      position: relative;
      display: inline-flex;
      align-items: center;
      height: 40px;
      padding: 0 14px;
      border-radius: var(--radius-pill);
      color: var(--color-muted);
      font-size: 15px;
      font-weight: 700;
    }

    .nav-link-custom:hover,
    .nav-link-custom:focus {
      color: var(--color-text);
      background: rgba(240, 111, 79, .08);
      outline: none;
    }

    .nav-link-custom.active {
      color: var(--color-primary-dark);
      background: #fff;
      box-shadow: inset 0 0 0 1px rgba(240, 111, 79, .22);
    }

    .nav-link-custom.active::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: 5px;
      width: 18px;
      height: 2px;
      border-radius: var(--radius-pill);
      background: var(--color-primary);
      transform: translateX(-50%);
    }

    .nav-action,
    .btn-warm,
    .btn-quiet {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 44px;
      border-radius: var(--radius-pill);
      border: 1px solid transparent;
      font-weight: 800;
      white-space: nowrap;
      transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
    }

    .nav-action {
      padding: 0 18px;
      color: #fff;
      background: var(--color-text);
      box-shadow: var(--shadow-sm);
    }

    .nav-action:hover,
    .nav-action:focus {
      color: #fff;
      background: var(--color-primary-dark);
      transform: translateY(-1px);
      outline: none;
    }

    .mobile-menu-btn {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--color-line);
      border-radius: var(--radius-pill);
      color: var(--color-text);
      background: #fff;
      align-items: center;
      justify-content: center;
    }

    .mobile-menu-btn:focus {
      outline: 3px solid rgba(240, 111, 79, .2);
      outline-offset: 2px;
    }

    .offcanvas {
      background: #fffaf6;
    }

    .offcanvas-nav {
      display: grid;
      gap: 12px;
      padding-top: 12px;
    }

    .offcanvas-nav a {
      padding: 13px 14px;
      border-radius: var(--radius-sm);
      background: #fff;
      border: 1px solid var(--color-line);
      font-weight: 800;
      color: var(--color-text);
    }

    .offcanvas-nav a.active {
      color: var(--color-primary-dark);
      border-color: rgba(240, 111, 79, .35);
      background: var(--color-surface-soft);
    }

    main {
      overflow: hidden;
    }

    .section {
      padding: 72px 0;
    }

    .section-tight {
      padding: 48px 0;
    }

    .breadcrumb-line {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
      color: var(--color-muted);
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 18px;
    }

    .breadcrumb-line a:hover {
      color: var(--color-primary-dark);
    }

    .category-hero {
      padding: 54px 0 38px;
      border-bottom: 1px solid rgba(234, 223, 215, .9);
    }

    .hero-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(320px, .72fr);
      gap: 34px;
      align-items: stretch;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 12px;
      border-radius: var(--radius-pill);
      color: var(--color-primary-dark);
      background: rgba(240, 111, 79, .1);
      border: 1px solid rgba(240, 111, 79, .18);
      font-size: 13px;
      font-weight: 800;
      margin-bottom: 18px;
    }

    h1,
    h2,
    h3 {
      margin: 0;
      color: var(--color-text);
      line-height: 1.18;
      letter-spacing: 0;
    }

    h1 {
      max-width: 820px;
      font-size: clamp(36px, 4.8vw, 62px);
      font-weight: 900;
    }

    h2 {
      font-size: clamp(26px, 3vw, 38px);
      font-weight: 900;
    }

    h3 {
      font-size: 20px;
      font-weight: 900;
    }

    .lead-text {
      max-width: 780px;
      margin: 18px 0 0;
      color: var(--color-muted);
      font-size: 18px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }

    .btn-warm {
      padding: 0 22px;
      color: #fff;
      background: var(--color-primary);
      box-shadow: 0 10px 24px rgba(240, 111, 79, .24);
    }

    .btn-warm:hover,
    .btn-warm:focus {
      color: #fff;
      background: var(--color-primary-dark);
      transform: translateY(-1px);
      box-shadow: 0 14px 30px rgba(216, 84, 54, .28);
      outline: none;
    }

    .btn-quiet {
      padding: 0 20px;
      color: var(--color-text);
      background: #fff;
      border-color: var(--color-line);
    }

    .btn-quiet:hover,
    .btn-quiet:focus {
      color: var(--color-primary-dark);
      border-color: rgba(240, 111, 79, .35);
      transform: translateY(-1px);
      outline: none;
    }

    .download-card {
      border-radius: var(--radius-sm);
      background: var(--color-surface);
      border: 1px solid var(--color-line);
      box-shadow: var(--shadow-md);
      overflow: hidden;
    }

    .report-cover {
      min-height: 205px;
      padding: 22px;
      background:
        linear-gradient(135deg, rgba(240, 111, 79, .95), rgba(245, 182, 74, .82)),
        repeating-linear-gradient(45deg, rgba(255,255,255,.12) 0, rgba(255,255,255,.12) 1px, transparent 1px, transparent 12px);
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .report-cover strong {
      font-size: 28px;
      line-height: 1.18;
      max-width: 320px;
    }

    .report-cover span {
      display: inline-flex;
      width: fit-content;
      padding: 7px 11px;
      border-radius: var(--radius-pill);
      background: rgba(255, 255, 255, .22);
      font-size: 13px;
      font-weight: 800;
    }

    .download-body {
      padding: 22px;
    }

    .toc-list {
      list-style: none;
      padding: 0;
      margin: 0 0 18px;
      display: grid;
      gap: 10px;
    }

    .toc-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: var(--color-muted);
      font-weight: 700;
      font-size: 14px;
    }

    .toc-list i {
      color: var(--color-sage);
      margin-top: 2px;
    }

    .lead-form {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 10px;
    }

    .lead-form input {
      min-height: 46px;
      border-radius: var(--radius-pill);
      border: 1px solid var(--color-line);
      background: #fffaf6;
      padding: 0 16px;
      color: var(--color-text);
      outline: none;
    }

    .lead-form input:focus {
      border-color: rgba(240, 111, 79, .55);
      box-shadow: 0 0 0 4px rgba(240, 111, 79, .12);
    }

    .notice-strip {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 16px;
      align-items: center;
      padding: 18px 20px;
      border: 1px solid rgba(240, 111, 79, .18);
      border-radius: var(--radius-sm);
      background: #fff7f1;
      box-shadow: var(--shadow-sm);
    }

    .notice-icon {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(240, 111, 79, .12);
      color: var(--color-primary-dark);
      font-size: 20px;
    }

    .notice-strip p {
      margin: 0;
      color: var(--color-muted);
      font-weight: 700;
    }

    .filter-panel {
      padding: 18px;
      border-radius: var(--radius-sm);
      background: #fff;
      border: 1px solid var(--color-line);
      box-shadow: var(--shadow-sm);
    }

    .filter-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      flex-wrap: wrap;
    }

    .chip-wrap {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .chip {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 36px;
      padding: 0 13px;
      border-radius: var(--radius-pill);
      border: 1px solid var(--color-line);
      color: var(--color-muted);
      background: #fffaf6;
      font-size: 14px;
      font-weight: 800;
      cursor: pointer;
      transition: all .18s ease;
    }

    .chip:hover,
    .chip:focus,
    .chip.active {
      color: var(--color-primary-dark);
      border-color: rgba(240, 111, 79, .38);
      background: var(--color-surface-soft);
      outline: none;
    }

    .sort-select {
      min-height: 40px;
      border-radius: var(--radius-pill);
      border: 1px solid var(--color-line);
      background-color: #fff;
      color: var(--color-text);
      padding: 0 38px 0 14px;
      font-weight: 800;
      outline: none;
    }

    .sort-select:focus {
      border-color: rgba(240, 111, 79, .55);
      box-shadow: 0 0 0 4px rgba(240, 111, 79, .12);
    }

    .feed-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin-top: 22px;
    }

    .feed-card {
      border-radius: var(--radius-sm);
      background: #fff;
      border: 1px solid var(--color-line);
      box-shadow: var(--shadow-sm);
      overflow: hidden;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }

    .feed-card:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
      border-color: rgba(240, 111, 79, .22);
    }

    .thumb {
      position: relative;
      min-height: 168px;
      padding: 18px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background: linear-gradient(135deg, #fff1ea, #f8eadb);
      overflow: hidden;
    }

    .thumb::before {
      content: "";
      position: absolute;
      inset: 18px 18px auto auto;
      width: 92px;
      height: 92px;
      border-radius: 50%;
      background: rgba(240, 111, 79, .13);
    }

    .thumb.sage {
      background: linear-gradient(135deg, #eef5ed, #fff7ec);
    }

    .thumb.amber {
      background: linear-gradient(135deg, #fff2c8, #fff8ef);
    }

    .thumb.wine {
      background: linear-gradient(135deg, #fae7ec, #fff5ee);
    }

    .heat {
      position: relative;
      z-index: 1;
      display: inline-flex;
      width: fit-content;
      align-items: center;
      gap: 6px;
      padding: 6px 10px;
      border-radius: var(--radius-pill);
      background: rgba(255, 255, 255, .76);
      color: var(--color-primary-dark);
      font-size: 12px;
      font-weight: 900;
      backdrop-filter: blur(8px);
    }

    .thumb-title {
      position: relative;
      z-index: 1;
      font-size: 24px;
      font-weight: 900;
      line-height: 1.18;
      max-width: 76%;
    }

    .feed-body {
      padding: 18px;
    }

    .tag-line {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 12px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      min-height: 26px;
      padding: 0 9px;
      border-radius: var(--radius-pill);
      background: #fff3eb;
      color: var(--color-primary-dark);
      font-size: 12px;
      font-weight: 900;
    }

    .tag.green {
      background: #eef5ed;
      color: #55765d;
    }

    .tag.dark {
      background: #f1eeee;
      color: var(--color-text);
    }

    .feed-body p {
      margin: 10px 0 14px;
      color: var(--color-muted);
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .meta-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      color: var(--color-faint);
      font-size: 13px;
      font-weight: 800;
      border-top: 1px solid var(--color-line);
      padding-top: 14px;
    }

    .meta-row a {
      color: var(--color-text);
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-weight: 900;
    }

    .meta-row a:hover {
      color: var(--color-primary-dark);
    }

    .tag-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 18px;
    }

    .tag-cloud a {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 0 13px;
      border-radius: var(--radius-pill);
      background: #fff;
      border: 1px solid var(--color-line);
      color: var(--color-muted);
      font-size: 14px;
      font-weight: 800;
    }

    .tag-cloud a:hover {
      color: var(--color-primary-dark);
      border-color: rgba(240, 111, 79, .36);
      transform: translateY(-1px);
    }

    .social-band {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 24px;
      align-items: center;
      padding: 28px;
      border-radius: var(--radius-sm);
      background: #25211f;
      color: #fff;
      box-shadow: var(--shadow-md);
    }

    .social-band h2,
    .social-band h3 {
      color: #fff;
    }

    .social-band p {
      color: rgba(255, 255, 255, .72);
      margin: 12px 0 0;
    }

    .avatar-wall {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
      margin-top: 22px;
    }

    .avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #fff1ea;
      color: var(--color-primary-dark);
      border: 2px solid rgba(255, 255, 255, .82);
      font-weight: 900;
    }

    .bubble-grid {
      display: grid;
      gap: 12px;
    }

    .bubble {
      padding: 16px;
      border-radius: var(--radius-sm);
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .12);
    }

    .bubble strong {
      color: #fff;
      display: block;
      margin-bottom: 6px;
    }

    .bubble span {
      color: rgba(255, 255, 255, .68);
      font-size: 14px;
      font-weight: 700;
    }

    .compare-card {
      border: 1px solid var(--color-line);
      background: #fff;
      border-radius: var(--radius-sm);
      box-shadow: var(--shadow-sm);
      overflow: hidden;
    }

    .compare-row {
      display: grid;
      grid-template-columns: 1.1fr 1fr 1fr;
      border-bottom: 1px solid var(--color-line);
    }

    .compare-row:last-child {
      border-bottom: 0;
    }

    .compare-row > div {
      padding: 18px;
      color: var(--color-muted);
      font-weight: 700;
      border-right: 1px solid var(--color-line);
    }

    .compare-row > div:last-child {
      border-right: 0;
    }

    .compare-row.header > div {
      background: #fff7f1;
      color: var(--color-text);
      font-weight: 900;
    }

    .compare-row i {
      color: var(--color-sage);
      margin-right: 7px;
    }

    .accordion {
      --bs-accordion-border-color: var(--color-line);
      --bs-accordion-border-radius: var(--radius-sm);
      --bs-accordion-inner-border-radius: var(--radius-sm);
      --bs-accordion-bg: #fff;
      --bs-accordion-btn-focus-box-shadow: 0 0 0 4px rgba(240, 111, 79, .12);
      --bs-accordion-active-bg: #fff7f1;
      --bs-accordion-active-color: var(--color-primary-dark);
    }

    .accordion-button {
      font-weight: 900;
      color: var(--color-text);
      letter-spacing: 0;
      padding: 18px 20px;
    }

    .accordion-body {
      color: var(--color-muted);
      padding: 0 20px 20px;
    }

    .cta-panel {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 22px;
      align-items: center;
      padding: 30px;
      border-radius: var(--radius-sm);
      background: linear-gradient(135deg, #fff1ea, #fff9f3);
      border: 1px solid rgba(240, 111, 79, .18);
      box-shadow: var(--shadow-sm);
    }

    .cta-panel p {
      margin: 10px 0 0;
      color: var(--color-muted);
    }

    .site-footer {
      padding: 54px 0 26px;
      background: #24211f;
      color: rgba(255, 255, 255, .72);
    }

    .site-footer .brand-text,
    .site-footer .footer-title {
      color: #fff;
    }

    .site-footer p {
      max-width: 440px;
      margin: 0;
      color: rgba(255, 255, 255, .68);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr .7fr .7fr;
      gap: 34px;
    }

    .footer-title {
      font-weight: 900;
      margin-bottom: 13px;
    }

    .footer-links {
      display: grid;
      gap: 9px;
    }

    .footer-links a {
      color: rgba(255, 255, 255, .68);
      width: fit-content;
    }

    .footer-links a:hover {
      color: #fff;
      transform: translateX(2px);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      margin-top: 36px;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, .12);
      color: rgba(255, 255, 255, .52);
      font-size: 14px;
    }

    @media (max-width: 1024px) {
      .hero-layout,
      .social-band {
        grid-template-columns: 1fr;
      }

      .feed-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .download-card {
        max-width: 620px;
      }
    }

    @media (max-width: 768px) {
      :root {
        --header-h: 68px;
      }

      .container-page {
        width: min(100% - 28px, var(--container));
      }

      .desktop-nav,
      .nav-action {
        display: none;
      }

      .mobile-menu-btn {
        display: inline-flex;
      }

      .brand-text {
        max-width: 220px;
        font-size: 16px;
      }

      .category-hero {
        padding: 36px 0 30px;
      }

      h1 {
        font-size: 38px;
      }

      .lead-text {
        font-size: 16px;
      }

      .section {
        padding: 54px 0;
      }

      .notice-strip,
      .cta-panel {
        grid-template-columns: 1fr;
      }

      .feed-grid {
        grid-template-columns: 1fr;
      }

      .filter-row {
        align-items: stretch;
      }

      .chip-wrap {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
      }

      .chip {
        flex: 0 0 auto;
      }

      .compare-row {
        grid-template-columns: 1fr;
      }

      .compare-row > div {
        border-right: 0;
        border-bottom: 1px solid var(--color-line);
      }

      .compare-row > div:last-child {
        border-bottom: 0;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 520px) {
      .brand-text {
        max-width: 176px;
      }

      h1 {
        font-size: 32px;
      }

      h2 {
        font-size: 26px;
      }

      .hero-actions,
      .lead-form {
        grid-template-columns: 1fr;
        flex-direction: column;
      }

      .btn-warm,
      .btn-quiet,
      .lead-form button {
        width: 100%;
      }

      .report-cover strong {
        font-size: 24px;
      }

      .thumb-title {
        max-width: 90%;
        font-size: 22px;
      }

      .social-band,
      .cta-panel {
        padding: 22px;
      }
    }
