/* roulang page: index */
:root {
      --ink: #141414;
      --ink-soft: #2d2a28;
      --muted: #716b66;
      --rose: #8f2e46;
      --rose-soft: #f1e2e6;
      --copper: #b76e79;
      --sage: #7e8c7a;
      --warm: #faf9f7;
      --fog: #f5f3f1;
      --line: rgba(20, 20, 20, .09);
      --line-strong: rgba(20, 20, 20, .16);
      --white: #ffffff;
      --shadow: 0 12px 36px rgba(20, 20, 20, .06);
      --shadow-hover: 0 18px 46px rgba(20, 20, 20, .10);
      --radius-sm: 12px;
      --radius-md: 16px;
      --radius-lg: 22px;
      --container: 1200px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
      color: var(--ink);
      background: var(--warm);
      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, box-shadow .2s ease;
    }

    img, svg {
      max-width: 100%;
      display: block;
    }

    button, input, select, textarea {
      font: inherit;
    }

    .site-container {
      width: min(100% - 40px, var(--container));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(250, 249, 247, .94);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--line);
      transition: box-shadow .2s ease, background-color .2s ease;
    }

    .site-header.is-scrolled {
      box-shadow: 0 8px 24px rgba(20, 20, 20, .06);
      background: rgba(250, 249, 247, .98);
    }

    .navbar {
      min-height: 72px;
      padding: 0;
    }

    .brand-lockup {
      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: 11px;
      display: grid;
      place-items: center;
      color: #fff;
      background: linear-gradient(135deg, var(--ink), var(--rose));
      box-shadow: 0 10px 22px rgba(143, 46, 70, .18);
      font-size: 15px;
      letter-spacing: 0;
    }

    .navbar-nav {
      gap: 8px;
    }

    .nav-link {
      color: var(--muted);
      font-size: 15px;
      font-weight: 650;
      padding: 10px 12px !important;
      border-radius: 12px;
    }

    .nav-link:hover,
    .nav-link.active {
      color: var(--ink);
      background: var(--fog);
    }

    .command-search {
      width: 270px;
      height: 42px;
      display: flex;
      align-items: center;
      gap: 9px;
      padding: 0 10px 0 13px;
      border: 1px solid var(--line);
      border-radius: 13px;
      background: #f2f0ed;
      color: var(--muted);
      font-size: 14px;
    }

    .command-search input {
      width: 100%;
      border: 0;
      outline: 0;
      background: transparent;
      color: var(--ink);
      min-width: 0;
    }

    .command-search kbd {
      border: 1px solid var(--line-strong);
      border-bottom-width: 2px;
      border-radius: 8px;
      background: var(--white);
      color: var(--muted);
      font-size: 12px;
      padding: 2px 7px;
      box-shadow: none;
    }

    .btn {
      border-radius: 13px;
      min-height: 44px;
      padding: 10px 18px;
      font-weight: 750;
      border-width: 1px;
      transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
    }

    .btn:focus-visible,
    .form-control:focus,
    .form-select:focus,
    .form-check-input:focus {
      box-shadow: 0 0 0 4px rgba(143, 46, 70, .14);
      border-color: var(--rose);
      outline: 0;
    }

    .btn-dark-custom {
      background: var(--ink);
      color: #fff;
      border-color: var(--ink);
      box-shadow: 0 12px 26px rgba(20, 20, 20, .12);
    }

    .btn-dark-custom:hover {
      transform: translateY(-2px);
      color: #fff;
      background: #000;
      border-color: #000;
      box-shadow: var(--shadow-hover);
    }

    .btn-rose {
      background: var(--rose);
      color: #fff;
      border-color: var(--rose);
      box-shadow: 0 12px 26px rgba(143, 46, 70, .16);
    }

    .btn-rose:hover {
      transform: translateY(-2px);
      color: #fff;
      background: #76263a;
      border-color: #76263a;
      box-shadow: var(--shadow-hover);
    }

    .btn-outline-custom {
      background: rgba(255,255,255,.72);
      color: var(--ink);
      border-color: var(--line-strong);
    }

    .btn-outline-custom:hover {
      transform: translateY(-2px);
      background: var(--fog);
      border-color: rgba(20,20,20,.22);
      color: var(--ink);
    }

    .section {
      padding: 88px 0;
    }

    .section-muted {
      background: var(--fog);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .section-dark {
      background: var(--ink);
      color: #fff;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 10px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255,255,255,.72);
      color: var(--rose);
      font-size: 13px;
      font-weight: 800;
      margin-bottom: 14px;
    }

    .section-title {
      font-size: clamp(28px, 4vw, 38px);
      line-height: 1.2;
      margin: 0 0 14px;
      font-weight: 850;
      letter-spacing: 0;
    }

    .section-desc {
      color: var(--muted);
      font-size: 16px;
      max-width: 760px;
      margin: 0;
    }

    .hero {
      padding: 58px 0 34px;
      min-height: calc(100vh - 72px);
      display: flex;
      align-items: center;
      background:
        radial-gradient(circle at 16% 10%, rgba(183, 110, 121, .12), transparent 28%),
        linear-gradient(180deg, #fff, var(--warm) 64%, var(--fog) 100%);
      border-bottom: 1px solid var(--line);
    }

    .hero-panel {
      width: 100%;
      border: 1px solid var(--line);
      border-radius: 28px;
      padding: clamp(24px, 5vw, 52px);
      background: rgba(255,255,255,.72);
      box-shadow: var(--shadow);
      overflow: hidden;
      position: relative;
    }

    .hero-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(143,46,70,.08), transparent 42%);
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 940px;
      margin: 0 auto;
    }

    .hero h1 {
      font-size: clamp(36px, 6.3vw, 64px);
      line-height: 1.08;
      font-weight: 900;
      margin: 18px auto 18px;
      letter-spacing: 0;
      max-width: 900px;
    }

    .hero-lead {
      max-width: 820px;
      margin: 0 auto 26px;
      color: var(--ink-soft);
      font-size: clamp(16px, 2vw, 18px);
    }

    .hero-search {
      display: flex;
      align-items: center;
      gap: 12px;
      max-width: 760px;
      margin: 0 auto 18px;
      padding: 10px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 18px;
      box-shadow: 0 18px 42px rgba(20,20,20,.08);
    }

    .hero-search .search-input {
      flex: 1;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 0 10px;
      color: var(--muted);
      min-width: 0;
    }

    .hero-search input {
      width: 100%;
      height: 42px;
      border: 0;
      outline: 0;
      background: transparent;
      color: var(--ink);
    }

    .quick-tags {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin: 16px auto 28px;
    }

    .tag-pill {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 34px;
      padding: 6px 12px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,.76);
      color: var(--ink-soft);
      font-size: 13px;
      font-weight: 700;
    }

    .tag-pill .dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--sage);
    }

    .hero-metrics {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      max-width: 860px;
      margin: 0 auto;
    }

    .metric-item {
      text-align: left;
      padding: 16px;
      border: 1px solid var(--line);
      border-radius: 16px;
      background: rgba(250,249,247,.78);
    }

    .metric-item strong {
      display: block;
      font-size: 24px;
      line-height: 1.1;
      margin-bottom: 5px;
    }

    .metric-item span {
      color: var(--muted);
      font-size: 13px;
    }

    .promo-peek {
      width: min(100% - 40px, var(--container));
      margin: -26px auto 0;
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 14px;
    }

    .peek-card {
      border: 1px solid var(--line);
      background: #fff;
      border-radius: 18px;
      padding: 16px 18px;
      box-shadow: var(--shadow);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
    }

    .peek-card small {
      color: var(--muted);
      font-weight: 700;
    }

    .ladder-wrap {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      align-items: end;
      gap: 16px;
      margin-top: 34px;
    }

    .ladder-card {
      position: relative;
      min-height: 260px;
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: 18px;
      background: #fff;
      box-shadow: var(--shadow);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .ladder-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
      border-color: rgba(143,46,70,.28);
    }

    .ladder-card:nth-child(2) { min-height: 286px; }
    .ladder-card:nth-child(3) { min-height: 318px; border-color: rgba(143,46,70,.32); }
    .ladder-card:nth-child(4) { min-height: 300px; }
    .ladder-card:nth-child(5) { min-height: 274px; }

    .ladder-card::before {
      content: "";
      position: absolute;
      left: 18px;
      right: 18px;
      top: 0;
      height: 4px;
      border-radius: 999px;
      background: var(--copper);
    }

    .level {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      margin-bottom: 14px;
    }

    .level span {
      color: var(--rose);
      font-size: 13px;
      font-weight: 850;
    }

    .level b {
      width: 30px;
      height: 30px;
      display: grid;
      place-items: center;
      border-radius: 10px;
      background: var(--rose-soft);
      color: var(--rose);
      font-size: 13px;
    }

    .ladder-card h3,
    .feature-card h3,
    .entry-card h3,
    .news-panel h3 {
      font-size: 20px;
      line-height: 1.3;
      margin: 0 0 10px;
      font-weight: 850;
    }

    .benefit-list {
      list-style: none;
      padding: 0;
      margin: 0 0 16px;
      color: var(--muted);
      font-size: 14px;
    }

    .benefit-list li {
      display: flex;
      gap: 8px;
      margin-bottom: 8px;
    }

    .benefit-list i {
      color: var(--sage);
      flex: 0 0 auto;
      margin-top: 2px;
    }

    .price-note {
      display: flex;
      align-items: baseline;
      gap: 6px;
      margin-bottom: 14px;
      font-weight: 850;
    }

    .price-note small {
      color: var(--muted);
      font-size: 12px;
      font-weight: 700;
    }

    .compare-shell {
      margin-top: 34px;
      border: 1px solid var(--line);
      border-radius: 20px;
      overflow: hidden;
      background: #fff;
      box-shadow: var(--shadow);
    }

    .compare-table {
      margin: 0;
      vertical-align: middle;
    }

    .compare-table th,
    .compare-table td {
      padding: 18px;
      border-color: var(--line);
      color: var(--ink-soft);
    }

    .compare-table thead th {
      background: #f8f6f4;
      font-weight: 850;
      color: var(--ink);
      position: sticky;
      top: 72px;
      z-index: 2;
    }

    .compare-table .recommend {
      background: #fbf0f2;
      box-shadow: inset 2px 0 0 var(--rose), inset -2px 0 0 var(--rose);
    }

    .rec-badge {
      display: inline-flex;
      padding: 3px 8px;
      border-radius: 999px;
      background: var(--rose);
      color: #fff;
      font-size: 12px;
      margin-left: 8px;
      vertical-align: middle;
    }

    .mobile-plans {
      display: none;
      margin-top: 28px;
      gap: 16px;
    }

    .plan-card {
      border: 1px solid var(--line);
      border-radius: 18px;
      background: #fff;
      padding: 18px;
      box-shadow: var(--shadow);
    }

    .plan-card.featured {
      border-color: rgba(143,46,70,.35);
      background: #fff8f9;
    }

    .time-entry {
      margin-top: 34px;
      display: grid;
      grid-template-columns: .9fr 1.1fr .8fr;
      gap: 18px;
      align-items: stretch;
    }

    .time-card,
    .rule-panel,
    .feature-card,
    .form-card,
    .quote-card,
    .news-panel,
    .faq-mini {
      border: 1px solid var(--line);
      border-radius: 18px;
      background: #fff;
      box-shadow: var(--shadow);
    }

    .time-card,
    .rule-panel {
      padding: 20px;
    }

    .progress-track {
      height: 10px;
      border-radius: 999px;
      background: #ebe7e3;
      overflow: hidden;
      margin: 18px 0 12px;
    }

    .progress-track span {
      display: block;
      width: 64%;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--rose), var(--copper));
    }

    .entry-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    .entry-card {
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: 16px;
      background: rgba(255,255,255,.8);
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }

    .entry-card:hover {
      transform: translateY(-3px);
      border-color: rgba(143,46,70,.28);
      box-shadow: var(--shadow);
    }

    .entry-card i,
    .feature-icon {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border-radius: 12px;
      background: var(--rose-soft);
      color: var(--rose);
      margin-bottom: 12px;
      font-size: 19px;
    }

    .form-section {
      background:
        linear-gradient(90deg, rgba(143,46,70,.07), transparent 38%),
        var(--fog);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .form-card {
      padding: 24px;
    }

    .form-label {
      font-weight: 750;
      color: var(--ink-soft);
      margin-bottom: 8px;
    }

    .form-control,
    .form-select {
      min-height: 46px;
      border: 1px solid var(--line-strong);
      border-radius: 13px;
      background-color: #fff;
      color: var(--ink);
      padding: 10px 13px;
    }

    textarea.form-control {
      min-height: 112px;
      resize: vertical;
    }

    .form-text {
      color: var(--muted);
      font-size: 13px;
    }

    .proof-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 34px;
    }

    .feature-card {
      padding: 22px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
      border-color: rgba(143,46,70,.24);
    }

    .quote-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
      margin-top: 34px;
    }

    .quote-card {
      padding: 24px;
    }

    .quote-card blockquote {
      margin: 0 0 16px;
      font-size: 18px;
      line-height: 1.65;
      color: var(--ink-soft);
    }

    .avatar-line {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--muted);
      font-size: 14px;
    }

    .avatar-dot {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--ink);
      color: #fff;
      font-weight: 800;
    }

    .news-layout {
      display: grid;
      grid-template-columns: 1.4fr .8fr;
      gap: 22px;
      margin-top: 34px;
    }

    .news-panel {
      overflow: hidden;
    }

    .news-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .news-list li {
      border-bottom: 1px solid var(--line);
    }

    .news-list li:last-child {
      border-bottom: 0;
    }

    .news-list a {
      display: grid;
      grid-template-columns: 110px 1fr auto;
      gap: 16px;
      align-items: center;
      padding: 18px 20px;
    }

    .news-list a:hover {
      background: #faf6f5;
    }

    .news-date {
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    .news-title {
      font-weight: 800;
      color: var(--ink);
    }

    .news-arrow {
      color: var(--rose);
    }

    .side-recommend {
      padding: 20px;
    }

    .side-recommend .tag-pill {
      margin: 0 8px 8px 0;
    }

    .accordion {
      margin-top: 30px;
      border: 1px solid var(--line);
      border-radius: 18px;
      overflow: hidden;
      box-shadow: var(--shadow);
      background: #fff;
    }

    .accordion-item {
      border: 0;
      border-bottom: 1px solid var(--line);
      background: #fff;
    }

    .accordion-item:last-child {
      border-bottom: 0;
    }

    .accordion-button {
      padding: 20px 22px;
      font-weight: 850;
      color: var(--ink);
      background: #fff;
      box-shadow: none;
    }

    .accordion-button:not(.collapsed) {
      color: var(--rose);
      background: #fff8f9;
      box-shadow: none;
    }

    .accordion-button:focus {
      box-shadow: inset 0 0 0 2px rgba(143,46,70,.16);
    }

    .accordion-body {
      padding: 0 22px 22px;
      color: var(--muted);
    }

    .cta-band {
      padding: 34px;
      border-radius: 22px;
      border: 1px solid rgba(255,255,255,.14);
      background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }

    .cta-band p {
      color: rgba(255,255,255,.72);
      margin: 8px 0 0;
      max-width: 720px;
    }

    .site-footer {
      background: #23211f;
      color: rgba(255,255,255,.76);
      padding: 54px 0 26px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr .8fr;
      gap: 30px;
      padding-bottom: 32px;
      border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .site-footer .brand-lockup {
      color: #fff;
      margin-bottom: 14px;
    }

    .footer-title {
      color: #fff;
      font-weight: 850;
      margin-bottom: 12px;
    }

    .footer-links {
      display: grid;
      gap: 9px;
    }

    .footer-links a:hover {
      color: #fff;
      transform: translateX(2px);
    }

    .copyright {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
      padding-top: 22px;
      color: rgba(255,255,255,.56);
      font-size: 13px;
    }

    .navbar-toggler {
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 8px 10px;
    }

    @media (max-width: 1199.98px) {
      .command-search {
        width: 220px;
      }

      .ladder-wrap {
        grid-template-columns: repeat(3, 1fr);
      }

      .time-entry {
        grid-template-columns: 1fr 1fr;
      }

      .rule-panel {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 991.98px) {
      .navbar-collapse {
        padding: 16px 0 20px;
      }

      .navbar-nav {
        gap: 4px;
        margin-bottom: 12px;
      }

      .command-search {
        width: 100%;
        margin-bottom: 12px;
      }

      .hero {
        min-height: auto;
        padding-top: 42px;
      }

      .promo-peek {
        grid-template-columns: 1fr;
      }

      .ladder-wrap,
      .proof-grid,
      .quote-row,
      .news-layout,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .compare-shell {
        display: none;
      }

      .mobile-plans {
        display: grid;
      }
    }

    @media (max-width: 767.98px) {
      .site-container {
        width: min(100% - 28px, var(--container));
      }

      .section {
        padding: 58px 0;
      }

      .hero-panel {
        border-radius: 22px;
        padding: 26px 18px;
      }

      .hero-search {
        flex-direction: column;
        align-items: stretch;
      }

      .hero-search .btn {
        width: 100%;
      }

      .quick-tags {
        justify-content: flex-start;
      }

      .hero-metrics,
      .time-entry,
      .entry-grid {
        grid-template-columns: 1fr;
      }

      .metric-item {
        text-align: center;
      }

      .peek-card {
        align-items: flex-start;
        flex-direction: column;
      }

      .news-list a {
        grid-template-columns: 1fr auto;
      }

      .news-date {
        grid-column: 1 / -1;
      }

      .cta-band {
        flex-direction: column;
        align-items: flex-start;
        padding: 26px;
      }

      .cta-band .btn,
      .hero .btn,
      .form-card .btn {
        width: 100%;
      }
    }

    @media (max-width: 575.98px) {
      .brand-lockup span:last-child {
        max-width: 210px;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .btn-group-custom {
        display: grid !important;
        grid-template-columns: 1fr;
        width: 100%;
      }

      .ladder-wrap {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        gap: 22px;
      }
    }

/* roulang page: category1 */
:root {
      --ink: #181716;
      --ink-soft: #34302d;
      --muted: #716b66;
      --line: rgba(24, 23, 22, .1);
      --line-strong: rgba(24, 23, 22, .18);
      --paper: #faf9f7;
      --mist: #f2efec;
      --rose: #8f2e46;
      --rose-soft: #f3e7ea;
      --copper: #b76e79;
      --sage: #7e8c7a;
      --white: #ffffff;
      --radius-sm: 10px;
      --radius: 14px;
      --radius-lg: 18px;
      --shadow: 0 12px 36px rgba(20, 20, 20, .06);
      --shadow-hover: 0 18px 44px rgba(20, 20, 20, .1);
      --container: 1200px;
      --focus: 0 0 0 .22rem rgba(143, 46, 70, .18);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--ink);
      background:
        radial-gradient(circle at 10% 0%, rgba(183, 110, 121, .08), transparent 30%),
        linear-gradient(180deg, #faf9f7 0%, #f6f3f0 46%, #faf9f7 100%);
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
      font-size: 16px;
      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, box-shadow .2s ease, transform .2s ease;
    }

    img,
    svg {
      max-width: 100%;
      height: auto;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    button:focus-visible,
    a:focus-visible,
    input:focus-visible,
    select:focus-visible,
    textarea:focus-visible {
      outline: none;
      box-shadow: var(--focus);
    }

    .site-container {
      width: min(100% - 32px, var(--container));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(250, 249, 247, .94);
      border-bottom: 1px solid var(--line);
      backdrop-filter: blur(16px);
      transition: box-shadow .2s ease, background-color .2s ease;
    }

    .site-header.is-scrolled {
      box-shadow: 0 10px 28px rgba(24, 23, 22, .07);
      background: rgba(250, 249, 247, .98);
    }

    .navbar {
      min-height: 72px;
      padding: 0;
    }

    .brand-lockup {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--ink);
      font-weight: 760;
      font-size: 17px;
      white-space: nowrap;
    }

    .brand-lockup:hover {
      color: var(--rose);
    }

    .brand-mark {
      display: inline-grid;
      width: 36px;
      height: 36px;
      place-items: center;
      border-radius: 12px;
      color: var(--white);
      background: linear-gradient(135deg, var(--ink), var(--rose));
      font-size: 14px;
      font-weight: 800;
      box-shadow: 0 10px 20px rgba(143, 46, 70, .18);
    }

    .navbar-toggler {
      width: 44px;
      height: 44px;
      border: 1px solid var(--line);
      border-radius: 12px;
      color: var(--ink);
      background: var(--white);
    }

    .navbar-toggler:focus {
      box-shadow: var(--focus);
    }

    .navbar-nav {
      gap: 4px;
    }

    .nav-link {
      position: relative;
      padding: 10px 14px !important;
      border-radius: 12px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 650;
    }

    .nav-link:hover {
      color: var(--ink);
      background: rgba(24, 23, 22, .045);
    }

    .nav-link.active {
      color: var(--rose);
      background: var(--rose-soft);
    }

    .command-search {
      display: flex;
      align-items: center;
      gap: 8px;
      min-width: 246px;
      height: 42px;
      padding: 0 10px;
      border: 1px solid var(--line);
      border-radius: 12px;
      color: var(--muted);
      background: rgba(255, 255, 255, .82);
      transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
    }

    .command-search:focus-within {
      border-color: rgba(143, 46, 70, .35);
      box-shadow: var(--focus);
      background: var(--white);
    }

    .command-search input {
      width: 100%;
      min-width: 0;
      border: 0;
      outline: 0;
      color: var(--ink);
      background: transparent;
      font-size: 13px;
    }

    .command-search input::placeholder {
      color: #9a938d;
    }

    .command-search kbd {
      border: 1px solid var(--line);
      border-bottom-color: var(--line-strong);
      border-radius: 8px;
      padding: 3px 7px;
      color: var(--muted);
      background: var(--mist);
      box-shadow: none;
      font-size: 11px;
      white-space: nowrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 44px;
      padding: 10px 16px;
      border-radius: 12px;
      font-weight: 720;
      font-size: 14px;
      line-height: 1.2;
      transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
    }

    .btn-dark-custom {
      color: var(--white);
      border: 1px solid var(--ink);
      background: var(--ink);
      box-shadow: 0 10px 24px rgba(24, 23, 22, .13);
    }

    .btn-dark-custom:hover,
    .btn-dark-custom:active {
      color: var(--white) !important;
      border-color: #000;
      background: #000;
      transform: translateY(-2px);
      box-shadow: 0 16px 32px rgba(24, 23, 22, .2);
    }

    .btn-outline-custom {
      color: var(--ink);
      border: 1px solid var(--line-strong);
      background: rgba(255, 255, 255, .74);
    }

    .btn-outline-custom:hover,
    .btn-outline-custom:active {
      color: var(--ink) !important;
      border-color: rgba(143, 46, 70, .28);
      background: var(--rose-soft);
      transform: translateY(-2px);
    }

    .btn-rose {
      color: var(--white);
      border: 1px solid var(--rose);
      background: var(--rose);
      box-shadow: 0 12px 28px rgba(143, 46, 70, .16);
    }

    .btn-rose:hover {
      color: var(--white);
      background: #79263b;
      border-color: #79263b;
      transform: translateY(-2px);
      box-shadow: 0 18px 38px rgba(143, 46, 70, .22);
    }

    .section {
      padding: 84px 0;
    }

    .compact-hero {
      padding: 52px 0 34px;
      border-bottom: 1px solid var(--line);
      background:
        linear-gradient(135deg, rgba(255, 255, 255, .76), rgba(242, 239, 236, .72)),
        radial-gradient(circle at 84% 18%, rgba(143, 46, 70, .12), transparent 34%);
    }

    .crumb-line {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 9px;
      margin-bottom: 20px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 650;
    }

    .crumb-line a {
      color: var(--muted);
    }

    .crumb-line a:hover {
      color: var(--rose);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
      gap: 28px;
      align-items: end;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 14px;
      padding: 7px 11px;
      border: 1px solid rgba(143, 46, 70, .2);
      border-radius: 999px;
      color: var(--rose);
      background: rgba(243, 231, 234, .72);
      font-size: 13px;
      font-weight: 760;
    }

    .eyebrow .dot,
    .status-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--sage);
      box-shadow: 0 0 0 4px rgba(126, 140, 122, .13);
    }

    h1,
    h2,
    h3,
    h4 {
      margin: 0;
      color: var(--ink);
      line-height: 1.12;
      letter-spacing: 0;
    }

    h1 {
      max-width: 850px;
      font-size: clamp(36px, 5vw, 48px);
      font-weight: 860;
    }

    .lead-copy {
      max-width: 790px;
      margin: 18px 0 0;
      color: var(--ink-soft);
      font-size: 17px;
    }

    .summary-panel {
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: rgba(255, 255, 255, .78);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .summary-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 18px;
      border-bottom: 1px solid var(--line);
    }

    .summary-title {
      font-size: 14px;
      font-weight: 820;
    }

    .summary-state {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: var(--sage);
      font-size: 12px;
      font-weight: 760;
    }

    .summary-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--line);
    }

    .summary-stat {
      padding: 18px 14px;
      background: rgba(250, 249, 247, .9);
    }

    .summary-stat strong {
      display: block;
      font-size: 22px;
      line-height: 1;
      color: var(--ink);
    }

    .summary-stat span {
      display: block;
      margin-top: 8px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 650;
    }

    .filter-band {
      margin-top: 28px;
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: rgba(255, 255, 255, .86);
      box-shadow: var(--shadow);
    }

    .filter-grid {
      display: grid;
      grid-template-columns: 1.15fr 1fr 1fr 1.35fr;
      gap: 12px;
      align-items: center;
    }

    .segmented {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .pill-filter {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 38px;
      padding: 8px 12px;
      border: 1px solid var(--line);
      border-radius: 999px;
      color: var(--muted);
      background: #fff;
      font-size: 13px;
      font-weight: 720;
      cursor: pointer;
      transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
    }

    .pill-filter:hover,
    .pill-filter.active {
      color: var(--rose);
      border-color: rgba(143, 46, 70, .25);
      background: var(--rose-soft);
      transform: translateY(-1px);
    }

    .select-soft,
    .input-soft {
      min-height: 42px;
      border: 1px solid var(--line);
      border-radius: 12px;
      color: var(--ink);
      background-color: #fff;
      font-size: 14px;
      box-shadow: none;
    }

    .select-soft:focus,
    .input-soft:focus {
      border-color: rgba(143, 46, 70, .38);
      box-shadow: var(--focus);
    }

    .content-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 340px;
      gap: 28px;
      align-items: start;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 24px;
    }

    .section-kicker {
      color: var(--rose);
      font-size: 13px;
      font-weight: 820;
    }

    .section-title {
      margin-top: 7px;
      font-size: clamp(28px, 3.4vw, 36px);
      font-weight: 840;
    }

    .section-copy {
      max-width: 620px;
      margin: 10px 0 0;
      color: var(--muted);
      font-size: 15px;
    }

    .sort-note {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 12px;
      border: 1px solid var(--line);
      border-radius: 999px;
      color: var(--muted);
      background: rgba(255, 255, 255, .72);
      font-size: 13px;
      font-weight: 680;
      white-space: nowrap;
    }

    .entry-list {
      display: grid;
      gap: 16px;
    }

    .entry-card {
      position: relative;
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      gap: 18px;
      align-items: start;
      padding: 20px;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: rgba(255, 255, 255, .82);
      box-shadow: 0 8px 24px rgba(20, 20, 20, .035);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background-color .2s ease;
    }

    .entry-card:hover {
      transform: translateY(-4px);
      border-color: rgba(143, 46, 70, .24);
      background: #fff;
      box-shadow: var(--shadow-hover);
    }

    .entry-index {
      display: grid;
      width: 42px;
      height: 42px;
      place-items: center;
      border: 1px solid rgba(143, 46, 70, .22);
      border-radius: 14px;
      color: var(--rose);
      background: var(--rose-soft);
      font-weight: 840;
    }

    .entry-card h2 {
      font-size: 20px;
      font-weight: 830;
    }

    .entry-card p {
      margin: 9px 0 0;
      color: var(--muted);
      font-size: 14px;
    }

    .meta-row,
    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center;
    }

    .meta-row {
      margin-top: 13px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 650;
    }

    .tag-row {
      margin-top: 14px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 9px;
      border: 1px solid var(--line);
      border-radius: 999px;
      color: var(--ink-soft);
      background: #fff;
      font-size: 12px;
      font-weight: 720;
    }

    .tag.rose {
      color: var(--rose);
      border-color: rgba(143, 46, 70, .22);
      background: var(--rose-soft);
    }

    .tag.sage {
      color: #52624e;
      border-color: rgba(126, 140, 122, .24);
      background: rgba(126, 140, 122, .11);
    }

    .entry-action {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 10px;
      min-width: 126px;
    }

    .state-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 7px 10px;
      border-radius: 999px;
      color: #52624e;
      background: rgba(126, 140, 122, .12);
      font-size: 12px;
      font-weight: 760;
      white-space: nowrap;
    }

    .state-badge.warning {
      color: var(--rose);
      background: var(--rose-soft);
    }

    .sidebar-stack {
      display: grid;
      gap: 18px;
      position: sticky;
      top: 96px;
    }

    .side-card {
      padding: 20px;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: rgba(255, 255, 255, .84);
      box-shadow: var(--shadow);
    }

    .side-card.dark {
      color: #f7f3f0;
      border-color: rgba(255, 255, 255, .12);
      background: var(--ink);
    }

    .side-card.dark h3,
    .side-card.dark .side-title {
      color: #fff;
    }

    .side-card.dark p {
      color: rgba(255, 255, 255, .72);
    }

    .side-title {
      display: flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 12px;
      font-size: 17px;
      font-weight: 820;
      line-height: 1.25;
    }

    .rule-list {
      display: grid;
      gap: 12px;
      padding: 0;
      margin: 0;
      list-style: none;
    }

    .rule-list li {
      display: grid;
      grid-template-columns: 22px minmax(0, 1fr);
      gap: 10px;
      color: var(--ink-soft);
      font-size: 14px;
    }

    .rule-list i {
      color: var(--sage);
      margin-top: 2px;
    }

    .side-card.dark .rule-list li {
      color: rgba(255, 255, 255, .78);
    }

    .hot-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .mini-faq {
      display: grid;
      gap: 12px;
    }

    .mini-faq-item {
      padding-top: 12px;
      border-top: 1px solid var(--line);
    }

    .mini-faq-item:first-child {
      padding-top: 0;
      border-top: 0;
    }

    .mini-faq-item strong {
      display: block;
      margin-bottom: 5px;
      font-size: 14px;
    }

    .mini-faq-item span {
      display: block;
      color: var(--muted);
      font-size: 13px;
    }

    .process-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    .process-item {
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: rgba(255, 255, 255, .78);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .process-item:hover {
      transform: translateY(-3px);
      border-color: rgba(143, 46, 70, .24);
      box-shadow: var(--shadow);
    }

    .process-num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      margin-bottom: 13px;
      border-radius: 10px;
      color: var(--white);
      background: var(--ink);
      font-weight: 820;
      font-size: 13px;
    }

    .process-item h3 {
      font-size: 18px;
      font-weight: 820;
    }

    .process-item p {
      margin: 8px 0 0;
      color: var(--muted);
      font-size: 14px;
    }

    .pagination-wrap {
      display: flex;
      justify-content: center;
      margin-top: 28px;
    }

    .pagination {
      flex-wrap: wrap;
      gap: 7px;
      margin: 0;
    }

    .page-link {
      min-width: 40px;
      height: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--line);
      border-radius: 10px !important;
      color: var(--ink-soft);
      background: rgba(255, 255, 255, .82);
      font-weight: 720;
      box-shadow: none;
    }

    .page-link:hover {
      color: var(--rose);
      border-color: rgba(143, 46, 70, .24);
      background: var(--rose-soft);
    }

    .page-item.active .page-link {
      color: #fff;
      border-color: var(--rose);
      background: var(--rose);
    }

    .faq-section {
      background: var(--mist);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .accordion {
      display: grid;
      gap: 12px;
    }

    .accordion-item {
      border: 1px solid var(--line);
      border-radius: var(--radius) !important;
      overflow: hidden;
      background: rgba(255, 255, 255, .86);
      box-shadow: none;
    }

    .accordion-button {
      min-height: 58px;
      padding: 18px 20px;
      color: var(--ink);
      background: transparent;
      font-weight: 760;
      box-shadow: none !important;
    }

    .accordion-button:not(.collapsed) {
      color: var(--rose);
      background: rgba(243, 231, 234, .52);
    }

    .accordion-button:focus {
      box-shadow: var(--focus) !important;
    }

    .accordion-body {
      padding: 0 20px 20px;
      color: var(--muted);
      font-size: 15px;
    }

    .cta-band {
      padding: 34px;
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: 22px;
      color: #fff;
      background:
        linear-gradient(135deg, rgba(143, 46, 70, .24), transparent 44%),
        var(--ink);
      overflow: hidden;
    }

    .cta-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 24px;
      align-items: center;
    }

    .cta-band h2 {
      color: #fff;
      font-size: clamp(28px, 3.5vw, 40px);
      font-weight: 860;
    }

    .cta-band p {
      max-width: 720px;
      margin: 12px 0 0;
      color: rgba(255, 255, 255, .74);
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: flex-end;
    }

    .site-footer {
      padding: 56px 0 28px;
      color: rgba(255, 255, 255, .72);
      background: #201f1e;
    }

    .site-footer .brand-lockup {
      color: #fff;
      margin-bottom: 14px;
    }

    .site-footer p {
      max-width: 430px;
      color: rgba(255, 255, 255, .65);
      font-size: 14px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.3fr) .7fr .7fr;
      gap: 36px;
      padding-bottom: 32px;
      border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .footer-title {
      margin-bottom: 12px;
      color: #fff;
      font-size: 14px;
      font-weight: 800;
    }

    .footer-links {
      display: grid;
      gap: 9px;
    }

    .footer-links a {
      color: rgba(255, 255, 255, .66);
      font-size: 14px;
    }

    .footer-links a:hover {
      color: #fff;
      transform: translateX(2px);
    }

    .copyright {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 12px;
      padding-top: 22px;
      color: rgba(255, 255, 255, .52);
      font-size: 13px;
    }

    @media (max-width: 991.98px) {
      .navbar {
        min-height: 68px;
      }

      .navbar-collapse {
        padding: 16px 0 20px;
      }

      .navbar-nav {
        margin: 8px 0 14px;
      }

      .command-search {
        width: 100%;
        min-width: 0;
        margin-bottom: 10px;
      }

      .hero-grid,
      .content-grid,
      .cta-grid {
        grid-template-columns: 1fr;
      }

      .summary-panel {
        max-width: 620px;
      }

      .filter-grid {
        grid-template-columns: 1fr 1fr;
      }

      .sidebar-stack {
        position: static;
      }

      .process-strip {
        grid-template-columns: repeat(2, 1fr);
      }

      .section {
        padding: 64px 0;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 767.98px) {
      .site-container {
        width: min(100% - 24px, var(--container));
      }

      .compact-hero {
        padding: 38px 0 26px;
      }

      h1 {
        font-size: clamp(34px, 9vw, 42px);
      }

      .lead-copy {
        font-size: 16px;
      }

      .summary-stats,
      .filter-grid,
      .process-strip,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .section-head {
        align-items: start;
        flex-direction: column;
      }

      .entry-card {
        grid-template-columns: 1fr;
      }

      .entry-action {
        align-items: stretch;
        min-width: 0;
      }

      .entry-action .btn {
        width: 100%;
      }

      .cta-band {
        padding: 24px;
      }

      .cta-actions {
        justify-content: stretch;
      }

      .cta-actions .btn {
        width: 100%;
      }

      .copyright {
        flex-direction: column;
      }
    }

    @media (max-width: 575.98px) {
      .brand-lockup {
        font-size: 15px;
      }

      .brand-mark {
        width: 34px;
        height: 34px;
      }

      .filter-band,
      .side-card,
      .entry-card {
        border-radius: 16px;
      }

      .segmented {
        display: grid;
        grid-template-columns: 1fr 1fr;
      }

      .pill-filter {
        width: 100%;
      }

      .sort-note {
        white-space: normal;
      }

      .page-link {
        min-width: 38px;
        height: 38px;
      }
    }
