/* roulang page: index */
:root {
      --color-primary: #e83f3f;
      --color-primary-dark: #c92f2f;
      --color-secondary: #18a058;
      --color-teal: #16b8a6;
      --color-amber: #f6b73c;
      --color-ink: #171717;
      --color-muted: #57534e;
      --color-soft: #f7f7f4;
      --color-line: rgba(23, 23, 23, .1);
      --color-card: #ffffff;
      --radius-lg: 20px;
      --radius-md: 16px;
      --radius-sm: 12px;
      --shadow-card: 0 10px 30px rgba(20, 20, 20, .06);
      --shadow-hover: 0 18px 42px rgba(20, 20, 20, .1);
      --container: 1200px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      text-size-adjust: 100%;
    }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
      color: var(--color-ink);
      background:
        linear-gradient(90deg, rgba(232, 63, 63, .06) 0 1px, transparent 1px 100%),
        linear-gradient(180deg, rgba(24, 160, 88, .05) 0 1px, transparent 1px 100%),
        var(--color-soft);
      background-size: 42px 42px;
      line-height: 1.75;
      letter-spacing: 0;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    select {
      font: inherit;
    }

    button {
      border: 0;
      cursor: pointer;
    }

    ::selection {
      color: #fff;
      background: var(--color-primary);
    }

    .site-container {
      width: min(100% - 32px, var(--container));
      margin-inline: auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, .92);
      border-bottom: 1px solid var(--color-line);
      box-shadow: 0 8px 24px rgba(23, 23, 23, .04);
      backdrop-filter: blur(16px);
    }

    .nav-shell {
      min-height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 900;
      line-height: 1.15;
      max-width: 360px;
    }

    .brand-mark {
      width: 40px;
      height: 40px;
      border-radius: 14px;
      background:
        linear-gradient(135deg, var(--color-primary), #ff765b 48%, var(--color-amber));
      color: #fff;
      display: grid;
      place-items: center;
      font-weight: 900;
      box-shadow: 0 10px 24px rgba(232, 63, 63, .22);
      flex: 0 0 auto;
    }

    .brand-text {
      font-size: 15px;
      word-break: break-word;
    }

    .desktop-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 6px;
      border: 1px solid rgba(23, 23, 23, .08);
      border-radius: 999px;
      background: rgba(247, 247, 244, .86);
    }

    .nav-link {
      position: relative;
      padding: 9px 15px;
      border-radius: 999px;
      color: var(--color-muted);
      font-size: 14px;
      font-weight: 700;
      transition: color .2s ease, background .2s ease, transform .2s ease;
      outline: none;
      white-space: nowrap;
    }

    .nav-link:hover,
    .nav-link:focus-visible {
      color: var(--color-primary);
      background: rgba(232, 63, 63, .08);
    }

    .nav-link.active {
      color: var(--color-primary);
      background: #fff;
      box-shadow: inset 0 -2px 0 var(--color-primary);
      font-weight: 900;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .age-pill {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 8px 12px;
      border-radius: 999px;
      border: 1px solid rgba(24, 160, 88, .24);
      color: #11683a;
      background: rgba(24, 160, 88, .08);
      font-size: 13px;
      font-weight: 800;
      white-space: nowrap;
    }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border-radius: 14px;
      background: #fff;
      border: 1px solid var(--color-line);
      align-items: center;
      justify-content: center;
      transition: border-color .2s ease, box-shadow .2s ease;
    }

    .menu-toggle:hover,
    .menu-toggle:focus-visible {
      border-color: rgba(232, 63, 63, .5);
      box-shadow: 0 8px 20px rgba(232, 63, 63, .12);
      outline: none;
    }

    .mobile-menu {
      display: none;
      border-top: 1px solid var(--color-line);
      background: #fff;
    }

    .mobile-menu.open {
      display: block;
    }

    .mobile-menu-inner {
      display: grid;
      gap: 10px;
      padding: 14px 0 20px;
    }

    .mobile-menu .nav-link {
      display: block;
      border-radius: 14px;
      padding: 12px 14px;
      background: rgba(247, 247, 244, .75);
    }

    .section {
      padding: 82px 0;
    }

    .section-tight {
      padding: 58px 0;
    }

    .section-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 28px;
      margin-bottom: 28px;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--color-primary);
      font-size: 14px;
      font-weight: 900;
      margin-bottom: 10px;
    }

    .section-title {
      margin: 0;
      font-size: clamp(28px, 4vw, 40px);
      line-height: 1.25;
      font-weight: 900;
      letter-spacing: 0;
    }

    .section-desc {
      color: var(--color-muted);
      max-width: 640px;
      margin: 10px 0 0;
      font-size: 16px;
    }

    .hero {
      padding: 42px 0 32px;
      min-height: calc(100vh - 72px);
      display: flex;
      align-items: center;
    }

    .hero-stage {
      width: 100%;
      display: grid;
      grid-template-columns: 1fr;
      gap: 22px;
    }

    .launch-board {
      position: relative;
      overflow: hidden;
      border-radius: 28px;
      background:
        linear-gradient(120deg, rgba(23, 23, 23, .82), rgba(23, 23, 23, .58)),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 18px),
        linear-gradient(135deg, #2b2b2b, #37312d);
      color: #fff;
      box-shadow: 0 22px 60px rgba(23, 23, 23, .18);
      min-height: 430px;
      padding: clamp(26px, 5vw, 56px);
      display: grid;
      grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
      gap: 34px;
      align-items: center;
    }

    .launch-board::before {
      content: "";
      position: absolute;
      inset: auto -12% -28% auto;
      width: 46%;
      aspect-ratio: 1;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(246, 183, 60, .42), rgba(232, 63, 63, .14) 58%, transparent 70%);
      pointer-events: none;
    }

    .launch-board::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 8px;
      background: linear-gradient(90deg, var(--color-primary), var(--color-amber), var(--color-secondary), var(--color-teal));
    }

    .hero-copy {
      position: relative;
      z-index: 1;
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 18px;
    }

    .tag,
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      border-radius: 999px;
      padding: 7px 11px;
      font-size: 13px;
      font-weight: 800;
      line-height: 1.2;
      border: 1px solid rgba(255, 255, 255, .16);
      background: rgba(255, 255, 255, .12);
      color: inherit;
    }

    .tag.light {
      background: #fff;
      color: var(--color-ink);
      border-color: var(--color-line);
    }

    .badge-red {
      color: #fff;
      background: var(--color-primary);
      border-color: var(--color-primary);
    }

    .badge-green {
      color: #0f6b3b;
      background: rgba(24, 160, 88, .1);
      border-color: rgba(24, 160, 88, .22);
    }

    .badge-amber {
      color: #7a4b00;
      background: rgba(246, 183, 60, .18);
      border-color: rgba(246, 183, 60, .35);
    }

    h1 {
      margin: 0;
      max-width: 900px;
      font-size: clamp(34px, 6vw, 62px);
      line-height: 1.14;
      font-weight: 950;
      letter-spacing: 0;
      word-break: break-word;
    }

    .hero-intro {
      max-width: 760px;
      margin: 20px 0 0;
      color: rgba(255, 255, 255, .86);
      font-size: clamp(16px, 2vw, 19px);
      line-height: 1.85;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 46px;
      padding: 12px 18px;
      border-radius: 999px;
      font-weight: 900;
      font-size: 15px;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
      border: 1px solid transparent;
      outline: none;
      text-align: center;
    }

    .btn-primary {
      color: #fff;
      background: var(--color-primary);
      box-shadow: 0 12px 26px rgba(232, 63, 63, .26);
    }

    .btn-primary:hover,
    .btn-primary:focus-visible {
      background: var(--color-primary-dark);
      transform: translateY(-2px);
      box-shadow: 0 16px 34px rgba(232, 63, 63, .32);
    }

    .btn-secondary {
      color: var(--color-ink);
      background: #fff;
      border-color: rgba(23, 23, 23, .12);
    }

    .btn-secondary:hover,
    .btn-secondary:focus-visible {
      color: var(--color-primary);
      border-color: rgba(232, 63, 63, .45);
      background: rgba(255, 245, 244, .98);
      transform: translateY(-2px);
    }

    .btn-green {
      color: #fff;
      background: var(--color-secondary);
      box-shadow: 0 12px 26px rgba(24, 160, 88, .22);
    }

    .btn-green:hover,
    .btn-green:focus-visible {
      background: #13824a;
      transform: translateY(-2px);
    }

    .hero-panel {
      position: relative;
      z-index: 1;
      background: rgba(255, 255, 255, .94);
      color: var(--color-ink);
      border-radius: 24px;
      padding: 22px;
      box-shadow: 0 16px 44px rgba(0, 0, 0, .18);
    }

    .count-ring {
      width: 172px;
      height: 172px;
      margin: 0 auto 18px;
      border-radius: 50%;
      background:
        conic-gradient(var(--color-primary) 0 72%, rgba(23, 23, 23, .1) 72% 100%);
      display: grid;
      place-items: center;
      padding: 12px;
    }

    .count-ring-inner {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background: #fff;
      display: grid;
      place-items: center;
      text-align: center;
      box-shadow: inset 0 0 0 1px var(--color-line);
    }

    .ring-num {
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
      font-size: 34px;
      line-height: 1;
      font-weight: 900;
      color: var(--color-primary);
    }

    .ring-text {
      margin-top: 6px;
      color: var(--color-muted);
      font-size: 13px;
      font-weight: 800;
    }

    .point-list {
      display: grid;
      gap: 10px;
      margin-top: 14px;
    }

    .point {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 10px;
      border-radius: 14px;
      background: rgba(247, 247, 244, .95);
      font-size: 14px;
      color: var(--color-muted);
    }

    .dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      margin-top: 8px;
      background: var(--color-secondary);
      flex: 0 0 auto;
    }

    .notice-strip {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 14px 18px;
      border-radius: 18px;
      border: 1px solid rgba(246, 183, 60, .34);
      background: rgba(246, 183, 60, .12);
      color: #604000;
      font-size: 14px;
      font-weight: 700;
    }

    .countdown-band {
      background: #fff;
      border-top: 1px solid var(--color-line);
      border-bottom: 1px solid var(--color-line);
    }

    .count-grid {
      display: grid;
      grid-template-columns: 1.05fr 1.5fr .9fr;
      gap: 22px;
      align-items: center;
    }

    .time-cards {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
    }

    .time-card {
      min-height: 116px;
      border-radius: 18px;
      background: #1d1b1a;
      color: #fff;
      display: grid;
      place-items: center;
      text-align: center;
      box-shadow: var(--shadow-card);
      border: 1px solid rgba(255, 255, 255, .08);
    }

    .time-num {
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
      font-size: clamp(30px, 4vw, 46px);
      line-height: 1;
      font-weight: 950;
      color: var(--color-amber);
      min-width: 2ch;
    }

    .time-label {
      margin-top: 8px;
      font-size: 13px;
      color: rgba(255, 255, 255, .72);
      font-weight: 800;
    }

    .card {
      background: var(--color-card);
      border: 1px solid var(--color-line);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-card);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .card:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-hover);
      border-color: rgba(232, 63, 63, .32);
    }

    .compare-wrap {
      overflow-x: auto;
      border-radius: 20px;
      border: 1px solid var(--color-line);
      background: #fff;
      box-shadow: var(--shadow-card);
    }

    .compare-table {
      width: 100%;
      min-width: 760px;
      border-collapse: collapse;
    }

    .compare-table th,
    .compare-table td {
      padding: 18px 20px;
      text-align: left;
      border-bottom: 1px solid rgba(23, 23, 23, .08);
      vertical-align: top;
    }

    .compare-table th {
      background: #262321;
      color: #fff;
      font-size: 14px;
    }

    .compare-table td {
      color: var(--color-muted);
      font-size: 15px;
    }

    .compare-table tr:last-child td {
      border-bottom: 0;
    }

    .recommend-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr .8fr;
      gap: 20px;
    }

    .recommend-card {
      padding: 24px;
      min-height: 220px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .recommend-card.featured {
      background:
        linear-gradient(135deg, rgba(232, 63, 63, .1), rgba(246, 183, 60, .12)),
        #fff;
      border-left: 5px solid var(--color-primary);
    }

    .card-title {
      margin: 0 0 8px;
      font-size: 21px;
      line-height: 1.35;
      font-weight: 900;
      word-break: break-word;
    }

    .card-text {
      margin: 0;
      color: var(--color-muted);
      font-size: 15px;
    }

    .highlight-layout {
      display: grid;
      grid-template-columns: .86fr 1.14fr;
      gap: 26px;
      align-items: start;
    }

    .timeline {
      position: relative;
      display: grid;
      gap: 16px;
    }

    .timeline::before {
      content: "";
      position: absolute;
      left: 20px;
      top: 12px;
      bottom: 12px;
      width: 2px;
      background: linear-gradient(var(--color-primary), var(--color-amber), var(--color-secondary));
    }

    .timeline-item {
      position: relative;
      padding-left: 58px;
    }

    .timeline-num {
      position: absolute;
      left: 0;
      top: 0;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: #fff;
      color: var(--color-primary);
      border: 2px solid rgba(232, 63, 63, .34);
      font-weight: 950;
      box-shadow: var(--shadow-card);
    }

    .timeline-card {
      padding: 20px;
      border-left: 4px solid var(--color-primary);
    }

    .entry-matrix {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      grid-auto-rows: minmax(170px, auto);
      gap: 18px;
    }

    .entry-card {
      padding: 22px;
      position: relative;
      overflow: hidden;
    }

    .entry-card.wide {
      grid-column: span 2;
    }

    .entry-card.tall {
      grid-row: span 2;
    }

    .entry-status {
      position: absolute;
      top: 16px;
      right: 16px;
    }

    .media-scroll {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: minmax(260px, 32%);
      gap: 18px;
      overflow-x: auto;
      padding: 4px 2px 16px;
      scroll-snap-type: x mandatory;
    }

    .media-card {
      scroll-snap-align: start;
      overflow: hidden;
    }

    .media-thumb {
      min-height: 130px;
      background:
        repeating-linear-gradient(135deg, rgba(255, 255, 255, .42) 0 1px, transparent 1px 14px),
        linear-gradient(135deg, rgba(232, 63, 63, .9), rgba(246, 183, 60, .8));
      display: flex;
      align-items: flex-end;
      padding: 18px;
      color: #fff;
      font-weight: 900;
    }

    .news-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
      gap: 24px;
      align-items: start;
    }

    .news-list {
      display: grid;
      gap: 12px;
    }

    .news-link {
      display: grid;
      grid-template-columns: 120px 1fr auto;
      gap: 16px;
      align-items: center;
      padding: 18px;
      border-radius: 18px;
      background: #fff;
      border: 1px solid var(--color-line);
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }

    .news-link:hover,
    .news-link:focus-visible {
      transform: translateY(-2px);
      border-color: rgba(232, 63, 63, .35);
      box-shadow: var(--shadow-card);
      outline: none;
    }

    .news-date {
      color: var(--color-primary);
      font-weight: 950;
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    }

    .form-zone {
      background:
        linear-gradient(90deg, rgba(24, 160, 88, .1), rgba(232, 63, 63, .08)),
        #fff;
      border-top: 1px solid var(--color-line);
      border-bottom: 1px solid var(--color-line);
    }

    .remind-panel {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 26px;
      align-items: center;
    }

    .form-card {
      padding: 24px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 170px;
      gap: 12px;
    }

    .field {
      display: grid;
      gap: 8px;
    }

    .field label {
      color: var(--color-ink);
      font-size: 14px;
      font-weight: 900;
    }

    .input,
    .select {
      width: 100%;
      min-height: 50px;
      border-radius: 14px;
      border: 1px solid rgba(23, 23, 23, .14);
      padding: 0 14px;
      background: #fff;
      color: var(--color-ink);
      transition: border-color .2s ease, box-shadow .2s ease;
      outline: none;
    }

    .input:focus,
    .select:focus {
      border-color: var(--color-primary);
      box-shadow: 0 0 0 4px rgba(232, 63, 63, .12);
    }

    .form-note {
      margin-top: 12px;
      color: var(--color-muted);
      font-size: 13px;
    }

    .form-result {
      display: none;
      margin-top: 12px;
      padding: 10px 12px;
      border-radius: 12px;
      color: #0f6b3b;
      background: rgba(24, 160, 88, .1);
      border: 1px solid rgba(24, 160, 88, .24);
      font-weight: 800;
      font-size: 14px;
    }

    .form-result.show {
      display: block;
    }

    .cta-band {
      position: relative;
      overflow: hidden;
      border-radius: 28px;
      background:
        linear-gradient(135deg, rgba(232, 63, 63, .92), rgba(246, 183, 60, .92)),
        #e83f3f;
      color: #fff;
      padding: clamp(28px, 5vw, 48px);
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px;
      align-items: center;
      box-shadow: 0 20px 50px rgba(232, 63, 63, .22);
    }

    .cta-band p {
      margin: 8px 0 0;
      color: rgba(255, 255, 255, .88);
      max-width: 700px;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: 24px;
      align-items: start;
    }

    details.faq-item {
      background: #fff;
      border: 1px solid var(--color-line);
      border-radius: 18px;
      padding: 0;
      box-shadow: var(--shadow-card);
      overflow: hidden;
    }

    details.faq-item + details.faq-item {
      margin-top: 12px;
    }

    .faq-item summary {
      list-style: none;
      cursor: pointer;
      padding: 18px 20px;
      font-weight: 900;
      transition: color .2s ease, background .2s ease;
      outline: none;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary:hover,
    .faq-item summary:focus-visible {
      color: var(--color-primary);
      background: rgba(232, 63, 63, .06);
    }

    .faq-item[open] summary {
      color: var(--color-primary);
      border-bottom: 1px solid var(--color-line);
    }

    .faq-answer {
      padding: 16px 20px 20px;
      color: var(--color-muted);
      font-size: 15px;
    }

    .site-footer {
      color: rgba(255, 255, 255, .78);
      background: #24211f;
      border-top: 6px solid transparent;
      border-image: linear-gradient(90deg, var(--color-primary), var(--color-amber), var(--color-secondary)) 1;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr .8fr;
      gap: 30px;
      padding: 48px 0 32px;
    }

    .footer-title {
      color: #fff;
      font-weight: 950;
      font-size: 18px;
      margin-bottom: 10px;
    }

    .footer-links {
      display: grid;
      gap: 8px;
    }

    .footer-links a {
      color: rgba(255, 255, 255, .74);
      transition: color .2s ease;
    }

    .footer-links a:hover,
    .footer-links a:focus-visible {
      color: #fff;
      outline: none;
    }

    .copyright {
      padding: 18px 0 24px;
      border-top: 1px solid rgba(255, 255, 255, .1);
      font-size: 13px;
      color: rgba(255, 255, 255, .62);
    }

    @media (max-width: 1024px) {
      .desktop-nav,
      .header-actions .age-pill {
        display: none;
      }

      .menu-toggle {
        display: inline-flex;
      }

      .launch-board,
      .count-grid,
      .highlight-layout,
      .remind-panel,
      .news-layout,
      .faq-grid,
      .cta-band {
        grid-template-columns: 1fr;
      }

      .recommend-grid {
        grid-template-columns: 1fr 1fr;
      }

      .recommend-card.featured {
        grid-column: span 2;
      }

      .entry-matrix {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 768px) {
      .site-container {
        width: min(100% - 24px, var(--container));
      }

      .brand {
        max-width: 240px;
      }

      .brand-text {
        font-size: 13px;
      }

      .hero {
        padding-top: 24px;
        min-height: auto;
      }

      .launch-board {
        border-radius: 22px;
        min-height: auto;
      }

      .notice-strip,
      .section-head {
        align-items: flex-start;
        flex-direction: column;
      }

      .section {
        padding: 58px 0;
      }

      .time-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .recommend-grid,
      .entry-matrix,
      .form-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .recommend-card.featured,
      .entry-card.wide,
      .entry-card.tall {
        grid-column: auto;
        grid-row: auto;
      }

      .media-scroll {
        grid-auto-columns: minmax(240px, 86%);
      }

      .news-link {
        grid-template-columns: 1fr;
      }

      .cta-band {
        border-radius: 22px;
      }

      .hero-actions .btn,
      .cta-band .btn,
      .form-grid .btn {
        width: 100%;
      }
    }

    @media (max-width: 520px) {
      .nav-shell {
        min-height: 66px;
      }

      h1 {
        font-size: 34px;
      }

      .hero-intro,
      .section-desc {
        font-size: 15px;
      }

      .time-card {
        min-height: 96px;
      }

      .count-ring {
        width: 148px;
        height: 148px;
      }

      .timeline-item {
        padding-left: 50px;
      }

      .timeline-num {
        width: 38px;
        height: 38px;
      }
    }

/* roulang page: category1 */
:root {
      --red: #e83f3f;
      --red-dark: #cb2d32;
      --coral: #ff5a3c;
      --green: #18a058;
      --teal: #16b8a6;
      --amber: #f6b73c;
      --ink: #171717;
      --muted: #6b6965;
      --line: rgba(23, 23, 23, .10);
      --paper: #ffffff;
      --warm: #f7f7f4;
      --soft-red: #fff1ef;
      --soft-green: #edf9f1;
      --radius: 18px;
      --shadow: 0 12px 34px rgba(20, 20, 20, .07);
      --shadow-hover: 0 16px 38px rgba(20, 20, 20, .12);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--ink);
      background: var(--warm);
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
      line-height: 1.75;
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; }
    button, input, select { font: inherit; }
    button { cursor: pointer; }
    button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, summary:focus-visible {
      outline: 3px solid rgba(232, 63, 63, .25);
      outline-offset: 3px;
    }
    .site-container { width: min(100% - 40px, 1240px); margin: 0 auto; }
    .site-header {
      position: sticky; top: 0; z-index: 50;
      background: rgba(255,255,255,.94);
      border-bottom: 1px solid var(--line);
      backdrop-filter: blur(14px);
    }
    .nav-shell { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
    .brand { display: inline-flex; align-items: center; gap: 10px; min-width: 0; font-weight: 800; }
    .brand-mark {
      width: 34px; height: 34px; display: inline-grid; place-items: center; flex: 0 0 auto;
      background: var(--red); color: #fff; border-radius: 10px; font-size: 17px; box-shadow: 0 6px 16px rgba(232,63,63,.25);
    }
    .brand-text { font-size: 16px; white-space: nowrap; }
    .desktop-nav { display: flex; align-items: center; gap: 6px; margin-left: auto; }
    .nav-link {
      position: relative; display: inline-flex; align-items: center; min-height: 42px; padding: 0 13px;
      font-size: 15px; color: #4d4a46; border-radius: 10px; transition: .2s ease;
    }
    .nav-link:hover { color: var(--red); background: #fff4f2; }
    .nav-link.active { color: var(--red); font-weight: 750; }
    .nav-link.active::after {
      content: ""; position: absolute; left: 13px; right: 13px; bottom: 4px; height: 2px; background: var(--red); border-radius: 999px;
    }
    .header-actions { display: flex; align-items: center; gap: 10px; }
    .age-pill, .badge {
      display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; border-radius: 999px;
      font-size: 12px; font-weight: 700; line-height: 1.4;
    }
    .age-pill { color: #87600e; background: #fff7e7; border: 1px solid #f7deb0; white-space: nowrap; }
    .btn {
      display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 18px;
      border: 1px solid transparent; border-radius: 999px; font-size: 15px; font-weight: 750;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn:active { transform: translateY(0); }
    .btn-primary { color: #fff; background: var(--red); box-shadow: 0 8px 18px rgba(232,63,63,.22); }
    .btn-primary:hover { background: var(--red-dark); box-shadow: 0 12px 22px rgba(232,63,63,.30); }
    .btn-secondary { color: var(--ink); background: #fff; border-color: var(--line); }
    .btn-secondary:hover { color: var(--red); border-color: rgba(232,63,63,.55); background: #fff7f5; }
    .menu-toggle {
      display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: #fff; border-radius: 10px; color: var(--ink);
    }
    .mobile-menu { display: none; border-top: 1px solid var(--line); background: #fff; }
    .mobile-menu.open { display: block; }
    .mobile-menu-inner { display: grid; padding: 13px 0 18px; }
    .mobile-menu .nav-link { border-radius: 8px; }
    .mobile-menu .btn { margin: 10px 12px 0; }

    .page-head { padding: 52px 0 34px; background: #fff; border-bottom: 1px solid var(--line); }
    .head-grid { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 34px; align-items: end; }
    .eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--red); font-size: 14px; font-weight: 800; }
    .eyebrow::before { content: ""; width: 22px; height: 4px; border-radius: 999px; background: var(--red); }
    h1, h2, h3, p { margin-top: 0; }
    h1 { margin-bottom: 15px; font-size: clamp(34px, 5vw, 56px); line-height: 1.16; font-weight: 850; }
    h2 { margin-bottom: 12px; font-size: clamp(27px, 3.5vw, 38px); line-height: 1.25; font-weight: 820; }
    h3 { margin-bottom: 7px; font-size: 20px; line-height: 1.35; font-weight: 800; }
    .lead { max-width: 760px; margin-bottom: 0; color: var(--muted); font-size: 17px; }
    .head-status { padding: 18px; background: var(--ink); color: #fff; border-radius: var(--radius); box-shadow: var(--shadow); }
    .head-status small { display: block; color: #c9c9c5; font-size: 13px; }
    .status-number { margin: 4px 0 8px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 29px; font-weight: 800; color: var(--amber); line-height: 1.2; }
    .status-line { display: flex; align-items: center; gap: 8px; color: #e8e8e4; font-size: 13px; }
    .live-dot { width: 8px; height: 8px; border-radius: 50%; background: #41d985; box-shadow: 0 0 0 5px rgba(65,217,133,.13); }

    main { padding: 38px 0 0; }
    .filter-bar {
      display: flex; flex-wrap: wrap; align-items: center; gap: 10px; padding: 15px; margin-bottom: 28px;
      background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 6px 18px rgba(20,20,20,.04);
    }
    .filter-label { margin-right: 4px; color: var(--muted); font-size: 14px; font-weight: 700; }
    .filter-pill {
      border: 1px solid var(--line); background: var(--paper); color: #4e4b47; border-radius: 999px; padding: 7px 13px;
      font-size: 14px; transition: .2s ease;
    }
    .filter-pill:hover, .filter-pill.active { border-color: rgba(232,63,63,.45); color: var(--red); background: #fff4f2; }
    .filter-spacer { flex: 1; }
    .updated { color: var(--muted); font-size: 13px; }

    .content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 30px; align-items: start; }
    .section-copy { margin-bottom: 20px; color: var(--muted); font-size: 16px; }
    .entry-list { display: grid; gap: 16px; }
    .entry-card {
      position: relative; display: grid; grid-template-columns: 74px minmax(0,1fr) auto; gap: 18px; align-items: center;
      padding: 21px 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
      box-shadow: var(--shadow); overflow: hidden; transition: .22s ease;
    }
    .entry-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--red); }
    .entry-card:nth-child(2)::before { background: var(--green); }
    .entry-card:nth-child(3)::before { background: var(--amber); }
    .entry-card:nth-child(4)::before { background: var(--teal); }
    .entry-card:hover { transform: translateY(-3px); border-color: rgba(232,63,63,.42); box-shadow: var(--shadow-hover); }
    .entry-no {
      width: 58px; height: 58px; display: grid; place-items: center; border-radius: 14px; background: #fff2f0;
      color: var(--red); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 21px; font-weight: 850;
    }
    .entry-card:nth-child(2) .entry-no { background: var(--soft-green); color: var(--green); }
    .entry-card:nth-child(3) .entry-no { background: #fff7e5; color: #b87500; }
    .entry-card:nth-child(4) .entry-no { background: #eafafa; color: #078f81; }
    .entry-title-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
    .entry-desc { margin: 4px 0 10px; color: var(--muted); font-size: 14px; line-height: 1.7; }
    .tag-row { display: flex; flex-wrap: wrap; gap: 7px; }
    .badge.available { background: var(--soft-green); color: #14733f; }
    .badge.notice { background: #fff6df; color: #9c6500; }
    .badge.info { background: #edf8f7; color: #087d71; }
    .badge.neutral { background: #f2f2f0; color: #5d5a56; }
    .entry-card .btn { min-width: 98px; }

    .side-panel { position: sticky; top: 96px; display: grid; gap: 16px; }
    .side-card { padding: 21px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
    .side-card.accent { background: var(--soft-red); border-color: #ffc9c1; }
    .mini-title { margin-bottom: 8px; font-size: 17px; font-weight: 820; }
    .mini-copy { margin-bottom: 14px; color: var(--muted); font-size: 14px; line-height: 1.75; }
    .form-field { width: 100%; min-height: 46px; padding: 0 13px; color: var(--ink); background: #fff; border: 1px solid rgba(23,23,23,.16); border-radius: 12px; transition: .2s ease; }
    .form-field:hover { border-color: rgba(232,63,63,.45); }
    .form-field:focus { border-color: var(--red); box-shadow: 0 0 0 4px rgba(232,63,63,.12); outline: none; }
    .form-note { margin: 10px 0 0; color: #756f68; font-size: 12px; line-height: 1.65; }
    .notice-list { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }
    .notice-list li { display: flex; gap: 9px; color: #4f4c48; font-size: 14px; line-height: 1.65; }
    .notice-list li::before { content: "✓"; color: var(--green); font-weight: 900; }

    .info-band { margin-top: 68px; padding: 64px 0; background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .steps-grid { display: grid; grid-template-columns: 1.05fr 1.4fr; gap: 54px; align-items: start; }
    .steps { display: grid; gap: 0; }
    .step { display: grid; grid-template-columns: 46px minmax(0,1fr); gap: 15px; padding: 0 0 25px; position: relative; }
    .step:not(:last-child)::after { content: ""; position: absolute; left: 22px; top: 46px; bottom: 0; border-left: 1px dashed #d6d4cf; }
    .step-num { position: relative; z-index: 1; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--red); font-weight: 850; }
    .step:nth-child(2) .step-num { background: var(--green); }
    .step:nth-child(3) .step-num { background: var(--amber); color: #573b00; }
    .step p { margin-bottom: 0; color: var(--muted); font-size: 15px; }
    .metric-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
    .metric { padding: 20px; background: var(--warm); border: 1px solid var(--line); border-radius: 15px; }
    .metric strong { display: block; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 27px; line-height: 1.2; color: var(--red); }
    .metric span { display: block; margin-top: 6px; color: var(--muted); font-size: 14px; }

    .faq-section { padding: 70px 0; }
    .faq-layout { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: 56px; }
    .faq-intro p { color: var(--muted); font-size: 16px; }
    .faq-list { display: grid; gap: 11px; }
    details { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 0 18px; transition: border-color .2s ease, box-shadow .2s ease; }
    details:hover { border-color: rgba(232,63,63,.38); }
    details[open] { border-color: rgba(232,63,63,.48); box-shadow: 0 8px 20px rgba(20,20,20,.05); }
    summary { padding: 16px 30px 16px 0; position: relative; cursor: pointer; font-size: 16px; font-weight: 760; list-style: none; }
    summary::-webkit-details-marker { display: none; }
    summary::after { content: "+"; position: absolute; right: 0; top: 13px; color: var(--red); font-size: 24px; font-weight: 400; line-height: 1; }
    details[open] summary::after { content: "−"; }
    .faq-answer { padding: 0 0 17px; color: var(--muted); font-size: 14px; line-height: 1.85; }

    .cta-band { padding: 0 0 72px; }
    .cta-box { position: relative; overflow: hidden; padding: 40px; color: #fff; background: var(--ink); border-radius: 22px; }
    .cta-box::before { content: ""; position: absolute; top: 0; left: 0; width: 7px; height: 100%; background: var(--coral); }
    .cta-box::after { content: ""; position: absolute; right: -30px; bottom: -60px; width: 230px; height: 230px; border: 28px solid rgba(246,183,60,.20); border-radius: 50%; }
    .cta-content { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
    .cta-content h2 { margin-bottom: 7px; font-size: clamp(27px, 4vw, 40px); }
    .cta-content p { margin: 0; color: #cfceca; max-width: 700px; }
    .cta-box .btn-secondary { color: #fff; background: transparent; border-color: rgba(255,255,255,.35); }
    .cta-box .btn-secondary:hover { color: #fff; border-color: #fff; background: rgba(255,255,255,.10); }

    .site-footer { color: #d8d7d3; background: #242321; border-top: 4px solid var(--red); }
    .footer-grid { display: grid; grid-template-columns: 1.35fr .8fr .8fr; gap: 42px; padding: 52px 0 34px; }
    .footer-title { margin-bottom: 12px; color: #fff; font-size: 16px; font-weight: 820; }
    .footer-links { display: grid; gap: 9px; }
    .footer-links a { color: #d1d0cd; font-size: 14px; transition: color .2s ease; }
    .footer-links a:hover { color: #fff; }
    .copyright { padding: 20px 0 25px; border-top: 1px solid rgba(255,255,255,.13); color: #aeadab; font-size: 13px; line-height: 1.7; }

    @media (max-width: 1024px) {
      .desktop-nav { gap: 0; }
      .nav-link { padding: 0 9px; }
      .head-grid, .content-grid { grid-template-columns: 1fr; }
      .head-status { max-width: 440px; }
      .side-panel { position: static; grid-template-columns: repeat(2, minmax(0,1fr)); }
      .steps-grid, .faq-layout { grid-template-columns: 1fr; gap: 32px; }
    }
    @media (max-width: 768px) {
      .site-container { width: min(100% - 28px, 1240px); }
      .nav-shell { min-height: 65px; gap: 12px; }
      .brand-text { max-width: 190px; overflow: hidden; text-overflow: ellipsis; }
      .desktop-nav, .age-pill, .header-actions > .btn { display: none; }
      .menu-toggle { display: inline-grid; place-items: center; }
      .page-head { padding: 38px 0 28px; }
      main { padding-top: 26px; }
      .filter-bar { align-items: flex-start; overflow-x: auto; flex-wrap: nowrap; scrollbar-width: thin; }
      .filter-pill, .filter-label { white-space: nowrap; flex: 0 0 auto; }
      .filter-spacer, .updated { display: none; }
      .entry-card { grid-template-columns: 55px minmax(0,1fr); padding: 18px; gap: 14px; }
      .entry-card .btn { grid-column: 2; justify-self: start; margin-top: 2px; }
      .entry-no { width: 50px; height: 50px; font-size: 18px; }
      .side-panel { grid-template-columns: 1fr; }
      .info-band { margin-top: 48px; padding: 48px 0; }
      .faq-section { padding: 52px 0; }
      .cta-box { padding: 30px 24px; }
      .cta-content { align-items: flex-start; flex-direction: column; }
      .footer-grid { grid-template-columns: 1fr; gap: 26px; padding: 42px 0 28px; }
    }
    @media (max-width: 520px) {
      h1 { font-size: 34px; }
      .lead { font-size: 16px; }
      .entry-title-row { align-items: flex-start; flex-direction: column; gap: 6px; }
      .metric-grid { grid-template-columns: 1fr; }
      .head-status { padding: 16px; }
      .btn { width: 100%; }
      .entry-card .btn { width: auto; }
      .cta-content .btn { width: 100%; }
      .cta-box::after { width: 160px; height: 160px; }
    }

/* roulang page: category2 */
:root {
      --red: #e83f3f;
      --red-dark: #c72f32;
      --coral: #ff5a3c;
      --green: #18a058;
      --yellow: #f6b73c;
      --ink: #171717;
      --muted: #6d6a65;
      --paper: #fffdf9;
      --soft: #f7f7f4;
      --line: rgba(23, 23, 23, .10);
      --shadow: 0 10px 30px rgba(20, 20, 20, .06);
      --shadow-hover: 0 18px 38px rgba(20, 20, 20, .11);
      --radius: 18px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      min-width: 320px;
      overflow-x: hidden;
      color: var(--ink);
      background: var(--paper);
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
      font-size: 16px;
      line-height: 1.75;
    }
    a { color: inherit; text-decoration: none; }
    button, input, select { font: inherit; }
    button { cursor: pointer; }
    button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, summary:focus-visible {
      outline: 3px solid rgba(232, 63, 63, .28);
      outline-offset: 3px;
    }
    .site-container { width: min(1240px, calc(100% - 40px)); margin: 0 auto; }
    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 253, 249, .94);
      border-bottom: 1px solid var(--line);
      backdrop-filter: blur(12px);
    }
    .nav-shell {
      min-height: 74px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }
    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-width: 0;
      font-weight: 800;
      color: var(--ink);
    }
    .brand-mark {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      flex: 0 0 34px;
      border-radius: 10px;
      color: #fff;
      background: var(--red);
      box-shadow: 4px 4px 0 var(--yellow);
      font-size: 18px;
      line-height: 1;
    }
    .brand-text {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      font-size: 16px;
    }
    .desktop-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-left: auto;
    }
    .nav-link {
      position: relative;
      display: inline-flex;
      align-items: center;
      min-height: 42px;
      padding: 0 12px;
      color: #4b4843;
      font-size: 14px;
      font-weight: 650;
      transition: color .2s ease, background .2s ease;
    }
    .nav-link:hover { color: var(--red); background: rgba(232, 63, 63, .06); }
    .nav-link.active { color: var(--red); font-weight: 800; }
    .nav-link.active::after {
      content: "";
      position: absolute;
      right: 12px;
      bottom: 3px;
      left: 12px;
      height: 2px;
      border-radius: 999px;
      background: var(--red);
    }
    .header-actions { display: flex; align-items: center; gap: 10px; }
    .age-pill, .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      width: fit-content;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 750;
      line-height: 1;
    }
    .age-pill { padding: 8px 10px; color: #64510e; background: #fff4cf; }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 44px;
      padding: 0 18px;
      border: 1px solid transparent;
      border-radius: 12px;
      font-size: 14px;
      font-weight: 800;
      line-height: 1;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-primary { color: #fff; background: var(--red); box-shadow: 0 8px 16px rgba(232, 63, 63, .2); }
    .btn-primary:hover { background: var(--red-dark); box-shadow: 0 12px 22px rgba(199, 47, 50, .26); }
    .btn-secondary { color: var(--ink); background: #fff; border-color: var(--line); }
    .btn-secondary:hover { color: var(--red); border-color: rgba(232, 63, 63, .52); background: #fff7f6; }
    .btn-green { color: #fff; background: var(--green); }
    .btn-green:hover { background: #117c43; box-shadow: 0 10px 22px rgba(24, 160, 88, .2); }
    .menu-toggle {
      display: none;
      width: 42px;
      height: 42px;
      border: 1px solid var(--line);
      border-radius: 10px;
      color: var(--ink);
      background: #fff;
    }
    .mobile-menu {
      display: none;
      border-top: 1px solid var(--line);
      background: var(--paper);
    }
    .mobile-menu.open { display: block; }
    .mobile-menu-inner { display: grid; gap: 5px; padding: 14px 0 20px; }
    .mobile-menu .nav-link { padding: 0 4px; }
    .mobile-menu .nav-link.active::after { right: auto; left: 4px; width: 30px; }
    .mobile-menu .btn { margin-top: 8px; }

    main { overflow: hidden; }
    .page-head {
      position: relative;
      padding: 58px 0 38px;
      background:
        linear-gradient(90deg, transparent 0, transparent 16%, rgba(246, 183, 60, .16) 16%, rgba(246, 183, 60, .16) 16.3%, transparent 16.3%, transparent 82%, rgba(24, 160, 88, .14) 82%, rgba(24, 160, 88, .14) 82.3%, transparent 82.3%),
        var(--paper);
    }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 16px;
      color: var(--red);
      font-size: 13px;
      font-weight: 850;
    }
    .eyebrow::before {
      content: "";
      width: 28px;
      height: 4px;
      border-radius: 3px;
      background: var(--red);
    }
    h1, h2, h3, p { margin-top: 0; }
    h1 {
      max-width: 860px;
      margin-bottom: 16px;
      font-size: clamp(34px, 5vw, 60px);
      font-weight: 850;
      line-height: 1.15;
    }
    h2 {
      margin-bottom: 12px;
      font-size: clamp(27px, 3vw, 37px);
      font-weight: 850;
      line-height: 1.25;
    }
    h3 { margin-bottom: 8px; font-size: 19px; font-weight: 800; line-height: 1.35; }
    .lead {
      max-width: 810px;
      margin-bottom: 22px;
      color: #514e49;
      font-size: 17px;
      line-height: 1.85;
    }
    .page-meta { display: flex; flex-wrap: wrap; gap: 8px; }
    .badge { padding: 8px 11px; }
    .badge-red { color: #a92c2c; background: #ffebea; }
    .badge-green { color: #0d7540; background: #e3f6e9; }
    .badge-yellow { color: #80600e; background: #fff4cf; }
    .status-strip-wrap { padding: 0 0 36px; }
    .status-strip {
      display: grid;
      grid-template-columns: 1.3fr repeat(3, 1fr);
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      box-shadow: var(--shadow);
    }
    .status-cell {
      min-height: 104px;
      padding: 20px 22px;
      border-right: 1px solid var(--line);
    }
    .status-cell:last-child { border-right: 0; }
    .status-name {
      display: flex;
      align-items: center;
      gap: 7px;
      margin-bottom: 6px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }
    .status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(24, 160, 88, .12); }
    .status-value { font-size: 20px; font-weight: 850; line-height: 1.3; }
    .countdown-mini { display: flex; gap: 6px; align-items: center; }
    .mini-digit { color: var(--red); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 22px; font-weight: 850; }

    .content-section { padding: 76px 0; }
    .content-section.soft { background: var(--soft); }
    .section-intro { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
    .section-copy { max-width: 680px; color: var(--muted); }
    .main-layout { display: grid; grid-template-columns: minmax(0, 1fr) 350px; gap: 30px; align-items: start; }
    .timeline { position: relative; padding-left: 34px; }
    .timeline::before { content: ""; position: absolute; top: 5px; bottom: 5px; left: 8px; width: 2px; background: #ddd9d1; }
    .day-label {
      position: sticky;
      top: 94px;
      z-index: 2;
      display: inline-flex;
      margin: 0 0 14px -34px;
      padding: 7px 11px;
      border-radius: 999px;
      color: #5f4b08;
      background: #fff0c4;
      font-size: 13px;
      font-weight: 850;
    }
    .update-card {
      position: relative;
      margin-bottom: 18px;
      padding: 22px 22px 20px;
      overflow: visible;
      border: 1px solid var(--line);
      border-radius: 16px;
      background: #fff;
      box-shadow: var(--shadow);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .update-card::before {
      content: "";
      position: absolute;
      top: 28px;
      left: -31px;
      width: 13px;
      height: 13px;
      border: 3px solid var(--paper);
      border-radius: 50%;
      background: var(--red);
      box-shadow: 0 0 0 2px var(--red);
    }
    .update-card.green::before { background: var(--green); box-shadow: 0 0 0 2px var(--green); }
    .update-card.yellow::before { background: var(--yellow); box-shadow: 0 0 0 2px var(--yellow); }
    .update-card:hover { transform: translateY(-2px); border-color: rgba(232, 63, 63, .42); box-shadow: var(--shadow-hover); }
    .update-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 12px; }
    .update-time { color: var(--muted); font-size: 13px; font-weight: 750; }
    .update-card p { margin-bottom: 15px; color: #595651; font-size: 15px; }
    .update-bottom { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
    .tags { display: flex; flex-wrap: wrap; gap: 7px; }
    .tag { padding: 5px 9px; border: 1px solid var(--line); border-radius: 999px; color: #5d5954; background: #fafaf8; font-size: 12px; font-weight: 700; line-height: 1.2; }
    .text-link { display: inline-flex; align-items: center; gap: 4px; color: var(--red); font-size: 14px; font-weight: 850; white-space: nowrap; }
    .text-link:hover { color: var(--red-dark); }

    .side-panel {
      position: sticky;
      top: 96px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      box-shadow: var(--shadow);
    }
    .side-panel + .side-panel { margin-top: 18px; }
    .side-panel-head { padding: 20px 20px 15px; border-bottom: 1px solid var(--line); }
    .side-panel-body { padding: 18px 20px 20px; }
    .quick-list { display: grid; gap: 2px; }
    .quick-list a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 11px 0;
      border-bottom: 1px solid rgba(23, 23, 23, .07);
      color: #413e39;
      font-size: 14px;
      font-weight: 700;
      transition: color .2s ease;
    }
    .quick-list a:last-child { border-bottom: 0; }
    .quick-list a:hover { color: var(--red); }
    .form-stack { display: grid; gap: 12px; }
    .form-stack label { color: #403d38; font-size: 14px; font-weight: 800; }
    .form-control {
      width: 100%;
      height: 47px;
      padding: 0 13px;
      border: 1px solid #d8d4cd;
      border-radius: 12px;
      color: var(--ink);
      background: #fff;
      transition: border-color .2s ease, box-shadow .2s ease;
    }
    .form-control:focus { border-color: var(--red); box-shadow: 0 0 0 4px rgba(232, 63, 63, .1); outline: 0; }
    .form-help { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
    .form-message { display: none; margin: 0; color: #08723d; font-size: 13px; font-weight: 750; }
    .form-message.show { display: block; }

    .entry-grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr; gap: 18px; }
    .entry-card {
      display: flex;
      min-height: 214px;
      flex-direction: column;
      justify-content: space-between;
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: 16px;
      background: #fff;
      box-shadow: var(--shadow);
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .entry-card.featured { background: #fff5f1; border-color: rgba(232, 63, 63, .24); }
    .entry-card:hover { transform: translateY(-3px); border-color: var(--red); box-shadow: var(--shadow-hover); }
    .entry-card p { margin-bottom: 18px; color: var(--muted); font-size: 14px; }
    .entry-card .entry-number { color: var(--red); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 13px; font-weight: 850; }
    .notice-band { border-left: 4px solid var(--yellow); padding: 19px 22px; background: #fff9e8; color: #5f542f; border-radius: 0 12px 12px 0; }
    .notice-band strong { color: #4b3a04; }

    .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    details {
      border: 1px solid var(--line);
      border-radius: 14px;
      background: #fff;
      box-shadow: 0 5px 15px rgba(20, 20, 20, .03);
      transition: border-color .2s ease, box-shadow .2s ease;
    }
    details[open] { border-color: rgba(232, 63, 63, .35); box-shadow: var(--shadow); }
    summary {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 19px 20px;
      list-style: none;
      color: #2f2d29;
      font-size: 16px;
      font-weight: 800;
      cursor: pointer;
    }
    summary::-webkit-details-marker { display: none; }
    summary::after { content: "+"; color: var(--red); font-size: 23px; font-weight: 400; line-height: 1; }
    details[open] summary::after { content: "−"; }
    .faq-answer { padding: 0 20px 20px; color: #615d57; font-size: 14px; line-height: 1.8; }
    .cta-band {
      position: relative;
      overflow: hidden;
      padding: 46px;
      border-radius: 20px;
      color: #fff;
      background: #22211f;
    }
    .cta-band::after {
      content: "";
      position: absolute;
      top: -50px;
      right: 8%;
      width: 190px;
      height: 190px;
      border: 24px solid rgba(246, 183, 60, .86);
      border-radius: 50%;
      transform: rotate(14deg);
    }
    .cta-band > * { position: relative; z-index: 1; }
    .cta-band h2 { max-width: 650px; margin-bottom: 10px; }
    .cta-band p { max-width: 680px; margin-bottom: 24px; color: rgba(255,255,255,.75); }
    .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
    .cta-band .btn-secondary { color: #fff; border-color: rgba(255,255,255,.35); background: transparent; }
    .cta-band .btn-secondary:hover { color: #fff; border-color: #fff; background: rgba(255,255,255,.1); }

    .site-footer { padding: 58px 0 24px; color: #d7d4ce; background: #252421; border-top: 4px solid var(--red); }
    .footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 42px; padding-bottom: 36px; }
    .footer-title { margin-bottom: 14px; color: #fff; font-size: 15px; font-weight: 850; }
    .footer-links { display: grid; gap: 9px; }
    .footer-links a { color: #c7c3bc; font-size: 14px; transition: color .2s ease; }
    .footer-links a:hover { color: #fff; }
    .copyright { padding-top: 20px; border-top: 1px solid rgba(255,255,255,.13); color: #aaa69f; font-size: 13px; }

    @media (max-width: 1024px) {
      .desktop-nav { gap: 0; }
      .nav-link { padding: 0 9px; }
      .main-layout { grid-template-columns: minmax(0, 1fr) 310px; gap: 22px; }
      .entry-grid { grid-template-columns: 1fr 1fr; }
      .entry-card.featured { grid-column: span 2; }
    }
    @media (max-width: 768px) {
      .site-container { width: min(100% - 32px, 1240px); }
      .nav-shell { min-height: 66px; gap: 10px; }
      .desktop-nav, .header-actions .age-pill { display: none; }
      .menu-toggle { display: grid; place-items: center; }
      .brand-text { max-width: 205px; font-size: 14px; }
      .page-head { padding: 44px 0 28px; }
      .lead { font-size: 16px; }
      .status-strip { grid-template-columns: 1fr 1fr; }
      .status-cell:nth-child(2) { border-right: 0; }
      .status-cell:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
      .status-cell { min-height: 92px; padding: 16px; }
      .main-layout { grid-template-columns: 1fr; }
      .side-column { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
      .side-panel, .side-panel + .side-panel { position: static; margin: 0; }
      .content-section { padding: 56px 0; }
      .section-intro { display: block; margin-bottom: 24px; }
      .section-copy { margin-top: 10px; }
      .faq-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
      .footer-grid > :first-child { grid-column: 1 / -1; }
    }
    @media (max-width: 520px) {
      .site-container { width: min(100% - 24px, 1240px); }
      .brand-mark { width: 31px; height: 31px; flex-basis: 31px; }
      .brand-text { max-width: 170px; }
      h1 { font-size: 34px; }
      .status-strip { border-radius: 14px; }
      .status-value { font-size: 17px; }
      .mini-digit { font-size: 19px; }
      .timeline { padding-left: 28px; }
      .timeline::before { left: 6px; }
      .day-label { margin-left: -28px; }
      .update-card { padding: 19px 16px; }
      .update-card::before { left: -26px; }
      .update-top, .update-bottom { align-items: flex-start; flex-direction: column; }
      .side-column, .entry-grid { grid-template-columns: 1fr; }
      .entry-card.featured { grid-column: auto; }
      .entry-card { min-height: 185px; }
      .cta-band { padding: 30px 23px; }
      .cta-band::after { top: auto; right: -60px; bottom: -90px; }
      .footer-grid { grid-template-columns: 1fr; gap: 24px; }
      .footer-grid > :first-child { grid-column: auto; }
    }
