/* roulang page: index */
:root {
      --ink: #171412;
      --charcoal: #28231f;
      --coal-soft: #3b342e;
      --amber: #d8902f;
      --amber-dark: #b87322;
      --amber-soft: #fff2dc;
      --paper: #fbf8f2;
      --mist: #f1eee8;
      --white: #ffffff;
      --text: #26221f;
      --muted: #736a61;
      --line: rgba(39, 34, 30, .12);
      --line-strong: rgba(39, 34, 30, .2);
      --green: #5d8262;
      --red: #b65b50;
      --radius-xl: 18px;
      --radius-lg: 14px;
      --radius-pill: 999px;
      --shadow: 0 18px 50px rgba(20, 18, 16, .08);
      --shadow-hover: 0 22px 60px rgba(20, 18, 16, .13);
      --container: 1200px;
      --nav-height: 72px;
      --ease: all .22s ease;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 96px;
    }

    body {
      margin: 0;
      font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Helvetica Neue", Arial, sans-serif;
      color: var(--text);
      background: var(--paper);
      line-height: 1.75;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: var(--ease);
    }

    a:hover,
    a:focus {
      color: var(--amber-dark);
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    .button {
      font-family: inherit;
    }

    button:focus-visible,
    a:focus-visible,
    summary:focus-visible,
    input:focus-visible {
      outline: 2px solid var(--amber);
      outline-offset: 3px;
      border-radius: 10px;
    }

    .site-container {
      width: min(calc(100% - 40px), var(--container));
      margin: 0 auto;
    }

    .section {
      padding: 92px 0;
      position: relative;
    }

    .section-tight {
      padding: 68px 0;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 12px;
      border-radius: var(--radius-pill);
      background: var(--amber-soft);
      color: #7b4b14;
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 16px;
    }

    .section-kicker::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--amber);
    }

    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 28px;
      margin-bottom: 34px;
    }

    .section-title {
      margin: 0;
      color: var(--ink);
      font-size: clamp(28px, 4vw, 38px);
      line-height: 1.25;
      font-weight: 800;
      letter-spacing: 0;
    }

    .section-desc {
      max-width: 600px;
      margin: 10px 0 0;
      color: var(--muted);
      font-size: 16px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 48px;
      padding: 13px 22px;
      border-radius: var(--radius-pill);
      font-weight: 800;
      font-size: 15px;
      border: 1px solid transparent;
      cursor: pointer;
      transition: var(--ease);
      line-height: 1.2;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--amber);
      color: #1f160d;
      box-shadow: 0 12px 28px rgba(216, 144, 47, .24);
    }

    .btn-primary:hover,
    .btn-primary:focus {
      background: var(--amber-dark);
      color: #fff;
      transform: translateY(-1px);
      box-shadow: 0 16px 34px rgba(184, 115, 34, .28);
    }

    .btn-dark {
      background: var(--ink);
      color: #fff;
    }

    .btn-dark:hover,
    .btn-dark:focus {
      background: var(--charcoal);
      color: #fff;
      transform: translateY(-1px);
      box-shadow: var(--shadow);
    }

    .btn-ghost {
      background: rgba(255, 255, 255, .78);
      color: var(--ink);
      border-color: var(--line-strong);
    }

    .btn-ghost:hover,
    .btn-ghost:focus {
      background: #fff;
      color: var(--ink);
      border-color: var(--amber);
      transform: translateY(-1px);
    }

    .icon-arrow {
      font-size: 18px;
      line-height: 1;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 10px;
      border-radius: var(--radius-pill);
      background: rgba(216, 144, 47, .12);
      color: #7b4b14;
      font-size: 12px;
      font-weight: 800;
      line-height: 1.3;
    }

    .tag-dark {
      background: rgba(23, 20, 18, .08);
      color: var(--ink);
    }

    .site-header {
      position: fixed;
      top: 18px;
      left: 0;
      right: 0;
      z-index: 50;
      pointer-events: none;
    }

    .nav-shell {
      pointer-events: auto;
      width: min(calc(100% - 32px), var(--container));
      margin: 0 auto;
      min-height: var(--nav-height);
      padding: 9px 12px 9px 18px;
      border-radius: var(--radius-pill);
      background: rgba(255, 255, 255, .84);
      border: 1px solid rgba(255, 255, 255, .72);
      box-shadow: 0 16px 48px rgba(20, 18, 16, .1);
      backdrop-filter: blur(14px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      transition: var(--ease);
    }

    .site-header.is-scrolled .nav-shell {
      background: rgba(255, 255, 255, .94);
      border-color: rgba(39, 34, 30, .08);
      box-shadow: 0 18px 50px rgba(20, 18, 16, .14);
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-width: 0;
      font-weight: 900;
      color: var(--ink);
      letter-spacing: 0;
    }

    .brand-mark {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background:
        linear-gradient(135deg, rgba(216, 144, 47, .95), rgba(255, 222, 156, .92)),
        var(--amber);
      color: var(--ink);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .5);
      flex: 0 0 auto;
    }

    .brand-text {
      max-width: 300px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 6px;
      margin: 0;
      list-style: none;
    }

    .nav-links a {
      display: inline-flex;
      align-items: center;
      min-height: 42px;
      padding: 10px 16px;
      border-radius: var(--radius-pill);
      color: var(--muted);
      font-weight: 800;
      font-size: 14px;
    }

    .nav-links a:hover {
      background: rgba(216, 144, 47, .12);
      color: var(--ink);
    }

    .nav-links a.active {
      background: var(--ink);
      color: #fff;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border: 0;
      border-radius: 50%;
      background: var(--ink);
      color: #fff;
      font-size: 20px;
      cursor: pointer;
    }

    .mobile-menu {
      display: none;
      width: min(calc(100% - 32px), var(--container));
      margin: 10px auto 0;
      padding: 12px;
      border-radius: 22px;
      background: rgba(255, 255, 255, .96);
      box-shadow: var(--shadow);
      border: 1px solid var(--line);
      pointer-events: auto;
    }

    .mobile-menu a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 46px;
      padding: 10px 14px;
      border-radius: 16px;
      color: var(--ink);
      font-weight: 800;
    }

    .mobile-menu a + a {
      margin-top: 6px;
    }

    .mobile-menu a.active,
    .mobile-menu a:hover {
      background: var(--amber-soft);
      color: var(--ink);
    }

    .hero {
      min-height: 88vh;
      padding: 126px 0 54px;
      background:
        radial-gradient(circle at 18% 16%, rgba(216, 144, 47, .18), transparent 28%),
        linear-gradient(135deg, #f8f1e6 0%, #fbf8f2 45%, #ebe5dc 100%);
      display: flex;
      align-items: center;
    }

    .hero-stage {
      display: grid;
      grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
      gap: 46px;
      align-items: center;
    }

    .hero-copy {
      max-width: 620px;
    }

    .hero-label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 7px 13px;
      border-radius: var(--radius-pill);
      background: rgba(255, 255, 255, .72);
      border: 1px solid rgba(39, 34, 30, .1);
      color: var(--coal-soft);
      font-weight: 800;
      font-size: 13px;
      margin-bottom: 18px;
    }

    .hero h1 {
      margin: 0;
      color: var(--ink);
      font-size: clamp(34px, 5vw, 56px);
      line-height: 1.15;
      font-weight: 900;
      letter-spacing: 0;
    }

    .hero-intro {
      margin: 20px 0 0;
      color: #514940;
      font-size: 17px;
      max-width: 610px;
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 28px;
    }

    .trust-strip {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 24px;
    }

    .trust-item {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: var(--radius-pill);
      background: rgba(255, 255, 255, .7);
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
      border: 1px solid rgba(39, 34, 30, .08);
    }

    .trust-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
    }

    .visual-panel {
      position: relative;
      min-height: 500px;
      padding: 22px;
      border-radius: 26px;
      background:
        linear-gradient(145deg, rgba(23, 20, 18, .96), rgba(48, 41, 34, .94)),
        var(--ink);
      box-shadow: 0 28px 80px rgba(20, 18, 16, .24);
      overflow: hidden;
      color: #fff;
    }

    .visual-panel::before,
    .visual-panel::after {
      content: "";
      position: absolute;
      top: 50%;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: var(--paper);
      transform: translateY(-50%);
      z-index: 2;
    }

    .visual-panel::before {
      left: -17px;
    }

    .visual-panel::after {
      right: -17px;
    }

    .visual-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding-bottom: 18px;
      border-bottom: 1px dashed rgba(255, 255, 255, .22);
      position: relative;
      z-index: 3;
    }

    .visual-title {
      font-size: 18px;
      font-weight: 900;
    }

    .visual-code {
      color: #f3d5a7;
      font-size: 13px;
      font-weight: 800;
    }

    .matrix {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 16px;
      margin-top: 22px;
      position: relative;
      z-index: 3;
    }

    .matrix-card {
      padding: 18px;
      border-radius: 18px;
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .12);
      min-height: 132px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .matrix-card.large {
      grid-row: span 2;
      min-height: 280px;
      background:
        linear-gradient(180deg, rgba(216, 144, 47, .22), rgba(255, 255, 255, .08));
    }

    .matrix-num {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: var(--amber);
      color: #1f160d;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      margin-bottom: 18px;
    }

    .matrix-card h2,
    .matrix-card h3 {
      margin: 0;
      color: #fff;
      font-size: 20px;
      line-height: 1.35;
      font-weight: 900;
    }

    .matrix-card p {
      margin: 10px 0 0;
      color: rgba(255, 255, 255, .72);
      font-size: 14px;
    }

    .signal-row {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 8px;
      margin-top: 18px;
    }

    .signal-row span {
      height: 34px;
      border-radius: 10px;
      background: rgba(255, 255, 255, .12);
      border: 1px solid rgba(255, 255, 255, .1);
    }

    .catalog-section {
      background: var(--paper);
    }

    .hot-grid {
      display: grid;
      grid-template-columns: 1.25fr repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .entry-card {
      position: relative;
      padding: 22px;
      border-radius: var(--radius-xl);
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: 0 12px 32px rgba(20, 18, 16, .05);
      min-height: 230px;
      overflow: hidden;
      transition: var(--ease);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .entry-card:hover {
      transform: translateY(-2px);
      border-color: rgba(216, 144, 47, .48);
      box-shadow: var(--shadow-hover);
    }

    .entry-card::after {
      content: "";
      position: absolute;
      top: 0;
      right: 74px;
      bottom: 0;
      border-right: 1px dashed rgba(39, 34, 30, .12);
    }

    .entry-card.featured {
      grid-row: span 2;
      min-height: 478px;
      background:
        linear-gradient(180deg, #fff 0%, #fff7eb 100%);
    }

    .entry-no {
      color: var(--amber-dark);
      font-weight: 900;
      font-size: 13px;
      margin-bottom: 12px;
    }

    .entry-card h3 {
      margin: 0;
      color: var(--ink);
      font-size: 22px;
      line-height: 1.35;
      font-weight: 900;
      letter-spacing: 0;
      max-width: calc(100% - 48px);
    }

    .entry-card p {
      margin: 12px 0 18px;
      color: var(--muted);
      font-size: 15px;
    }

    .entry-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-top: auto;
      position: relative;
      z-index: 2;
    }

    .circle-link {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--ink);
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex: 0 0 auto;
    }

    .circle-link:hover {
      background: var(--amber);
      color: var(--ink);
      transform: translateX(2px);
    }

    .recommend-section {
      background: var(--mist);
    }

    .recommend-layout {
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      gap: 22px;
      align-items: stretch;
    }

    .intro-card {
      padding: 30px;
      border-radius: 22px;
      background: var(--ink);
      color: #fff;
      min-height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      overflow: hidden;
      position: relative;
    }

    .intro-card::after {
      content: "";
      position: absolute;
      right: -40px;
      bottom: -40px;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      border: 28px solid rgba(216, 144, 47, .16);
    }

    .intro-card h2 {
      margin: 0;
      font-size: 32px;
      line-height: 1.25;
      color: #fff;
      font-weight: 900;
    }

    .intro-card p {
      margin: 14px 0 24px;
      color: rgba(255, 255, 255, .76);
    }

    .step-list {
      display: grid;
      gap: 14px;
    }

    .step-item {
      display: grid;
      grid-template-columns: 48px 1fr;
      gap: 14px;
      padding: 18px;
      border-radius: var(--radius-lg);
      background: #fff;
      border: 1px solid var(--line);
      transition: var(--ease);
    }

    .step-item:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow);
    }

    .step-index {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      background: var(--amber-soft);
      color: var(--amber-dark);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
    }

    .step-item h3 {
      margin: 0;
      font-size: 19px;
      color: var(--ink);
      font-weight: 900;
    }

    .step-item p {
      margin: 5px 0 0;
      color: var(--muted);
      font-size: 15px;
    }

    .news-section {
      background: var(--paper);
    }

    .news-layout {
      display: grid;
      grid-template-columns: 1.3fr .7fr;
      gap: 22px;
      align-items: start;
    }

    .news-list {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 22px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(20, 18, 16, .04);
    }

    .news-link {
      display: grid;
      grid-template-columns: 112px 1fr auto;
      gap: 18px;
      align-items: center;
      padding: 20px 22px;
      border-bottom: 1px solid var(--line);
    }

    .news-link:last-child {
      border-bottom: 0;
    }

    .news-link:hover {
      background: #fffaf1;
      color: var(--ink);
    }

    .news-date {
      color: var(--amber-dark);
      font-weight: 900;
      font-size: 13px;
    }

    .news-title {
      font-weight: 900;
      color: var(--ink);
      line-height: 1.4;
    }

    .news-summary {
      margin-top: 4px;
      color: var(--muted);
      font-size: 14px;
    }

    .side-note {
      padding: 24px;
      border-radius: 22px;
      background: var(--charcoal);
      color: #fff;
      border: 1px solid rgba(255, 255, 255, .08);
    }

    .side-note h3 {
      margin: 0 0 12px;
      color: #fff;
      font-size: 22px;
      font-weight: 900;
    }

    .side-note p {
      color: rgba(255, 255, 255, .72);
      margin: 0 0 18px;
    }

    .mini-list {
      display: grid;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .mini-list li {
      padding: 12px 0;
      border-top: 1px solid rgba(255, 255, 255, .12);
      color: rgba(255, 255, 255, .82);
      font-size: 14px;
    }

    .review-section {
      background: #fff;
    }

    .orbit {
      background: transparent;
    }

    .orbit-container {
      min-height: 255px;
    }

    .orbit-slide {
      padding: 2px;
    }

    .review-card {
      display: grid;
      grid-template-columns: 92px 1fr;
      gap: 24px;
      padding: 30px;
      border-radius: 24px;
      background: var(--paper);
      border: 1px solid var(--line);
      min-height: 236px;
      align-items: center;
    }

    .review-no {
      width: 70px;
      height: 70px;
      border-radius: 18px;
      background: var(--ink);
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      font-weight: 900;
      position: relative;
    }

    .review-no::after {
      content: "";
      position: absolute;
      right: -18px;
      top: 0;
      bottom: 0;
      border-right: 1px dashed rgba(39, 34, 30, .18);
    }

    .review-text {
      margin: 0 0 16px;
      color: var(--text);
      font-size: 18px;
      line-height: 1.75;
      font-weight: 700;
    }

    .review-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
      color: var(--muted);
      font-size: 14px;
    }

    .orbit-bullets button {
      width: 9px;
      height: 9px;
      background: rgba(39, 34, 30, .24);
    }

    .orbit-bullets button.is-active {
      background: var(--amber);
    }

    .orbit-previous,
    .orbit-next {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: rgba(23, 20, 18, .72);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: var(--ease);
    }

    .orbit-previous:hover,
    .orbit-next:hover {
      background: var(--amber);
      color: var(--ink);
    }

    .guard-section {
      background: var(--mist);
      padding: 44px 0;
    }

    .guard-bar {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border: 1px solid var(--line);
      border-radius: 22px;
      background: rgba(255, 255, 255, .62);
      overflow: hidden;
      box-shadow: 0 12px 38px rgba(20, 18, 16, .04);
    }

    .guard-item {
      display: grid;
      grid-template-columns: 44px 1fr;
      gap: 12px;
      align-items: center;
      padding: 22px;
      border-right: 1px solid var(--line);
    }

    .guard-item:last-child {
      border-right: 0;
    }

    .guard-icon {
      width: 44px;
      height: 44px;
      border-radius: 14px;
      background: #fff;
      color: var(--amber-dark);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      border: 1px solid rgba(216, 144, 47, .25);
    }

    .guard-item h3 {
      margin: 0;
      font-size: 16px;
      line-height: 1.25;
      color: var(--ink);
      font-weight: 900;
    }

    .guard-item p {
      margin: 2px 0 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.45;
    }

    .cta-section {
      background: var(--paper);
    }

    .cta-panel {
      position: relative;
      padding: 46px;
      border-radius: 28px;
      background:
        linear-gradient(135deg, rgba(23, 20, 18, .98), rgba(54, 47, 39, .98));
      color: #fff;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 34px;
      align-items: center;
      box-shadow: 0 24px 70px rgba(20, 18, 16, .2);
    }

    .cta-panel::after {
      content: "";
      position: absolute;
      inset: 18px;
      border: 1px dashed rgba(255, 255, 255, .16);
      border-radius: 22px;
      pointer-events: none;
    }

    .cta-panel h2 {
      margin: 0;
      color: #fff;
      font-size: clamp(28px, 4vw, 40px);
      line-height: 1.25;
      font-weight: 900;
    }

    .cta-panel p {
      margin: 12px 0 0;
      color: rgba(255, 255, 255, .72);
      max-width: 700px;
    }

    .cta-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      position: relative;
      z-index: 2;
    }

    .share-section {
      padding: 64px 0;
      background: #fff;
    }

    .share-grid {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: 22px;
      align-items: stretch;
    }

    .share-card,
    .filter-card {
      padding: 26px;
      border-radius: 22px;
      border: 1px solid var(--line);
      background: var(--paper);
    }

    .share-card h2,
    .filter-card h3 {
      margin: 0 0 10px;
      color: var(--ink);
      font-weight: 900;
    }

    .share-card p,
    .filter-card p {
      margin: 0;
      color: var(--muted);
    }

    .chip-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 18px;
    }

    .chip {
      display: inline-flex;
      align-items: center;
      min-height: 38px;
      padding: 8px 13px;
      border-radius: var(--radius-pill);
      background: #fff;
      border: 1px solid var(--line);
      color: var(--ink);
      font-weight: 800;
      font-size: 13px;
      transition: var(--ease);
    }

    .chip:hover {
      border-color: var(--amber);
      transform: translateY(-1px);
    }

    .faq-section {
      background: var(--paper);
    }

    .accordion {
      background: transparent;
    }

    .accordion-item {
      margin-bottom: 12px;
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid var(--line);
      background: #fff;
      box-shadow: 0 8px 24px rgba(20, 18, 16, .035);
    }

    .accordion-title {
      padding: 20px 56px 20px 22px;
      color: var(--ink);
      font-size: 17px;
      font-weight: 900;
      border: 0;
      line-height: 1.5;
    }

    .accordion-title:hover,
    .accordion-title:focus {
      background: #fffaf1;
      color: var(--ink);
    }

    .accordion-content {
      border: 0;
      padding: 0 22px 22px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.8;
      position: relative;
    }

    .accordion-content::before {
      content: "";
      display: block;
      width: 4px;
      height: calc(100% - 22px);
      background: var(--amber);
      border-radius: 4px;
      position: absolute;
      left: 0;
      top: 0;
    }

    .site-footer {
      background: var(--ink);
      color: rgba(255, 255, 255, .76);
      padding: 58px 0 26px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.15fr .85fr .85fr;
      gap: 34px;
      padding-bottom: 34px;
      border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: #fff;
      font-size: 18px;
      font-weight: 900;
      margin-bottom: 14px;
    }

    .footer-brand .brand-mark {
      width: 36px;
      height: 36px;
    }

    .footer-text {
      max-width: 460px;
      margin: 0;
      color: rgba(255, 255, 255, .66);
    }

    .footer-title {
      color: #fff;
      font-weight: 900;
      margin-bottom: 12px;
    }

    .footer-links {
      display: grid;
      gap: 9px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .footer-links a {
      color: rgba(255, 255, 255, .68);
      font-size: 14px;
    }

    .footer-links a:hover {
      color: #f2c982;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 18px;
      padding-top: 22px;
      color: rgba(255, 255, 255, .52);
      font-size: 13px;
      flex-wrap: wrap;
    }

    @media (max-width: 1024px) {
      .hero-stage,
      .recommend-layout,
      .news-layout,
      .share-grid {
        grid-template-columns: 1fr;
      }

      .hero {
        min-height: auto;
        padding-top: 116px;
      }

      .visual-panel {
        min-height: 430px;
      }

      .hot-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .entry-card.featured {
        grid-column: span 2;
        min-height: 300px;
      }

      .guard-bar {
        grid-template-columns: repeat(2, 1fr);
      }

      .guard-item:nth-child(2) {
        border-right: 0;
      }

      .guard-item:nth-child(1),
      .guard-item:nth-child(2) {
        border-bottom: 1px solid var(--line);
      }

      .cta-panel {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .footer-grid > div:first-child {
        grid-column: span 2;
      }
    }

    @media (max-width: 780px) {
      .nav-links,
      .nav-actions .btn {
        display: none;
      }

      .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }

      .mobile-menu.is-open {
        display: block;
      }

      .brand-text {
        max-width: 210px;
      }

      .section {
        padding: 62px 0;
      }

      .section-head {
        display: block;
      }

      .hero {
        padding: 108px 0 42px;
      }

      .hero-actions .btn {
        width: 100%;
      }

      .visual-panel {
        min-height: auto;
        padding: 18px;
      }

      .matrix {
        grid-template-columns: 1fr;
      }

      .matrix-card.large {
        min-height: 220px;
      }

      .hot-grid {
        grid-template-columns: 1fr;
      }

      .entry-card.featured {
        grid-column: auto;
      }

      .news-link {
        grid-template-columns: 1fr;
        gap: 8px;
      }

      .review-card {
        grid-template-columns: 1fr;
        padding: 24px;
      }

      .review-no::after {
        display: none;
      }

      .orbit-container {
        min-height: 360px;
      }

      .cta-panel {
        padding: 34px 24px;
      }

      .cta-actions .btn {
        width: 100%;
      }

      .footer-grid,
      .footer-grid > div:first-child {
        grid-template-columns: 1fr;
        grid-column: auto;
      }
    }

    @media (max-width: 520px) {
      .site-container {
        width: min(calc(100% - 28px), var(--container));
      }

      .nav-shell {
        width: min(calc(100% - 20px), var(--container));
        padding-left: 12px;
      }

      .brand-mark {
        width: 34px;
        height: 34px;
      }

      .brand-text {
        max-width: 170px;
        font-size: 14px;
      }

      .hero h1 {
        font-size: 32px;
      }

      .hero-intro,
      .section-desc {
        font-size: 15px;
      }

      .trust-strip {
        gap: 8px;
      }

      .trust-item {
        width: 100%;
      }

      .signal-row {
        grid-template-columns: repeat(3, 1fr);
      }

      .entry-card {
        min-height: 220px;
      }

      .guard-bar {
        grid-template-columns: 1fr;
      }

      .guard-item,
      .guard-item:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .guard-item:last-child {
        border-bottom: 0;
      }

      .footer-bottom {
        display: block;
      }

      .footer-bottom span {
        display: block;
        margin-top: 8px;
      }
    }

/* roulang page: category1 */
:root {
      --ink: #181511;
      --charcoal: #2b2620;
      --muted: #6f675f;
      --soft: #f6f2eb;
      --paper: #fbf8f2;
      --mist: #efebe4;
      --line: rgba(24, 21, 17, .12);
      --amber: #d99a35;
      --amber-dark: #b8781e;
      --green: #6c8f68;
      --red: #b45b54;
      --white: #ffffff;
      --radius-lg: 18px;
      --radius-md: 14px;
      --radius-sm: 10px;
      --shadow: 0 18px 50px rgba(20, 18, 16, .08);
      --shadow-strong: 0 24px 70px rgba(20, 18, 16, .14);
      --container: 1200px;
      --nav-h: 72px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--ink);
      background: var(--paper);
      font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Helvetica Neue", Arial, sans-serif;
      font-size: 16px;
      line-height: 1.75;
      letter-spacing: 0;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button {
      font-family: inherit;
      cursor: pointer;
    }

    button:focus-visible,
    a:focus-visible,
    summary:focus-visible {
      outline: 2px solid var(--amber);
      outline-offset: 4px;
    }

    .site-container {
      width: min(calc(100% - 40px), var(--container));
      margin: 0 auto;
    }

    .section {
      padding: 92px 0;
      scroll-margin-top: 110px;
    }

    .section-soft {
      background: var(--soft);
    }

    .section-head {
      max-width: 760px;
      margin-bottom: 34px;
    }

    .section-kicker,
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 30px;
      padding: 4px 12px;
      border-radius: 999px;
      background: rgba(217, 154, 53, .13);
      color: #7b4d12;
      font-size: 13px;
      font-weight: 700;
    }

    .section-kicker::before,
    .eyebrow::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: var(--amber);
      box-shadow: 0 0 0 4px rgba(217, 154, 53, .16);
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      max-width: 930px;
      margin-bottom: 18px;
      font-size: clamp(32px, 5vw, 54px);
      line-height: 1.16;
      font-weight: 800;
      letter-spacing: 0;
    }

    h2 {
      margin-bottom: 12px;
      font-size: clamp(28px, 3vw, 36px);
      line-height: 1.25;
      font-weight: 800;
      letter-spacing: 0;
    }

    h3 {
      font-size: 21px;
      line-height: 1.35;
      font-weight: 800;
      letter-spacing: 0;
    }

    .lead {
      max-width: 780px;
      color: var(--muted);
      font-size: 17px;
    }

    .button,
    .site-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 48px;
      padding: 13px 22px;
      border: 1px solid transparent;
      border-radius: 999px;
      font-weight: 800;
      line-height: 1.2;
      white-space: nowrap;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
    }

    .button.primary,
    .site-button.primary {
      background: var(--amber);
      color: #21160a;
      box-shadow: 0 14px 30px rgba(217, 154, 53, .28);
    }

    .button.primary:hover,
    .site-button.primary:hover {
      background: var(--amber-dark);
      color: #fff8ec;
      transform: translateY(-1px);
      box-shadow: 0 18px 38px rgba(184, 120, 30, .32);
    }

    .button.ghost,
    .site-button.ghost {
      background: rgba(255, 255, 255, .72);
      color: var(--ink);
      border-color: rgba(24, 21, 17, .16);
    }

    .button.ghost:hover,
    .site-button.ghost:hover {
      background: #fff;
      border-color: rgba(24, 21, 17, .26);
      transform: translateY(-1px);
      box-shadow: var(--shadow);
    }

    .site-header {
      position: fixed;
      top: 18px;
      left: 0;
      right: 0;
      z-index: 50;
      pointer-events: none;
    }

    .pill-nav {
      width: min(calc(100% - 32px), var(--container));
      margin: 0 auto;
      pointer-events: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      min-height: var(--nav-h);
      padding: 10px 12px 10px 18px;
      border: 1px solid rgba(255, 255, 255, .56);
      border-radius: 999px;
      background: rgba(255, 255, 255, .82);
      box-shadow: 0 16px 50px rgba(20, 18, 16, .10);
      backdrop-filter: blur(16px);
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-width: 0;
      font-weight: 900;
      color: var(--ink);
    }

    .brand-mark {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      flex: 0 0 38px;
      border-radius: 999px;
      background: var(--ink);
      color: var(--amber);
      font-size: 15px;
      font-weight: 900;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
    }

    .brand span:last-child {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .nav-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .nav-links a {
      display: inline-flex;
      align-items: center;
      min-height: 42px;
      padding: 10px 16px;
      border-radius: 999px;
      color: #403930;
      font-size: 15px;
      font-weight: 800;
    }

    .nav-links a:hover,
    .nav-links a.active {
      background: var(--ink);
      color: #fff8ec;
    }

    .nav-action {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(24, 21, 17, .13);
      border-radius: 999px;
      background: #fff;
      color: var(--ink);
    }

    .menu-toggle span,
    .menu-toggle span::before,
    .menu-toggle span::after {
      display: block;
      width: 18px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
      content: "";
    }

    .menu-toggle span {
      position: relative;
    }

    .menu-toggle span::before {
      position: absolute;
      top: -6px;
      left: 0;
    }

    .menu-toggle span::after {
      position: absolute;
      top: 6px;
      left: 0;
    }

    .category-hero {
      position: relative;
      padding: 132px 0 64px;
      background:
        linear-gradient(135deg, rgba(24, 21, 17, .92), rgba(43, 38, 32, .86)),
        radial-gradient(circle at 78% 32%, rgba(217, 154, 53, .26), transparent 30%),
        var(--charcoal);
      color: #fff8ec;
      overflow: hidden;
    }

    .category-hero::after {
      content: "";
      position: absolute;
      right: -80px;
      bottom: -120px;
      width: 420px;
      height: 420px;
      border: 1px solid rgba(255, 255, 255, .09);
      border-radius: 50%;
    }

    .breadcrumb {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
      align-items: center;
      margin-bottom: 24px;
      color: rgba(255, 248, 236, .68);
      font-size: 14px;
      font-weight: 700;
    }

    .breadcrumb a:hover {
      color: var(--amber);
    }

    .hero-summary {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
      gap: 42px;
      align-items: end;
    }

    .hero-copy .lead {
      color: rgba(255, 248, 236, .75);
    }

    .hero-meta {
      display: grid;
      gap: 12px;
      padding: 18px;
      border: 1px solid rgba(255, 255, 255, .16);
      border-radius: var(--radius-lg);
      background: rgba(255, 255, 255, .08);
      backdrop-filter: blur(10px);
    }

    .progress-label {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      color: rgba(255, 248, 236, .8);
      font-size: 14px;
      font-weight: 800;
    }

    .progress-track {
      height: 10px;
      overflow: hidden;
      border-radius: 999px;
      background: rgba(255, 255, 255, .14);
    }

    .progress-fill {
      width: 72%;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--amber), #f1c46f);
    }

    .meta-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-top: 6px;
    }

    .meta-item {
      min-height: 92px;
      padding: 14px;
      border-radius: var(--radius-md);
      background: rgba(255, 255, 255, .10);
      border: 1px dashed rgba(255, 255, 255, .22);
    }

    .meta-item strong {
      display: block;
      margin-bottom: 5px;
      color: #fff;
      font-size: 22px;
      line-height: 1.1;
    }

    .meta-item span {
      color: rgba(255, 248, 236, .72);
      font-size: 13px;
      font-weight: 700;
    }

    .filter-band {
      padding: 24px 0;
      background: #fff;
      border-bottom: 1px solid var(--line);
    }

    .filter-scroll {
      display: flex;
      gap: 10px;
      overflow-x: auto;
      padding-bottom: 2px;
      scrollbar-width: none;
    }

    .filter-scroll::-webkit-scrollbar {
      display: none;
    }

    .filter-chip {
      flex: 0 0 auto;
      display: inline-flex;
      align-items: center;
      min-height: 38px;
      padding: 8px 15px;
      border-radius: 999px;
      background: var(--soft);
      border: 1px solid rgba(24, 21, 17, .08);
      color: #4f473e;
      font-size: 14px;
      font-weight: 800;
    }

    .filter-chip.active,
    .filter-chip:hover {
      background: var(--ink);
      color: #fff8ec;
      border-color: var(--ink);
    }

    .content-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
      gap: 22px;
      align-items: start;
    }

    .feature-ticket,
    .compact-card,
    .note-panel,
    .faq-card {
      position: relative;
      border: 1px solid rgba(24, 21, 17, .11);
      border-radius: var(--radius-lg);
      background: #fff;
      box-shadow: var(--shadow);
    }

    .feature-ticket {
      min-height: 100%;
      padding: 28px;
      overflow: hidden;
    }

    .feature-ticket::before {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      right: 92px;
      border-right: 1px dashed rgba(24, 21, 17, .16);
    }

    .ticket-no {
      display: inline-flex;
      margin-bottom: 22px;
      padding: 6px 12px;
      border-radius: 999px;
      background: rgba(217, 154, 53, .14);
      color: #7b4d12;
      font-size: 13px;
      font-weight: 900;
    }

    .feature-ticket h2 {
      max-width: 650px;
      margin-bottom: 14px;
    }

    .feature-ticket p {
      max-width: 720px;
      color: var(--muted);
    }

    .detail-list {
      display: grid;
      gap: 12px;
      margin: 24px 0 0;
      padding: 0;
      list-style: none;
    }

    .detail-list li {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      padding: 14px 16px;
      border-radius: var(--radius-md);
      background: var(--soft);
      color: #4c443c;
      font-weight: 700;
    }

    .detail-list li::before {
      content: "";
      flex: 0 0 9px;
      width: 9px;
      height: 9px;
      margin-top: 10px;
      border-radius: 50%;
      background: var(--amber);
    }

    .card-stack {
      display: grid;
      gap: 16px;
    }

    .compact-card {
      display: flex;
      flex-direction: column;
      min-height: 176px;
      padding: 20px;
      overflow: hidden;
    }

    .compact-card:hover,
    .feature-ticket:hover,
    .path-item:hover {
      transform: translateY(-2px);
      border-color: rgba(217, 154, 53, .42);
      box-shadow: var(--shadow-strong);
    }

    .compact-card .card-top {
      display: flex;
      justify-content: space-between;
      gap: 14px;
      align-items: flex-start;
      margin-bottom: 12px;
    }

    .compact-card h3 {
      display: -webkit-box;
      margin-bottom: 8px;
      overflow: hidden;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
    }

    .compact-card p {
      color: var(--muted);
      font-size: 15px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 4px 10px;
      border-radius: 999px;
      background: rgba(24, 21, 17, .06);
      color: #5d544a;
      font-size: 12px;
      font-weight: 900;
      white-space: nowrap;
    }

    .arrow-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: auto;
      color: #7b4d12;
      font-weight: 900;
    }

    .arrow-link:hover {
      color: var(--amber-dark);
      transform: translateX(2px);
    }

    .path-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }

    .path-item {
      min-height: 210px;
      padding: 22px;
      border: 1px solid rgba(24, 21, 17, .10);
      border-radius: var(--radius-lg);
      background: #fff;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .path-index {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      width: 34px;
      height: 34px;
      margin-bottom: 18px;
      border-radius: 999px;
      background: var(--ink);
      color: var(--amber);
      font-size: 14px;
      font-weight: 900;
    }

    .path-item p {
      margin-bottom: 0;
      color: var(--muted);
      font-size: 15px;
    }

    .note-grid {
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
      gap: 24px;
      align-items: stretch;
    }

    .note-panel {
      padding: 28px;
      background: var(--ink);
      color: #fff8ec;
      overflow: hidden;
    }

    .note-panel p {
      color: rgba(255, 248, 236, .72);
    }

    .note-list {
      display: grid;
      gap: 12px;
      margin: 22px 0 0;
      padding: 0;
      list-style: none;
    }

    .note-list li {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      padding: 14px 0;
      border-bottom: 1px solid rgba(255, 255, 255, .12);
      color: rgba(255, 248, 236, .82);
      font-weight: 800;
    }

    .note-list span:last-child {
      color: var(--amber);
      white-space: nowrap;
    }

    .info-strip {
      display: grid;
      gap: 14px;
    }

    .info-row {
      display: grid;
      grid-template-columns: 86px 1fr;
      gap: 16px;
      align-items: center;
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: #fff;
    }

    .info-row strong {
      display: block;
      color: var(--ink);
      font-size: 18px;
    }

    .info-row span {
      color: var(--muted);
      font-size: 15px;
    }

    .info-date {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      min-height: 44px;
      border-radius: 999px;
      background: rgba(217, 154, 53, .14);
      color: #7b4d12;
      font-weight: 900;
    }

    .cta-section {
      padding: 84px 0;
      background:
        linear-gradient(135deg, rgba(24, 21, 17, .96), rgba(43, 38, 32, .94)),
        var(--ink);
      color: #fff8ec;
    }

    .cta-box {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 28px;
      align-items: center;
    }

    .cta-box p {
      max-width: 700px;
      margin-bottom: 0;
      color: rgba(255, 248, 236, .72);
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: flex-end;
    }

    .cta-section .site-button.ghost {
      background: transparent;
      color: #fff8ec;
      border-color: rgba(255, 255, 255, .28);
    }

    .cta-section .site-button.ghost:hover {
      background: rgba(255, 255, 255, .08);
      border-color: rgba(255, 255, 255, .52);
      box-shadow: none;
    }

    .faq-wrap {
      display: grid;
      gap: 12px;
      max-width: 900px;
    }

    .accordion {
      margin: 0;
      background: transparent;
    }

    .accordion-item {
      margin-bottom: 12px;
      border: 1px solid rgba(24, 21, 17, .10);
      border-radius: var(--radius-md);
      background: #fff;
      box-shadow: 0 10px 28px rgba(20, 18, 16, .05);
      overflow: hidden;
    }

    .accordion-title {
      position: relative;
      display: block;
      padding: 18px 54px 18px 20px;
      border: 0;
      color: var(--ink);
      font-size: 17px;
      font-weight: 900;
      line-height: 1.45;
    }

    .accordion-title:hover,
    .accordion-title:focus {
      background: var(--soft);
      color: var(--ink);
    }

    .accordion-title::before {
      right: 22px;
      margin-top: -12px;
      color: var(--amber-dark);
      font-size: 24px;
    }

    .accordion-content {
      border: 0;
      border-left: 4px solid var(--amber);
      padding: 0 22px 20px 20px;
      color: var(--muted);
      background: #fff;
    }

    .site-footer {
      padding: 58px 0 28px;
      background: var(--ink);
      color: #fff8ec;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(170px, .45fr) minmax(190px, .5fr);
      gap: 44px;
      padding-bottom: 34px;
      border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px;
      font-size: 18px;
      font-weight: 900;
    }

    .footer-text {
      max-width: 520px;
      margin: 0;
      color: rgba(255, 248, 236, .68);
    }

    .footer-title {
      margin-bottom: 14px;
      color: #fff;
      font-weight: 900;
    }

    .footer-links {
      display: grid;
      gap: 9px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .footer-links a {
      color: rgba(255, 248, 236, .68);
      font-weight: 700;
    }

    .footer-links a:hover {
      color: var(--amber);
    }

    .footer-bottom {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 12px;
      padding-top: 22px;
      color: rgba(255, 248, 236, .56);
      font-size: 14px;
    }

    @media (max-width: 1024px) {
      .site-container {
        width: min(calc(100% - 32px), var(--container));
      }

      .nav-links,
      .nav-action .site-button {
        display: none;
      }

      .menu-toggle {
        display: inline-flex;
      }

      .pill-nav {
        border-radius: 28px;
        align-items: flex-start;
        flex-wrap: wrap;
      }

      .pill-nav.open .nav-links {
        order: 3;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 10px 2px 2px;
      }

      .pill-nav.open .nav-links a {
        justify-content: center;
        background: rgba(24, 21, 17, .05);
      }

      .pill-nav.open .nav-links a.active {
        background: var(--ink);
      }

      .hero-summary,
      .content-grid,
      .note-grid,
      .cta-box {
        grid-template-columns: 1fr;
      }

      .hero-meta {
        max-width: 620px;
      }

      .path-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .cta-actions {
        justify-content: flex-start;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .footer-grid > div:first-child {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 640px) {
      body {
        font-size: 15px;
      }

      .section {
        padding: 58px 0;
      }

      .site-header {
        top: 10px;
      }

      .brand span:last-child {
        max-width: 190px;
      }

      .pill-nav {
        width: min(calc(100% - 20px), var(--container));
        min-height: 62px;
        padding: 9px 10px;
      }

      .category-hero {
        padding: 112px 0 46px;
      }

      .hero-summary {
        gap: 26px;
      }

      .lead {
        font-size: 16px;
      }

      .meta-row {
        grid-template-columns: 1fr;
      }

      .feature-ticket,
      .compact-card,
      .note-panel,
      .path-item {
        padding: 20px;
      }

      .feature-ticket::before {
        display: none;
      }

      .path-grid {
        grid-template-columns: 1fr;
      }

      .info-row {
        grid-template-columns: 1fr;
      }

      .cta-actions,
      .site-button,
      .button {
        width: 100%;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .footer-bottom {
        display: grid;
      }
    }
