/* roulang page: index */
:root {
      --bg: #151515;
      --bg-soft: #202020;
      --panel: #ffffff;
      --panel-warm: #fff7f2;
      --ink: #181614;
      --muted: #706a64;
      --muted-dark: #b8b0aa;
      --line: rgba(24, 22, 20, .12);
      --line-dark: rgba(255, 255, 255, .13);
      --brand: #ff5a4f;
      --brand-strong: #e94136;
      --accent: #20c9a6;
      --accent-soft: #d9fff5;
      --amber: #ffc857;
      --radius: 8px;
      --radius-sm: 6px;
      --shadow: 0 18px 42px rgba(0, 0, 0, .12);
      --shadow-soft: 0 10px 28px rgba(0, 0, 0, .08);
      --container: 1180px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      color: var(--ink);
      background: #f6f2ee;
      line-height: 1.72;
      letter-spacing: 0;
      text-rendering: optimizeLegibility;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    select {
      font: inherit;
    }

    button:focus-visible,
    a:focus-visible,
    input:focus-visible,
    select:focus-visible {
      outline: 3px solid rgba(32, 201, 166, .35);
      outline-offset: 3px;
    }

    .site-container {
      width: min(100% - 32px, var(--container));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(21, 21, 21, .92);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--line-dark);
    }

    .nav-shell {
      min-height: 76px;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 24px;
    }

    .nav-group {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .nav-left {
      justify-content: flex-end;
    }

    .nav-right {
      justify-content: flex-start;
    }

    .brand-logo {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 208px;
      padding: 10px 18px;
      border: 1px solid rgba(255, 255, 255, .18);
      border-radius: var(--radius);
      color: #fff;
      font-size: 18px;
      font-weight: 700;
      line-height: 1.2;
      background: linear-gradient(135deg, rgba(255, 90, 79, .22), rgba(32, 201, 166, .12));
    }

    .brand-logo i {
      color: var(--brand);
      margin-right: 8px;
    }

    .nav-link-custom {
      color: rgba(255, 255, 255, .78);
      font-size: 14px;
      font-weight: 600;
      padding: 9px 12px;
      border-radius: var(--radius-sm);
      border: 1px solid transparent;
    }

    .nav-link-custom:hover,
    .nav-link-custom.active {
      color: #fff;
      background: rgba(255, 255, 255, .08);
      border-color: rgba(255, 255, 255, .12);
      transform: translateY(-1px);
    }

    .mobile-toggle {
      display: none;
      border: 1px solid var(--line-dark);
      color: #fff;
      background: rgba(255, 255, 255, .06);
      border-radius: var(--radius-sm);
      width: 42px;
      height: 42px;
      align-items: center;
      justify-content: center;
    }

    .mobile-menu {
      display: none;
      padding: 0 0 16px;
      border-top: 1px solid var(--line-dark);
    }

    .mobile-menu a {
      display: block;
      color: rgba(255, 255, 255, .82);
      padding: 12px 4px;
      font-weight: 600;
      border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    main {
      overflow: hidden;
    }

    section {
      padding: 76px 0;
    }

    .section-dark {
      background: var(--bg);
      color: #fff;
    }

    .section-light {
      background: #fffaf6;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 12px;
      color: var(--brand);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0;
    }

    .section-title {
      margin: 0 0 14px;
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 700;
      line-height: 1.18;
      letter-spacing: 0;
    }

    .section-desc {
      max-width: 760px;
      margin: 0;
      color: var(--muted);
      font-size: 16px;
    }

    .section-dark .section-desc {
      color: var(--muted-dark);
    }

    .hero {
      padding: 56px 0 64px;
      background:
        linear-gradient(180deg, rgba(21, 21, 21, .96), rgba(21, 21, 21, .92)),
        radial-gradient(circle at top left, rgba(255, 90, 79, .28), transparent 32%),
        radial-gradient(circle at bottom right, rgba(32, 201, 166, .18), transparent 34%);
      color: #fff;
    }

    .hero-band {
      border: 1px solid var(--line-dark);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .045);
      box-shadow: var(--shadow);
      padding: clamp(24px, 4vw, 42px);
    }

    .hero-status {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 26px;
    }

    .status-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 10px;
      border-radius: var(--radius-sm);
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .12);
      color: rgba(255, 255, 255, .86);
      font-size: 13px;
      font-weight: 600;
    }

    .status-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 4px rgba(32, 201, 166, .14);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
      gap: 36px;
      align-items: end;
    }

    .hero h1 {
      max-width: 520px;
      margin: 0 0 18px;
      font-size: clamp(38px, 7vw, 76px);
      font-weight: 700;
      line-height: .98;
      letter-spacing: 0;
    }

    .hero-copy {
      max-width: 660px;
      color: rgba(255, 255, 255, .78);
      font-size: 17px;
      margin: 0 0 24px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .btn-brand,
    .btn-ghost,
    .btn-darkline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 42px;
      padding: 10px 16px;
      border-radius: var(--radius-sm);
      font-weight: 700;
      font-size: 14px;
      border: 1px solid transparent;
      transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
    }

    .btn-brand {
      background: var(--brand);
      color: #fff;
      box-shadow: 0 10px 22px rgba(255, 90, 79, .24);
    }

    .btn-brand:hover {
      background: var(--brand-strong);
      color: #fff;
      transform: translateY(-1px);
    }

    .btn-ghost {
      color: #fff;
      background: rgba(255, 255, 255, .08);
      border-color: rgba(255, 255, 255, .14);
    }

    .btn-ghost:hover {
      color: #fff;
      background: rgba(255, 255, 255, .13);
      transform: translateY(-1px);
    }

    .btn-darkline {
      color: var(--ink);
      background: #fff;
      border-color: var(--line);
    }

    .btn-darkline:hover {
      border-color: rgba(255, 90, 79, .42);
      color: var(--brand-strong);
      transform: translateY(-1px);
    }

    .icon-matrix {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
    }

    .matrix-item {
      min-height: 126px;
      padding: 16px;
      border-radius: var(--radius);
      background: #fff;
      color: var(--ink);
      border: 1px solid rgba(255, 255, 255, .16);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: transform .2s ease, border-color .2s ease;
    }

    .matrix-item:hover {
      transform: translateY(-2px);
      border-color: rgba(255, 90, 79, .5);
    }

    .matrix-item i {
      width: 34px;
      height: 34px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--brand);
      background: #fff0ee;
      border-radius: var(--radius-sm);
      font-size: 15px;
    }

    .matrix-item strong {
      display: block;
      margin-top: 18px;
      font-size: 15px;
      line-height: 1.35;
    }

    .matrix-item span {
      color: var(--muted);
      font-size: 12px;
    }

    .entry-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 24px;
      margin-top: 30px;
    }

    .entry-panel,
    .content-card,
    .feature-card,
    .guarantee-card,
    .app-panel,
    .faq-item {
      border-radius: var(--radius);
      background: var(--panel);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
    }

    .entry-panel {
      padding: 22px;
    }

    .filter-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 18px;
    }

    .chip {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 8px 10px;
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      background: #fff;
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
      transition: transform .2s ease, border-color .2s ease, color .2s ease, background-color .2s ease;
    }

    .chip:hover,
    .chip.active {
      color: var(--ink);
      border-color: rgba(255, 90, 79, .45);
      background: #fff2ef;
      transform: translateY(-1px);
    }

    .quick-list {
      display: grid;
      gap: 12px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .quick-list li {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 12px;
      align-items: center;
      padding: 14px;
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      background: #fffaf6;
    }

    .quick-list b {
      font-size: 14px;
    }

    .quick-list span {
      color: var(--muted);
      font-size: 13px;
    }

    .rank-num {
      width: 28px;
      height: 28px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--ink);
      color: #fff;
      border-radius: var(--radius-sm);
      font-size: 12px;
      font-weight: 800;
    }

    .mini-stat-grid {
      display: grid;
      gap: 12px;
    }

    .mini-stat {
      padding: 18px;
      border-radius: var(--radius);
      background: var(--bg);
      color: #fff;
      border: 1px solid var(--line-dark);
    }

    .mini-stat strong {
      display: block;
      font-size: 28px;
      line-height: 1.1;
      color: var(--amber);
    }

    .mini-stat span {
      color: var(--muted-dark);
      font-size: 13px;
    }

    .feature-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin-top: 30px;
    }

    .feature-card {
      padding: 22px;
      min-height: 210px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: transform .2s ease, border-color .2s ease;
    }

    .feature-card:hover {
      transform: translateY(-2px);
      border-color: rgba(255, 90, 79, .34);
    }

    .feature-card i {
      width: 42px;
      height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--radius-sm);
      color: var(--brand);
      background: #fff0ee;
      margin-bottom: 18px;
    }

    .feature-card h3,
    .content-card h3,
    .guarantee-card h3 {
      margin: 0 0 8px;
      font-size: 18px;
      font-weight: 700;
      line-height: 1.35;
    }

    .feature-card p,
    .content-card p,
    .guarantee-card p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .milestone-wrap {
      margin-top: 32px;
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      gap: 24px;
      align-items: stretch;
    }

    .milestone-lead {
      padding: 26px;
      border-radius: var(--radius);
      background: linear-gradient(135deg, #ff5a4f, #ff7d4f);
      color: #fff;
      box-shadow: var(--shadow-soft);
    }

    .milestone-lead strong {
      display: block;
      font-size: 44px;
      line-height: 1;
      margin-bottom: 12px;
    }

    .timeline {
      display: grid;
      gap: 12px;
    }

    .timeline-item {
      display: grid;
      grid-template-columns: 94px 1fr;
      gap: 16px;
      padding: 16px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
    }

    .timeline-item time {
      color: var(--brand);
      font-weight: 800;
      font-size: 13px;
    }

    .timeline-item b {
      display: block;
      margin-bottom: 4px;
    }

    .timeline-item span {
      color: var(--muted);
      font-size: 14px;
    }

    .news-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
      gap: 24px;
      margin-top: 32px;
    }

    .news-list {
      display: grid;
      gap: 12px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .news-item a {
      display: grid;
      grid-template-columns: 110px 1fr auto;
      gap: 16px;
      align-items: center;
      padding: 16px;
      border-radius: var(--radius);
      background: #fff;
      border: 1px solid var(--line);
    }

    .news-item a:hover {
      border-color: rgba(32, 201, 166, .4);
      transform: translateY(-1px);
    }

    .news-date {
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    .news-item b {
      display: block;
      margin-bottom: 4px;
      font-size: 16px;
    }

    .news-item span {
      color: var(--muted);
      font-size: 14px;
    }

    .recommend-box {
      padding: 20px;
      border-radius: var(--radius);
      background: var(--bg);
      color: #fff;
      border: 1px solid var(--line-dark);
    }

    .recommend-box h3 {
      margin: 0 0 14px;
      font-size: 18px;
      font-weight: 700;
    }

    .recommend-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 18px;
    }

    .recommend-tags span {
      padding: 7px 9px;
      border-radius: var(--radius-sm);
      background: rgba(255, 255, 255, .08);
      color: rgba(255, 255, 255, .82);
      font-size: 12px;
      border: 1px solid rgba(255, 255, 255, .12);
    }

    .review-strip {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
      margin-top: 30px;
    }

    .bubble {
      position: relative;
      padding: 18px;
      border-radius: var(--radius);
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
    }

    .bubble p {
      margin: 0 0 14px;
      color: var(--ink);
      font-size: 14px;
    }

    .avatar-line {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    .avatar {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--accent-soft);
      color: #087f69;
      font-size: 12px;
      font-weight: 800;
    }

    .guarantee-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
      margin-top: 30px;
    }

    .guarantee-card {
      padding: 20px;
      background: #1d1d1d;
      color: #fff;
      border-color: var(--line-dark);
      box-shadow: none;
    }

    .guarantee-card i {
      color: var(--accent);
      margin-bottom: 14px;
      font-size: 20px;
    }

    .guarantee-card p {
      color: var(--muted-dark);
    }

    .app-panel {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px;
      align-items: center;
      padding: 30px;
      background: linear-gradient(135deg, #fff, #fff4ee);
    }

    .app-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: flex-end;
    }

    .search-box {
      display: flex;
      gap: 10px;
      margin-top: 20px;
      max-width: 640px;
    }

    .search-box input {
      flex: 1;
      min-width: 0;
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      padding: 11px 12px;
      color: var(--ink);
      background: #fff;
    }

    .search-box input::placeholder {
      color: #9b948e;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      margin-top: 30px;
    }

    .faq-item {
      padding: 20px;
    }

    .faq-item h3 {
      margin: 0 0 8px;
      font-size: 17px;
      font-weight: 700;
    }

    .faq-item p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .cta-band {
      padding: 34px;
      border-radius: var(--radius);
      background: var(--bg);
      color: #fff;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px;
      align-items: center;
      border: 1px solid var(--line-dark);
    }

    .cta-band h2 {
      margin: 0 0 8px;
      font-size: clamp(26px, 4vw, 38px);
      font-weight: 700;
    }

    .cta-band p {
      margin: 0;
      color: var(--muted-dark);
    }

    .site-footer {
      background: #111;
      color: rgba(255, 255, 255, .72);
      padding: 42px 0 28px;
      border-top: 1px solid rgba(255, 255, 255, .08);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px;
      align-items: start;
      margin-bottom: 24px;
    }

    .footer-brand {
      color: #fff;
      font-size: 19px;
      font-weight: 800;
      margin-bottom: 10px;
    }

    .footer-copy {
      max-width: 620px;
      margin: 0;
      color: rgba(255, 255, 255, .62);
      font-size: 14px;
    }

    .footer-links {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .footer-links a {
      color: rgba(255, 255, 255, .7);
      font-size: 14px;
      padding: 7px 9px;
      border-radius: var(--radius-sm);
    }

    .footer-links a:hover {
      color: #fff;
      background: rgba(255, 255, 255, .08);
    }

    .copyright {
      padding-top: 18px;
      border-top: 1px solid rgba(255, 255, 255, .08);
      color: rgba(255, 255, 255, .5);
      font-size: 13px;
    }

    @media (max-width: 1024px) {
      .hero-grid,
      .entry-grid,
      .milestone-wrap,
      .news-layout {
        grid-template-columns: 1fr;
      }

      .icon-matrix,
      .guarantee-grid,
      .review-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .feature-row {
        grid-template-columns: 1fr;
      }

      .app-panel,
      .cta-band {
        grid-template-columns: 1fr;
      }

      .app-actions {
        justify-content: flex-start;
      }
    }

    @media (max-width: 768px) {
      .nav-shell {
        min-height: 68px;
        grid-template-columns: auto 1fr auto;
      }

      .nav-group {
        display: none;
      }

      .brand-logo {
        min-width: 0;
        justify-self: center;
        font-size: 16px;
        padding: 9px 12px;
      }

      .mobile-toggle {
        display: inline-flex;
      }

      .mobile-menu.show {
        display: block;
      }

      section {
        padding: 54px 0;
      }

      .hero {
        padding-top: 34px;
      }

      .hero-band {
        padding: 22px;
      }

      .icon-matrix,
      .review-strip,
      .guarantee-grid,
      .faq-grid {
        grid-template-columns: 1fr;
      }

      .news-item a {
        grid-template-columns: 1fr;
        gap: 8px;
      }

      .timeline-item {
        grid-template-columns: 1fr;
      }

      .search-box {
        flex-direction: column;
      }

      .btn-brand,
      .btn-ghost,
      .btn-darkline {
        width: 100%;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .footer-links {
        justify-content: flex-start;
      }
    }

    @media (max-width: 520px) {
      .site-container {
        width: min(100% - 22px, var(--container));
      }

      .hero h1 {
        font-size: 40px;
      }

      .section-title {
        font-size: 28px;
      }

      .quick-list li {
        grid-template-columns: auto 1fr;
      }

      .quick-list .btn-darkline {
        grid-column: 1 / -1;
      }

      .app-panel,
      .cta-band {
        padding: 22px;
      }
    }

/* roulang page: category2 */
:root{
      --bg: #141518;
      --bg-2: #191b20;
      --surface: #1f2229;
      --surface-2: #f4efe7;
      --paper: #faf7f1;
      --line: rgba(255,255,255,.10);
      --line-2: rgba(18,20,24,.10);
      --text: #f5f3ee;
      --muted: rgba(245,243,238,.72);
      --ink: #1d1f24;
      --ink-soft: rgba(29,31,36,.72);
      --accent: #ff6b5e;
      --accent-2: #e44f74;
      --accent-3: #19b7a5;
      --accent-4: #f0c44c;
      --shadow: 0 18px 40px rgba(0,0,0,.24);
      --shadow-soft: 0 10px 24px rgba(18,20,24,.10);
      --radius: 8px;
      --container: 1240px;
      --speed: 160ms ease;
    }
    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body{
      margin:0;
      color:var(--text);
      background:
        linear-gradient(180deg, #15161a 0%, #141518 45%, #111215 100%);
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", "Segoe UI", Arial, sans-serif;
      line-height:1.7;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }
    a{
      color:inherit;
      text-decoration:none;
      transition: color var(--speed), background-color var(--speed), border-color var(--speed), transform var(--speed), box-shadow var(--speed), opacity var(--speed);
    }
    a:hover{ color: inherit; }
    img{ max-width:100%; display:block; }
    button, input, select, textarea{
      font: inherit;
    }
    ::selection{
      background: rgba(255,107,94,.28);
      color: var(--text);
    }
    .site-container{
      width:min(var(--container), calc(100% - 32px));
      margin-inline:auto;
    }

    .site-header{
      position: sticky;
      top: 0;
      z-index: 1030;
      background: rgba(19,20,24,.86);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .nav-shell{
      min-height: 76px;
      display:grid;
      grid-template-columns: minmax(0,1fr) auto minmax(0,1fr);
      align-items:center;
      gap: 14px;
      position: relative;
    }
    .nav-group{
      display:flex;
      align-items:center;
      gap: 8px;
      min-width: 0;
    }
    .nav-left{ justify-content:flex-start; }
    .nav-right{ justify-content:flex-end; }
    .brand-logo{
      justify-self:center;
      display:inline-flex;
      align-items:center;
      gap: 10px;
      color: var(--text);
      font-weight: 700;
      font-size: 1.08rem;
      letter-spacing: 0;
      white-space: nowrap;
    }
    .brand-logo i{
      color: var(--accent);
      font-size: 1rem;
    }
    .nav-link-custom{
      display:inline-flex;
      align-items:center;
      gap: 8px;
      height: 40px;
      padding: 0 14px;
      border-radius: 8px;
      color: var(--muted);
      border: 1px solid transparent;
      font-size: .95rem;
      white-space: nowrap;
    }
    .nav-link-custom:hover{
      color: var(--text);
      background: rgba(255,255,255,.04);
      border-color: rgba(255,255,255,.08);
      transform: translateY(-1px);
    }
    .nav-link-custom.active{
      color: var(--ink);
      background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(244,239,231,.92));
      border-color: rgba(255,255,255,.16);
      box-shadow: 0 10px 22px rgba(0,0,0,.12);
    }
    .mobile-toggle{
      display:none;
      justify-self:end;
      width: 42px;
      height: 42px;
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,.10);
      color: var(--text);
      background: rgba(255,255,255,.03);
      align-items:center;
      justify-content:center;
      padding:0;
    }
    .mobile-toggle:hover{
      background: rgba(255,255,255,.07);
      border-color: rgba(255,255,255,.16);
    }
    .mobile-menu{
      display:none;
      padding: 0 0 16px;
    }
    .mobile-menu.open{
      display:block;
    }
    .mobile-menu a{
      display:flex;
      align-items:center;
      justify-content:space-between;
      min-height: 46px;
      padding: 0 12px;
      margin-top: 8px;
      border-radius: 8px;
      color: var(--muted);
      border: 1px solid rgba(255,255,255,.08);
      background: rgba(255,255,255,.02);
    }
    .mobile-menu a.active{
      color: var(--ink);
      background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(244,239,231,.92));
      border-color: rgba(255,255,255,.18);
    }

    .page-main{
      padding-bottom: 34px;
    }
    .hero-section{
      padding: 26px 0 16px;
    }
    .hero-shell{
      display:grid;
      grid-template-columns: minmax(0,1.08fr) minmax(320px,.92fr);
      gap: 24px;
      align-items: stretch;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap: 8px;
      min-height: 30px;
      padding: 0 11px;
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,.10);
      color: #fff;
      background: rgba(255,255,255,.04);
      font-size: .86rem;
      letter-spacing: 0;
    }
    .hero-title{
      margin: 14px 0 12px;
      font-size: 3rem;
      line-height: 1.08;
      font-weight: 700;
      letter-spacing: 0;
      max-width: 9.5em;
    }
    .hero-copy{
      margin: 0;
      max-width: 58ch;
      color: var(--muted);
      font-size: 1.02rem;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap: 10px;
      margin-top: 22px;
    }
    .btn{
      border-radius: 8px;
      padding: 0.8rem 1.1rem;
      font-weight: 600;
      border: 1px solid transparent;
      transition: transform var(--speed), background-color var(--speed), border-color var(--speed), box-shadow var(--speed), color var(--speed);
    }
    .btn:focus,
    .btn:focus-visible,
    .form-control:focus,
    .form-select:focus,
    .filter-chip:focus,
    .nav-link-custom:focus,
    .mobile-toggle:focus{
      outline: none;
      box-shadow: 0 0 0 .2rem rgba(255,107,94,.18);
    }
    .btn-accent{
      color: #fff;
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      box-shadow: 0 14px 26px rgba(228,79,116,.22);
    }
    .btn-accent:hover{
      color:#fff;
      transform: translateY(-1px);
      box-shadow: 0 18px 30px rgba(228,79,116,.28);
    }
    .btn-soft{
      color: var(--text);
      background: rgba(255,255,255,.04);
      border-color: rgba(255,255,255,.10);
    }
    .btn-soft:hover{
      color: var(--text);
      background: rgba(255,255,255,.07);
      border-color: rgba(255,255,255,.16);
      transform: translateY(-1px);
    }
    .hero-stats{
      margin-top: 24px;
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 12px;
    }
    .stat{
      padding: 14px 14px 13px;
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,.08);
      background: rgba(255,255,255,.03);
    }
    .stat strong{
      display:block;
      color:#fff;
      font-size: 1.35rem;
      line-height:1.1;
      letter-spacing: 0;
    }
    .stat span{
      display:block;
      margin-top: 5px;
      color: var(--muted);
      font-size: .88rem;
    }

    .hero-panel{
      height:100%;
      padding: 20px;
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,.10);
      background:
        linear-gradient(180deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.03) 100%);
      box-shadow: var(--shadow);
    }
    .panel-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 12px;
      margin-bottom: 14px;
    }
    .panel-tag{
      display:inline-flex;
      align-items:center;
      min-height: 28px;
      padding: 0 10px;
      border-radius: 8px;
      color: #fff;
      background: rgba(255,107,94,.14);
      border: 1px solid rgba(255,107,94,.26);
      font-size: .85rem;
    }
    .panel-badge{
      display:inline-flex;
      align-items:center;
      gap: 6px;
      min-height: 28px;
      padding: 0 10px;
      border-radius: 8px;
      font-size: .84rem;
      color: #d6fff5;
      background: rgba(25,183,165,.12);
      border: 1px solid rgba(25,183,165,.22);
    }
    .panel-copy{
      margin: 0 0 14px;
      color: var(--muted);
      font-size: .97rem;
    }
    .benefit-row{
      display:flex;
      flex-wrap:wrap;
      gap: 8px;
      margin-bottom: 14px;
    }
    .benefit-pill{
      display:inline-flex;
      align-items:center;
      gap: 6px;
      min-height: 30px;
      padding: 0 10px;
      border-radius: 8px;
      color: var(--text);
      border: 1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.04);
      font-size: .84rem;
    }
    .benefit-pill i{
      color: var(--accent-4);
      font-size: .8rem;
    }
    .qualification{
      padding: 12px 13px;
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,.09);
      background: rgba(0,0,0,.12);
      color: var(--muted);
      font-size: .92rem;
      margin-bottom: 14px;
    }
    .follow-form{
      display:grid;
      gap: 10px;
    }
    .form-control,
    .form-select{
      min-height: 46px;
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,.12);
      background-color: rgba(255,255,255,.04);
      color: var(--text);
      padding-left: 14px;
      padding-right: 14px;
      box-shadow: none;
    }
    .form-control::placeholder{
      color: rgba(245,243,238,.46);
    }
    .form-control:focus,
    .form-select:focus{
      background-color: rgba(255,255,255,.06);
      border-color: rgba(255,107,94,.42);
      color: var(--text);
    }
    .form-select{
      padding-right: 40px;
      background-image: linear-gradient(45deg, transparent 50%, rgba(245,243,238,.9) 50%), linear-gradient(135deg, rgba(245,243,238,.9) 50%, transparent 50%);
      background-position: calc(100% - 18px) calc(1em + 2px), calc(100% - 13px) calc(1em + 2px);
      background-size: 6px 6px, 6px 6px;
      background-repeat: no-repeat;
    }
    .form-select option{
      color: var(--ink);
    }
    .follow-note{
      margin-top: 12px;
      color: rgba(245,243,238,.68);
      font-size: .86rem;
    }

    .quickbar-mobile{
      display:none;
      margin-top: 14px;
      gap: 8px;
      flex-wrap: wrap;
    }
    .quickbar-mobile a{
      display:inline-flex;
      align-items:center;
      gap: 6px;
      min-height: 38px;
      padding: 0 11px;
      border-radius: 8px;
      color: var(--text);
      border: 1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.04);
      font-size: .84rem;
    }

    .band{
      padding: 18px 0 16px;
    }
    .toolbar{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 16px;
      padding: 14px 16px;
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,.08);
      background: rgba(255,255,255,.03);
    }
    .chip-group{
      display:flex;
      flex-wrap:wrap;
      gap: 8px;
    }
    .filter-chip{
      min-height: 34px;
      padding: 0 11px;
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.04);
      color: var(--muted);
      font-size: .84rem;
    }
    .filter-chip:hover{
      color: var(--text);
      border-color: rgba(255,255,255,.16);
      transform: translateY(-1px);
    }
    .filter-chip.active{
      color: var(--ink);
      background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(244,239,231,.92));
      border-color: rgba(255,255,255,.18);
    }
    .sort-box{
      min-width: 220px;
      display:flex;
      align-items:center;
      gap: 10px;
    }
    .sort-label{
      color: var(--muted);
      font-size: .88rem;
      white-space: nowrap;
    }

    .section-head{
      display:flex;
      align-items:end;
      justify-content:space-between;
      gap: 18px;
      margin-bottom: 16px;
    }
    .section-head h2{
      margin:0;
      font-size: 1.55rem;
      line-height:1.2;
      font-weight: 700;
      letter-spacing: 0;
      color:#fff;
    }
    .section-head p{
      margin:0;
      max-width: 52ch;
      color: var(--muted);
      font-size: .95rem;
    }

    .feature-band{
      padding: 18px 0 8px;
    }
    .card-grid{
      display:grid;
      grid-template-columns: repeat(12, minmax(0,1fr));
      gap: 16px;
    }
    .content-card{
      grid-column: span 4;
      display:flex;
      flex-direction:column;
      min-height: 100%;
      border-radius: 8px;
      overflow:hidden;
      border: 1px solid rgba(255,255,255,.08);
      background: rgba(255,255,255,.03);
      box-shadow: 0 10px 28px rgba(0,0,0,.14);
      transition: transform var(--speed), box-shadow var(--speed), border-color var(--speed);
    }
    .content-card:hover{
      transform: translateY(-2px);
      border-color: rgba(255,255,255,.16);
      box-shadow: 0 18px 34px rgba(0,0,0,.18);
    }
    .card-thumb{
      position:relative;
      aspect-ratio: 4 / 3;
      overflow:hidden;
      background:
        radial-gradient(circle at 18% 22%, rgba(255,255,255,.24) 0 10%, transparent 11% 100%),
        linear-gradient(135deg, rgba(255,107,94,.92), rgba(228,79,116,.66) 42%, rgba(25,183,165,.62));
    }
    .card-thumb::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(180deg, rgba(13,14,17,.04), rgba(13,14,17,.56)),
        repeating-linear-gradient(135deg, rgba(255,255,255,.08) 0 2px, transparent 2px 12px);
      opacity: .72;
    }
    .thumb-a{ background: linear-gradient(135deg, rgba(255,107,94,.96), rgba(227,79,116,.72) 44%, rgba(248,196,76,.68)); }
    .thumb-b{ background: linear-gradient(135deg, rgba(25,183,165,.92), rgba(24,144,255,.56) 48%, rgba(255,107,94,.54)); }
    .thumb-c{ background: linear-gradient(135deg, rgba(240,196,76,.94), rgba(255,107,94,.68) 46%, rgba(29,31,36,.24)); }
    .thumb-d{ background: linear-gradient(135deg, rgba(228,79,116,.96), rgba(25,183,165,.60) 46%, rgba(34,38,46,.32)); }
    .thumb-e{ background: linear-gradient(135deg, rgba(255,140,87,.94), rgba(240,196,76,.66) 50%, rgba(25,183,165,.54)); }
    .thumb-f{ background: linear-gradient(135deg, rgba(255,255,255,.90), rgba(228,79,116,.58) 54%, rgba(25,183,165,.54)); }
    .thumb-label{
      position:absolute;
      left: 14px;
      top: 14px;
      z-index: 1;
      display:inline-flex;
      align-items:center;
      min-height: 28px;
      padding: 0 10px;
      border-radius: 8px;
      color:#fff;
      background: rgba(20,21,24,.46);
      border: 1px solid rgba(255,255,255,.16);
      font-size: .82rem;
      backdrop-filter: blur(6px);
    }
    .thumb-stroke{
      position:absolute;
      inset:auto 16px 16px 16px;
      z-index:1;
      display:flex;
      align-items:end;
      justify-content:space-between;
      color:#fff;
      font-size: .86rem;
    }
    .thumb-stroke span{
      display:inline-flex;
      align-items:center;
      gap: 6px;
      min-height: 26px;
      padding: 0 10px;
      border-radius: 8px;
      background: rgba(20,21,24,.46);
      border: 1px solid rgba(255,255,255,.14);
      backdrop-filter: blur(6px);
    }
    .card-body-custom{
      padding: 15px 15px 16px;
      display:flex;
      flex-direction:column;
      gap: 12px;
      flex:1;
    }
    .card-title{
      margin: 0;
      font-size: 1.08rem;
      line-height:1.35;
      font-weight: 700;
      color:#fff;
    }
    .card-text{
      margin: 0;
      color: var(--muted);
      font-size: .95rem;
      line-height: 1.72;
    }
    .tag-row{
      display:flex;
      flex-wrap:wrap;
      gap: 7px;
    }
    .mini-tag{
      display:inline-flex;
      align-items:center;
      min-height: 26px;
      padding: 0 9px;
      border-radius: 8px;
      color: #f7f7f3;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.09);
      font-size: .8rem;
      white-space: nowrap;
    }
    .meta-row{
      margin-top:auto;
      display:flex;
      flex-wrap:wrap;
      gap: 8px 12px;
      padding-top: 4px;
      color: rgba(245,243,238,.64);
      font-size: .82rem;
    }
    .meta-row span{
      display:inline-flex;
      align-items:center;
      gap: 6px;
    }
    .card-foot{
      padding: 0 15px 16px;
    }
    .link-line{
      display:inline-flex;
      align-items:center;
      gap: 8px;
      color: #fff;
      font-size: .92rem;
      font-weight: 600;
    }
    .link-line i{
      color: var(--accent-4);
    }

    .pager-wrap{
      display:flex;
      justify-content:center;
      margin-top: 16px;
    }
    .pagination{
      margin:0;
      gap: 8px;
    }
    .page-link{
      min-width: 40px;
      min-height: 40px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border-radius: 8px !important;
      color: var(--text);
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.09);
      box-shadow: none;
    }
    .page-link:hover{
      color: var(--text);
      background: rgba(255,255,255,.08);
      border-color: rgba(255,255,255,.16);
    }
    .page-item.active .page-link{
      color: var(--ink);
      background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(244,239,231,.92));
      border-color: rgba(255,255,255,.18);
    }

    .list-band{
      padding: 24px 0 10px;
    }
    .seed-list{
      display:grid;
      gap: 12px;
    }
    .seed-item{
      display:grid;
      grid-template-columns: 72px minmax(0,1fr) auto;
      gap: 14px;
      align-items:center;
      padding: 14px 16px;
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,.08);
      background: rgba(255,255,255,.03);
    }
    .seed-index{
      display:flex;
      align-items:center;
      justify-content:center;
      min-height: 54px;
      border-radius: 8px;
      color: var(--ink);
      background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(244,239,231,.92));
      font-weight: 700;
      font-size: 1.02rem;
    }
    .seed-main h3{
      margin: 0 0 6px;
      font-size: 1.02rem;
      line-height: 1.3;
      font-weight: 700;
      color:#fff;
    }
    .seed-main p{
      margin: 0;
      color: var(--muted);
      font-size: .94rem;
    }
    .seed-tag{
      justify-self:end;
      display:inline-flex;
      align-items:center;
      min-height: 34px;
      padding: 0 11px;
      border-radius: 8px;
      background: rgba(25,183,165,.12);
      border: 1px solid rgba(25,183,165,.22);
      color: #dbfff6;
      font-size: .84rem;
      white-space: nowrap;
    }

    .voice-band{
      padding: 22px 0 8px;
    }
    .voice-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 14px;
    }
    .voice-item{
      padding: 16px 16px 14px;
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,.08);
      background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
    }
    .voice-item blockquote{
      margin: 0 0 12px;
      color: #fff;
      font-size: 1rem;
      line-height: 1.75;
    }
    .voice-item footer{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 10px;
      color: var(--muted);
      font-size: .85rem;
    }
    .voice-chip{
      display:inline-flex;
      align-items:center;
      min-height: 28px;
      padding: 0 9px;
      border-radius: 8px;
      color: #fff;
      background: rgba(255,107,94,.12);
      border: 1px solid rgba(255,107,94,.22);
    }

    .cta-band{
      padding: 28px 0 16px;
    }
    .cta-shell{
      display:grid;
      grid-template-columns: minmax(0,1fr) auto;
      gap: 20px;
      align-items:center;
      padding: 22px;
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,.10);
      background:
        linear-gradient(135deg, rgba(255,107,94,.12), rgba(25,183,165,.08)),
        rgba(255,255,255,.03);
    }
    .cta-shell h2{
      margin:0 0 8px;
      font-size: 1.42rem;
      line-height:1.25;
      font-weight: 700;
      color:#fff;
    }
    .cta-shell p{
      margin:0;
      max-width: 58ch;
      color: var(--muted);
      font-size: .96rem;
    }
    .cta-actions{
      display:flex;
      flex-wrap:wrap;
      justify-content:flex-end;
      gap: 10px;
    }

    .faq-band{
      padding: 22px 0 10px;
    }
    .accordion{
      display:grid;
      gap: 12px;
    }
    .accordion-item{
      border-radius: 8px;
      overflow:hidden;
      border: 1px solid rgba(255,255,255,.08);
      background: rgba(255,255,255,.03);
    }
    .accordion-button{
      background: transparent;
      color: #fff;
      box-shadow: none;
      border: 0;
      padding: 16px 18px;
      font-weight: 600;
      letter-spacing: 0;
    }
    .accordion-button:not(.collapsed){
      color: #fff;
      background: rgba(255,255,255,.02);
      box-shadow: none;
    }
    .accordion-button::after{
      filter: brightness(1.2);
    }
    .accordion-button:focus{
      box-shadow: inset 0 0 0 0 transparent, 0 0 0 .2rem rgba(255,107,94,.14);
    }
    .accordion-body{
      color: var(--muted);
      padding: 0 18px 16px;
      line-height: 1.8;
    }

    .related-band{
      padding: 22px 0 20px;
    }
    .related-grid{
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: 14px;
    }
    .related-link{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 12px;
      min-height: 58px;
      padding: 0 16px;
      border-radius: 8px;
      color: var(--text);
      border: 1px solid rgba(255,255,255,.08);
      background: rgba(255,255,255,.03);
    }
    .related-link:hover{
      color: var(--text);
      transform: translateY(-1px);
      border-color: rgba(255,255,255,.16);
      background: rgba(255,255,255,.06);
    }
    .related-link i{
      color: var(--accent-4);
    }

    .site-footer{
      padding: 22px 0 28px;
      border-top: 1px solid rgba(255,255,255,.08);
      background: rgba(11,12,15,.86);
    }
    .footer-grid{
      display:grid;
      grid-template-columns: minmax(0,1.3fr) minmax(0,.7fr);
      gap: 24px;
      align-items:start;
      padding-bottom: 18px;
    }
    .footer-brand{
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 10px;
      color:#fff;
    }
    .footer-copy{
      margin:0;
      max-width: 58ch;
      color: rgba(245,243,238,.72);
      line-height: 1.8;
      font-size: .95rem;
    }
    .footer-links{
      display:flex;
      flex-wrap:wrap;
      gap: 10px 12px;
      justify-content:flex-end;
      align-content:flex-start;
    }
    .footer-links a{
      color: rgba(245,243,238,.78);
      padding: 7px 0;
    }
    .footer-links a:hover{
      color: #fff;
    }
    .copyright{
      padding-top: 16px;
      border-top: 1px solid rgba(255,255,255,.08);
      color: rgba(245,243,238,.56);
      font-size: .88rem;
    }

    @media (max-width: 1199.98px){
      .hero-title{ font-size: 2.6rem; }
      .content-card{ grid-column: span 6; }
      .voice-grid{ grid-template-columns: 1fr; }
    }
    @media (max-width: 991.98px){
      .nav-shell{
        grid-template-columns: auto 1fr auto;
      }
      .brand-logo{
        justify-self:center;
      }
      .nav-group{
        display:none;
      }
      .mobile-toggle{
        display:inline-flex;
      }
      .hero-shell{
        grid-template-columns: 1fr;
      }
      .hero-title{
        max-width: 12em;
      }
      .quickbar-mobile{
        display:flex;
      }
      .toolbar{
        flex-direction:column;
        align-items:stretch;
      }
      .sort-box{
        width:100%;
      }
      .seed-item{
        grid-template-columns: 64px minmax(0,1fr);
      }
      .seed-tag{
        grid-column: 1 / -1;
        justify-self:start;
      }
      .cta-shell{
        grid-template-columns: 1fr;
      }
      .cta-actions{
        justify-content:flex-start;
      }
      .footer-grid{
        grid-template-columns: 1fr;
      }
      .footer-links{
        justify-content:flex-start;
      }
    }
    @media (max-width: 767.98px){
      .site-container{
        width: min(var(--container), calc(100% - 24px));
      }
      .hero-section{
        padding-top: 18px;
      }
      .hero-title{
        font-size: 2.18rem;
      }
      .hero-stats{
        grid-template-columns: 1fr;
      }
      .section-head{
        flex-direction:column;
        align-items:flex-start;
      }
      .content-card{
        grid-column: span 12;
      }
      .related-grid{
        grid-template-columns: 1fr;
      }
      .seed-item{
        grid-template-columns: 1fr;
      }
      .seed-index{
        width: 72px;
      }
      .seed-tag{
        justify-self:start;
      }
    }
    @media (max-width: 575.98px){
      .brand-logo{
        font-size: 1rem;
      }
      .hero-title{
        font-size: 2rem;
      }
      .hero-copy, .cta-shell p{
        font-size: .95rem;
      }
      .btn{
        width: 100%;
        justify-content:center;
      }
      .hero-actions .btn{
        width: auto;
      }
      .quickbar-mobile a{
        flex: 1 1 calc(50% - 8px);
        justify-content:center;
      }
      .panel-head{
        flex-direction:column;
        align-items:flex-start;
      }
      .sort-box{
        flex-direction:column;
        align-items:flex-start;
      }
      .sort-box .form-select{
        width:100%;
      }
    }

