/* roulang page: index */
:root {
      --bg: #f7faf8;
      --surface: #ffffff;
      --surface-soft: #f1f7f3;
      --text: #15211b;
      --muted: #637069;
      --subtle: #8a9690;
      --line: #dfe8e2;
      --primary: #12b76a;
      --primary-dark: #079455;
      --primary-soft: #e7f8ef;
      --accent: #f3b546;
      --graphite: #23312a;
      --shadow: 0 18px 50px rgba(21, 33, 27, .08);
      --shadow-sm: 0 10px 24px rgba(21, 33, 27, .06);
      --radius: 8px;
      --radius-sm: 6px;
      --container: 1180px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-height: 100vh;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
      color: var(--text);
      background:
        linear-gradient(180deg, #ffffff 0%, var(--bg) 56%, #ffffff 100%);
      line-height: 1.65;
      letter-spacing: 0;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    select {
      font: inherit;
    }

    button {
      cursor: pointer;
      border: 0;
    }

    input,
    select,
    textarea {
      outline: none;
    }

    input:focus,
    select:focus,
    textarea:focus,
    button:focus-visible,
    a:focus-visible {
      outline: 3px solid rgba(18, 183, 106, .24);
      outline-offset: 2px;
    }

    .site-container {
      width: min(100% - 40px, var(--container));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, .92);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(223, 232, 226, .8);
      transition: box-shadow .2s ease, padding .2s ease;
    }

    .nav-shell {
      min-height: 74px;
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 26px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 900;
      color: var(--graphite);
      white-space: nowrap;
    }

    .brand-mark {
      width: 36px;
      height: 36px;
      display: grid;
      place-items: center;
      border-radius: var(--radius);
      background: var(--primary-soft);
      color: var(--primary-dark);
      border: 1px solid rgba(18, 183, 106, .18);
    }

    .brand-text {
      font-size: 18px;
      line-height: 1.1;
    }

    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 6px;
      justify-content: center;
    }

    .nav-link {
      padding: 9px 12px;
      border-radius: var(--radius-sm);
      color: #425048;
      font-weight: 700;
      font-size: 14px;
    }

    .nav-link:hover,
    .nav-link.active {
      color: var(--primary-dark);
      background: var(--primary-soft);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .search-box {
      width: 225px;
      height: 42px;
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 0 12px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fbfdfb;
      color: var(--muted);
    }

    .search-box input {
      width: 100%;
      border: 0;
      background: transparent;
      color: var(--text);
      font-size: 14px;
    }

    .search-box input::placeholder {
      color: var(--subtle);
    }

    .btn {
      min-height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 0 16px;
      border-radius: var(--radius);
      font-weight: 800;
      font-size: 14px;
      border: 1px solid transparent;
      white-space: nowrap;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
    }

    .btn:hover {
      transform: translateY(-1px);
    }

    .btn-primary {
      background: var(--primary);
      color: #fff;
      box-shadow: 0 10px 22px rgba(18, 183, 106, .22);
    }

    .btn-primary:hover {
      background: var(--primary-dark);
      box-shadow: 0 14px 28px rgba(18, 183, 106, .26);
    }

    .btn-secondary {
      background: #fff;
      color: var(--graphite);
      border-color: var(--line);
    }

    .btn-secondary:hover {
      border-color: rgba(18, 183, 106, .32);
      color: var(--primary-dark);
      box-shadow: var(--shadow-sm);
    }

    .mobile-toggle {
      display: none;
      width: 42px;
      height: 42px;
      align-items: center;
      justify-content: center;
      border-radius: var(--radius);
      color: var(--graphite);
      background: #fff;
      border: 1px solid var(--line);
    }

    .mobile-panel {
      display: none;
      border-top: 1px solid var(--line);
      padding: 12px 0 18px;
    }

    .hero {
      padding: 42px 0 26px;
    }

    .hero-stage {
      min-height: 470px;
      display: grid;
      grid-template-columns: 1.08fr .92fr;
      gap: 24px;
      align-items: stretch;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background:
        linear-gradient(120deg, #ffffff 0%, #ffffff 48%, #eef9f3 100%);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .hero-copy {
      padding: 46px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      width: fit-content;
      padding: 6px 10px;
      border: 1px solid rgba(18, 183, 106, .22);
      border-radius: var(--radius-sm);
      background: var(--primary-soft);
      color: var(--primary-dark);
      font-weight: 800;
      font-size: 13px;
      margin-bottom: 16px;
    }

    .hero h1 {
      margin: 0;
      max-width: 720px;
      font-size: clamp(34px, 5vw, 58px);
      line-height: 1.08;
      font-weight: 950;
      letter-spacing: 0;
      color: #102018;
    }

    .hero p {
      margin: 18px 0 0;
      max-width: 680px;
      color: var(--muted);
      font-size: 17px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }

    .hero-data {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 34px;
      max-width: 680px;
    }

    .data-card {
      padding: 14px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .84);
    }

    .data-card strong {
      display: block;
      font-size: 24px;
      line-height: 1.1;
      color: var(--graphite);
    }

    .data-card span {
      display: block;
      margin-top: 6px;
      color: var(--muted);
      font-size: 13px;
    }

    .hero-panel {
      padding: 24px;
      background: #f7fbf8;
      border-left: 1px solid var(--line);
      display: flex;
      align-items: center;
    }

    .time-board {
      width: 100%;
      padding: 22px;
      border-radius: var(--radius);
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-sm);
    }

    .board-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--line);
    }

    .board-head h2 {
      margin: 0;
      font-size: 19px;
      font-weight: 900;
      line-height: 1.25;
    }

    .status-dot {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--primary-dark);
      font-weight: 800;
      font-size: 13px;
    }

    .status-dot::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--primary);
      box-shadow: 0 0 0 5px rgba(18, 183, 106, .12);
    }

    .slot-list {
      margin-top: 18px;
      display: grid;
      gap: 10px;
    }

    .slot-item {
      display: grid;
      grid-template-columns: 72px 1fr auto;
      align-items: center;
      gap: 12px;
      padding: 13px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fbfdfb;
    }

    .slot-time {
      font-weight: 900;
      color: var(--graphite);
    }

    .slot-info b {
      display: block;
      line-height: 1.25;
      font-size: 14px;
    }

    .slot-info span {
      color: var(--muted);
      font-size: 12px;
    }

    .mini-badge {
      display: inline-flex;
      align-items: center;
      min-height: 26px;
      padding: 0 9px;
      border-radius: var(--radius-sm);
      background: var(--primary-soft);
      color: var(--primary-dark);
      font-size: 12px;
      font-weight: 800;
      white-space: nowrap;
    }

    .section {
      padding: 54px 0;
    }

    .section-tight {
      padding: 34px 0;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 22px;
    }

    .section-title {
      margin: 0;
      font-size: clamp(24px, 3vw, 34px);
      line-height: 1.18;
      font-weight: 950;
      color: #14231b;
    }

    .section-desc {
      margin: 10px 0 0;
      max-width: 680px;
      color: var(--muted);
      font-size: 15px;
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      min-height: 32px;
      padding: 0 10px;
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      background: #fff;
      color: #47564e;
      font-size: 13px;
      font-weight: 700;
    }

    .tag.active,
    .tag:hover {
      border-color: rgba(18, 183, 106, .32);
      background: var(--primary-soft);
      color: var(--primary-dark);
    }

    .feature-strip {
      display: grid;
      grid-template-columns: 1.1fr .9fr .9fr;
      gap: 14px;
    }

    .feature-card,
    .collection-card,
    .entry-card,
    .related-card,
    .faq-item,
    .form-card,
    .news-panel,
    .step-card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--surface);
      box-shadow: var(--shadow-sm);
    }

    .feature-card {
      padding: 22px;
      min-height: 176px;
    }

    .feature-card strong {
      display: block;
      margin-top: 14px;
      font-size: 18px;
      line-height: 1.28;
      color: var(--graphite);
    }

    .feature-card p {
      margin: 9px 0 0;
      color: var(--muted);
      font-size: 14px;
    }

    .icon-box {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: var(--radius);
      background: var(--primary-soft);
      color: var(--primary-dark);
      border: 1px solid rgba(18, 183, 106, .18);
    }

    .collection-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    .collection-card {
      padding: 18px;
      position: relative;
      overflow: hidden;
    }

    .collection-card::after {
      content: "";
      position: absolute;
      right: -20px;
      bottom: -24px;
      width: 92px;
      height: 92px;
      border-radius: 50%;
      background: rgba(18, 183, 106, .08);
    }

    .collection-card small {
      color: var(--subtle);
      font-weight: 800;
    }

    .collection-card h3 {
      margin: 10px 0 8px;
      font-size: 18px;
      font-weight: 900;
      line-height: 1.25;
    }

    .collection-card p {
      margin: 0;
      min-height: 46px;
      color: var(--muted);
      font-size: 14px;
    }

    .collection-meta {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      margin-top: 16px;
      color: var(--primary-dark);
      font-weight: 800;
      font-size: 13px;
    }

    .time-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 12px;
    }

    .time-card {
      padding: 16px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .time-card:hover {
      transform: translateY(-2px);
      border-color: rgba(18, 183, 106, .34);
      box-shadow: var(--shadow-sm);
    }

    .time-card b {
      display: block;
      font-size: 20px;
      color: var(--graphite);
    }

    .time-card span {
      display: block;
      margin-top: 6px;
      color: var(--muted);
      font-size: 13px;
    }

    .entry-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .entry-card {
      overflow: hidden;
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }

    .entry-card:hover {
      transform: translateY(-3px);
      border-color: rgba(18, 183, 106, .36);
      box-shadow: var(--shadow);
    }

    .preview {
      height: 156px;
      background:
        linear-gradient(135deg, rgba(18, 183, 106, .13), rgba(243, 181, 70, .13)),
        repeating-linear-gradient(90deg, #f8fbf9 0, #f8fbf9 20px, #eef5f0 20px, #eef5f0 40px);
      padding: 14px;
      display: flex;
      align-items: end;
    }

    .preview-inner {
      width: 100%;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 10px;
      align-items: end;
      padding: 12px;
      border-radius: var(--radius-sm);
      background: rgba(255, 255, 255, .86);
      border: 1px solid rgba(255, 255, 255, .9);
    }

    .preview-title {
      font-weight: 900;
      color: var(--graphite);
      line-height: 1.25;
    }

    .entry-body {
      padding: 18px;
    }

    .entry-body h3 {
      margin: 0;
      font-size: 18px;
      font-weight: 900;
      line-height: 1.3;
    }

    .entry-body p {
      margin: 9px 0 14px;
      color: var(--muted);
      font-size: 14px;
    }

    .entry-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .link-btn {
      color: var(--primary-dark);
      font-weight: 900;
      font-size: 14px;
    }

    .link-btn:hover {
      color: #05603a;
    }

    .news-layout {
      display: grid;
      grid-template-columns: 1.35fr .65fr;
      gap: 18px;
      align-items: start;
    }

    .news-panel {
      padding: 18px;
    }

    .news-list {
      display: grid;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .news-list a {
      display: grid;
      grid-template-columns: 90px 1fr auto;
      gap: 12px;
      align-items: center;
      padding: 12px;
      border-radius: var(--radius-sm);
      border: 1px solid transparent;
      background: #fbfdfb;
    }

    .news-list a:hover {
      border-color: rgba(18, 183, 106, .26);
      background: #fff;
      box-shadow: var(--shadow-sm);
    }

    .news-time {
      color: var(--primary-dark);
      font-weight: 900;
      font-size: 13px;
    }

    .news-title {
      font-weight: 800;
      color: var(--graphite);
      overflow-wrap: anywhere;
    }

    .news-note {
      color: var(--subtle);
      font-size: 13px;
      white-space: nowrap;
    }

    .recommend-stack {
      display: grid;
      gap: 12px;
    }

    .related-card {
      padding: 16px;
    }

    .related-card h3 {
      margin: 0 0 8px;
      font-size: 17px;
      font-weight: 900;
      line-height: 1.25;
    }

    .related-card p {
      margin: 0 0 12px;
      color: var(--muted);
      font-size: 14px;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    .step-card {
      padding: 18px;
    }

    .step-no {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border-radius: var(--radius-sm);
      background: var(--graphite);
      color: #fff;
      font-weight: 900;
    }

    .step-card h3 {
      margin: 14px 0 8px;
      font-size: 17px;
      font-weight: 900;
    }

    .step-card p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .form-wrap {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 22px;
      align-items: stretch;
    }

    .cta-panel {
      padding: 28px;
      border-radius: var(--radius);
      background: var(--graphite);
      color: #fff;
      overflow: hidden;
      position: relative;
    }

    .cta-panel::after {
      content: "";
      position: absolute;
      right: -60px;
      top: -60px;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: rgba(18, 183, 106, .26);
    }

    .cta-panel h2 {
      margin: 0;
      font-size: 30px;
      line-height: 1.18;
      font-weight: 950;
      position: relative;
      z-index: 1;
    }

    .cta-panel p {
      margin: 12px 0 0;
      color: rgba(255, 255, 255, .75);
      position: relative;
      z-index: 1;
    }

    .share-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 24px;
      position: relative;
      z-index: 1;
    }

    .share-actions .btn-secondary {
      background: rgba(255, 255, 255, .08);
      color: #fff;
      border-color: rgba(255, 255, 255, .18);
    }

    .form-card {
      padding: 22px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    .field {
      display: grid;
      gap: 7px;
    }

    .field.full {
      grid-column: 1 / -1;
    }

    .field label {
      color: var(--graphite);
      font-weight: 800;
      font-size: 13px;
    }

    .field input,
    .field select,
    .field textarea {
      width: 100%;
      min-height: 44px;
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      background: #fbfdfb;
      padding: 10px 12px;
      color: var(--text);
    }

    .field textarea {
      resize: vertical;
      min-height: 92px;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .faq-item {
      padding: 18px;
    }

    .faq-item h3 {
      margin: 0 0 8px;
      font-size: 17px;
      font-weight: 900;
      color: var(--graphite);
    }

    .faq-item p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .site-footer {
      margin-top: 26px;
      background: #111d16;
      color: rgba(255, 255, 255, .76);
      padding: 42px 0 28px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr .8fr;
      gap: 28px;
    }

    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: #fff;
      font-weight: 900;
      font-size: 18px;
    }

    .footer-text {
      margin: 14px 0 0;
      max-width: 520px;
      color: rgba(255, 255, 255, .66);
      font-size: 14px;
    }

    .footer-title {
      color: #fff;
      font-weight: 900;
      margin-bottom: 12px;
    }

    .footer-links {
      display: grid;
      gap: 8px;
    }

    .footer-links a:hover {
      color: #fff;
    }

    .copyright {
      margin-top: 30px;
      padding-top: 18px;
      border-top: 1px solid rgba(255, 255, 255, .12);
      color: rgba(255, 255, 255, .54);
      font-size: 13px;
    }

    @media (max-width: 1024px) {
      .nav-shell {
        grid-template-columns: auto auto;
        justify-content: space-between;
      }

      .desktop-nav,
      .nav-actions {
        display: none;
      }

      .mobile-toggle {
        display: inline-flex;
      }

      .mobile-panel.open {
        display: block;
      }

      .mobile-panel .desktop-nav,
      .mobile-panel .nav-actions {
        display: grid;
        justify-content: stretch;
      }

      .mobile-panel .desktop-nav {
        gap: 8px;
        margin-bottom: 12px;
      }

      .mobile-panel .nav-actions {
        gap: 10px;
      }

      .mobile-panel .search-box {
        width: 100%;
      }

      .hero-stage,
      .news-layout,
      .form-wrap {
        grid-template-columns: 1fr;
      }

      .hero-panel {
        border-left: 0;
        border-top: 1px solid var(--line);
      }

      .feature-strip,
      .entry-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .collection-grid,
      .steps {
        grid-template-columns: repeat(2, 1fr);
      }

      .time-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 768px) {
      .site-container {
        width: min(100% - 28px, var(--container));
      }

      .hero {
        padding-top: 24px;
      }

      .hero-copy,
      .hero-panel {
        padding: 22px;
      }

      .hero-data,
      .feature-strip,
      .collection-grid,
      .entry-grid,
      .steps,
      .faq-grid,
      .form-grid {
        grid-template-columns: 1fr;
      }

      .section {
        padding: 40px 0;
      }

      .section-head {
        display: block;
      }

      .tag-row {
        margin-top: 16px;
      }

      .time-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .slot-item {
        grid-template-columns: 1fr;
        align-items: start;
      }

      .news-list a {
        grid-template-columns: 1fr;
        gap: 4px;
      }

      .news-note {
        white-space: normal;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 520px) {
      .brand-text {
        font-size: 16px;
      }

      .hero h1 {
        font-size: 32px;
      }

      .hero-actions .btn,
      .share-actions .btn {
        width: 100%;
      }

      .time-grid {
        grid-template-columns: 1fr;
      }

      .preview {
        height: 136px;
      }
    }

/* roulang page: category1 */
:root {
      --bg: #f7faf8;
      --surface: #ffffff;
      --surface-soft: #f1f6f3;
      --text: #17201b;
      --muted: #66736b;
      --subtle: #8b978f;
      --border: #dfe8e2;
      --primary: #10b981;
      --primary-dark: #059669;
      --primary-soft: #e8f8f1;
      --accent: #f4c95d;
      --ink: #26312b;
      --radius: 8px;
      --shadow-sm: 0 8px 22px rgba(23, 32, 27, .06);
      --shadow-md: 0 16px 38px rgba(23, 32, 27, .1);
      --container: 1180px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 12% 0%, rgba(16, 185, 129, .08), transparent 30%),
        linear-gradient(180deg, #fbfdfb 0%, var(--bg) 42%, #ffffff 100%);
      line-height: 1.65;
      letter-spacing: 0;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img,
    svg {
      display: block;
      max-width: 100%;
    }

    button,
    input {
      font: inherit;
    }

    button {
      border: 0;
      cursor: pointer;
    }

    input {
      min-width: 0;
      border: 0;
      outline: none;
      background: transparent;
    }

    .site-container {
      width: min(var(--container), calc(100% - 40px));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, .92);
      border-bottom: 1px solid rgba(223, 232, 226, .88);
      backdrop-filter: blur(16px);
      transition: box-shadow .22s ease, background .22s ease;
    }

    .site-header.is-scrolled {
      box-shadow: var(--shadow-sm);
      background: rgba(255, 255, 255, .97);
    }

    .nav-shell {
      height: 74px;
      display: flex;
      align-items: center;
      gap: 22px;
    }

    .brand,
    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 800;
      color: var(--ink);
      white-space: nowrap;
    }

    .brand-mark {
      width: 34px;
      height: 34px;
      border-radius: var(--radius);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-dark);
      background: var(--primary-soft);
      border: 1px solid rgba(16, 185, 129, .24);
      flex: 0 0 auto;
    }

    .brand-text {
      font-size: 17px;
      letter-spacing: 0;
    }

    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 6px;
      flex: 1;
    }

    .nav-link {
      position: relative;
      display: inline-flex;
      align-items: center;
      height: 38px;
      padding: 0 13px;
      border-radius: var(--radius);
      color: var(--muted);
      font-size: 14px;
      font-weight: 650;
      transition: color .2s ease, background .2s ease;
      white-space: nowrap;
    }

    .nav-link:hover,
    .nav-link:focus-visible {
      color: var(--primary-dark);
      background: var(--surface-soft);
    }

    .nav-link.active {
      color: var(--primary-dark);
      background: var(--primary-soft);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .search-box {
      width: 230px;
      height: 40px;
      display: flex;
      align-items: center;
      gap: 9px;
      color: var(--subtle);
      background: #f7faf8;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 0 12px;
      transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    }

    .search-box:focus-within {
      border-color: rgba(16, 185, 129, .72);
      box-shadow: 0 0 0 4px rgba(16, 185, 129, .12);
      background: #fff;
    }

    .search-box input {
      width: 100%;
      color: var(--text);
      font-size: 14px;
    }

    .search-box input::placeholder {
      color: #9aa6a0;
    }

    .btn {
      min-height: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 0 16px;
      border-radius: var(--radius);
      font-size: 14px;
      font-weight: 750;
      border: 1px solid transparent;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
      white-space: nowrap;
    }

    .btn:hover {
      transform: translateY(-1px);
    }

    .btn:active {
      transform: translateY(0);
    }

    .btn:focus-visible,
    .mobile-toggle:focus-visible {
      outline: 3px solid rgba(16, 185, 129, .25);
      outline-offset: 2px;
    }

    .btn-primary {
      color: #fff;
      background: var(--primary);
      border-color: var(--primary);
      box-shadow: 0 10px 22px rgba(16, 185, 129, .22);
    }

    .btn-primary:hover {
      background: var(--primary-dark);
      border-color: var(--primary-dark);
      box-shadow: 0 14px 26px rgba(16, 185, 129, .28);
    }

    .btn-secondary {
      color: var(--ink);
      background: #fff;
      border-color: var(--border);
    }

    .btn-secondary:hover {
      border-color: rgba(16, 185, 129, .38);
      background: var(--primary-soft);
      color: var(--primary-dark);
    }

    .mobile-toggle {
      display: none;
      width: 42px;
      height: 42px;
      align-items: center;
      justify-content: center;
      border-radius: var(--radius);
      color: var(--ink);
      background: #fff;
      border: 1px solid var(--border);
    }

    .mobile-panel {
      display: none;
      padding: 0 0 16px;
      border-top: 1px solid var(--border);
    }

    main {
      overflow: hidden;
    }

    .section {
      padding: 72px 0;
    }

    .section-tight {
      padding: 52px 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--primary-dark);
      background: var(--primary-soft);
      border: 1px solid rgba(16, 185, 129, .2);
      border-radius: 999px;
      padding: 7px 12px;
      font-size: 13px;
      font-weight: 800;
    }

    .status-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--primary);
      box-shadow: 0 0 0 4px rgba(16, 185, 129, .13);
    }

    .hero {
      padding: 48px 0 38px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
      gap: 34px;
      align-items: stretch;
    }

    .hero-copy {
      padding: 28px 0;
    }

    .hero h1 {
      margin: 18px 0 16px;
      color: var(--ink);
      font-size: clamp(32px, 4vw, 52px);
      line-height: 1.12;
      font-weight: 900;
      letter-spacing: 0;
    }

    .hero-subtitle {
      max-width: 670px;
      margin: 0;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.85;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }

    .hero-metrics {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-top: 30px;
    }

    .metric-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 16px;
      box-shadow: var(--shadow-sm);
    }

    .metric-value {
      font-size: 24px;
      font-weight: 900;
      line-height: 1.2;
      color: var(--ink);
    }

    .metric-label {
      margin-top: 4px;
      color: var(--subtle);
      font-size: 13px;
    }

    .screen-stage {
      position: relative;
      min-height: 480px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 8px;
      box-shadow: var(--shadow-md);
      padding: 18px;
    }

    .stage-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding-bottom: 14px;
      border-bottom: 1px solid var(--border);
    }

    .stage-title {
      font-weight: 850;
      color: var(--ink);
    }

    .stage-tabs,
    .filter-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .mini-tab,
    .filter-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 32px;
      padding: 0 11px;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: #fff;
      color: var(--muted);
      font-size: 13px;
      font-weight: 750;
      transition: background .2s ease, color .2s ease, border-color .2s ease;
    }

    .mini-tab.active,
    .filter-pill.active {
      color: var(--primary-dark);
      background: var(--primary-soft);
      border-color: rgba(16, 185, 129, .28);
    }

    .time-panel {
      display: grid;
      gap: 12px;
      margin-top: 18px;
    }

    .time-row {
      display: grid;
      grid-template-columns: 68px 1fr auto;
      gap: 12px;
      align-items: center;
      padding: 14px;
      background: #fbfdfb;
      border: 1px solid var(--border);
      border-radius: var(--radius);
    }

    .time {
      color: var(--ink);
      font-weight: 850;
    }

    .time-main {
      min-width: 0;
    }

    .time-title {
      color: var(--ink);
      font-weight: 800;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .time-meta {
      color: var(--subtle);
      font-size: 13px;
      margin-top: 3px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      min-height: 28px;
      padding: 0 10px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 850;
      white-space: nowrap;
    }

    .badge-live {
      color: #057a55;
      background: #dcfce7;
    }

    .badge-warm {
      color: #8a5a00;
      background: #fff5cf;
    }

    .badge-soft {
      color: #587066;
      background: #eef5f1;
    }

    .filter-board {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: var(--shadow-sm);
      padding: 18px;
    }

    .filter-row {
      display: grid;
      grid-template-columns: 86px 1fr;
      gap: 14px;
      align-items: start;
      padding: 14px 0;
      border-bottom: 1px solid var(--border);
    }

    .filter-row:last-child {
      border-bottom: 0;
      padding-bottom: 0;
    }

    .filter-name {
      color: var(--ink);
      font-size: 14px;
      font-weight: 850;
      padding-top: 5px;
    }

    .list-toolbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin: 26px 0 18px;
    }

    .section-title h2,
    .list-toolbar h2 {
      margin: 0;
      color: var(--ink);
      font-size: 28px;
      line-height: 1.24;
      font-weight: 900;
      letter-spacing: 0;
    }

    .section-title p {
      max-width: 720px;
      margin: 10px 0 0;
      color: var(--muted);
    }

    .sort-group {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }

    .sort-label {
      color: var(--subtle);
      font-size: 13px;
      font-weight: 750;
    }

    .anchor-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    .anchor-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: var(--shadow-sm);
      overflow: hidden;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .anchor-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
      border-color: rgba(16, 185, 129, .32);
    }

    .preview {
      min-height: 142px;
      position: relative;
      padding: 14px;
      background:
        linear-gradient(135deg, rgba(16, 185, 129, .12), rgba(244, 201, 93, .12)),
        #f8fbf9;
      border-bottom: 1px solid var(--border);
    }

    .preview-window {
      height: 114px;
      border-radius: var(--radius);
      border: 1px solid rgba(223, 232, 226, .95);
      background:
        linear-gradient(90deg, rgba(255,255,255,.9), rgba(255,255,255,.7)),
        repeating-linear-gradient(135deg, rgba(16,185,129,.12) 0 10px, rgba(255,255,255,.45) 10px 20px);
      display: grid;
      grid-template-columns: 1fr 76px;
      gap: 10px;
      padding: 12px;
      align-items: end;
    }

    .preview-bars {
      display: grid;
      gap: 8px;
    }

    .preview-bars span {
      display: block;
      height: 10px;
      border-radius: 999px;
      background: rgba(38, 49, 43, .12);
    }

    .preview-bars span:nth-child(1) {
      width: 82%;
      background: rgba(16, 185, 129, .34);
    }

    .preview-bars span:nth-child(2) {
      width: 62%;
    }

    .preview-bars span:nth-child(3) {
      width: 74%;
    }

    .preview-avatar {
      width: 70px;
      height: 70px;
      border-radius: 8px;
      background:
        radial-gradient(circle at 50% 34%, #fff 0 18px, transparent 19px),
        radial-gradient(circle at 50% 82%, rgba(16,185,129,.45) 0 34px, transparent 35px),
        #e9f6ef;
      border: 1px solid rgba(16,185,129,.22);
    }

    .card-body {
      padding: 16px;
    }

    .card-topline {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin-bottom: 10px;
    }

    .card-title {
      margin: 0;
      color: var(--ink);
      font-size: 17px;
      font-weight: 900;
      line-height: 1.32;
    }

    .card-desc {
      min-height: 48px;
      margin: 8px 0 14px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.7;
    }

    .card-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      margin-bottom: 14px;
    }

    .card-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .card-actions .btn {
      flex: 1;
      min-height: 38px;
      padding: 0 12px;
    }

    .side-note {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 18px;
    }

    .note-card {
      padding: 18px;
      border: 1px solid var(--border);
      background: #fff;
      border-radius: var(--radius);
      box-shadow: var(--shadow-sm);
    }

    .note-card strong {
      display: block;
      color: var(--ink);
      font-size: 16px;
      margin-bottom: 6px;
    }

    .note-card p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .related-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
      margin-top: 22px;
    }

    .related-card {
      min-height: 118px;
      padding: 16px;
      border-radius: var(--radius);
      border: 1px solid var(--border);
      background: #fff;
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }

    .related-card:hover {
      transform: translateY(-2px);
      border-color: rgba(16, 185, 129, .32);
      box-shadow: var(--shadow-sm);
    }

    .related-card span {
      color: var(--primary-dark);
      font-size: 12px;
      font-weight: 850;
    }

    .related-card h3 {
      margin: 8px 0 6px;
      color: var(--ink);
      font-size: 16px;
      font-weight: 900;
    }

    .related-card p {
      margin: 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.6;
    }

    .faq-wrap {
      display: grid;
      grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
      gap: 28px;
      align-items: start;
    }

    .faq-list {
      display: grid;
      gap: 12px;
    }

    .faq-item {
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: #fff;
      box-shadow: var(--shadow-sm);
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 18px;
      color: var(--ink);
      background: #fff;
      text-align: left;
      font-weight: 850;
    }

    .faq-question:hover {
      background: #fbfdfb;
    }

    .faq-icon {
      width: 24px;
      height: 24px;
      flex: 0 0 auto;
      border-radius: 999px;
      background: var(--primary-soft);
      color: var(--primary-dark);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: transform .2s ease;
    }

    .faq-answer {
      display: none;
      padding: 0 18px 18px;
      color: var(--muted);
      font-size: 14px;
    }

    .faq-item.open .faq-answer {
      display: block;
    }

    .faq-item.open .faq-icon {
      transform: rotate(45deg);
    }

    .cta-panel {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 22px;
      align-items: center;
      padding: 28px;
      border-radius: var(--radius);
      border: 1px solid rgba(16, 185, 129, .22);
      background:
        linear-gradient(135deg, rgba(232, 248, 241, .95), rgba(255, 255, 255, .96)),
        #fff;
      box-shadow: var(--shadow-md);
    }

    .cta-panel h2 {
      margin: 0;
      color: var(--ink);
      font-size: 28px;
      font-weight: 900;
      line-height: 1.28;
    }

    .cta-panel p {
      max-width: 720px;
      margin: 9px 0 0;
      color: var(--muted);
    }

    .cta-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .site-footer {
      padding: 48px 0 28px;
      background: #111a15;
      color: rgba(255,255,255,.84);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(160px, .7fr) minmax(160px, .7fr);
      gap: 34px;
      align-items: start;
    }

    .footer-brand {
      color: #fff;
      font-size: 17px;
    }

    .footer-text {
      max-width: 430px;
      margin: 14px 0 0;
      color: rgba(255,255,255,.66);
      font-size: 14px;
      line-height: 1.8;
    }

    .footer-title {
      color: #fff;
      font-size: 14px;
      font-weight: 850;
      margin-bottom: 12px;
    }

    .footer-links {
      display: grid;
      gap: 9px;
    }

    .footer-links a {
      color: rgba(255,255,255,.66);
      font-size: 14px;
      transition: color .2s ease;
    }

    .footer-links a:hover {
      color: #fff;
    }

    .copyright {
      margin-top: 34px;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,.1);
      color: rgba(255,255,255,.52);
      font-size: 13px;
    }

    @media (max-width: 1080px) {
      .nav-actions .search-box {
        display: none;
      }

      .hero-grid {
        grid-template-columns: 1fr;
      }

      .screen-stage {
        min-height: auto;
      }

      .anchor-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 820px) {
      .site-container {
        width: min(100% - 28px, var(--container));
      }

      .nav-shell {
        height: 66px;
      }

      .nav-shell > .desktop-nav,
      .nav-shell > .nav-actions {
        display: none;
      }

      .mobile-toggle {
        display: inline-flex;
        margin-left: auto;
      }

      .mobile-panel.open {
        display: block;
      }

      .mobile-panel .desktop-nav,
      .mobile-panel .nav-actions {
        display: grid;
        gap: 10px;
        padding-top: 14px;
      }

      .mobile-panel .search-box {
        display: flex;
        width: 100%;
      }

      .mobile-panel .btn {
        width: 100%;
      }

      .hero {
        padding-top: 30px;
      }

      .hero-copy {
        padding: 12px 0;
      }

      .hero-metrics,
      .side-note,
      .faq-wrap,
      .cta-panel,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .filter-row {
        grid-template-columns: 1fr;
        gap: 8px;
      }

      .filter-name {
        padding-top: 0;
      }

      .list-toolbar {
        align-items: flex-start;
        flex-direction: column;
      }

      .cta-actions {
        justify-content: flex-start;
      }
    }

    @media (max-width: 560px) {
      .brand-text {
        max-width: 190px;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .section {
        padding: 52px 0;
      }

      .section-tight {
        padding: 40px 0;
      }

      .hero h1 {
        font-size: 31px;
      }

      .hero-subtitle {
        font-size: 15px;
      }

      .hero-actions,
      .card-actions,
      .cta-actions {
        flex-direction: column;
      }

      .hero-actions .btn,
      .card-actions .btn,
      .cta-actions .btn {
        width: 100%;
      }

      .hero-metrics,
      .anchor-grid,
      .related-grid {
        grid-template-columns: 1fr;
      }

      .time-row {
        grid-template-columns: 54px 1fr;
      }

      .time-row .badge {
        grid-column: 1 / -1;
        justify-self: start;
      }

      .preview-window {
        grid-template-columns: 1fr 62px;
      }

      .preview-avatar {
        width: 58px;
        height: 58px;
      }
    }

/* roulang page: category2 */
:root {
      --bg: #f7faf8;
      --surface: #ffffff;
      --surface-soft: #f0f7f3;
      --text: #16211c;
      --muted: #66736d;
      --light: #8b9892;
      --line: #dfe8e3;
      --primary: #11a863;
      --primary-dark: #07824b;
      --primary-soft: #e8f8ef;
      --accent: #f4b740;
      --graphite: #24312b;
      --radius: 8px;
      --shadow: 0 14px 34px rgba(19, 48, 34, .08);
      --shadow-soft: 0 8px 22px rgba(19, 48, 34, .06);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--text);
      background:
        linear-gradient(180deg, #ffffff 0%, var(--bg) 42%, #ffffff 100%);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
      line-height: 1.65;
      text-rendering: optimizeLegibility;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
    }

    img,
    svg {
      display: block;
      max-width: 100%;
    }

    button,
    input {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    input {
      width: 100%;
      border: 0;
      outline: 0;
      background: transparent;
      color: var(--text);
    }

    input::placeholder {
      color: #98a49e;
    }

    :focus-visible {
      outline: 3px solid rgba(17, 168, 99, .22);
      outline-offset: 3px;
    }

    .site-container {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      padding: 14px 0;
      background: rgba(255, 255, 255, .88);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(223, 232, 227, .84);
      transition: padding .2s ease, box-shadow .2s ease;
    }

    .site-header.is-scrolled {
      padding: 9px 0;
      box-shadow: 0 10px 24px rgba(22, 33, 28, .08);
    }

    .nav-shell {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      min-height: 52px;
    }

    .brand,
    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 800;
      color: var(--graphite);
      letter-spacing: 0;
      white-space: nowrap;
    }

    .brand-mark {
      display: grid;
      width: 36px;
      height: 36px;
      place-items: center;
      color: var(--primary);
      background: var(--primary-soft);
      border: 1px solid rgba(17, 168, 99, .18);
      border-radius: var(--radius);
    }

    .brand-text {
      font-size: 17px;
      line-height: 1.2;
    }

    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .nav-link {
      display: inline-flex;
      align-items: center;
      min-height: 38px;
      padding: 0 13px;
      border-radius: var(--radius);
      color: var(--muted);
      font-size: 14px;
      font-weight: 700;
    }

    .nav-link:hover,
    .nav-link.active {
      color: var(--primary-dark);
      background: var(--primary-soft);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .search-box {
      display: flex;
      align-items: center;
      gap: 8px;
      width: 238px;
      min-height: 40px;
      padding: 0 12px;
      color: var(--light);
      background: #f7faf8;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
    }

    .search-box:focus-within {
      background: #ffffff;
      border-color: rgba(17, 168, 99, .42);
      box-shadow: 0 0 0 4px rgba(17, 168, 99, .09);
    }

    .search-box input {
      min-width: 0;
      font-size: 13px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 40px;
      padding: 0 16px;
      border: 1px solid transparent;
      border-radius: var(--radius);
      font-size: 14px;
      font-weight: 800;
      white-space: nowrap;
    }

    .btn:hover {
      transform: translateY(-1px);
    }

    .btn-primary {
      color: #ffffff;
      background: var(--primary);
      box-shadow: 0 10px 20px rgba(17, 168, 99, .18);
    }

    .btn-primary:hover {
      background: var(--primary-dark);
      box-shadow: 0 14px 26px rgba(17, 168, 99, .24);
    }

    .btn-secondary {
      color: var(--graphite);
      background: #ffffff;
      border-color: var(--line);
    }

    .btn-secondary:hover {
      color: var(--primary-dark);
      border-color: rgba(17, 168, 99, .35);
      box-shadow: var(--shadow-soft);
    }

    .mobile-toggle {
      display: none;
      width: 42px;
      height: 42px;
      place-items: center;
      color: var(--graphite);
      background: #ffffff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
    }

    .mobile-panel {
      display: none;
      padding: 14px 0 4px;
      border-top: 1px solid var(--line);
    }

    main {
      overflow: hidden;
    }

    .section {
      padding: 72px 0;
    }

    .section.tight {
      padding-top: 42px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 30px;
      padding: 0 10px;
      color: var(--primary-dark);
      background: var(--primary-soft);
      border: 1px solid rgba(17, 168, 99, .18);
      border-radius: var(--radius);
      font-size: 13px;
      font-weight: 800;
    }

    .eyebrow-dot {
      width: 7px;
      height: 7px;
      background: var(--primary);
      border-radius: 999px;
      box-shadow: 0 0 0 5px rgba(17, 168, 99, .12);
    }

    .hero-category {
      padding: 54px 0 34px;
      background:
        radial-gradient(circle at 88% 16%, rgba(244, 183, 64, .14), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
      border-bottom: 1px solid var(--line);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
      align-items: center;
      gap: 36px;
    }

    .hero-copy {
      position: relative;
      padding: 28px 0;
    }

    .limited-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 18px;
      padding: 8px 11px;
      color: #6b4300;
      background: #fff6dc;
      border: 1px solid #f4df9b;
      border-radius: var(--radius);
      font-size: 13px;
      font-weight: 800;
    }

    .limited-badge strong {
      color: #20261f;
    }

    h1 {
      max-width: 720px;
      margin: 0;
      font-size: clamp(34px, 5vw, 58px);
      line-height: 1.06;
      letter-spacing: 0;
      font-weight: 900;
      color: var(--graphite);
    }

    .hero-lead {
      max-width: 660px;
      margin: 18px 0 0;
      color: var(--muted);
      font-size: 17px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 26px;
    }

    .hero-note {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 22px;
      color: var(--muted);
      font-size: 13px;
    }

    .hero-note span {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 9px;
      background: #ffffff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
    }

    .stage-card {
      position: relative;
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .burst {
      position: absolute;
      top: 16px;
      right: 16px;
      z-index: 2;
      display: grid;
      width: 78px;
      height: 78px;
      place-items: center;
      color: #ffffff;
      background: var(--primary);
      border-radius: 50%;
      font-size: 13px;
      font-weight: 900;
      text-align: center;
      line-height: 1.22;
      transform: rotate(8deg);
      box-shadow: 0 14px 24px rgba(17, 168, 99, .22);
    }

    .stage-top {
      padding: 20px;
      background:
        linear-gradient(135deg, #f4fff8 0%, #ffffff 58%),
        #ffffff;
      border-bottom: 1px solid var(--line);
    }

    .stage-title {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 14px;
      padding-right: 84px;
    }

    .stage-title strong {
      font-size: 16px;
      color: var(--graphite);
    }

    .status-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 9px;
      color: var(--primary-dark);
      background: var(--primary-soft);
      border-radius: var(--radius);
      font-size: 12px;
      font-weight: 800;
      white-space: nowrap;
    }

    .status-pill::before {
      content: "";
      width: 7px;
      height: 7px;
      background: var(--primary);
      border-radius: 999px;
    }

    .alert-board {
      display: grid;
      gap: 10px;
    }

    .alert-row {
      display: grid;
      grid-template-columns: 84px minmax(0, 1fr) auto;
      align-items: center;
      gap: 12px;
      padding: 12px;
      background: #ffffff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
    }

    .alert-time {
      color: var(--graphite);
      font-size: 13px;
      font-weight: 900;
    }

    .alert-main {
      min-width: 0;
    }

    .alert-main b {
      display: block;
      overflow: hidden;
      color: var(--text);
      font-size: 14px;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .alert-main span {
      display: block;
      overflow: hidden;
      color: var(--muted);
      font-size: 12px;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .alert-state {
      color: var(--primary-dark);
      font-size: 12px;
      font-weight: 900;
    }

    .stage-bottom {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--line);
    }

    .stage-stat {
      padding: 16px;
      background: #ffffff;
    }

    .stage-stat strong {
      display: block;
      color: var(--graphite);
      font-size: 22px;
      line-height: 1;
    }

    .stage-stat span {
      display: block;
      margin-top: 6px;
      color: var(--muted);
      font-size: 12px;
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(280px, .45fr);
      align-items: end;
      gap: 24px;
      margin-bottom: 24px;
    }

    .section-head h2 {
      margin: 10px 0 0;
      color: var(--graphite);
      font-size: clamp(25px, 3vw, 38px);
      line-height: 1.16;
      font-weight: 900;
    }

    .section-head p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
    }

    .filter-panel {
      padding: 16px;
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow-soft);
    }

    .filter-row {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 0;
      border-bottom: 1px solid var(--line);
    }

    .filter-row:last-child {
      border-bottom: 0;
    }

    .filter-label {
      width: 70px;
      flex: 0 0 auto;
      color: var(--graphite);
      font-size: 13px;
      font-weight: 900;
    }

    .filter-options {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      min-width: 0;
    }

    .chip {
      display: inline-flex;
      align-items: center;
      min-height: 32px;
      padding: 0 11px;
      color: var(--muted);
      background: #ffffff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      font-size: 13px;
      font-weight: 800;
    }

    .chip:hover,
    .chip.active {
      color: var(--primary-dark);
      background: var(--primary-soft);
      border-color: rgba(17, 168, 99, .28);
    }

    .list-tools {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin: 18px 0;
      padding: 13px 14px;
      background: #ffffff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
    }

    .tool-summary {
      color: var(--muted);
      font-size: 13px;
    }

    .tool-summary strong {
      color: var(--primary-dark);
    }

    .sort-tabs {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .sort-tabs a {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 0 10px;
      color: var(--muted);
      background: #f7faf8;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      font-size: 12px;
      font-weight: 800;
    }

    .sort-tabs a.active,
    .sort-tabs a:hover {
      color: var(--primary-dark);
      background: var(--primary-soft);
      border-color: rgba(17, 168, 99, .25);
    }

    .dense-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .entry-card {
      display: grid;
      grid-template-columns: 132px minmax(0, 1fr);
      gap: 14px;
      padding: 12px;
      background: #ffffff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: 0 0 0 rgba(0, 0, 0, 0);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }

    .entry-card:hover {
      transform: translateY(-2px);
      border-color: rgba(17, 168, 99, .25);
      box-shadow: var(--shadow-soft);
    }

    .thumb {
      position: relative;
      min-height: 120px;
      overflow: hidden;
      border-radius: var(--radius);
      background:
        linear-gradient(135deg, rgba(17, 168, 99, .9), rgba(36, 49, 43, .86)),
        radial-gradient(circle at 70% 25%, rgba(255, 255, 255, .28), transparent 26%);
    }

    .thumb::before {
      content: "";
      position: absolute;
      inset: 14px;
      border: 1px solid rgba(255, 255, 255, .32);
      border-radius: 6px;
    }

    .thumb::after {
      content: attr(data-label);
      position: absolute;
      left: 12px;
      bottom: 12px;
      max-width: calc(100% - 24px);
      color: #ffffff;
      font-size: 12px;
      font-weight: 900;
      line-height: 1.25;
    }

    .entry-body {
      min-width: 0;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 12px;
    }

    .entry-title {
      margin: 0;
      color: var(--graphite);
      font-size: 16px;
      line-height: 1.32;
      font-weight: 900;
    }

    .entry-desc {
      margin: 6px 0 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.55;
    }

    .meta-line {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      margin-top: 9px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      min-height: 26px;
      padding: 0 8px;
      color: var(--muted);
      background: #f7faf8;
      border: 1px solid var(--line);
      border-radius: 6px;
      font-size: 12px;
      font-weight: 800;
    }

    .tag.success {
      color: var(--primary-dark);
      background: var(--primary-soft);
      border-color: rgba(17, 168, 99, .18);
    }

    .entry-actions {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }

    .mini-link {
      color: var(--primary-dark);
      font-size: 13px;
      font-weight: 900;
    }

    .mini-link:hover {
      color: var(--primary);
    }

    .icon-btn {
      display: inline-grid;
      width: 34px;
      height: 34px;
      place-items: center;
      color: var(--muted);
      background: #ffffff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
    }

    .icon-btn:hover,
    .icon-btn.is-saved {
      color: var(--primary-dark);
      background: var(--primary-soft);
      border-color: rgba(17, 168, 99, .28);
    }

    .load-more {
      display: flex;
      justify-content: center;
      margin-top: 24px;
    }

    .recommend-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 18px;
    }

    .recommend-main,
    .side-links,
    .faq-card,
    .cta-band {
      background: #ffffff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow-soft);
    }

    .recommend-main {
      padding: 22px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) 180px;
      gap: 18px;
      align-items: center;
    }

    .recommend-main h3,
    .side-links h3 {
      margin: 0;
      color: var(--graphite);
      font-size: 20px;
      line-height: 1.25;
      font-weight: 900;
    }

    .recommend-main p {
      margin: 10px 0 0;
      color: var(--muted);
      font-size: 14px;
    }

    .index-matrix {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 8px;
    }

    .index-cell {
      padding: 10px;
      background: var(--surface-soft);
      border: 1px solid rgba(17, 168, 99, .13);
      border-radius: var(--radius);
      color: var(--primary-dark);
      font-size: 12px;
      font-weight: 900;
      text-align: center;
    }

    .side-links {
      padding: 18px;
    }

    .link-list {
      display: grid;
      gap: 10px;
      margin-top: 12px;
    }

    .link-card {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 12px;
      background: #f8fbf9;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      color: var(--graphite);
      font-size: 14px;
      font-weight: 800;
    }

    .link-card:hover {
      color: var(--primary-dark);
      background: var(--primary-soft);
      border-color: rgba(17, 168, 99, .24);
    }

    .faq-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .faq-card {
      padding: 18px;
    }

    .faq-card h3 {
      margin: 0;
      color: var(--graphite);
      font-size: 16px;
      line-height: 1.35;
      font-weight: 900;
    }

    .faq-card p {
      margin: 8px 0 0;
      color: var(--muted);
      font-size: 14px;
    }

    .cta-band {
      position: relative;
      overflow: hidden;
      padding: 28px;
      background:
        radial-gradient(circle at 88% 18%, rgba(244, 183, 64, .22), transparent 24%),
        linear-gradient(135deg, #ffffff 0%, #effaf4 100%);
    }

    .cta-content {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: center;
      gap: 24px;
      position: relative;
      z-index: 1;
    }

    .cta-content h2 {
      margin: 0;
      color: var(--graphite);
      font-size: clamp(24px, 3vw, 36px);
      line-height: 1.16;
      font-weight: 900;
    }

    .cta-content p {
      max-width: 680px;
      margin: 10px 0 0;
      color: var(--muted);
      font-size: 15px;
    }

    .cta-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .site-footer {
      padding: 48px 0 28px;
      color: #dce5df;
      background: #18231e;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.35fr) .7fr .7fr;
      gap: 34px;
      padding-bottom: 28px;
      border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .footer-brand {
      color: #ffffff;
    }

    .footer-brand .brand-mark {
      color: #b8f4d0;
      background: rgba(17, 168, 99, .14);
      border-color: rgba(184, 244, 208, .2);
    }

    .footer-text {
      max-width: 520px;
      margin: 14px 0 0;
      color: rgba(220, 229, 223, .72);
      font-size: 14px;
    }

    .footer-title {
      color: #ffffff;
      font-size: 14px;
      font-weight: 900;
      margin-bottom: 12px;
    }

    .footer-links {
      display: grid;
      gap: 9px;
    }

    .footer-links a {
      color: rgba(220, 229, 223, .72);
      font-size: 14px;
    }

    .footer-links a:hover {
      color: #b8f4d0;
    }

    .copyright {
      padding-top: 20px;
      color: rgba(220, 229, 223, .56);
      font-size: 13px;
    }

    @media (max-width: 1080px) {
      .desktop-nav {
        gap: 4px;
      }

      .search-box {
        width: 190px;
      }

      .hero-grid,
      .section-head,
      .recommend-grid {
        grid-template-columns: 1fr;
      }

      .hero-copy {
        padding-bottom: 0;
      }

      .dense-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 860px) {
      .site-container {
        width: min(100% - 28px, 1180px);
      }

      .nav-shell > .desktop-nav,
      .nav-shell > .nav-actions {
        display: none;
      }

      .mobile-toggle {
        display: grid;
      }

      .mobile-panel.is-open {
        display: block;
      }

      .mobile-panel .desktop-nav,
      .mobile-panel .nav-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
      }

      .mobile-panel .search-box {
        width: 100%;
      }

      .mobile-panel .btn {
        width: 100%;
      }

      .hero-category {
        padding-top: 36px;
      }

      .hero-grid {
        gap: 22px;
      }

      .stage-title {
        padding-right: 0;
      }

      .burst {
        width: 66px;
        height: 66px;
        top: 10px;
        right: 10px;
        font-size: 12px;
      }

      .stage-top {
        padding-top: 86px;
      }

      .section {
        padding: 50px 0;
      }

      .list-tools,
      .cta-content {
        grid-template-columns: 1fr;
        display: grid;
      }

      .cta-actions {
        justify-content: flex-start;
      }

      .faq-list,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        gap: 24px;
      }
    }

    @media (max-width: 560px) {
      .brand-text {
        font-size: 15px;
      }

      .hero-actions,
      .cta-actions {
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }

      .alert-row {
        grid-template-columns: 1fr;
        gap: 5px;
      }

      .stage-bottom {
        grid-template-columns: 1fr;
      }

      .filter-row {
        align-items: flex-start;
        flex-direction: column;
      }

      .filter-label {
        width: auto;
      }

      .entry-card {
        grid-template-columns: 106px minmax(0, 1fr);
        gap: 10px;
      }

      .thumb {
        min-height: 116px;
      }

      .entry-title {
        font-size: 15px;
      }

      .entry-desc {
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
      }

      .recommend-main {
        grid-template-columns: 1fr;
      }

      .index-matrix {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .cta-band {
        padding: 22px;
      }
    }
