/* roulang page: index */
:root {
      --ink: #181516;
      --ink-soft: #393236;
      --muted: #766d70;
      --line: #e4dadc;
      --line-strong: #c9b8bd;
      --paper: #fbf8f7;
      --paper-soft: #f3ecec;
      --panel: #ffffff;
      --panel-dark: #21191c;
      --accent: #8f3044;
      --accent-deep: #6f2334;
      --accent-soft: #f3dde2;
      --copper: #a66b44;
      --success: #4d7b5f;
      --warning: #a06d2d;
      --radius: 8px;
      --radius-sm: 6px;
      --shadow: 0 16px 40px rgba(24, 21, 22, .08);
      --shadow-hover: 0 20px 46px rgba(24, 21, 22, .13);
      --container: 1200px;
      --ease: all .22s ease;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      color: var(--ink);
      background: var(--paper);
      line-height: 1.7;
      font-size: 16px;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: var(--ease);
    }

    a:hover,
    a:focus {
      color: var(--accent);
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input {
      font: inherit;
    }

    input {
      min-height: 48px;
      border: 1px solid var(--line-strong);
      border-radius: var(--radius-sm);
      padding: 0 16px;
      background: #fff;
      color: var(--ink);
      outline: none;
      transition: var(--ease);
      width: 100%;
    }

    input:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 4px rgba(143, 48, 68, .13);
    }

    .site-shell {
      overflow: hidden;
      min-height: 100vh;
    }

    .container {
      width: min(var(--container), calc(100% - 40px));
      margin: 0 auto;
    }

    .section {
      padding: 88px 0;
    }

    .section-tight {
      padding: 64px 0;
    }

    .section-head {
      max-width: 760px;
      margin-bottom: 34px;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--accent);
      font-weight: 700;
      padding: 5px 11px;
      border: 1px solid rgba(143, 48, 68, .22);
      border-radius: 999px;
      background: rgba(255, 255, 255, .72);
      margin-bottom: 14px;
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      font-size: 52px;
      line-height: 1.12;
      font-weight: 800;
      margin-bottom: 18px;
      max-width: 920px;
      letter-spacing: 0;
    }

    h2 {
      font-size: 32px;
      line-height: 1.25;
      margin-bottom: 12px;
      font-weight: 800;
      letter-spacing: 0;
    }

    h3 {
      font-size: 20px;
      line-height: 1.35;
      margin-bottom: 10px;
      font-weight: 750;
      letter-spacing: 0;
    }

    p {
      color: var(--muted);
    }

    .top-strip {
      height: 38px;
      background: #21191c;
      color: rgba(255,255,255,.78);
      border-bottom: 1px solid rgba(255,255,255,.08);
      font-size: 13px;
    }

    .top-strip .container {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      white-space: nowrap;
    }

    .top-strip a {
      color: #fff;
      font-weight: 700;
    }

    .top-note {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .header {
      background: rgba(251, 248, 247, .92);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--line);
      position: sticky;
      top: 0;
      z-index: 20;
    }

    .top-bar,
    .top-bar ul {
      background: transparent;
    }

    .top-bar {
      padding: 14px 0;
      width: min(var(--container), calc(100% - 40px));
      margin: 0 auto;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 850;
      color: var(--ink);
      max-width: 420px;
      min-width: 0;
    }

    .brand-mark {
      width: 34px;
      height: 34px;
      border-radius: var(--radius-sm);
      background:
        linear-gradient(135deg, rgba(143,48,68,.96), rgba(166,107,68,.9)),
        var(--accent);
      position: relative;
      flex: 0 0 auto;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.26);
    }

    .brand-mark::after {
      content: "";
      position: absolute;
      inset: 8px;
      border: 1px solid rgba(255,255,255,.7);
      border-radius: 4px;
    }

    .brand-text {
      overflow-wrap: anywhere;
      line-height: 1.2;
    }

    .menu a {
      border-radius: var(--radius-sm);
      color: var(--ink-soft);
      font-weight: 700;
      padding: 10px 12px;
    }

    .menu a:hover,
    .menu a:focus,
    .menu a.active {
      color: var(--accent);
      background: var(--accent-soft);
    }

    .nav-cta {
      border: 1px solid var(--line-strong);
      background: #fff;
    }

    .menu-icon::after {
      background: var(--ink);
      box-shadow: 0 7px 0 var(--ink), 0 14px 0 var(--ink);
    }

    .mobile-menu {
      border-top: 1px solid var(--line);
      padding-bottom: 14px;
    }

    .hero {
      position: relative;
      min-height: 620px;
      display: flex;
      align-items: flex-end;
      color: #fff;
      background:
        linear-gradient(180deg, rgba(24,21,22,.18) 0%, rgba(24,21,22,.74) 58%, rgba(24,21,22,.92) 100%),
        radial-gradient(circle at 25% 20%, rgba(143,48,68,.5), transparent 32%),
        linear-gradient(135deg, #21191c 0%, #39252b 52%, #171315 100%);
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,.04) 1px, transparent 1px);
      background-size: 54px 54px;
      opacity: .42;
    }

    .hero::after {
      content: "";
      position: absolute;
      right: 8%;
      top: 12%;
      width: 420px;
      height: 420px;
      border: 1px solid rgba(255,255,255,.13);
      border-radius: 50%;
      background: conic-gradient(from 210deg, rgba(143,48,68,.86) 0 72%, rgba(255,255,255,.14) 72% 100%);
      mask: radial-gradient(circle, transparent 58%, #000 59%);
      opacity: .8;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      padding: 96px 0 76px;
      width: 100%;
    }

    .hero-cardline {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 18px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 5px 11px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 750;
      color: var(--accent-deep);
      background: var(--accent-soft);
      border: 1px solid rgba(143,48,68,.18);
      white-space: nowrap;
    }

    .badge.dark {
      color: #fff;
      background: rgba(255,255,255,.12);
      border-color: rgba(255,255,255,.2);
    }

    .badge.success {
      color: #315942;
      background: #e1eee6;
      border-color: #bfd7c9;
    }

    .badge.warn {
      color: #704b1d;
      background: #f2e5d0;
      border-color: #dec59c;
    }

    .hero p {
      max-width: 760px;
      color: rgba(255,255,255,.82);
      font-size: 18px;
      margin-bottom: 28px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }

    .button,
    .button.primary,
    .button.secondary,
    .button.hollow {
      min-height: 46px;
      border-radius: var(--radius-sm);
      font-weight: 800;
      padding: 13px 18px;
      margin: 0;
      transition: var(--ease);
      line-height: 1.1;
    }

    .button.primary {
      background: var(--accent);
      border: 1px solid var(--accent);
      color: #fff;
    }

    .button.primary:hover,
    .button.primary:focus {
      background: var(--accent-deep);
      border-color: var(--accent-deep);
      transform: translateY(-2px);
      box-shadow: 0 12px 26px rgba(143,48,68,.26);
    }

    .button.hollow {
      color: #fff;
      border-color: rgba(255,255,255,.48);
      background: rgba(255,255,255,.08);
    }

    .button.hollow:hover,
    .button.hollow:focus {
      color: #fff;
      background: rgba(255,255,255,.16);
      border-color: rgba(255,255,255,.78);
      transform: translateY(-2px);
    }

    .button.light {
      color: var(--accent);
      background: #fff;
      border: 1px solid var(--line);
    }

    .button.light:hover,
    .button.light:focus {
      color: var(--accent-deep);
      border-color: var(--accent);
      transform: translateY(-2px);
      box-shadow: var(--shadow);
    }

    .hero-metrics {
      margin-top: 38px;
      display: grid;
      grid-template-columns: repeat(3, minmax(140px, 1fr));
      gap: 12px;
      max-width: 720px;
    }

    .metric {
      border: 1px solid rgba(255,255,255,.18);
      background: rgba(255,255,255,.09);
      border-radius: var(--radius);
      padding: 16px;
    }

    .metric strong {
      display: block;
      font-size: 26px;
      line-height: 1.1;
      margin-bottom: 5px;
    }

    .metric span {
      color: rgba(255,255,255,.72);
      font-size: 13px;
    }

    .progress-panel {
      position: relative;
      z-index: 2;
      margin-top: 28px;
      display: grid;
      grid-template-columns: 120px minmax(0, 1fr);
      gap: 18px;
      max-width: 700px;
      align-items: center;
    }

    .progress-ring {
      width: 112px;
      height: 112px;
      border-radius: 50%;
      background: conic-gradient(var(--accent-soft) 0 78%, rgba(255,255,255,.18) 78% 100%);
      display: grid;
      place-items: center;
      color: #fff;
      position: relative;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
    }

    .progress-ring::before {
      content: "";
      position: absolute;
      inset: 13px;
      border-radius: 50%;
      background: rgba(24,21,22,.82);
    }

    .progress-ring span {
      position: relative;
      font-weight: 850;
      font-size: 24px;
    }

    .tier-preview {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .tier-preview .badge {
      background: rgba(255,255,255,.1);
      border-color: rgba(255,255,255,.2);
      color: rgba(255,255,255,.86);
    }

    .countdown-band {
      margin-top: -1px;
      background: #fff;
      border-bottom: 1px solid var(--line);
      box-shadow: 0 14px 36px rgba(24,21,22,.05);
    }

    .countdown-wrap {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 28px;
      align-items: center;
      padding: 24px 0;
    }

    .countdown-title {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .countdown-title h2 {
      margin: 0;
      font-size: 24px;
    }

    .countdown-title p {
      margin: 4px 0 0;
      font-size: 14px;
    }

    .countdown-grid {
      display: grid;
      grid-template-columns: repeat(4, 82px);
      gap: 10px;
    }

    .time-card {
      height: 82px;
      border: 1px solid var(--line-strong);
      border-radius: var(--radius);
      display: grid;
      place-items: center;
      background: linear-gradient(180deg, #fff, #faf5f5);
      position: relative;
    }

    .time-card strong {
      font-size: 28px;
      line-height: 1;
      color: var(--accent);
      font-variant-numeric: tabular-nums;
    }

    .time-card span {
      display: block;
      font-size: 12px;
      color: var(--muted);
      margin-top: 5px;
      text-align: center;
    }

    .feature-strip {
      background: var(--paper-soft);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .strategy-card {
      min-height: 230px;
      background: var(--panel);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 24px;
      box-shadow: var(--shadow);
      transition: var(--ease);
      position: relative;
      overflow: hidden;
    }

    .strategy-card::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 4px;
      height: 100%;
      background: var(--accent);
      opacity: .78;
    }

    .strategy-card:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-hover);
      border-color: rgba(143,48,68,.42);
    }

    .card-no {
      width: 36px;
      height: 36px;
      border-radius: var(--radius-sm);
      display: grid;
      place-items: center;
      background: var(--ink);
      color: #fff;
      font-weight: 850;
      margin-bottom: 18px;
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 18px;
    }

    .tag {
      font-size: 12px;
      color: var(--ink-soft);
      border: 1px solid var(--line);
      background: #fff;
      border-radius: 999px;
      padding: 4px 9px;
      font-weight: 700;
    }

    .subscribe {
      background: linear-gradient(180deg, #fff, #f7eff0);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .subscribe-panel {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
      gap: 38px;
      align-items: center;
    }

    .subscribe-form {
      display: flex;
      gap: 10px;
      align-items: stretch;
    }

    .subscribe-form .button {
      flex: 0 0 auto;
      color: #fff;
    }

    .privacy-note {
      margin-top: 10px;
      font-size: 13px;
      color: var(--muted);
    }

    .entry-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .entry-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 20px;
      min-height: 176px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: var(--ease);
    }

    .entry-card:hover {
      transform: translateY(-2px);
      border-color: rgba(143,48,68,.42);
      box-shadow: var(--shadow);
    }

    .entry-meta {
      color: var(--muted);
      font-size: 13px;
      margin-bottom: 8px;
    }

    .entry-card .button {
      align-self: flex-start;
      min-height: 40px;
      padding: 11px 14px;
      margin-top: 16px;
    }

    .timeline {
      background: var(--panel-dark);
      color: #fff;
    }

    .timeline .section-kicker {
      background: rgba(255,255,255,.08);
      border-color: rgba(255,255,255,.16);
      color: #fff;
    }

    .timeline p {
      color: rgba(255,255,255,.72);
    }

    .change-list {
      border-left: 1px solid rgba(255,255,255,.18);
      margin-top: 24px;
    }

    .change-item {
      position: relative;
      padding: 0 0 24px 26px;
    }

    .change-item::before {
      content: "";
      position: absolute;
      left: -6px;
      top: 4px;
      width: 11px;
      height: 11px;
      border-radius: 999px;
      background: var(--accent-soft);
      border: 2px solid var(--accent);
    }

    .change-item h3 {
      color: #fff;
      margin-bottom: 4px;
    }

    .proof-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 26px;
      min-height: 210px;
      box-shadow: var(--shadow);
    }

    .quote {
      color: var(--ink-soft);
      font-size: 17px;
      margin-bottom: 18px;
    }

    .quote-user {
      color: var(--muted);
      font-size: 14px;
      font-weight: 700;
    }

    .news-zone {
      background: #fff;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .news-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.45fr) minmax(280px, .7fr);
      gap: 28px;
      align-items: start;
    }

    .news-list {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
      background: #fff;
    }

    .news-row {
      display: grid;
      grid-template-columns: 116px minmax(0, 1fr) auto;
      gap: 18px;
      align-items: center;
      padding: 18px 20px;
      border-bottom: 1px solid var(--line);
    }

    .news-row:last-child {
      border-bottom: 0;
    }

    .news-date {
      color: var(--accent);
      font-weight: 850;
      font-variant-numeric: tabular-nums;
    }

    .news-row h3 {
      margin: 0 0 3px;
      font-size: 18px;
    }

    .news-row p {
      margin: 0;
      font-size: 14px;
    }

    .side-recommend {
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: var(--paper-soft);
      padding: 24px;
      position: sticky;
      top: 104px;
    }

    .side-recommend ul {
      list-style: none;
      padding: 0;
      margin: 16px 0 0;
    }

    .side-recommend li {
      padding: 12px 0;
      border-bottom: 1px solid var(--line);
      color: var(--ink-soft);
      font-weight: 700;
    }

    .side-recommend li:last-child {
      border-bottom: 0;
    }

    .faq-section {
      background: var(--paper);
    }

    .accordion {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
      background: #fff;
    }

    .accordion-title {
      color: var(--ink);
      font-weight: 800;
      font-size: 17px;
      padding: 20px 52px 20px 22px;
      border-bottom: 1px solid var(--line);
    }

    .accordion-title:hover,
    .accordion-title:focus {
      background: var(--accent-soft);
      color: var(--accent-deep);
    }

    .accordion-title::before {
      color: var(--accent);
      font-size: 22px;
      margin-top: -14px;
    }

    .accordion-content {
      border-bottom: 1px solid var(--line);
      color: var(--muted);
      padding: 20px 22px;
      background: #fff;
    }

    .cta {
      background:
        linear-gradient(135deg, rgba(143,48,68,.94), rgba(35,25,28,.96)),
        var(--accent);
      color: #fff;
      padding: 74px 0;
    }

    .cta-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 24px;
      align-items: center;
    }

    .cta p {
      color: rgba(255,255,255,.78);
      margin-bottom: 0;
      max-width: 720px;
    }

    .floating-cta {
      position: fixed;
      left: 50%;
      bottom: 16px;
      transform: translateX(-50%);
      width: min(860px, calc(100% - 32px));
      background: rgba(33,25,28,.94);
      color: #fff;
      border: 1px solid rgba(255,255,255,.16);
      box-shadow: 0 18px 46px rgba(0,0,0,.22);
      border-radius: var(--radius);
      z-index: 30;
      padding: 12px 14px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 12px;
      align-items: center;
    }

    .floating-cta strong {
      display: block;
      line-height: 1.25;
    }

    .floating-cta span {
      color: rgba(255,255,255,.68);
      font-size: 13px;
    }

    .floating-cta .button {
      min-height: 40px;
      padding: 11px 14px;
      white-space: nowrap;
    }

    .footer {
      background: #181516;
      color: rgba(255,255,255,.72);
      padding: 58px 0 88px;
    }

    .footer h2,
    .footer h3 {
      color: #fff;
    }

    .footer p {
      color: rgba(255,255,255,.66);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr .7fr .9fr .9fr;
      gap: 32px;
      align-items: start;
    }

    .footer a {
      color: rgba(255,255,255,.78);
      display: inline-block;
      margin: 5px 0;
    }

    .footer a:hover,
    .footer a:focus {
      color: #fff;
    }

    .copyright {
      border-top: 1px solid rgba(255,255,255,.12);
      margin-top: 32px;
      padding-top: 18px;
      font-size: 13px;
      color: rgba(255,255,255,.55);
    }

    @media (max-width: 1024px) {
      h1 {
        font-size: 42px;
      }

      .entry-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .subscribe-panel,
      .news-layout,
      .cta-grid {
        grid-template-columns: 1fr;
      }

      .side-recommend {
        position: static;
      }

      .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 768px) {
      .container,
      .top-bar {
        width: min(100% - 36px, var(--container));
      }

      .section {
        padding: 58px 0;
      }

      .section-tight {
        padding: 46px 0;
      }

      .top-strip {
        height: auto;
        min-height: 38px;
        padding: 8px 0;
      }

      .top-strip .container {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 6px 14px;
        white-space: normal;
      }

      .brand {
        font-size: 15px;
      }

      .hero {
        min-height: 620px;
      }

      .hero-inner {
        padding: 72px 0 54px;
      }

      h1 {
        font-size: 34px;
        line-height: 1.18;
      }

      h2 {
        font-size: 27px;
      }

      .hero p {
        font-size: 16px;
      }

      .hero-metrics {
        grid-template-columns: 1fr;
      }

      .progress-panel {
        grid-template-columns: 1fr;
      }

      .countdown-wrap {
        grid-template-columns: 1fr;
      }

      .countdown-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .time-card {
        width: 100%;
      }

      .subscribe-form {
        flex-direction: column;
      }

      .entry-grid {
        grid-template-columns: 1fr;
      }

      .news-row {
        grid-template-columns: 1fr;
        gap: 8px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .floating-cta {
        grid-template-columns: 1fr;
        bottom: 10px;
      }
    }

    @media (max-width: 520px) {
      .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
      }

      .button,
      .button.primary,
      .button.hollow,
      .button.light {
        width: 100%;
        text-align: center;
      }

      .strategy-card,
      .proof-card,
      .entry-card {
        padding: 20px;
      }

      .accordion-title {
        font-size: 16px;
      }
    }