/* roulang page: category1 */
:root {
      --bg: #111315;
      --bg-2: #171b20;
      --surface: #1b2026;
      --surface-2: #20262d;
      --paper: #f4f1eb;
      --paper-2: #ece5da;
      --paper-3: #e3ddd3;
      --text: #f4f4f2;
      --text-dark: #1d2228;
      --muted: #a6adb7;
      --muted-dark: #606772;
      --line: rgba(255, 255, 255, 0.10);
      --line-dark: rgba(29, 34, 40, 0.10);
      --accent: #ec6d4f;
      --accent-2: #28a79a;
      --accent-3: #d9b04f;
      --shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
      --shadow-soft: 0 10px 28px rgba(17, 19, 21, 0.10);
      --radius: 8px;
      --radius-sm: 6px;
      --container: 1200px;
      --transition: 180ms ease;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
      line-height: 1.7;
      color: var(--text);
      background:
        radial-gradient(circle at top center, rgba(236, 109, 79, 0.08), transparent 18%),
        linear-gradient(180deg, #121418 0%, #111315 45%, #0f1114 100%);
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
      font-synthesis: none;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    a:hover {
      color: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    ::selection {
      background: rgba(236, 109, 79, 0.28);
      color: var(--text);
    }

    .site-container {
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 20px;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1030;
      background: rgba(17, 19, 21, 0.92);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--line);
    }

    .nav-shell {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto;
      align-items: center;
      gap: 16px;
      padding: 14px 0;
    }

    .nav-group {
      display: flex;
      align-items: center;
      gap: 10px;
      min-width: 0;
    }

    .nav-left {
      justify-self: start;
    }

    .nav-right {
      justify-self: end;
    }

    .brand-logo {
      justify-self: center;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 1.08rem;
      font-weight: 700;
      letter-spacing: 0;
      color: var(--text);
      white-space: nowrap;
    }

    .brand-logo i {
      color: var(--accent);
      font-size: 1rem;
    }

    .nav-link-custom {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 0 13px;
      border: 1px solid transparent;
      border-radius: var(--radius);
      color: var(--muted);
      font-size: 0.95rem;
      font-weight: 600;
      transition: color var(--transition), background-color var(--transition), border-color var(--transition), transform var(--transition);
      white-space: nowrap;
    }

    .nav-link-custom:hover,
    .nav-link-custom:focus-visible {
      color: var(--text);
      background: rgba(255, 255, 255, 0.04);
      border-color: rgba(255, 255, 255, 0.08);
      transform: translateY(-1px);
      outline: none;
    }

    .nav-link-custom.active {
      color: var(--text);
      background: rgba(255, 255, 255, 0.06);
      border-color: rgba(236, 109, 79, 0.35);
    }

    .mobile-toggle {
      display: none;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(255, 255, 255, 0.10);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.03);
      color: var(--text);
      transition: transform var(--transition), border-color var(--transition), background-color var(--transition);
    }

    .mobile-toggle:hover,
    .mobile-toggle:focus-visible {
      transform: translateY(-1px);
      border-color: rgba(236, 109, 79, 0.45);
      background: rgba(236, 109, 79, 0.08);
      outline: none;
    }

    .mobile-menu {
      display: none;
      gap: 10px;
      padding: 0 0 14px;
    }

    .mobile-menu a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 46px;
      padding: 0 14px;
      border: 1px solid rgba(255, 255, 255, 0.10);
      border-radius: var(--radius);
      color: var(--text);
      background: rgba(255, 255, 255, 0.02);
      font-weight: 600;
      transition: background-color var(--transition), border-color var(--transition);
    }

    .mobile-menu a.active {
      border-color: rgba(236, 109, 79, 0.45);
      background: rgba(236, 109, 79, 0.08);
    }

    .mobile-menu a:hover {
      border-color: rgba(255, 255, 255, 0.18);
      background: rgba(255, 255, 255, 0.04);
    }

    .hero-band {
      position: relative;
      overflow: hidden;
      padding: 28px 0 22px;
      border-bottom: 1px solid var(--line);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 18%),
        linear-gradient(135deg, rgba(236, 109, 79, 0.08), transparent 38%),
        linear-gradient(180deg, #14171b 0%, #111315 100%);
    }

    .hero-band::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
      background-size: 48px 48px;
      opacity: 0.08;
      pointer-events: none;
      mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 98%);
    }

    .hero-stage {
      position: relative;
      display: grid;
      grid-template-columns: 1.08fr 0.92fr;
      gap: 28px;
      align-items: stretch;
    }

    .breadcrumbs {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
      color: var(--muted);
      font-size: 0.92rem;
      margin-bottom: 16px;
    }

    .breadcrumbs a {
      color: var(--muted);
      transition: color var(--transition);
    }

    .breadcrumbs a:hover {
      color: var(--text);
    }

    .breadcrumbs .sep {
      color: rgba(255, 255, 255, 0.24);
    }

    .hero-copy {
      padding: 14px 0 10px;
    }

    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      margin-bottom: 14px;
      border-radius: 999px;
      background: rgba(236, 109, 79, 0.10);
      border: 1px solid rgba(236, 109, 79, 0.24);
      color: #ffd5ca;
      font-size: 0.92rem;
      font-weight: 600;
    }

    .hero-kicker i {
      color: var(--accent);
    }

    .hero-copy h1 {
      margin: 0 0 16px;
      font-size: 3.05rem;
      line-height: 1.05;
      font-weight: 700;
      letter-spacing: 0;
      max-width: 11ch;
    }

    .hero-copy .hero-lead {
      margin: 0;
      max-width: 42rem;
      color: rgba(244, 244, 242, 0.78);
      font-size: 1.05rem;
      line-height: 1.85;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 24px;
    }

    .btn-brand,
    .btn-outline-brand,
    .btn-paper {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 0 16px;
      border-radius: var(--radius);
      font-weight: 700;
      border: 1px solid transparent;
      transition: transform var(--transition), background-color var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
      white-space: nowrap;
    }

    .btn-brand {
      background: var(--accent);
      color: #fff;
      box-shadow: 0 10px 24px rgba(236, 109, 79, 0.22);
    }

    .btn-brand:hover,
    .btn-brand:focus-visible {
      background: #f07b61;
      color: #fff;
      transform: translateY(-1px);
      outline: none;
    }

    .btn-outline-brand {
      background: transparent;
      color: #ffd7cf;
      border-color: rgba(236, 109, 79, 0.42);
    }

    .btn-outline-brand:hover,
    .btn-outline-brand:focus-visible {
      background: rgba(236, 109, 79, 0.10);
      color: #fff;
      transform: translateY(-1px);
      outline: none;
    }

    .btn-paper {
      background: var(--paper);
      color: var(--text-dark);
      border-color: rgba(29, 34, 40, 0.08);
      box-shadow: var(--shadow-soft);
    }

    .btn-paper:hover,
    .btn-paper:focus-visible {
      background: #fff;
      color: var(--text-dark);
      transform: translateY(-1px);
      outline: none;
    }

    .hero-badges {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 18px;
    }

    .badge-soft {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 0 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
      color: var(--text);
      font-size: 0.88rem;
      font-weight: 600;
    }

    .hero-visual {
      position: relative;
      min-height: 520px;
      padding: 8px 0 0;
      display: grid;
      grid-template-rows: auto 1fr;
      gap: 14px;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .metric-tile {
      padding: 16px;
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      min-height: 108px;
    }

    .metric-tile .label {
      display: block;
      margin-bottom: 8px;
      color: rgba(244, 244, 242, 0.66);
      font-size: 0.88rem;
    }

    .metric-tile .value {
      display: block;
      font-size: 1.9rem;
      line-height: 1.1;
      font-weight: 700;
    }

    .metric-tile .delta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 10px;
      color: #cfeee9;
      font-size: 0.88rem;
      font-weight: 600;
    }

    .live-stack {
      display: grid;
      gap: 12px;
      align-content: start;
    }

    .live-item {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 14px;
      align-items: start;
      padding: 14px 16px;
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.035);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .live-mark {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border-radius: var(--radius);
      background: rgba(236, 109, 79, 0.12);
      border: 1px solid rgba(236, 109, 79, 0.25);
      color: #ffd7cf;
      font-weight: 700;
    }

    .live-item h3 {
      margin: 0 0 6px;
      font-size: 1.03rem;
      font-weight: 700;
      line-height: 1.35;
    }

    .live-item p {
      margin: 0;
      color: rgba(244, 244, 242, 0.70);
      font-size: 0.95rem;
      line-height: 1.75;
    }

    .live-meta {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 12px;
    }

    .mini-tag {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 0 10px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.10);
      background: rgba(255, 255, 255, 0.03);
      color: var(--text);
      font-size: 0.84rem;
      font-weight: 600;
    }

    .mini-tag.accent {
      border-color: rgba(236, 109, 79, 0.30);
      background: rgba(236, 109, 79, 0.10);
      color: #ffd7cf;
    }

    .section-band {
      padding: 70px 0;
    }

    .band-paper {
      background: linear-gradient(180deg, var(--paper) 0%, #f6f3ee 100%);
      color: var(--text-dark);
    }

    .band-paper .section-kicker {
      color: var(--accent);
    }

    .band-paper .section-title,
    .band-paper .section-subtitle,
    .band-paper .filter-label,
    .band-paper .section-note,
    .band-paper .list-copy,
    .band-paper .meta-text,
    .band-paper .muted-text,
    .band-paper .accordion-body,
    .band-paper .accordion-button {
      color: var(--text-dark);
    }

    .band-dark {
      background: linear-gradient(180deg, #111315 0%, #13161a 100%);
      color: var(--text);
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 26px;
    }

    .section-head.compact {
      align-items: center;
      margin-bottom: 18px;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 10px;
      color: #ffd7cf;
      font-size: 0.88rem;
      font-weight: 700;
      letter-spacing: 0;
    }

    .section-kicker i {
      color: var(--accent);
    }

    .section-title {
      margin: 0;
      font-size: 1.65rem;
      line-height: 1.25;
      font-weight: 700;
      letter-spacing: 0;
    }

    .section-subtitle {
      margin: 0;
      max-width: 760px;
      color: var(--muted);
      font-size: 0.98rem;
      line-height: 1.8;
    }

    .section-note {
      color: var(--muted);
      font-size: 0.92rem;
    }

    .toolbar {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
    }

    .filter-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 38px;
      padding: 0 14px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.10);
      color: var(--muted);
      background: rgba(255, 255, 255, 0.03);
      font-size: 0.9rem;
      font-weight: 600;
      transition: transform var(--transition), border-color var(--transition), background-color var(--transition), color var(--transition);
    }

    .band-paper .filter-chip {
      border-color: rgba(29, 34, 40, 0.10);
      background: rgba(29, 34, 40, 0.03);
      color: var(--muted-dark);
    }

    .filter-chip:hover,
    .filter-chip:focus-visible,
    .filter-chip.active {
      color: var(--text);
      background: rgba(236, 109, 79, 0.11);
      border-color: rgba(236, 109, 79, 0.28);
      transform: translateY(-1px);
      outline: none;
    }

    .content-grid {
      display: grid;
      gap: 18px;
    }

    .clip-grid {
      display: grid;
      gap: 18px;
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .clip-card {
      display: flex;
      flex-direction: column;
      min-width: 0;
      height: 100%;
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid rgba(29, 34, 40, 0.08);
      background: #fff;
      box-shadow: var(--shadow-soft);
      transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    }

    .clip-card:hover {
      transform: translateY(-2px);
      border-color: rgba(236, 109, 79, 0.30);
      box-shadow: 0 16px 36px rgba(17, 19, 21, 0.12);
    }

    .clip-thumb {
      position: relative;
      min-height: 230px;
      padding: 16px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      color: #fff;
      background:
        linear-gradient(180deg, rgba(16, 19, 22, 0.14), rgba(16, 19, 22, 0.75)),
        linear-gradient(135deg, #313740 0%, #1c2127 46%, #29222d 100%);
    }

    .clip-thumb::before {
      content: "";
      position: absolute;
      inset: 14px;
      border: 1px solid rgba(255, 255, 255, 0.10);
      border-radius: 6px;
      pointer-events: none;
    }

    .clip-thumb .top-line,
    .clip-thumb .bottom-line {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .clip-thumb .index {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 0 10px;
      border-radius: 999px;
      background: rgba(236, 109, 79, 0.15);
      border: 1px solid rgba(236, 109, 79, 0.25);
      color: #ffd6cc;
      font-size: 0.82rem;
      font-weight: 700;
    }

    .clip-thumb .time {
      color: rgba(255, 255, 255, 0.80);
      font-size: 0.86rem;
      font-weight: 600;
    }

    .clip-thumb .headline {
      position: relative;
      z-index: 1;
      max-width: 10ch;
      margin: 0;
      font-size: 1.55rem;
      line-height: 1.12;
      font-weight: 700;
    }

    .clip-thumb .chips {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .clip-body {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 12px;
      padding: 16px;
      color: var(--text-dark);
    }

    .clip-body h3 {
      margin: 0;
      font-size: 1.02rem;
      line-height: 1.45;
      font-weight: 700;
    }

    .clip-body p {
      margin: 0;
      color: var(--muted-dark);
      font-size: 0.93rem;
      line-height: 1.75;
    }

    .clip-meta {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      color: var(--muted-dark);
      font-size: 0.86rem;
    }

    .clip-actions {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      margin-top: auto;
      padding-top: 2px;
    }

    .btn-entry {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 38px;
      padding: 0 12px;
      border-radius: var(--radius);
      background: #1f2328;
      color: #fff;
      border: 1px solid rgba(29, 34, 40, 0.10);
      font-size: 0.88rem;
      font-weight: 700;
      transition: transform var(--transition), background-color var(--transition), border-color var(--transition);
      white-space: nowrap;
    }

    .btn-entry:hover,
    .btn-entry:focus-visible {
      color: #fff;
      background: #2a2f35;
      border-color: rgba(236, 109, 79, 0.28);
      transform: translateY(-1px);
      outline: none;
    }

    .seed-list-wrap {
      display: grid;
      gap: 14px;
    }

    .entry-row {
      display: grid;
      grid-template-columns: 140px minmax(0, 1fr) auto;
      gap: 18px;
      align-items: center;
      padding: 16px;
      border-radius: var(--radius);
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(255, 255, 255, 0.04);
      transition: transform var(--transition), border-color var(--transition), background-color var(--transition);
    }

    .entry-row:hover {
      transform: translateY(-1px);
      border-color: rgba(236, 109, 79, 0.28);
      background: rgba(255, 255, 255, 0.05);
    }

    .band-paper .entry-row {
      border-color: rgba(29, 34, 40, 0.10);
      background: rgba(29, 34, 40, 0.03);
    }

    .entry-thumb {
      position: relative;
      aspect-ratio: 1 / 1;
      border-radius: var(--radius);
      overflow: hidden;
      background:
        linear-gradient(160deg, rgba(236, 109, 79, 0.15), rgba(236, 109, 79, 0.03)),
        linear-gradient(135deg, #31363d 0%, #1f2328 100%);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .band-paper .entry-thumb {
      border-color: rgba(29, 34, 40, 0.08);
    }

    .entry-thumb::before {
      content: "";
      position: absolute;
      inset: 14px;
      border-radius: 6px;
      border: 1px dashed rgba(255, 255, 255, 0.16);
      opacity: 0.8;
    }

    .entry-thumb .thumb-label {
      position: absolute;
      left: 12px;
      top: 12px;
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 0 10px;
      border-radius: 999px;
      background: rgba(17, 19, 21, 0.52);
      color: #fff;
      font-size: 0.8rem;
      font-weight: 700;
    }

    .entry-thumb .thumb-foot {
      position: absolute;
      right: 12px;
      bottom: 12px;
      color: rgba(255, 255, 255, 0.86);
      font-size: 0.82rem;
      font-weight: 600;
    }

    .entry-copy {
      min-width: 0;
    }

    .entry-copy h3 {
      margin: 0 0 8px;
      font-size: 1.08rem;
      line-height: 1.45;
      font-weight: 700;
    }

    .entry-copy p {
      margin: 0 0 10px;
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.8;
    }

    .band-paper .entry-copy p {
      color: var(--muted-dark);
    }

    .entry-meta {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px 12px;
      color: var(--muted);
      font-size: 0.86rem;
    }

    .band-paper .entry-meta {
      color: var(--muted-dark);
    }

    .heat-bar {
      width: 180px;
      max-width: 100%;
      height: 6px;
      border-radius: 999px;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.08);
      margin-top: 10px;
    }

    .band-paper .heat-bar {
      background: rgba(29, 34, 40, 0.10);
    }

    .heat-bar span {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--accent), var(--accent-3));
    }

    .entry-side {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 10px;
      text-align: right;
    }

    .side-badge {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 0 12px;
      border-radius: 999px;
      background: rgba(236, 109, 79, 0.10);
      border: 1px solid rgba(236, 109, 79, 0.20);
      color: #ffd7cf;
      font-size: 0.84rem;
      font-weight: 700;
    }

    .pager-wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      margin-top: 12px;
    }

    .pagination .page-link {
      min-width: 40px;
      text-align: center;
      color: inherit;
      background: transparent;
      border-color: rgba(255, 255, 255, 0.10);
      border-radius: var(--radius);
      margin: 0 4px;
      box-shadow: none;
      transition: transform var(--transition), border-color var(--transition), background-color var(--transition), color var(--transition);
    }

    .band-paper .pagination .page-link {
      border-color: rgba(29, 34, 40, 0.10);
    }

    .pagination .page-link:hover {
      color: var(--text);
      border-color: rgba(236, 109, 79, 0.35);
      background: rgba(236, 109, 79, 0.10);
      transform: translateY(-1px);
    }

    .pagination .page-item.active .page-link {
      border-color: rgba(236, 109, 79, 0.42);
      background: rgba(236, 109, 79, 0.18);
      color: var(--text);
    }

    .quote-strip {
      display: flex;
      gap: 14px;
      overflow-x: auto;
      padding-bottom: 6px;
      scroll-snap-type: x proximity;
    }

    .quote-card {
      flex: 0 0 300px;
      scroll-snap-align: start;
      padding: 16px;
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .band-paper .quote-card {
      background: rgba(29, 34, 40, 0.03);
      border-color: rgba(29, 34, 40, 0.10);
    }

    .quote-top {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
    }

    .quote-avatar {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 999px;
      background: rgba(236, 109, 79, 0.14);
      border: 1px solid rgba(236, 109, 79, 0.24);
      color: #ffd7cf;
      font-weight: 700;
    }

    .quote-name {
      font-weight: 700;
      line-height: 1.2;
    }

    .quote-meta {
      color: var(--muted);
      font-size: 0.84rem;
    }

    .band-paper .quote-meta {
      color: var(--muted-dark);
    }

    .quote-card p {
      margin: 0;
      color: var(--text);
      font-size: 0.94rem;
      line-height: 1.8;
    }

    .related-grid {
      display: grid;
      gap: 18px;
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .rel-card {
      display: flex;
      flex-direction: column;
      min-height: 100%;
      padding: 18px;
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      transition: transform var(--transition), border-color var(--transition), background-color var(--transition);
    }

    .rel-card:hover {
      transform: translateY(-2px);
      border-color: rgba(236, 109, 79, 0.30);
      background: rgba(255, 255, 255, 0.05);
    }

    .rel-card .rel-tag {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      width: fit-content;
      padding: 0 10px;
      border-radius: 999px;
      background: rgba(236, 109, 79, 0.10);
      border: 1px solid rgba(236, 109, 79, 0.22);
      color: #ffd7cf;
      font-size: 0.82rem;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .rel-card h3 {
      margin: 0 0 8px;
      font-size: 1.06rem;
      line-height: 1.45;
      font-weight: 700;
    }

    .rel-card p {
      margin: 0 0 18px;
      color: var(--muted);
      font-size: 0.94rem;
      line-height: 1.78;
    }

    .rel-foot {
      margin-top: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      color: var(--muted);
      font-size: 0.86rem;
    }

    .band-paper .rel-card {
      background: #fff;
      border-color: rgba(29, 34, 40, 0.08);
    }

    .band-paper .rel-card p,
    .band-paper .rel-foot {
      color: var(--muted-dark);
    }

    .follow-shell {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 22px;
      align-items: start;
    }

    .follow-intro {
      padding-right: 10px;
    }

    .follow-intro h2 {
      margin: 0 0 12px;
      font-size: 1.7rem;
      line-height: 1.25;
      font-weight: 700;
    }

    .follow-intro p {
      margin: 0 0 18px;
      color: var(--muted-dark);
      font-size: 1rem;
      line-height: 1.85;
    }

    .follow-points {
      display: grid;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .follow-points li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: var(--text-dark);
      font-size: 0.95rem;
      line-height: 1.7;
    }

    .follow-points i {
      color: var(--accent-2);
      margin-top: 4px;
    }

    .follow-form {
      padding: 18px;
      border-radius: var(--radius);
      background: #fff;
      border: 1px solid rgba(29, 34, 40, 0.08);
      box-shadow: var(--shadow-soft);
    }

    .follow-form .form-label {
      margin-bottom: 8px;
      color: var(--text-dark);
      font-weight: 600;
      font-size: 0.93rem;
    }

    .follow-form .form-control,
    .follow-form .form-select {
      min-height: 46px;
      border-radius: var(--radius);
      border-color: rgba(29, 34, 40, 0.12);
      background-color: #fff;
      color: var(--text-dark);
      box-shadow: none;
    }

    .follow-form .form-control::placeholder {
      color: #8b9098;
    }

    .follow-form .form-control:focus,
    .follow-form .form-select:focus {
      border-color: rgba(236, 109, 79, 0.45);
      box-shadow: 0 0 0 0.18rem rgba(236, 109, 79, 0.12);
    }

    .follow-form .form-check {
      margin: 0;
      padding-left: 2.1em;
    }

    .follow-form .form-check-label {
      color: var(--muted-dark);
      font-size: 0.92rem;
    }

    .follow-form .form-check-input {
      width: 1.15em;
      height: 1.15em;
      border-radius: 999px;
      border-color: rgba(29, 34, 40, 0.18);
      box-shadow: none;
    }

    .follow-form .form-check-input:checked {
      background-color: var(--accent);
      border-color: var(--accent);
    }

    .follow-form .btn-brand {
      width: 100%;
      min-height: 48px;
    }

    .faq-wrap .accordion {
      display: grid;
      gap: 12px;
    }

    .faq-wrap .accordion-item {
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(255, 255, 255, 0.04);
    }

    .band-paper .faq-wrap .accordion-item {
      border-color: rgba(29, 34, 40, 0.08);
      background: #fff;
    }

    .faq-wrap .accordion-button {
      font-weight: 700;
      color: var(--text);
      background: transparent;
      box-shadow: none;
      padding: 16px 18px;
    }

    .band-paper .faq-wrap .accordion-button {
      color: var(--text-dark);
      background: #fff;
    }

    .faq-wrap .accordion-button:not(.collapsed) {
      color: var(--text);
      background: rgba(236, 109, 79, 0.08);
      box-shadow: none;
    }

    .band-paper .faq-wrap .accordion-button:not(.collapsed) {
      color: var(--text-dark);
      background: rgba(236, 109, 79, 0.08);
    }

    .faq-wrap .accordion-button:focus {
      box-shadow: 0 0 0 0.18rem rgba(236, 109, 79, 0.12);
      border-color: rgba(236, 109, 79, 0.35);
    }

    .faq-wrap .accordion-body {
      padding: 0 18px 18px;
      color: var(--muted);
      line-height: 1.85;
    }

    .band-paper .faq-wrap .accordion-body {
      color: var(--muted-dark);
    }

    .closing-band {
      padding: 36px 0 18px;
    }

    .closing-panel {
      padding: 24px;
      border-radius: var(--radius);
      background:
        linear-gradient(135deg, rgba(236, 109, 79, 0.12), transparent 44%),
        linear-gradient(180deg, #1a1e23 0%, #14171b 100%);
      border: 1px solid rgba(255, 255, 255, 0.08);
      display: grid;
      gap: 18px;
      align-items: center;
    }

    .closing-panel h2 {
      margin: 0;
      font-size: 1.6rem;
      line-height: 1.25;
      font-weight: 700;
    }

    .closing-panel p {
      margin: 0;
      color: rgba(244, 244, 242, 0.76);
      line-height: 1.8;
      max-width: 56rem;
    }

    .closing-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .site-footer {
      padding: 26px 0 28px;
      border-top: 1px solid var(--line);
      background: #101216;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px;
      align-items: start;
      padding: 18px 0 16px;
    }

    .footer-brand {
      font-size: 1.08rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .footer-copy {
      margin: 0;
      max-width: 46rem;
      color: var(--muted);
      line-height: 1.85;
      font-size: 0.94rem;
    }

    .footer-links {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .footer-links a {
      color: var(--muted);
      font-size: 0.92rem;
      font-weight: 600;
      transition: color var(--transition), transform var(--transition);
    }

    .footer-links a:hover {
      color: var(--text);
      transform: translateY(-1px);
    }

    .copyright {
      padding-top: 16px;
      border-top: 1px solid var(--line);
      color: rgba(255, 255, 255, 0.64);
      font-size: 0.88rem;
    }

    .band-paper .text-muted {
      color: var(--muted-dark) !important;
    }

    .band-paper .btn-entry {
      background: #1f2328;
      color: #fff;
    }

    .band-paper .btn-entry:hover {
      background: #2a2f35;
      color: #fff;
    }

    .band-paper .btn-paper {
      background: #fff;
      color: var(--text-dark);
      border-color: rgba(29, 34, 40, 0.08);
    }

    .band-paper .btn-outline-brand {
      color: var(--accent);
      border-color: rgba(236, 109, 79, 0.38);
      background: transparent;
    }

    .band-paper .btn-outline-brand:hover {
      color: #fff;
      background: var(--accent);
    }

    .band-paper .badge-soft {
      color: var(--text-dark);
      background: rgba(29, 34, 40, 0.04);
      border-color: rgba(29, 34, 40, 0.08);
    }

    .band-paper .mini-tag {
      color: var(--text-dark);
      background: rgba(29, 34, 40, 0.04);
      border-color: rgba(29, 34, 40, 0.08);
    }

    .band-paper .mini-tag.accent {
      color: #8d3a29;
      background: rgba(236, 109, 79, 0.12);
      border-color: rgba(236, 109, 79, 0.20);
    }

    .band-paper .side-badge {
      color: #8d3a29;
      background: rgba(236, 109, 79, 0.12);
      border-color: rgba(236, 109, 79, 0.18);
    }

    .band-paper .hero-kicker,
    .band-paper .hero-kicker i {
      color: var(--accent);
    }

    .band-paper .hero-kicker {
      background: rgba(236, 109, 79, 0.08);
      border-color: rgba(236, 109, 79, 0.16);
    }

    .band-paper .filter-chip.active,
    .band-paper .filter-chip:hover,
    .band-paper .filter-chip:focus-visible {
      background: rgba(236, 109, 79, 0.10);
      color: var(--text-dark);
      border-color: rgba(236, 109, 79, 0.22);
    }

    .section-spacer {
      height: 10px;
    }

    @media (max-width: 1199.98px) {
      .clip-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .follow-shell {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 991.98px) {
      .nav-shell {
        grid-template-columns: 1fr auto;
        grid-template-areas:
          "brand toggle"
          "menu menu";
      }

      .brand-logo {
        grid-area: brand;
        justify-self: start;
      }

      .mobile-toggle {
        grid-area: toggle;
        display: inline-flex;
        justify-self: end;
      }

      .nav-left,
      .nav-right {
        display: none;
      }

      .mobile-menu.show {
        display: grid;
        grid-area: menu;
      }

      .hero-stage {
        grid-template-columns: 1fr;
      }

      .hero-copy h1 {
        max-width: 14ch;
        font-size: 2.55rem;
      }

      .hero-visual {
        min-height: auto;
      }

      .entry-row {
        grid-template-columns: 1fr;
      }

      .entry-side {
        align-items: flex-start;
        text-align: left;
      }

      .heat-bar {
        width: 100%;
      }

      .section-head {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media (max-width: 767.98px) {
      .site-container {
        padding: 0 16px;
      }

      .hero-band {
        padding-top: 22px;
      }

      .section-band {
        padding: 56px 0;
      }

      .hero-copy h1 {
        max-width: none;
        font-size: 2.2rem;
      }

      .hero-copy .hero-lead {
        font-size: 0.98rem;
      }

      .clip-grid,
      .related-grid {
        grid-template-columns: 1fr;
      }

      .hero-stats {
        grid-template-columns: 1fr 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .footer-links {
        justify-content: flex-start;
      }

      .closing-panel {
        padding: 20px;
      }

      .quote-card {
        flex-basis: 270px;
      }
    }

    @media (max-width: 519.98px) {
      .hero-copy h1 {
        font-size: 1.95rem;
      }

      .hero-actions,
      .closing-actions,
      .toolbar {
        gap: 10px;
      }

      .btn-brand,
      .btn-outline-brand,
      .btn-paper,
      .btn-entry,
      .filter-chip {
        width: 100%;
      }

      .hero-actions .btn-brand,
      .hero-actions .btn-outline-brand {
        width: calc(50% - 5px);
      }

      .hero-stats {
        grid-template-columns: 1fr;
      }

      .metric-tile {
        min-height: 92px;
      }

      .quote-card {
        flex-basis: 84%;
      }

      .pagination {
        flex-wrap: wrap;
      }
    }
