/* roulang page: index */
:root {
      --ink: #161616;
      --ink-soft: #35322d;
      --muted: #756f65;
      --bg: #F7F3EC;
      --bg-2: #EFE8DD;
      --paper: #fffaf1;
      --paper-2: #fdf6eb;
      --line: rgba(22, 22, 22, .08);
      --line-strong: rgba(22, 22, 22, .14);
      --orange: #C9772A;
      --orange-dark: #A95E19;
      --orange-soft: rgba(201, 119, 42, .12);
      --sage: #8A9A74;
      --sage-soft: rgba(138, 154, 116, .16);
      --white: #fffdf7;
      --radius-lg: 28px;
      --radius-md: 20px;
      --radius-sm: 14px;
      --shadow: 0 18px 50px rgba(22, 22, 22, .08);
      --shadow-hover: 0 22px 58px rgba(22, 22, 22, .12);
      --container: 1200px;
      --nav-h: 78px;
      --ease: all .22s ease;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: calc(var(--nav-h) + 18px);
    }

    body {
      margin: 0;
      font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      color: var(--ink);
      background:
        radial-gradient(circle at 12% 8%, rgba(138, 154, 116, .14), transparent 28%),
        linear-gradient(180deg, var(--bg) 0%, #f6f0e7 52%, var(--bg) 100%);
      font-size: 16px;
      line-height: 1.75;
      letter-spacing: 0;
      overflow-x: hidden;
      word-break: break-word;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: var(--ease);
    }

    a:hover {
      color: var(--orange);
    }

    img {
      display: block;
      max-width: 100%;
      height: auto;
      object-fit: cover;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    button:focus,
    a:focus,
    input:focus,
    select:focus,
    textarea:focus {
      outline: 0;
      box-shadow: 0 0 0 .25rem rgba(201, 119, 42, .28) !important;
    }

    .site-container {
      width: min(100% - 40px, var(--container));
      margin: 0 auto;
    }

    .section {
      padding: 92px 0;
      position: relative;
    }

    .section-tight {
      padding: 66px 0;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 13px;
      border-radius: 999px;
      background: var(--sage-soft);
      color: #4f5e3f;
      font-size: 13px;
      font-weight: 650;
      margin-bottom: 16px;
    }

    .section-kicker::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--sage);
      box-shadow: 0 0 0 5px rgba(138, 154, 116, .12);
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      font-size: clamp(32px, 5vw, 54px);
      line-height: 1.16;
      font-weight: 750;
      letter-spacing: 0;
      margin-bottom: 18px;
    }

    h2 {
      font-size: clamp(25px, 3.3vw, 36px);
      line-height: 1.22;
      font-weight: 700;
      letter-spacing: 0;
      margin-bottom: 16px;
    }

    h3 {
      font-size: 20px;
      line-height: 1.35;
      font-weight: 680;
      margin-bottom: 10px;
    }

    .lead-text {
      color: var(--ink-soft);
      font-size: 17px;
      line-height: 1.85;
      max-width: 780px;
      margin-bottom: 0;
    }

    .muted {
      color: var(--muted);
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(247, 243, 236, .88);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--line);
    }

    .brand-nav {
      min-height: var(--nav-h);
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 22px;
    }

    .nav-side {
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .nav-left {
      justify-content: flex-start;
    }

    .nav-right {
      justify-content: flex-end;
    }

    .nav-link-custom {
      position: relative;
      display: inline-flex;
      align-items: center;
      min-height: 38px;
      padding: 8px 4px;
      color: var(--ink-soft);
      font-size: 15px;
      font-weight: 620;
      white-space: nowrap;
    }

    .nav-link-custom::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: 2px;
      width: 0;
      height: 3px;
      border-radius: 999px;
      background: var(--orange);
      transform: translateX(-50%);
      transition: var(--ease);
    }

    .nav-link-custom:hover::after,
    .nav-link-custom.active::after {
      width: 24px;
    }

    .nav-link-custom.active {
      color: var(--orange-dark);
    }

    .site-logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 9px 14px;
      border: 1px solid rgba(201, 119, 42, .25);
      border-radius: 999px;
      background: rgba(255, 250, 241, .74);
      box-shadow: 0 10px 28px rgba(22, 22, 22, .06);
      font-weight: 780;
      color: var(--ink);
      white-space: nowrap;
      max-width: 100%;
    }

    .logo-mark {
      position: relative;
      width: 26px;
      height: 26px;
      border-radius: 9px;
      background: var(--ink);
      flex: 0 0 auto;
    }

    .logo-mark::before,
    .logo-mark::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      background: var(--orange);
    }

    .logo-mark::before {
      width: 8px;
      height: 8px;
      left: 5px;
      top: 5px;
    }

    .logo-mark::after {
      width: 6px;
      height: 6px;
      right: 5px;
      bottom: 5px;
      background: var(--sage);
    }

    .btn-brand,
    .btn-ghost,
    .btn-soft {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 46px;
      padding: 12px 24px;
      border-radius: 999px;
      font-weight: 700;
      border: 1px solid transparent;
      transition: var(--ease);
      cursor: pointer;
      text-align: center;
    }

    .btn-brand {
      background: var(--orange);
      color: var(--white);
      box-shadow: 0 12px 28px rgba(201, 119, 42, .24);
    }

    .btn-brand:hover {
      background: var(--orange-dark);
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 16px 34px rgba(201, 119, 42, .30);
    }

    .btn-brand:active {
      transform: translateY(0);
    }

    .btn-ghost {
      color: var(--ink);
      background: rgba(255, 250, 241, .72);
      border-color: var(--line-strong);
    }

    .btn-ghost:hover {
      color: var(--ink);
      background: rgba(201, 119, 42, .10);
      border-color: rgba(201, 119, 42, .34);
      transform: translateY(-2px);
    }

    .btn-soft {
      background: var(--sage-soft);
      color: #405132;
      border-color: rgba(138, 154, 116, .24);
    }

    .btn-soft:hover {
      background: rgba(138, 154, 116, .24);
      color: #334328;
      transform: translateY(-2px);
    }

    .mobile-toggler {
      display: none;
      border: 1px solid var(--line);
      background: var(--paper);
      width: 44px;
      height: 44px;
      border-radius: 999px;
      align-items: center;
      justify-content: center;
      color: var(--ink);
    }

    .mobile-toggler span {
      display: block;
      width: 18px;
      height: 2px;
      background: currentColor;
      border-radius: 999px;
      position: relative;
    }

    .mobile-toggler span::before,
    .mobile-toggler span::after {
      content: "";
      position: absolute;
      left: 0;
      width: 18px;
      height: 2px;
      background: currentColor;
      border-radius: 999px;
    }

    .mobile-toggler span::before {
      top: -6px;
    }

    .mobile-toggler span::after {
      top: 6px;
    }

    .mobile-menu {
      display: none;
      padding: 0 0 18px;
    }

    .mobile-menu .nav-link-custom,
    .mobile-menu .btn-brand {
      width: 100%;
      justify-content: center;
      margin-top: 12px;
    }

    .hero {
      padding: 34px 0 46px;
    }

    .hero-cover {
      min-height: 590px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      position: relative;
      box-shadow: var(--shadow);
      background:
        linear-gradient(135deg, rgba(22, 22, 22, .72), rgba(22, 22, 22, .24) 48%, rgba(201, 119, 42, .28)),
        radial-gradient(circle at 78% 18%, rgba(201, 119, 42, .42), transparent 26%),
        radial-gradient(circle at 86% 68%, rgba(138, 154, 116, .38), transparent 25%),
        linear-gradient(135deg, #28231e, #6f5b44 46%, #ece2d4);
    }

    .hero-cover::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.10) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px);
      background-size: 54px 54px;
      opacity: .22;
      mask-image: linear-gradient(90deg, #000, transparent 88%);
    }

    .hero-cover::after {
      content: "";
      position: absolute;
      right: 42px;
      top: 72px;
      width: min(42vw, 500px);
      height: 360px;
      border-radius: 34px;
      background:
        linear-gradient(135deg, rgba(255, 250, 241, .14), rgba(255, 250, 241, .04)),
        repeating-linear-gradient(45deg, rgba(255,255,255,.24) 0 2px, transparent 2px 18px);
      border: 1px solid rgba(255, 250, 241, .18);
      transform: rotate(-2deg);
    }

    .hero-nav-strip {
      position: absolute;
      top: 24px;
      left: 24px;
      right: 24px;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 12px 14px;
      border-radius: 999px;
      background: rgba(255, 250, 241, .14);
      border: 1px solid rgba(255, 250, 241, .22);
      backdrop-filter: blur(10px);
      color: var(--white);
    }

    .hero-strip-links {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .hero-strip-links a,
    .hero-pill {
      display: inline-flex;
      align-items: center;
      min-height: 32px;
      padding: 6px 12px;
      border-radius: 999px;
      background: rgba(255, 250, 241, .12);
      color: var(--white);
      font-size: 13px;
      font-weight: 650;
    }

    .hero-content {
      position: absolute;
      z-index: 3;
      left: clamp(24px, 5vw, 58px);
      right: clamp(24px, 5vw, 58px);
      bottom: 48px;
      color: var(--white);
      max-width: 780px;
    }

    .hero-content p {
      max-width: 720px;
      color: rgba(255, 253, 247, .88);
      font-size: 17px;
      line-height: 1.9;
      margin-bottom: 24px;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      align-items: center;
      margin-bottom: 28px;
    }

    .hero-actions .btn-ghost {
      background: rgba(255, 250, 241, .16);
      color: var(--white);
      border-color: rgba(255, 250, 241, .28);
    }

    .hero-actions .btn-ghost:hover {
      background: rgba(255, 250, 241, .25);
      color: var(--white);
    }

    .hero-kpis {
      display: grid;
      grid-template-columns: repeat(3, minmax(130px, 1fr));
      gap: 12px;
      max-width: 620px;
    }

    .hero-kpi {
      border-radius: 18px;
      padding: 14px 16px;
      background: rgba(255, 250, 241, .13);
      border: 1px solid rgba(255, 250, 241, .20);
      backdrop-filter: blur(8px);
    }

    .hero-kpi strong {
      display: block;
      font-size: 24px;
      line-height: 1.1;
      margin-bottom: 5px;
    }

    .hero-kpi span {
      font-size: 13px;
      color: rgba(255, 253, 247, .78);
    }

    .countdown-section {
      margin-top: -22px;
      z-index: 5;
      position: relative;
      padding-top: 0;
    }

    .countdown-panel {
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      padding: 26px;
    }

    .countdown-head {
      display: grid;
      grid-template-columns: 1.1fr auto;
      gap: 20px;
      align-items: center;
      margin-bottom: 22px;
    }

    .status-badge,
    .tag {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 30px;
      padding: 6px 12px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 680;
      border: 1px solid transparent;
      white-space: nowrap;
    }

    .status-badge {
      color: #70410f;
      background: var(--orange-soft);
      border-color: rgba(201, 119, 42, .22);
    }

    .tag.sage {
      color: #4f5e3f;
      background: var(--sage-soft);
      border-color: rgba(138, 154, 116, .22);
    }

    .tag.orange {
      color: #7c450e;
      background: var(--orange-soft);
      border-color: rgba(201, 119, 42, .22);
    }

    .countdown-grid {
      position: relative;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    .countdown-grid::before {
      content: "";
      position: absolute;
      left: 8%;
      right: 8%;
      top: 19px;
      height: 2px;
      background: linear-gradient(90deg, var(--sage), var(--orange));
      opacity: .28;
    }

    .time-block {
      position: relative;
      background: #fffdf8;
      border: 1px solid var(--line);
      border-radius: 22px;
      padding: 24px 18px 18px;
      text-align: center;
      transition: var(--ease);
    }

    .time-block::before {
      content: "";
      position: absolute;
      top: 13px;
      left: 50%;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      transform: translateX(-50%);
      background: var(--orange);
      box-shadow: 0 0 0 6px rgba(201, 119, 42, .12);
    }

    .time-block:hover {
      transform: translateY(-2px);
      border-color: rgba(201, 119, 42, .32);
      box-shadow: var(--shadow-hover);
    }

    .time-num {
      display: block;
      margin-top: 14px;
      font-size: clamp(30px, 4vw, 46px);
      line-height: 1;
      font-weight: 780;
      transition: transform .2s ease;
    }

    .time-block:hover .time-num {
      transform: scale(1.04);
    }

    .time-label {
      display: block;
      color: var(--muted);
      font-size: 13px;
      margin-top: 8px;
    }

    .watch-layout {
      display: grid;
      grid-template-columns: 320px 1fr;
      gap: 28px;
      align-items: start;
    }

    .filter-rail {
      position: sticky;
      top: calc(var(--nav-h) + 20px);
      border-radius: var(--radius-md);
      border: 1px solid var(--line);
      background: rgba(255, 250, 241, .78);
      padding: 22px;
      box-shadow: 0 14px 38px rgba(22, 22, 22, .05);
    }

    .filter-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin: 18px 0 0;
      padding: 0;
      list-style: none;
    }

    .filter-list a {
      display: flex;
      justify-content: space-between;
      gap: 14px;
      padding: 12px 14px;
      border-radius: 16px;
      background: rgba(247, 243, 236, .82);
      border: 1px solid var(--line);
      color: var(--ink-soft);
      font-weight: 650;
    }

    .filter-list a:hover,
    .filter-list a.active {
      border-color: rgba(201, 119, 42, .34);
      background: var(--orange-soft);
      color: var(--orange-dark);
      transform: translateX(2px);
    }

    .watch-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 22px;
    }

    .watch-card {
      overflow: hidden;
      border-radius: 22px;
      background: var(--paper);
      border: 1px solid var(--line);
      box-shadow: 0 12px 34px rgba(22, 22, 22, .055);
      transition: var(--ease);
    }

    .watch-card:hover {
      transform: translateY(-4px);
      border-color: rgba(201, 119, 42, .42);
      box-shadow: var(--shadow-hover);
    }

    .abstract-cover {
      position: relative;
      min-height: 205px;
      overflow: hidden;
      background:
        radial-gradient(circle at 18% 20%, rgba(201, 119, 42, .34), transparent 24%),
        radial-gradient(circle at 78% 30%, rgba(138, 154, 116, .30), transparent 26%),
        linear-gradient(135deg, #f4eadc, #d7c6ad);
    }

    .abstract-cover::before {
      content: "";
      position: absolute;
      inset: 20px;
      border: 1px solid rgba(22, 22, 22, .12);
      border-radius: 18px;
      background-image:
        linear-gradient(90deg, transparent 0 28px, rgba(22,22,22,.08) 28px 30px, transparent 30px),
        linear-gradient(180deg, transparent 0 28px, rgba(22,22,22,.07) 28px 30px, transparent 30px);
      background-size: 62px 62px;
      transition: transform .25s ease, opacity .25s ease;
      opacity: .72;
    }

    .watch-card:hover .abstract-cover::before {
      transform: scale(1.03);
      opacity: .9;
    }

    .watch-body {
      padding: 22px;
    }

    .watch-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 12px;
    }

    .watch-body p {
      color: var(--muted);
      font-size: 15px;
      margin-bottom: 18px;
    }

    .arrow-link {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-weight: 730;
      color: var(--orange-dark);
    }

    .arrow-link::after {
      content: "→";
      transition: transform .2s ease;
    }

    .arrow-link:hover::after {
      transform: translateX(4px);
    }

    .subscribe-band {
      background:
        linear-gradient(135deg, rgba(255,250,241,.92), rgba(239,232,221,.76)),
        radial-gradient(circle at 80% 20%, rgba(201,119,42,.16), transparent 26%);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .subscribe-wrap {
      display: grid;
      grid-template-columns: minmax(0, .92fr) minmax(360px, .72fr);
      gap: 48px;
      align-items: center;
    }

    .subscribe-form {
      background: rgba(255, 250, 241, .86);
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      padding: 24px;
      box-shadow: var(--shadow);
    }

    .form-label {
      color: var(--ink-soft);
      font-weight: 680;
      margin-bottom: 8px;
    }

    .form-control,
    .form-select {
      min-height: 52px;
      border-radius: var(--radius-sm);
      border: 1px solid rgba(22,22,22,.13);
      background-color: #fffdf8;
      color: var(--ink);
      box-shadow: none;
    }

    .form-control:focus,
    .form-select:focus {
      border-color: var(--orange);
      background-color: #fffdf8;
    }

    .form-check-input {
      border-color: rgba(22, 22, 22, .28);
      box-shadow: none !important;
    }

    .form-check-input:checked {
      background-color: var(--orange);
      border-color: var(--orange);
    }

    .form-note {
      min-height: 22px;
      color: var(--muted);
      font-size: 13px;
      margin-top: 10px;
    }

    .entry-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.35fr) minmax(330px, .85fr);
      gap: 24px;
    }

    .entry-main,
    .entry-mini {
      border-radius: 22px;
      border: 1px solid var(--line);
      background: var(--paper);
      box-shadow: 0 12px 36px rgba(22, 22, 22, .055);
      transition: var(--ease);
    }

    .entry-main {
      min-height: 430px;
      padding: 30px;
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(135deg, rgba(255,250,241,.96), rgba(239,232,221,.76)),
        radial-gradient(circle at 86% 20%, rgba(201,119,42,.20), transparent 28%);
    }

    .entry-main::after {
      content: "";
      position: absolute;
      right: -30px;
      bottom: -60px;
      width: 270px;
      height: 270px;
      border-radius: 50%;
      border: 34px solid rgba(138,154,116,.16);
    }

    .entry-main:hover,
    .entry-mini:hover {
      transform: translateY(-3px);
      border-color: rgba(201, 119, 42, .36);
      box-shadow: var(--shadow-hover);
    }

    .entry-number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--ink);
      color: var(--white);
      font-weight: 750;
      margin-bottom: 18px;
    }

    .entry-main p {
      color: var(--muted);
      max-width: 590px;
      margin-bottom: 22px;
    }

    .entry-stack {
      display: grid;
      gap: 16px;
    }

    .entry-mini {
      padding: 20px;
    }

    .entry-mini-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 8px;
    }

    .entry-mini p {
      color: var(--muted);
      font-size: 14px;
      margin: 0;
    }

    .case-strip {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 34px;
      align-items: center;
      border-radius: var(--radius-lg);
      padding: 34px;
      background: var(--ink);
      color: var(--white);
      overflow: hidden;
      position: relative;
    }

    .case-strip::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, transparent, rgba(201,119,42,.18)),
        radial-gradient(circle at 12% 18%, rgba(138,154,116,.22), transparent 30%);
      pointer-events: none;
    }

    .case-strip > * {
      position: relative;
      z-index: 1;
    }

    .case-strip p {
      color: rgba(255,253,247,.76);
      margin-bottom: 0;
    }

    .result-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .metric-card {
      padding: 22px;
      border-radius: 22px;
      background: var(--paper);
      border: 1px solid var(--line);
      box-shadow: 0 10px 30px rgba(22,22,22,.05);
      transition: var(--ease);
    }

    .metric-card:hover {
      transform: translateY(-3px);
      border-color: rgba(138,154,116,.36);
      box-shadow: var(--shadow-hover);
    }

    .metric-card strong {
      display: block;
      font-size: 34px;
      line-height: 1.1;
      margin-bottom: 8px;
    }

    .metric-card span {
      color: var(--muted);
      font-size: 14px;
    }

    .compare-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
    }

    .compare-box {
      border-radius: 24px;
      border: 1px solid var(--line);
      background: rgba(255,250,241,.76);
      padding: 26px;
    }

    .compare-box.highlight {
      border: 2px solid rgba(201,119,42,.42);
      background: linear-gradient(135deg, rgba(255,250,241,.98), rgba(201,119,42,.10));
    }

    .compare-list {
      display: grid;
      gap: 12px;
      padding: 0;
      margin: 18px 0 0;
      list-style: none;
    }

    .compare-list li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      color: var(--ink-soft);
    }

    .compare-list li::before {
      content: "";
      width: 9px;
      height: 9px;
      margin-top: 10px;
      border-radius: 50%;
      background: var(--sage);
      flex: 0 0 auto;
    }

    .progress-panel {
      border-radius: var(--radius-lg);
      padding: 30px;
      background:
        linear-gradient(135deg, rgba(138,154,116,.16), rgba(255,250,241,.86)),
        linear-gradient(90deg, transparent 0 49%, rgba(22,22,22,.05) 49% 51%, transparent 51%);
      border: 1px solid rgba(138,154,116,.28);
    }

    .task-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      margin-top: 24px;
    }

    .task-step {
      border-radius: 20px;
      background: rgba(255,250,241,.82);
      border: 1px solid var(--line);
      padding: 18px;
    }

    .progress {
      height: 10px;
      border-radius: 999px;
      background: rgba(22,22,22,.08);
      overflow: hidden;
      margin-top: 12px;
    }

    .progress-bar {
      background: linear-gradient(90deg, var(--sage), var(--orange));
    }

    .news-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 360px;
      gap: 30px;
      align-items: start;
    }

    .news-list {
      display: grid;
      gap: 12px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .news-item a {
      display: grid;
      grid-template-columns: 118px 1fr auto;
      gap: 18px;
      align-items: center;
      min-height: 76px;
      padding: 16px 18px;
      border: 1px solid var(--line);
      border-radius: 18px;
      background: rgba(255,250,241,.82);
      color: var(--ink);
    }

    .news-item a:hover {
      background: #fffdf8;
      border-color: rgba(201,119,42,.34);
      box-shadow: 0 10px 30px rgba(22,22,22,.06);
      transform: translateX(2px);
    }

    .news-date {
      color: var(--muted);
      font-size: 14px;
      font-weight: 650;
    }

    .news-title {
      font-weight: 700;
      line-height: 1.45;
    }

    .news-arrow {
      color: var(--orange-dark);
      font-weight: 800;
    }

    .recommend-box {
      border-radius: 24px;
      border: 1px solid var(--line);
      background: var(--paper);
      padding: 24px;
      box-shadow: var(--shadow);
    }

    .guide-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
      margin-top: 26px;
    }

    .guide-item {
      display: flex;
      gap: 14px;
      padding: 20px;
      border-radius: 20px;
      background: rgba(255,250,241,.78);
      border: 1px solid var(--line);
    }

    .guide-icon {
      width: 38px;
      height: 38px;
      border-radius: 14px;
      flex: 0 0 auto;
      background: var(--orange-soft);
      color: var(--orange-dark);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
    }

    .accordion {
      --bs-accordion-bg: transparent;
      --bs-accordion-border-color: transparent;
      --bs-accordion-btn-focus-box-shadow: 0 0 0 .25rem rgba(201,119,42,.28);
    }

    .faq-item {
      border: 1px solid var(--line);
      border-radius: 18px !important;
      overflow: hidden;
      background: rgba(255,250,241,.78);
      margin-bottom: 14px;
      transition: var(--ease);
    }

    .faq-item:hover {
      border-color: rgba(201,119,42,.28);
    }

    .accordion-button {
      background: rgba(255,250,241,.78);
      color: var(--ink);
      font-weight: 720;
      padding: 20px 22px;
      box-shadow: none !important;
    }

    .accordion-button:not(.collapsed) {
      background: var(--paper);
      color: var(--orange-dark);
      border-bottom: 1px solid rgba(201,119,42,.18);
    }

    .accordion-button::after {
      filter: sepia(1) saturate(1.3) hue-rotate(345deg);
    }

    .accordion-body {
      color: var(--muted);
      padding: 18px 22px 22px;
      line-height: 1.8;
    }

    .cta-panel {
      border-radius: var(--radius-lg);
      padding: 34px;
      background:
        linear-gradient(135deg, rgba(22,22,22,.96), rgba(53,50,45,.94)),
        radial-gradient(circle at 90% 18%, rgba(201,119,42,.25), transparent 28%);
      color: var(--white);
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 26px;
      align-items: center;
      overflow: hidden;
    }

    .cta-panel p {
      color: rgba(255,253,247,.76);
      margin-bottom: 0;
      max-width: 720px;
    }

    .site-footer {
      background: #161616;
      color: rgba(255,253,247,.78);
      padding: 64px 0 30px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr .8fr .8fr;
      gap: 34px;
      padding-bottom: 36px;
      border-bottom: 1px solid rgba(255,255,255,.10);
    }

    .footer-logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--white);
      font-weight: 780;
      margin-bottom: 14px;
    }

    .footer-title {
      color: var(--white);
      font-size: 16px;
      font-weight: 720;
      margin-bottom: 14px;
    }

    .footer-links {
      display: grid;
      gap: 10px;
      padding: 0;
      margin: 0;
      list-style: none;
    }

    .footer-links a {
      color: rgba(255,253,247,.70);
      font-size: 14px;
    }

    .footer-links a:hover {
      color: var(--orange);
    }

    .copyright {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      padding-top: 24px;
      color: rgba(255,253,247,.56);
      font-size: 13px;
      flex-wrap: wrap;
    }

    @media (max-width: 1199px) {
      .site-container {
        width: min(100% - 32px, 1040px);
      }

      .brand-nav {
        gap: 14px;
      }

      .nav-side {
        gap: 12px;
      }

      .nav-link-custom {
        font-size: 14px;
      }

      .hero-cover {
        min-height: 560px;
      }
    }

    @media (max-width: 991px) {
      :root {
        --nav-h: 68px;
      }

      .section {
        padding: 68px 0;
      }

      .brand-nav {
        display: flex;
        justify-content: space-between;
        min-height: var(--nav-h);
      }

      .desktop-nav {
        display: none;
      }

      .mobile-toggler {
        display: inline-flex;
      }

      .mobile-menu.show {
        display: block;
      }

      .site-logo {
        max-width: calc(100vw - 98px);
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .hero {
        padding-top: 20px;
      }

      .hero-cover {
        min-height: 650px;
      }

      .hero-cover::after {
        width: 78vw;
        height: 300px;
        right: 22px;
        top: 118px;
        opacity: .75;
      }

      .hero-nav-strip {
        align-items: flex-start;
        border-radius: 24px;
        flex-direction: column;
      }

      .hero-content {
        bottom: 34px;
      }

      .hero-kpis,
      .countdown-grid,
      .result-row,
      .task-steps {
        grid-template-columns: repeat(2, 1fr);
      }

      .countdown-head,
      .watch-layout,
      .subscribe-wrap,
      .entry-layout,
      .case-strip,
      .compare-grid,
      .news-layout,
      .cta-panel,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .filter-rail {
        position: static;
      }

      .filter-list {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 4px;
      }

      .filter-list a {
        min-width: max-content;
      }

      .watch-grid,
      .guide-grid {
        grid-template-columns: 1fr;
      }

      .news-item a {
        grid-template-columns: 92px 1fr auto;
      }
    }

    @media (max-width: 575px) {
      .site-container {
        width: min(100% - 24px, var(--container));
      }

      .section {
        padding: 54px 0;
      }

      .hero-cover {
        min-height: 690px;
        border-radius: 22px;
      }

      .hero-nav-strip {
        left: 14px;
        right: 14px;
        top: 14px;
      }

      .hero-strip-links {
        width: 100%;
      }

      .hero-strip-links a {
        flex: 1 1 auto;
        justify-content: center;
      }

      .hero-content {
        left: 18px;
        right: 18px;
        bottom: 24px;
      }

      .hero-content p {
        font-size: 15px;
      }

      .hero-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .hero-actions .btn-brand,
      .hero-actions .btn-ghost,
      .btn-brand,
      .btn-ghost,
      .btn-soft {
        width: 100%;
      }

      .hero-kpis {
        grid-template-columns: 1fr;
      }

      .countdown-panel,
      .subscribe-form,
      .entry-main,
      .case-strip,
      .progress-panel,
      .cta-panel {
        padding: 22px;
        border-radius: 22px;
      }

      .countdown-grid {
        gap: 10px;
      }

      .time-block {
        padding: 22px 10px 14px;
      }

      .time-num {
        font-size: 30px;
      }

      .watch-body,
      .metric-card,
      .compare-box,
      .recommend-box {
        padding: 20px;
      }

      .result-row,
      .task-steps {
        grid-template-columns: 1fr;
      }

      .news-item a {
        grid-template-columns: 1fr;
        gap: 6px;
      }

      .news-arrow {
        display: none;
      }

      .copyright {
        flex-direction: column;
      }
    }

/* roulang page: category1 */
:root {
      --ink: #161616;
      --ink-soft: #3f3a34;
      --muted: #716b62;
      --paper: #F7F3EC;
      --paper-deep: #EFE7DA;
      --paper-card: #FFFDF8;
      --caramel: #C9772A;
      --caramel-dark: #A95F1D;
      --sage: #8A9A74;
      --sage-light: #E7EDDD;
      --line: rgba(22, 22, 22, .09);
      --line-strong: rgba(22, 22, 22, .16);
      --white-warm: #FFF8ED;
      --shadow: 0 18px 50px rgba(22, 22, 22, .08);
      --shadow-hover: 0 22px 60px rgba(22, 22, 22, .12);
      --radius-lg: 28px;
      --radius-card: 20px;
      --radius-input: 14px;
      --container: 1200px;
      --header-h: 82px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      color: var(--ink);
      background:
        radial-gradient(circle at 12% 8%, rgba(201, 119, 42, .10), transparent 28%),
        linear-gradient(180deg, var(--paper) 0%, #FBF8F1 46%, var(--paper) 100%);
      font-size: 16px;
      line-height: 1.75;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
    }

    img {
      max-width: 100%;
      display: block;
      object-fit: cover;
    }

    button,
    input,
    select {
      font: inherit;
    }

    button:focus-visible,
    a:focus-visible,
    input:focus-visible,
    select:focus-visible {
      outline: 4px solid rgba(201, 119, 42, .28);
      outline-offset: 3px;
    }

    section,
    main [id] {
      scroll-margin-top: 104px;
    }

    .site-container {
      width: min(100% - 48px, var(--container));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(247, 243, 236, .88);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(22, 22, 22, .07);
    }

    .brand-nav {
      min-height: var(--header-h);
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 20px;
    }

    .nav-side {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .nav-left {
      justify-content: flex-start;
    }

    .nav-right {
      justify-content: flex-end;
    }

    .site-logo,
    .footer-logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 800;
      letter-spacing: 0;
      color: var(--ink);
      white-space: nowrap;
    }

    .site-logo {
      font-size: 19px;
      padding: 10px 14px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255, 253, 248, .72);
      box-shadow: 0 10px 30px rgba(22, 22, 22, .05);
    }

    .logo-mark {
      width: 26px;
      height: 26px;
      border-radius: 9px;
      display: inline-block;
      background:
        radial-gradient(circle at 72% 28%, var(--sage) 0 4px, transparent 5px),
        linear-gradient(135deg, var(--ink) 0 48%, var(--caramel) 49% 100%);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
      flex: 0 0 auto;
    }

    .nav-link-custom {
      position: relative;
      display: inline-flex;
      align-items: center;
      min-height: 42px;
      padding: 8px 14px;
      border-radius: 999px;
      color: var(--ink-soft);
      font-size: 14px;
      font-weight: 650;
      border: 1px solid transparent;
    }

    .nav-link-custom:hover,
    .nav-link-custom.active {
      color: var(--caramel-dark);
      background: rgba(201, 119, 42, .10);
      border-color: rgba(201, 119, 42, .20);
    }

    .btn-brand,
    .btn-ghost,
    .btn-soft {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border-radius: 999px;
      padding: 12px 22px;
      font-size: 15px;
      font-weight: 750;
      line-height: 1.2;
      border: 1px solid transparent;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
      cursor: pointer;
      white-space: nowrap;
    }

    .btn-brand {
      background: var(--caramel);
      color: var(--white-warm);
      box-shadow: 0 12px 26px rgba(201, 119, 42, .22);
    }

    .btn-brand:hover {
      color: var(--white-warm);
      background: var(--caramel-dark);
      transform: translateY(-2px);
      box-shadow: 0 16px 34px rgba(201, 119, 42, .28);
    }

    .btn-brand:active,
    .btn-ghost:active,
    .btn-soft:active {
      transform: translateY(0);
    }

    .btn-ghost {
      color: var(--ink);
      background: rgba(255, 253, 248, .54);
      border-color: var(--line-strong);
    }

    .btn-ghost:hover {
      color: var(--ink);
      background: rgba(201, 119, 42, .12);
      border-color: rgba(201, 119, 42, .28);
      transform: translateY(-2px);
    }

    .btn-soft {
      color: var(--ink);
      background: var(--sage-light);
      border-color: rgba(138, 154, 116, .28);
    }

    .btn-soft:hover {
      background: #DCE6CD;
      border-color: rgba(138, 154, 116, .45);
      transform: translateY(-2px);
    }

    .mobile-toggler {
      display: none;
      width: 46px;
      height: 46px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255, 253, 248, .72);
      align-items: center;
      justify-content: center;
      padding: 0;
    }

    .mobile-toggler span,
    .mobile-toggler span::before,
    .mobile-toggler span::after {
      content: "";
      width: 18px;
      height: 2px;
      border-radius: 2px;
      background: var(--ink);
      display: block;
      position: relative;
    }

    .mobile-toggler span::before {
      position: absolute;
      top: -6px;
    }

    .mobile-toggler span::after {
      position: absolute;
      top: 6px;
    }

    .mobile-menu {
      padding: 0 0 18px;
    }

    .mobile-menu .nav-link-custom,
    .mobile-menu .btn-brand {
      width: 100%;
      justify-content: center;
      margin-top: 10px;
    }

    .page-hero {
      padding: 44px 0 64px;
    }

    .breadcrumb-custom {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      margin-bottom: 18px;
      color: var(--muted);
      font-size: 14px;
    }

    .breadcrumb-custom a {
      color: var(--ink-soft);
      font-weight: 650;
    }

    .breadcrumb-custom a:hover {
      color: var(--caramel-dark);
    }

    .hero-panel {
      position: relative;
      min-height: 340px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      background:
        linear-gradient(120deg, rgba(22, 22, 22, .78), rgba(22, 22, 22, .38) 48%, rgba(22, 22, 22, .12)),
        radial-gradient(circle at 78% 22%, rgba(201, 119, 42, .45), transparent 24%),
        radial-gradient(circle at 88% 78%, rgba(138, 154, 116, .42), transparent 25%),
        linear-gradient(135deg, #2B2926 0%, #5E4A35 45%, #D9CBB8 100%);
    }

    .hero-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 248, 237, .10) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 248, 237, .10) 1px, transparent 1px);
      background-size: 44px 44px;
      mask-image: linear-gradient(90deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .25));
    }

    .hero-panel::after {
      content: "";
      position: absolute;
      right: 36px;
      top: 42px;
      width: min(42vw, 430px);
      height: 210px;
      border-radius: 26px;
      border: 1px solid rgba(255, 248, 237, .32);
      background:
        linear-gradient(90deg, rgba(255, 248, 237, .12) 0 28%, transparent 29% 34%, rgba(255, 248, 237, .18) 35% 62%, transparent 63% 70%, rgba(255, 248, 237, .10) 71%),
        radial-gradient(circle at 18% 62%, rgba(201, 119, 42, .62) 0 8px, transparent 9px),
        radial-gradient(circle at 54% 38%, rgba(255, 248, 237, .66) 0 5px, transparent 6px),
        radial-gradient(circle at 86% 68%, rgba(138, 154, 116, .72) 0 7px, transparent 8px);
      opacity: .9;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      width: min(720px, 100%);
      padding: 54px;
      color: var(--white-warm);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 18px;
      padding: 7px 13px;
      border-radius: 999px;
      color: var(--white-warm);
      background: rgba(255, 248, 237, .14);
      border: 1px solid rgba(255, 248, 237, .24);
      font-size: 13px;
      font-weight: 750;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--caramel);
      box-shadow: 0 0 0 5px rgba(201, 119, 42, .20);
    }

    h1 {
      margin: 0;
      font-size: clamp(32px, 4.2vw, 52px);
      line-height: 1.16;
      font-weight: 780;
      letter-spacing: 0;
      word-break: break-word;
    }

    .hero-lead {
      margin: 18px 0 28px;
      max-width: 620px;
      color: rgba(255, 248, 237, .88);
      font-size: 17px;
      line-height: 1.8;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .section {
      padding: 88px 0;
    }

    .section-tight {
      padding: 64px 0;
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: end;
      gap: 24px;
      margin-bottom: 32px;
    }

    .section-kicker {
      color: var(--caramel-dark);
      font-size: 13px;
      font-weight: 800;
      margin-bottom: 8px;
    }

    h2 {
      margin: 0;
      font-size: clamp(24px, 2.8vw, 34px);
      line-height: 1.25;
      font-weight: 720;
      letter-spacing: 0;
    }

    .section-desc {
      max-width: 680px;
      margin: 12px 0 0;
      color: var(--muted);
      font-size: 16px;
    }

    .filter-shell {
      border: 1px solid var(--line);
      border-radius: var(--radius-card);
      background: rgba(255, 253, 248, .72);
      box-shadow: var(--shadow);
      padding: 22px;
    }

    .filter-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 12px;
    }

    .filter-label {
      color: var(--ink-soft);
      font-weight: 750;
      margin-right: 4px;
      font-size: 14px;
    }

    .filter-pill {
      border: 1px solid var(--line-strong);
      color: var(--ink-soft);
      background: transparent;
      border-radius: 999px;
      padding: 9px 16px;
      font-size: 14px;
      font-weight: 700;
    }

    .filter-pill:hover,
    .filter-pill.active {
      color: var(--white-warm);
      background: var(--caramel);
      border-color: var(--caramel);
      transform: translateY(-1px);
    }

    .filter-divider {
      height: 1px;
      background: var(--line);
      margin: 18px 0;
    }

    .timeline-list {
      display: grid;
      gap: 20px;
    }

    .timeline-item {
      display: grid;
      grid-template-columns: 190px minmax(0, 1fr) auto;
      gap: 24px;
      align-items: center;
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: var(--radius-card);
      background: var(--paper-card);
      box-shadow: 0 12px 38px rgba(22, 22, 22, .055);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
    }

    .timeline-item:hover {
      transform: translateY(-3px);
      border-color: rgba(201, 119, 42, .36);
      box-shadow: var(--shadow-hover);
      background: #FFFDF9;
    }

    .time-box {
      position: relative;
      min-height: 112px;
      border-radius: 18px;
      padding: 18px;
      background:
        linear-gradient(135deg, rgba(138, 154, 116, .20), transparent 58%),
        var(--paper-deep);
      border: 1px solid rgba(138, 154, 116, .24);
      overflow: hidden;
    }

    .time-box::after {
      content: "";
      position: absolute;
      right: -26px;
      bottom: -26px;
      width: 86px;
      height: 86px;
      border-radius: 50%;
      border: 15px solid rgba(201, 119, 42, .18);
    }

    .time-label {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 750;
      margin-bottom: 8px;
    }

    .time-label::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--sage);
    }

    .time-main {
      position: relative;
      z-index: 1;
      display: block;
      color: var(--ink);
      font-size: 24px;
      line-height: 1.1;
      font-weight: 820;
    }

    .time-note {
      position: relative;
      z-index: 1;
      margin-top: 8px;
      color: var(--muted);
      font-size: 13px;
    }

    .item-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 10px;
    }

    .badge-soft,
    .badge-hot,
    .badge-line {
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      padding: 6px 11px;
      font-size: 12px;
      font-weight: 780;
      line-height: 1;
    }

    .badge-soft {
      color: #596943;
      background: var(--sage-light);
    }

    .badge-hot {
      color: var(--white-warm);
      background: var(--caramel);
    }

    .badge-line {
      color: var(--ink-soft);
      border: 1px solid var(--line-strong);
      background: rgba(255, 253, 248, .58);
    }

    .timeline-title {
      margin: 0 0 8px;
      font-size: 21px;
      line-height: 1.35;
      font-weight: 720;
      word-break: break-word;
    }

    .timeline-text {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
    }

    .entry-link {
      min-width: 112px;
    }

    .pagination-custom {
      margin-top: 30px;
      gap: 8px;
    }

    .pagination-custom .page-link {
      border: 1px solid var(--line);
      border-radius: 999px;
      color: var(--ink-soft);
      background: rgba(255, 253, 248, .74);
      min-width: 42px;
      text-align: center;
      font-weight: 750;
      box-shadow: none;
    }

    .pagination-custom .page-link:hover,
    .pagination-custom .page-item.active .page-link {
      color: var(--white-warm);
      background: var(--caramel);
      border-color: var(--caramel);
    }

    .notice-band {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-lg);
      padding: 44px;
      border: 2px solid rgba(201, 119, 42, .28);
      background:
        radial-gradient(circle at 85% 20%, rgba(138, 154, 116, .24), transparent 24%),
        linear-gradient(135deg, #FFFDF8 0%, #F0E4D2 100%);
      box-shadow: var(--shadow);
    }

    .notice-band::after {
      content: "";
      position: absolute;
      inset: auto 34px 28px auto;
      width: 220px;
      height: 72px;
      border-radius: 999px;
      background:
        repeating-linear-gradient(90deg, rgba(22, 22, 22, .08) 0 12px, transparent 12px 24px);
      opacity: .55;
    }

    .notice-content {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: center;
      gap: 28px;
    }

    .mini-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 24px;
    }

    .mini-step {
      padding: 18px;
      border-radius: 18px;
      border: 1px solid var(--line);
      background: rgba(255, 253, 248, .72);
    }

    .mini-step strong {
      display: block;
      margin-bottom: 6px;
      font-size: 17px;
    }

    .mini-step span {
      display: block;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.65;
    }

    .subscribe-panel {
      display: grid;
      grid-template-columns: minmax(0, .92fr) minmax(360px, 1fr);
      gap: 34px;
      align-items: center;
      border-radius: var(--radius-lg);
      padding: 42px;
      background: var(--ink);
      color: var(--white-warm);
      box-shadow: var(--shadow);
      overflow: hidden;
      position: relative;
    }

    .subscribe-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 16% 18%, rgba(201, 119, 42, .24), transparent 25%),
        linear-gradient(90deg, transparent 0 56%, rgba(255, 248, 237, .06) 56% 100%);
      pointer-events: none;
    }

    .subscribe-copy,
    .subscribe-form {
      position: relative;
      z-index: 1;
    }

    .subscribe-copy p {
      margin: 12px 0 0;
      color: rgba(255, 248, 237, .76);
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 170px;
      gap: 12px;
    }

    .form-field label {
      display: block;
      margin-bottom: 8px;
      color: rgba(255, 248, 237, .86);
      font-size: 13px;
      font-weight: 750;
    }

    .form-control-custom,
    .form-select-custom {
      width: 100%;
      min-height: 54px;
      border-radius: var(--radius-input);
      border: 1px solid rgba(255, 248, 237, .18);
      background: rgba(255, 248, 237, .10);
      color: var(--white-warm);
      padding: 12px 14px;
      transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    }

    .form-control-custom::placeholder {
      color: rgba(255, 248, 237, .54);
    }

    .form-control-custom:focus,
    .form-select-custom:focus {
      border-color: var(--caramel);
      background: rgba(255, 248, 237, .14);
      box-shadow: 0 0 0 4px rgba(201, 119, 42, .24);
      outline: none;
    }

    .form-select-custom option {
      color: var(--ink);
    }

    .check-line {
      margin: 14px 0 18px;
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: rgba(255, 248, 237, .74);
      font-size: 13px;
      line-height: 1.55;
    }

    .check-line input {
      width: 18px;
      height: 18px;
      margin-top: 2px;
      accent-color: var(--caramel);
      flex: 0 0 auto;
    }

    .form-hint {
      min-height: 22px;
      color: rgba(255, 248, 237, .58);
      font-size: 13px;
      margin-top: 10px;
    }

    .faq-wrap {
      max-width: 920px;
      margin: 0 auto;
    }

    .accordion-custom {
      display: grid;
      gap: 14px;
    }

    .accordion-custom .accordion-item {
      border: 1px solid var(--line);
      border-radius: 18px;
      overflow: hidden;
      background: rgba(255, 253, 248, .80);
      box-shadow: 0 10px 30px rgba(22, 22, 22, .045);
    }

    .accordion-custom .accordion-button {
      padding: 20px 22px;
      color: var(--ink);
      background: rgba(255, 253, 248, .86);
      font-size: 17px;
      font-weight: 760;
      box-shadow: none;
    }

    .accordion-custom .accordion-button:not(.collapsed) {
      color: var(--caramel-dark);
      background: #FFF8ED;
      border-bottom: 1px solid rgba(201, 119, 42, .22);
    }

    .accordion-custom .accordion-button::after {
      filter: sepia(1) saturate(2) hue-rotate(350deg);
    }

    .accordion-custom .accordion-body {
      padding: 18px 22px 22px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.75;
    }

    .site-footer {
      margin-top: 40px;
      padding: 64px 0 28px;
      color: rgba(255, 248, 237, .78);
      background:
        radial-gradient(circle at 18% 18%, rgba(201, 119, 42, .18), transparent 24%),
        #161616;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr .8fr .8fr .8fr;
      gap: 34px;
      padding-bottom: 38px;
      border-bottom: 1px solid rgba(255, 248, 237, .13);
    }

    .footer-logo {
      color: var(--white-warm);
      font-size: 18px;
      margin-bottom: 14px;
    }

    .site-footer p {
      max-width: 360px;
      margin: 0;
      color: rgba(255, 248, 237, .66);
      font-size: 14px;
      line-height: 1.75;
    }

    .footer-title {
      color: var(--white-warm);
      font-size: 15px;
      font-weight: 780;
      margin-bottom: 14px;
    }

    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 10px;
    }

    .footer-links a {
      color: rgba(255, 248, 237, .68);
      font-size: 14px;
    }

    .footer-links a:hover {
      color: var(--white-warm);
      padding-left: 3px;
    }

    .copyright {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      padding-top: 22px;
      color: rgba(255, 248, 237, .54);
      font-size: 13px;
      line-height: 1.6;
    }

    @media (max-width: 1199px) {
      .site-container {
        width: min(100% - 36px, 1060px);
      }

      .timeline-item {
        grid-template-columns: 170px minmax(0, 1fr) auto;
      }
    }

    @media (max-width: 991px) {
      :root {
        --header-h: 72px;
      }

      .desktop-nav {
        display: none;
      }

      .brand-nav {
        grid-template-columns: 1fr auto;
      }

      .site-logo {
        justify-self: start;
        max-width: calc(100vw - 104px);
        overflow: hidden;
      }

      .site-logo span:last-child {
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .mobile-toggler {
        display: inline-flex;
      }

      .page-hero {
        padding-top: 28px;
      }

      .hero-panel {
        min-height: 360px;
      }

      .hero-panel::after {
        right: 18px;
        top: auto;
        bottom: 18px;
        width: 70%;
        height: 130px;
        opacity: .52;
      }

      .hero-content {
        padding: 34px;
      }

      .section {
        padding: 68px 0;
      }

      .section-head {
        grid-template-columns: 1fr;
        align-items: start;
      }

      .timeline-item {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .entry-link {
        width: 100%;
      }

      .notice-content,
      .subscribe-panel {
        grid-template-columns: 1fr;
      }

      .mini-steps {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .copyright {
        flex-direction: column;
      }
    }

    @media (max-width: 575px) {
      .site-container {
        width: min(100% - 24px, var(--container));
      }

      .site-logo {
        font-size: 15px;
        padding: 8px 10px;
      }

      .logo-mark {
        width: 23px;
        height: 23px;
        border-radius: 8px;
      }

      .hero-content {
        padding: 28px 22px;
      }

      .hero-lead {
        font-size: 15px;
      }

      .hero-actions,
      .filter-row,
      .form-grid {
        display: grid;
        grid-template-columns: 1fr;
      }

      .btn-brand,
      .btn-ghost,
      .btn-soft {
        width: 100%;
      }

      .filter-shell,
      .timeline-item,
      .notice-band,
      .subscribe-panel {
        padding: 20px;
        border-radius: 20px;
      }

      .time-main {
        font-size: 22px;
      }

      .section {
        padding: 54px 0;
      }

      .section-tight {
        padding: 48px 0;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

/* roulang page: category2 */
:root {
      --ink: #161616;
      --ink-soft: #35312d;
      --muted: #716b62;
      --bg: #f7f3ec;
      --bg-alt: #efe8dc;
      --paper: #fffaf2;
      --paper-strong: #ffffff;
      --caramel: #c9772a;
      --caramel-dark: #a95f1f;
      --sage: #8a9a74;
      --sage-soft: #e2e8d8;
      --line: rgba(22, 22, 22, .08);
      --line-strong: rgba(22, 22, 22, .14);
      --shadow: 0 18px 50px rgba(22, 22, 22, .08);
      --shadow-hover: 0 22px 62px rgba(22, 22, 22, .12);
      --radius-lg: 28px;
      --radius-md: 20px;
      --radius-sm: 14px;
      --nav-height: 76px;
      --focus: 0 0 0 .25rem rgba(201, 119, 42, .28);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-width: 320px;
      background:
        radial-gradient(circle at 8% 12%, rgba(138, 154, 116, .14), transparent 26%),
        radial-gradient(circle at 84% 6%, rgba(201, 119, 42, .12), transparent 24%),
        var(--bg);
      color: var(--ink);
      font-family: PingFang SC, Microsoft YaHei, Noto Sans SC, Arial, sans-serif;
      line-height: 1.75;
      text-rendering: optimizeLegibility;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
    }

    img {
      max-width: 100%;
      display: block;
      object-fit: cover;
    }

    button,
    input,
    select {
      font: inherit;
    }

    section {
      scroll-margin-top: calc(var(--nav-height) + 24px);
    }

    .site-container {
      width: min(1200px, calc(100% - 40px));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(247, 243, 236, .88);
      border-bottom: 1px solid var(--line);
      backdrop-filter: blur(14px);
    }

    .brand-nav {
      min-height: var(--nav-height);
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 22px;
    }

    .nav-side {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .nav-left {
      justify-content: flex-start;
    }

    .nav-right {
      justify-content: flex-end;
    }

    .site-logo,
    .footer-logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--ink);
      font-weight: 800;
      letter-spacing: 0;
      white-space: nowrap;
    }

    .logo-mark {
      width: 30px;
      height: 30px;
      border-radius: 11px;
      display: inline-block;
      background:
        linear-gradient(135deg, var(--caramel) 0 42%, transparent 42% 55%, var(--sage) 55%),
        var(--ink);
      box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .42);
      position: relative;
      flex: 0 0 auto;
    }

    .logo-mark::after {
      content: "";
      position: absolute;
      width: 7px;
      height: 7px;
      right: 5px;
      top: 5px;
      border-radius: 999px;
      background: var(--paper);
    }

    .nav-link-custom {
      position: relative;
      display: inline-flex;
      align-items: center;
      min-height: 42px;
      padding: 8px 14px;
      border-radius: 999px;
      color: var(--ink-soft);
      font-size: 14px;
      font-weight: 650;
      white-space: nowrap;
    }

    .nav-link-custom:hover,
    .nav-link-custom:focus {
      color: var(--caramel-dark);
      background: rgba(201, 119, 42, .08);
      outline: none;
    }

    .nav-link-custom.active {
      color: var(--caramel-dark);
      background: rgba(201, 119, 42, .13);
    }

    .btn-brand,
    .btn-ghost,
    .btn-soft {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 46px;
      padding: 12px 22px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-size: 15px;
      font-weight: 750;
      line-height: 1.2;
      transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
    }

    .btn-brand {
      background: var(--caramel);
      color: #fffaf2;
      box-shadow: 0 12px 28px rgba(201, 119, 42, .24);
    }

    .btn-brand:hover,
    .btn-brand:focus {
      background: var(--caramel-dark);
      color: #fffaf2;
      transform: translateY(-2px);
      box-shadow: 0 16px 36px rgba(201, 119, 42, .32);
      outline: none;
    }

    .btn-ghost {
      background: rgba(255, 250, 242, .64);
      color: var(--ink);
      border-color: var(--line-strong);
    }

    .btn-ghost:hover,
    .btn-ghost:focus {
      background: rgba(201, 119, 42, .1);
      border-color: rgba(201, 119, 42, .34);
      color: var(--caramel-dark);
      transform: translateY(-2px);
      outline: none;
    }

    .btn-soft {
      background: var(--sage-soft);
      color: #34402a;
      border-color: rgba(138, 154, 116, .24);
    }

    .btn-soft:hover,
    .btn-soft:focus {
      background: rgba(138, 154, 116, .26);
      color: #25301f;
      transform: translateY(-2px);
      outline: none;
    }

    .mobile-toggler {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255, 250, 242, .84);
      align-items: center;
      justify-content: center;
      justify-self: end;
      padding: 0;
    }

    .mobile-toggler span,
    .mobile-toggler span::before,
    .mobile-toggler span::after {
      display: block;
      width: 18px;
      height: 2px;
      border-radius: 99px;
      background: var(--ink);
      position: relative;
      transition: transform .2s ease;
    }

    .mobile-toggler span::before,
    .mobile-toggler span::after {
      content: "";
      position: absolute;
      left: 0;
    }

    .mobile-toggler span::before {
      top: -6px;
    }

    .mobile-toggler span::after {
      top: 6px;
    }

    .mobile-toggler:focus {
      box-shadow: var(--focus);
      outline: none;
    }

    .mobile-menu {
      padding: 0 0 18px;
    }

    .mobile-menu .nav-link-custom,
    .mobile-menu .btn-brand {
      width: 100%;
      justify-content: center;
      margin-top: 12px;
    }

    .page-hero {
      padding: 42px 0 52px;
      background:
        linear-gradient(180deg, rgba(255, 250, 242, .74), rgba(247, 243, 236, 0)),
        var(--bg);
    }

    .breadcrumb-row {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 18px;
      color: var(--muted);
      font-size: 14px;
    }

    .breadcrumb-row a {
      color: var(--ink-soft);
      font-weight: 650;
    }

    .breadcrumb-row a:hover {
      color: var(--caramel-dark);
    }

    .hero-band {
      position: relative;
      min-height: 340px;
      padding: 42px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid var(--line);
      background:
        linear-gradient(90deg, rgba(22, 22, 22, .82), rgba(22, 22, 22, .36)),
        linear-gradient(135deg, rgba(201, 119, 42, .55), rgba(138, 154, 116, .35)),
        #2a2621;
      box-shadow: var(--shadow);
      display: flex;
      align-items: flex-end;
    }

    .hero-band::before {
      content: "";
      position: absolute;
      inset: 18px;
      border-radius: 22px;
      background:
        linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,.13) 1px, transparent 1px);
      background-size: 54px 54px;
      opacity: .48;
      mask-image: linear-gradient(90deg, #000, transparent 82%);
    }

    .hero-band::after {
      content: "";
      position: absolute;
      right: -34px;
      top: -46px;
      width: 430px;
      height: 430px;
      border-radius: 50%;
      background:
        radial-gradient(circle, rgba(255, 250, 242, .58), transparent 34%),
        conic-gradient(from 120deg, rgba(201, 119, 42, .48), rgba(138, 154, 116, .42), rgba(255, 250, 242, .18), rgba(201, 119, 42, .48));
      opacity: .8;
    }

    .hero-copy {
      position: relative;
      z-index: 1;
      max-width: 790px;
      color: #fffaf2;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 12px;
      border-radius: 999px;
      background: rgba(255, 250, 242, .14);
      border: 1px solid rgba(255, 250, 242, .22);
      color: #fff4df;
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 16px;
    }

    .eyebrow.dark {
      color: var(--caramel-dark);
      background: rgba(201, 119, 42, .1);
      border-color: rgba(201, 119, 42, .18);
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      max-width: 860px;
      margin-bottom: 18px;
      font-size: clamp(32px, 5vw, 52px);
      line-height: 1.14;
      font-weight: 800;
      letter-spacing: 0;
      word-break: break-word;
    }

    .hero-copy p {
      max-width: 720px;
      margin-bottom: 26px;
      color: rgba(255, 250, 242, .86);
      font-size: 17px;
      line-height: 1.78;
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .section {
      padding: 88px 0;
    }

    .section.tight {
      padding-top: 64px;
    }

    .section-head {
      max-width: 760px;
      margin-bottom: 34px;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 12px;
      color: var(--caramel-dark);
      font-size: 14px;
      font-weight: 800;
    }

    h2 {
      margin-bottom: 14px;
      color: var(--ink);
      font-size: clamp(24px, 3.4vw, 34px);
      line-height: 1.22;
      font-weight: 760;
      letter-spacing: 0;
    }

    .section-head p {
      color: var(--muted);
      font-size: 16px;
      max-width: 720px;
    }

    .matrix-grid {
      display: grid;
      grid-template-columns: 1.15fr .85fr .85fr;
      grid-template-rows: repeat(2, minmax(180px, auto));
      gap: 18px;
    }

    .entry-card {
      position: relative;
      min-height: 180px;
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      background: rgba(255, 250, 242, .82);
      box-shadow: 0 12px 34px rgba(22, 22, 22, .05);
      overflow: hidden;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background-color .2s ease;
    }

    .entry-card:hover {
      transform: translateY(-4px);
      border-color: rgba(201, 119, 42, .38);
      box-shadow: var(--shadow-hover);
      background: var(--paper);
    }

    .entry-card.large {
      grid-row: span 2;
      min-height: 378px;
      padding: 30px;
      background:
        linear-gradient(135deg, rgba(255, 250, 242, .9), rgba(239, 232, 220, .78)),
        var(--paper);
      border: 2px solid rgba(201, 119, 42, .24);
    }

    .entry-card.large::after,
    .visual-panel::after {
      content: "";
      position: absolute;
      right: -40px;
      bottom: -60px;
      width: 240px;
      height: 240px;
      border-radius: 50%;
      background:
        radial-gradient(circle at 36% 36%, rgba(255, 250, 242, .95), rgba(255, 250, 242, .2) 32%, transparent 33%),
        conic-gradient(from 90deg, rgba(201, 119, 42, .3), rgba(138, 154, 116, .3), rgba(22, 22, 22, .08), rgba(201, 119, 42, .3));
      opacity: .72;
    }

    .card-topline,
    .list-topline {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin-bottom: 18px;
    }

    .badge-custom {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 10px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 800;
      line-height: 1.2;
      white-space: nowrap;
      border: 1px solid transparent;
    }

    .badge-update {
      background: rgba(201, 119, 42, .12);
      color: var(--caramel-dark);
      border-color: rgba(201, 119, 42, .22);
    }

    .badge-stable {
      background: var(--sage-soft);
      color: #405038;
      border-color: rgba(138, 154, 116, .24);
    }

    .badge-recommend {
      background: rgba(22, 22, 22, .08);
      color: var(--ink);
      border-color: rgba(22, 22, 22, .1);
    }

    .badge-remind {
      background: rgba(255, 250, 242, .9);
      color: var(--muted);
      border-color: var(--line);
    }

    .entry-card h3 {
      position: relative;
      z-index: 1;
      margin-bottom: 10px;
      font-size: 21px;
      line-height: 1.35;
      font-weight: 750;
      letter-spacing: 0;
    }

    .entry-card p {
      position: relative;
      z-index: 1;
      margin-bottom: 22px;
      color: var(--muted);
      font-size: 15px;
    }

    .entry-meta {
      position: relative;
      z-index: 1;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: auto;
      color: var(--muted);
      font-size: 13px;
    }

    .entry-meta span {
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(22, 22, 22, .05);
    }

    .route-visual {
      position: relative;
      z-index: 1;
      height: 132px;
      margin: 20px 0 24px;
      border-radius: 22px;
      background:
        linear-gradient(90deg, rgba(22, 22, 22, .08) 1px, transparent 1px),
        linear-gradient(0deg, rgba(22, 22, 22, .08) 1px, transparent 1px),
        linear-gradient(135deg, rgba(201, 119, 42, .18), rgba(138, 154, 116, .18));
      background-size: 34px 34px, 34px 34px, auto;
      overflow: hidden;
      border: 1px solid var(--line);
    }

    .route-visual span {
      position: absolute;
      width: 14px;
      height: 14px;
      border-radius: 999px;
      background: var(--caramel);
      box-shadow: 0 0 0 8px rgba(201, 119, 42, .12);
    }

    .route-visual span:nth-child(1) {
      left: 12%;
      top: 58%;
    }

    .route-visual span:nth-child(2) {
      left: 46%;
      top: 30%;
      background: var(--sage);
      box-shadow: 0 0 0 8px rgba(138, 154, 116, .16);
    }

    .route-visual span:nth-child(3) {
      right: 14%;
      top: 52%;
    }

    .split-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
      gap: 28px;
      align-items: stretch;
    }

    .visual-panel {
      position: relative;
      min-height: 430px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid var(--line);
      background:
        radial-gradient(circle at 18% 24%, rgba(255, 250, 242, .9), transparent 22%),
        linear-gradient(120deg, rgba(22, 22, 22, .9), rgba(53, 49, 45, .72)),
        linear-gradient(135deg, var(--sage), var(--caramel));
      box-shadow: var(--shadow);
    }

    .visual-panel::before {
      content: "";
      position: absolute;
      inset: 26px;
      border-radius: 24px;
      border: 1px solid rgba(255, 250, 242, .22);
      background:
        linear-gradient(90deg, rgba(255, 250, 242, .16) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 250, 242, .12) 1px, transparent 1px);
      background-size: 48px 48px;
    }

    .visual-note {
      position: absolute;
      left: 34px;
      bottom: 34px;
      right: 34px;
      color: #fffaf2;
      z-index: 2;
    }

    .visual-note strong {
      display: block;
      margin-bottom: 8px;
      font-size: 26px;
      line-height: 1.25;
      font-weight: 800;
    }

    .visual-note p {
      margin-bottom: 0;
      color: rgba(255, 250, 242, .82);
    }

    .check-panel {
      padding: 30px;
      border-radius: var(--radius-lg);
      background: rgba(255, 250, 242, .8);
      border: 1px solid var(--line);
      box-shadow: 0 12px 34px rgba(22, 22, 22, .05);
    }

    .check-list {
      display: grid;
      gap: 16px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .check-list li {
      display: grid;
      grid-template-columns: 42px 1fr;
      gap: 14px;
      align-items: start;
      padding: 16px;
      border-radius: 18px;
      background: rgba(247, 243, 236, .88);
      border: 1px solid var(--line);
    }

    .check-icon {
      width: 42px;
      height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 15px;
      background: rgba(201, 119, 42, .12);
      color: var(--caramel-dark);
      font-size: 18px;
      flex: 0 0 auto;
    }

    .check-list strong {
      display: block;
      margin-bottom: 4px;
      font-size: 17px;
      line-height: 1.4;
    }

    .check-list span {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.65;
    }

    .compact-list {
      display: grid;
      gap: 14px;
    }

    .compact-row {
      display: grid;
      grid-template-columns: 108px 1.1fr 1.5fr auto;
      gap: 18px;
      align-items: center;
      padding: 18px 20px;
      border-radius: 20px;
      border: 1px solid var(--line);
      background: rgba(255, 250, 242, .78);
      box-shadow: 0 8px 24px rgba(22, 22, 22, .04);
      transition: background-color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
    }

    .compact-row:hover {
      transform: translateY(-2px);
      background: var(--paper);
      border-color: rgba(201, 119, 42, .3);
      box-shadow: 0 14px 32px rgba(22, 22, 22, .08);
    }

    .row-time {
      color: var(--ink);
      font-size: 14px;
      font-weight: 800;
    }

    .row-title {
      font-size: 17px;
      font-weight: 760;
      line-height: 1.45;
    }

    .row-desc {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.65;
    }

    .row-action {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--caramel-dark);
      font-size: 14px;
      font-weight: 800;
      white-space: nowrap;
    }

    .row-action i {
      transition: transform .2s ease;
    }

    .compact-row:hover .row-action i {
      transform: translateX(4px);
    }

    .subscribe-band {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(340px, .82fr);
      gap: 34px;
      align-items: center;
      padding: 38px;
      border-radius: var(--radius-lg);
      background:
        linear-gradient(135deg, rgba(255, 250, 242, .92), rgba(226, 232, 216, .58)),
        var(--paper);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }

    .subscribe-band h2 {
      margin-bottom: 12px;
    }

    .subscribe-band p {
      color: var(--muted);
      margin-bottom: 0;
    }

    .subscribe-form {
      display: grid;
      gap: 14px;
    }

    .form-label {
      color: var(--ink);
      font-size: 14px;
      font-weight: 750;
      margin-bottom: 6px;
    }

    .form-control,
    .form-select {
      min-height: 52px;
      border-radius: var(--radius-sm);
      border: 1px solid rgba(22, 22, 22, .12);
      background-color: rgba(255, 250, 242, .88);
      color: var(--ink);
      padding: 12px 14px;
      box-shadow: none;
    }

    .form-control::placeholder {
      color: rgba(113, 107, 98, .76);
    }

    .form-control:focus,
    .form-select:focus {
      border-color: var(--caramel);
      box-shadow: var(--focus);
      background-color: #fffdf8;
    }

    .form-check {
      display: flex;
      align-items: center;
      gap: 8px;
      min-height: 24px;
      padding-left: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .form-check-input {
      width: 18px;
      height: 18px;
      margin: 0;
      float: none;
      border-color: rgba(22, 22, 22, .2);
      background-color: #fffaf2;
      box-shadow: none;
    }

    .form-check-input:checked {
      background-color: var(--caramel);
      border-color: var(--caramel);
    }

    .form-check-input:focus {
      box-shadow: var(--focus);
      border-color: var(--caramel);
    }

    .form-hint {
      min-height: 20px;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.55;
    }

    .faq-wrap {
      max-width: 900px;
      margin: 0 auto;
    }

    .accordion {
      display: grid;
      gap: 14px;
    }

    .accordion-item {
      border: 1px solid var(--line);
      border-radius: 20px !important;
      overflow: hidden;
      background: rgba(255, 250, 242, .74);
      box-shadow: 0 10px 28px rgba(22, 22, 22, .04);
    }

    .accordion-button {
      padding: 20px 22px;
      background: rgba(255, 250, 242, .74);
      color: var(--ink);
      font-weight: 760;
      line-height: 1.45;
      box-shadow: none;
    }

    .accordion-button:not(.collapsed) {
      color: var(--caramel-dark);
      background: rgba(201, 119, 42, .09);
      box-shadow: inset 0 -1px 0 rgba(201, 119, 42, .18);
    }

    .accordion-button:focus {
      border-color: transparent;
      box-shadow: var(--focus);
    }

    .accordion-button::after {
      filter: sepia(1) saturate(1.8) hue-rotate(340deg);
    }

    .accordion-body {
      padding: 18px 22px 22px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.78;
      background: rgba(255, 250, 242, .6);
    }

    .site-footer {
      padding: 64px 0 28px;
      background: #1d1a17;
      color: rgba(255, 250, 242, .78);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: minmax(260px, 1.35fr) repeat(3, 1fr);
      gap: 34px;
      padding-bottom: 34px;
      border-bottom: 1px solid rgba(255, 250, 242, .12);
    }

    .footer-logo {
      color: #fffaf2;
      margin-bottom: 14px;
    }

    .site-footer p {
      max-width: 360px;
      margin-bottom: 0;
      color: rgba(255, 250, 242, .68);
      font-size: 14px;
      line-height: 1.7;
    }

    .footer-title {
      margin-bottom: 12px;
      color: #fffaf2;
      font-size: 15px;
      font-weight: 800;
    }

    .footer-links {
      display: grid;
      gap: 8px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .footer-links a {
      color: rgba(255, 250, 242, .68);
      font-size: 14px;
    }

    .footer-links a:hover,
    .footer-links a:focus {
      color: #fffaf2;
      outline: none;
    }

    .copyright {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      padding-top: 22px;
      color: rgba(255, 250, 242, .56);
      font-size: 13px;
      line-height: 1.6;
    }

    @media (max-width: 1199.98px) {
      .site-container {
        width: min(100% - 32px, 1120px);
      }

      .matrix-grid {
        grid-template-columns: 1fr 1fr;
      }

      .entry-card.large {
        grid-column: span 2;
        min-height: 310px;
      }

      .compact-row {
        grid-template-columns: 94px 1fr 1.2fr auto;
        gap: 14px;
      }
    }

    @media (max-width: 991.98px) {
      :root {
        --nav-height: 68px;
      }

      .desktop-nav {
        display: none;
      }

      .brand-nav {
        grid-template-columns: 1fr auto;
      }

      .site-logo {
        justify-self: start;
      }

      .mobile-toggler {
        display: inline-flex;
      }

      .page-hero {
        padding-top: 28px;
      }

      .hero-band {
        min-height: 360px;
        padding: 30px;
        align-items: flex-end;
      }

      .section {
        padding: 68px 0;
      }

      .split-layout,
      .subscribe-band {
        grid-template-columns: 1fr;
      }

      .visual-panel {
        min-height: 340px;
      }

      .compact-row {
        grid-template-columns: 1fr;
        gap: 8px;
        align-items: start;
      }

      .row-action {
        margin-top: 4px;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .copyright {
        flex-direction: column;
      }
    }

    @media (max-width: 767.98px) {
      .site-container {
        width: min(100% - 24px, 720px);
      }

      .hero-band {
        border-radius: 22px;
        min-height: 390px;
        padding: 24px;
      }

      .hero-copy p {
        font-size: 15px;
      }

      .hero-actions {
        flex-direction: column;
      }

      .hero-actions .btn-brand,
      .hero-actions .btn-ghost {
        width: 100%;
      }

      .matrix-grid {
        grid-template-columns: 1fr;
      }

      .entry-card.large {
        grid-column: auto;
        grid-row: auto;
        min-height: auto;
      }

      .subscribe-band {
        padding: 24px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 26px;
      }
    }

    @media (max-width: 575.98px) {
      .site-logo span:last-child,
      .footer-logo span:last-child {
        white-space: normal;
        line-height: 1.25;
      }

      .logo-mark {
        width: 28px;
        height: 28px;
        border-radius: 10px;
      }

      h1 {
        font-size: 34px;
      }

      .hero-band::after {
        width: 280px;
        height: 280px;
      }

      .section {
        padding: 56px 0;
      }

      .entry-card,
      .check-panel {
        padding: 20px;
      }

      .check-list li {
        grid-template-columns: 1fr;
      }

      .visual-note {
        left: 22px;
        right: 22px;
        bottom: 22px;
      }

      .visual-note strong {
        font-size: 22px;
      }

      .btn-brand,
      .btn-ghost,
      .btn-soft {
        width: 100%;
      }
    }