/* roulang page: category1 */
:root {
      --ink: #171315;
      --ink-soft: #3b3236;
      --muted: #756b70;
      --line: #e2d9dd;
      --line-strong: #cbb9c1;
      --bg: #f7f3f4;
      --panel: #ffffff;
      --panel-soft: #fbf8f9;
      --accent: #8f344c;
      --accent-dark: #6f2639;
      --accent-soft: #f0dce3;
      --copper: #a06b46;
      --good: #24735a;
      --wait: #8b6a22;
      --radius: 8px;
      --shadow: 0 14px 34px rgba(36, 26, 30, .08);
      --shadow-hover: 0 18px 42px rgba(36, 26, 30, .13);
      --container: 1180px;
      --section: 88px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--ink);
      background:
        linear-gradient(180deg, rgba(143, 52, 76, .05), rgba(247, 243, 244, 0) 310px),
        var(--bg);
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      font-size: 16px;
      line-height: 1.7;
      letter-spacing: 0;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    select {
      font: inherit;
    }

    button,
    .button {
      min-height: 44px;
    }

    input,
    select {
      min-height: 46px;
    }

    a:focus,
    button:focus,
    input:focus,
    select:focus {
      outline: 3px solid rgba(143, 52, 76, .22);
      outline-offset: 2px;
    }

    .container {
      width: min(var(--container), calc(100% - 40px));
      margin: 0 auto;
    }

    .info-strip {
      min-height: 38px;
      background: #211a1d;
      color: rgba(255, 255, 255, .82);
      border-bottom: 1px solid rgba(255, 255, 255, .08);
      font-size: 13px;
    }

    .info-strip .container {
      min-height: 38px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .info-strip a {
      color: #fff;
      border-bottom: 1px solid rgba(255, 255, 255, .38);
    }

    .header {
      position: sticky;
      top: 0;
      z-index: 30;
      background: rgba(255, 255, 255, .94);
      border-bottom: 1px solid rgba(226, 217, 221, .9);
      box-shadow: 0 8px 24px rgba(23, 19, 21, .04);
      backdrop-filter: blur(12px);
    }

    .header .top-bar {
      background: transparent;
      padding: 0;
    }

    .mobile-title-bar {
      width: min(var(--container), calc(100% - 32px));
      min-height: 66px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .mobile-menu {
      width: min(var(--container), calc(100% - 40px));
      min-height: 72px;
      margin: 0 auto;
      align-items: center;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-width: 0;
      font-weight: 800;
      color: var(--ink);
    }

    .brand:hover {
      color: var(--accent);
    }

    .brand-mark {
      width: 34px;
      height: 34px;
      flex: 0 0 34px;
      border-radius: 8px;
      background:
        linear-gradient(135deg, #2b2024 0%, #7c2d43 62%, #b07a4f 100%);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18), 0 8px 18px rgba(143, 52, 76, .2);
      position: relative;
    }

    .brand-mark::after {
      content: "";
      position: absolute;
      inset: 8px;
      border: 1px solid rgba(255, 255, 255, .58);
      border-radius: 5px;
    }

    .brand-text {
      font-size: 18px;
      line-height: 1.2;
      white-space: normal;
      overflow-wrap: anywhere;
    }

    .top-bar-right .menu {
      gap: 4px;
      align-items: center;
    }

    .top-bar-right .menu a {
      color: var(--ink-soft);
      padding: 12px 13px;
      border-radius: 7px;
      font-size: 15px;
      font-weight: 650;
      position: relative;
    }

    .top-bar-right .menu a:hover {
      color: var(--accent);
      background: rgba(143, 52, 76, .07);
    }

    .top-bar-right .menu a.active {
      color: var(--accent);
      background: var(--accent-soft);
    }

    .top-bar-right .menu a.active::after {
      content: "";
      position: absolute;
      left: 13px;
      right: 13px;
      bottom: 6px;
      height: 2px;
      background: var(--accent);
      border-radius: 99px;
    }

    .top-bar-right .menu a.nav-cta {
      color: #fff;
      background: var(--accent);
      box-shadow: 0 10px 18px rgba(143, 52, 76, .2);
    }

    .top-bar-right .menu a.nav-cta:hover {
      background: var(--accent-dark);
      transform: translateY(-1px);
    }

    .menu-icon {
      width: 46px;
      height: 46px;
      border-radius: 7px;
      background: var(--accent);
    }

    .menu-icon::after {
      background: #fff;
      box-shadow: 0 7px 0 #fff, 0 14px 0 #fff;
      left: 12px;
      width: 22px;
    }

    .page-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 11px;
      border-radius: 999px;
      background: #fff;
      border: 1px solid var(--line);
      color: var(--accent);
      font-size: 13px;
      font-weight: 750;
    }

    .page-kicker::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--good);
      box-shadow: 0 0 0 4px rgba(36, 115, 90, .12);
    }

    .category-hero {
      padding: 62px 0 38px;
      background:
        radial-gradient(circle at 84% 8%, rgba(143, 52, 76, .13), transparent 30%),
        linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(246, 238, 241, .94));
      border-bottom: 1px solid var(--line);
    }

    .category-hero-grid {
      align-items: end;
      row-gap: 28px;
    }

    .category-hero h1 {
      margin: 18px 0 14px;
      max-width: 820px;
      color: var(--ink);
      font-size: 46px;
      line-height: 1.15;
      font-weight: 850;
      letter-spacing: 0;
      overflow-wrap: anywhere;
    }

    .category-hero p {
      max-width: 760px;
      margin: 0;
      color: var(--muted);
      font-size: 17px;
    }

    .hero-panel {
      background: #241d20;
      color: #fff;
      border-radius: var(--radius);
      padding: 22px;
      box-shadow: var(--shadow);
      border: 1px solid rgba(255, 255, 255, .1);
      position: relative;
      overflow: hidden;
    }

    .hero-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
      background-size: 28px 28px;
      opacity: .25;
      pointer-events: none;
    }

    .hero-panel > * {
      position: relative;
      z-index: 1;
    }

    .status-line {
      display: flex;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 18px;
      font-size: 13px;
      color: rgba(255, 255, 255, .72);
    }

    .panel-number {
      font-size: 36px;
      line-height: 1;
      font-weight: 850;
      color: #f3d8df;
      margin-bottom: 6px;
    }

    .panel-note {
      margin: 0;
      color: rgba(255, 255, 255, .78);
      font-size: 14px;
    }

    .filter-band {
      padding: 24px 0;
      background: var(--panel);
      border-bottom: 1px solid var(--line);
    }

    .filter-wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
    }

    .chip-row {
      display: flex;
      align-items: center;
      gap: 10px;
      overflow-x: auto;
      padding-bottom: 2px;
    }

    .chip {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 38px;
      white-space: nowrap;
      padding: 8px 13px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: var(--panel-soft);
      color: var(--ink-soft);
      font-size: 14px;
      font-weight: 700;
    }

    .chip.is-active {
      color: #fff;
      border-color: var(--accent);
      background: var(--accent);
    }

    .sort-control {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--muted);
      font-size: 14px;
      min-width: 220px;
    }

    .sort-control select {
      margin: 0;
      border-radius: 7px;
      border-color: var(--line-strong);
      color: var(--ink);
      background-color: #fff;
      box-shadow: none;
    }

    .section {
      padding: var(--section) 0;
    }

    .section.tight {
      padding: 58px 0;
    }

    .section-head {
      max-width: 760px;
      margin-bottom: 28px;
    }

    .section-head h2 {
      margin: 0 0 10px;
      color: var(--ink);
      font-size: 32px;
      line-height: 1.22;
      font-weight: 820;
      letter-spacing: 0;
    }

    .section-head p {
      margin: 0;
      color: var(--muted);
      font-size: 16px;
    }

    .entry-list {
      display: grid;
      gap: 18px;
    }

    .entry-card {
      display: grid;
      grid-template-columns: 188px minmax(0, 1fr) auto;
      gap: 22px;
      align-items: center;
      min-height: 176px;
      padding: 18px;
      background: var(--panel);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: 0 10px 26px rgba(35, 26, 30, .05);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .entry-card:hover {
      transform: translateY(-2px);
      border-color: rgba(143, 52, 76, .48);
      box-shadow: var(--shadow-hover);
    }

    .entry-cover {
      min-height: 132px;
      border-radius: 7px;
      border: 1px solid rgba(255, 255, 255, .28);
      background:
        linear-gradient(135deg, rgba(143, 52, 76, .86), rgba(34, 27, 30, .94)),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, .12) 0, rgba(255, 255, 255, .12) 1px, transparent 1px, transparent 13px);
      position: relative;
      overflow: hidden;
    }

    .entry-cover::before,
    .entry-cover::after {
      content: "";
      position: absolute;
      border: 1px solid rgba(255, 255, 255, .34);
      border-radius: 7px;
    }

    .entry-cover::before {
      inset: 14px 18px;
    }

    .entry-cover::after {
      width: 74px;
      height: 44px;
      right: 18px;
      bottom: 17px;
      background: rgba(255, 255, 255, .08);
    }

    .entry-body {
      min-width: 0;
    }

    .entry-meta {
      display: flex;
      align-items: center;
      gap: 9px;
      flex-wrap: wrap;
      margin-bottom: 8px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      min-height: 26px;
      padding: 4px 9px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: var(--panel-soft);
      color: var(--muted);
      font-size: 12px;
      font-weight: 750;
      line-height: 1.2;
    }

    .badge.good {
      color: var(--good);
      background: rgba(36, 115, 90, .1);
      border-color: rgba(36, 115, 90, .22);
    }

    .badge.wait {
      color: var(--wait);
      background: rgba(139, 106, 34, .1);
      border-color: rgba(139, 106, 34, .22);
    }

    .badge.accent {
      color: var(--accent);
      background: var(--accent-soft);
      border-color: rgba(143, 52, 76, .22);
    }

    .entry-card h3 {
      margin: 0 0 8px;
      font-size: 21px;
      line-height: 1.32;
      font-weight: 800;
      color: var(--ink);
      overflow-wrap: anywhere;
    }

    .entry-card p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
    }

    .entry-action {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 10px;
      min-width: 132px;
    }

    .time-text {
      color: var(--muted);
      font-size: 13px;
      white-space: nowrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 46px;
      padding: 11px 17px;
      border-radius: 7px;
      border: 1px solid transparent;
      background: var(--accent);
      color: #fff;
      font-size: 15px;
      font-weight: 760;
      line-height: 1.2;
      cursor: pointer;
      box-shadow: 0 10px 18px rgba(143, 52, 76, .18);
    }

    .btn:hover,
    .btn:focus {
      color: #fff;
      background: var(--accent-dark);
      transform: translateY(-1px);
      box-shadow: 0 14px 24px rgba(143, 52, 76, .24);
    }

    .btn.secondary {
      color: var(--accent);
      background: #fff;
      border-color: rgba(143, 52, 76, .36);
      box-shadow: none;
    }

    .btn.secondary:hover {
      color: var(--accent-dark);
      background: var(--accent-soft);
      border-color: var(--accent);
    }

    .preview-section {
      background: #211a1d;
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    .preview-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 12% 10%, rgba(160, 107, 70, .22), transparent 28%),
        linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
      background-size: auto, 34px 34px;
      opacity: .8;
    }

    .preview-section .container {
      position: relative;
      z-index: 1;
    }

    .preview-section .section-head h2,
    .preview-section .section-head p {
      color: #fff;
    }

    .preview-section .section-head p {
      color: rgba(255, 255, 255, .72);
    }

    .timeline {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 16px;
    }

    .timeline-item {
      min-height: 168px;
      padding: 20px;
      border-radius: var(--radius);
      border: 1px solid rgba(255, 255, 255, .14);
      background: rgba(255, 255, 255, .06);
    }

    .timeline-item strong {
      display: block;
      margin: 12px 0 8px;
      font-size: 20px;
      color: #fff;
    }

    .timeline-item p {
      margin: 0;
      color: rgba(255, 255, 255, .72);
      font-size: 15px;
    }

    .subscribe-band {
      background: var(--panel);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .subscribe-wrap {
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
      gap: 28px;
      align-items: center;
    }

    .subscribe-wrap h2 {
      margin: 0 0 8px;
      font-size: 30px;
      line-height: 1.25;
      font-weight: 820;
    }

    .subscribe-wrap p {
      margin: 0;
      color: var(--muted);
    }

    .subscribe-form {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 12px;
      align-items: center;
    }

    .subscribe-form input {
      margin: 0;
      border-radius: 7px;
      border: 1px solid var(--line-strong);
      box-shadow: none;
      background: var(--panel-soft);
    }

    .subscribe-form input:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 4px rgba(143, 52, 76, .12);
    }

    .privacy-note {
      grid-column: 1 / -1;
      color: var(--muted);
      font-size: 13px;
      margin-top: -2px;
    }

    .guide-grid {
      display: grid;
      grid-template-columns: 5fr 7fr;
      gap: 22px;
      align-items: stretch;
    }

    .guide-card {
      padding: 24px;
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: var(--panel);
      box-shadow: 0 10px 26px rgba(35, 26, 30, .05);
    }

    .guide-card h3 {
      margin: 0 0 12px;
      font-size: 22px;
      font-weight: 820;
    }

    .guide-card p {
      margin: 0;
      color: var(--muted);
    }

    .check-list {
      margin: 18px 0 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 12px;
    }

    .check-list li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      color: var(--ink-soft);
    }

    .check-list li::before {
      content: "";
      width: 10px;
      height: 10px;
      flex: 0 0 10px;
      margin-top: 9px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 4px rgba(143, 52, 76, .12);
    }

    .accordion {
      background: transparent;
    }

    .accordion-item {
      margin-bottom: 12px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
      background: var(--panel);
      box-shadow: 0 8px 20px rgba(35, 26, 30, .04);
    }

    .accordion-title {
      border: 0;
      color: var(--ink);
      font-size: 17px;
      font-weight: 760;
      padding: 18px 52px 18px 18px;
      line-height: 1.45;
    }

    .accordion-title:hover,
    .accordion-title:focus {
      color: var(--accent);
      background: var(--panel-soft);
    }

    .accordion-title::before {
      right: 18px;
      color: var(--accent);
      font-size: 22px;
      margin-top: -14px;
    }

    .accordion-content {
      border: 0;
      border-top: 1px solid var(--line);
      background: #fff;
      color: var(--muted);
      padding: 18px;
    }

    .cta {
      padding: 64px 0;
      background:
        linear-gradient(135deg, rgba(143, 52, 76, .96), rgba(40, 30, 34, .98));
      color: #fff;
    }

    .cta-wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }

    .cta h2 {
      margin: 0 0 8px;
      font-size: 30px;
      line-height: 1.25;
      font-weight: 820;
    }

    .cta p {
      margin: 0;
      color: rgba(255, 255, 255, .78);
      max-width: 680px;
    }

    .cta .btn {
      background: #fff;
      color: var(--accent);
      box-shadow: none;
      flex: 0 0 auto;
    }

    .cta .btn:hover {
      color: var(--accent-dark);
      background: #f8edf1;
    }

    .footer {
      padding: 62px 0 30px;
      background: #171315;
      color: rgba(255, 255, 255, .78);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr .8fr 1.2fr 1fr;
      gap: 28px;
      padding-bottom: 34px;
      border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .footer h2,
    .footer h3 {
      color: #fff;
      margin: 0 0 12px;
      line-height: 1.3;
    }

    .footer h2 {
      font-size: 22px;
      font-weight: 820;
      overflow-wrap: anywhere;
    }

    .footer h3 {
      font-size: 15px;
      font-weight: 780;
    }

    .footer p {
      margin: 0;
      color: rgba(255, 255, 255, .68);
      font-size: 14px;
    }

    .footer a {
      display: inline-block;
      color: rgba(255, 255, 255, .78);
      margin: 2px 0;
      font-size: 14px;
    }

    .footer a:hover {
      color: #fff;
      transform: translateX(2px);
    }

    .copyright {
      padding-top: 22px;
      color: rgba(255, 255, 255, .52);
      font-size: 13px;
    }

    @media screen and (max-width: 1024px) {
      :root {
        --section: 72px;
      }

      .category-hero h1 {
        font-size: 40px;
      }

      .entry-card {
        grid-template-columns: 150px minmax(0, 1fr);
      }

      .entry-action {
        grid-column: 2;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
      }

      .timeline {
        grid-template-columns: 1fr;
      }

      .subscribe-wrap,
      .guide-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media screen and (max-width: 767px) {
      .container {
        width: calc(100% - 36px);
      }

      .info-strip .container {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 2px;
        padding: 8px 0;
      }

      .mobile-title-bar {
        width: calc(100% - 32px);
      }

      .mobile-menu {
        width: calc(100% - 32px);
        min-height: 0;
        padding: 10px 0 16px;
      }

      .top-bar-right {
        width: 100%;
      }

      .top-bar-right .menu {
        display: grid;
        width: 100%;
        gap: 6px;
      }

      .top-bar-right .menu a {
        padding: 12px;
        min-height: 44px;
      }

      .brand-text {
        font-size: 16px;
      }

      .category-hero {
        padding: 46px 0 28px;
      }

      .category-hero h1 {
        font-size: 32px;
        line-height: 1.2;
      }

      .category-hero p {
        font-size: 15px;
      }

      .filter-wrap {
        align-items: stretch;
      }

      .chip-row {
        width: 100%;
      }

      .sort-control {
        width: 100%;
        min-width: 0;
      }

      .entry-card {
        grid-template-columns: 1fr;
        gap: 16px;
        min-height: 0;
      }

      .entry-cover {
        min-height: 148px;
      }

      .entry-action {
        grid-column: auto;
        flex-direction: column;
        align-items: stretch;
      }

      .time-text {
        white-space: normal;
      }

      .btn {
        width: 100%;
      }

      .subscribe-form {
        grid-template-columns: 1fr;
      }

      .cta-wrap {
        flex-direction: column;
        align-items: stretch;
      }

      .section-head h2,
      .subscribe-wrap h2,
      .cta h2 {
        font-size: 26px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    @media screen and (max-width: 520px) {
      :root {
        --section: 56px;
      }

      .container {
        width: calc(100% - 32px);
      }

      .hero-panel,
      .guide-card,
      .timeline-item {
        padding: 18px;
      }

      .entry-card {
        padding: 14px;
      }

      .entry-card h3 {
        font-size: 19px;
      }
    }
