/* roulang page: index */
:root {
      --color-bg: #11100e;
      --color-bg-deep: #080806;
      --color-panel: #181510;
      --color-panel-2: #221d14;
      --color-cream: #fff7e1;
      --color-cream-soft: #fff0bd;
      --color-yellow: #f2c94c;
      --color-orange: #d98732;
      --color-caramel: #8a5524;
      --color-text: #fff8e7;
      --color-muted: rgba(255, 248, 231, .68);
      --color-faint: rgba(255, 248, 231, .42);
      --color-border: rgba(255, 255, 255, .09);
      --color-border-strong: rgba(242, 201, 76, .36);
      --shadow-soft: 0 18px 44px rgba(0, 0, 0, .34);
      --shadow-warm: 0 24px 70px rgba(137, 85, 36, .26);
      --radius-xl: 28px;
      --radius-lg: 22px;
      --radius-md: 16px;
      --radius-sm: 12px;
      --container: 1220px;
      --transition: 220ms ease;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--color-text);
      font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      line-height: 1.65;
      background:
        radial-gradient(circle at 12% 4%, rgba(242, 201, 76, .20), transparent 30%),
        radial-gradient(circle at 88% 12%, rgba(217, 135, 50, .16), transparent 34%),
        linear-gradient(180deg, #15130f 0%, #0f0e0c 48%, #080806 100%);
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition), opacity var(--transition);
    }

    a:hover,
    a:focus {
      color: var(--color-yellow);
    }

    button,
    .button {
      font-family: inherit;
      font-weight: 700;
      cursor: pointer;
      transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
    }

    button:focus-visible,
    a:focus-visible,
    input:focus-visible {
      outline: 3px solid rgba(242, 201, 76, .45);
      outline-offset: 3px;
      border-radius: 12px;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .site-shell {
      min-height: 100vh;
      position: relative;
    }

    .site-shell::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
      background-size: 42px 42px;
      mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 78%);
      z-index: -1;
    }

    .grid-container.custom-container {
      max-width: var(--container);
      padding-left: 20px;
      padding-right: 20px;
    }

    .section {
      padding: 82px 0;
      position: relative;
    }

    .section-tight {
      padding: 58px 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--color-yellow);
      background: rgba(242, 201, 76, .10);
      border: 1px solid rgba(242, 201, 76, .22);
      padding: 8px 12px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .02em;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--color-yellow);
      box-shadow: 0 0 18px rgba(242, 201, 76, .9);
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      font-size: clamp(32px, 5vw, 56px);
      line-height: 1.12;
      font-weight: 800;
      letter-spacing: -0.045em;
      margin-bottom: 18px;
    }

    h2 {
      font-size: clamp(26px, 3vw, 36px);
      line-height: 1.2;
      font-weight: 800;
      letter-spacing: -0.025em;
      margin-bottom: 14px;
    }

    h3 {
      font-size: 20px;
      line-height: 1.35;
      font-weight: 800;
      margin-bottom: 10px;
    }

    .section-lead {
      max-width: 720px;
      color: var(--color-muted);
      font-size: 16px;
      margin-bottom: 28px;
    }

    .button.primary-action {
      background: var(--color-yellow);
      color: #17120a;
      border-radius: 999px;
      padding: 14px 22px;
      box-shadow: 0 14px 26px rgba(242, 201, 76, .22);
      border: 1px solid rgba(255, 255, 255, .12);
      margin: 0;
    }

    .button.primary-action:hover,
    .button.primary-action:focus {
      background: var(--color-orange);
      color: #120e08;
      transform: translateY(-2px);
      box-shadow: 0 18px 34px rgba(217, 135, 50, .28);
    }

    .button.secondary-action {
      background: rgba(255, 247, 225, .06);
      color: var(--color-cream);
      border: 1px solid rgba(255, 247, 225, .18);
      border-radius: 999px;
      padding: 13px 20px;
      margin: 0;
    }

    .button.secondary-action:hover,
    .button.secondary-action:focus {
      background: rgba(242, 201, 76, .10);
      border-color: rgba(242, 201, 76, .46);
      color: var(--color-yellow);
      transform: translateY(-2px);
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(255, 247, 225, .08);
      border: 1px solid rgba(255, 247, 225, .12);
      color: var(--color-cream-soft);
      font-size: 12px;
      font-weight: 700;
      white-space: nowrap;
    }

    .badge.hot {
      background: rgba(242, 201, 76, .16);
      color: var(--color-yellow);
      border-color: rgba(242, 201, 76, .34);
    }

    .site-header {
      position: sticky;
      top: 18px;
      z-index: 50;
      margin: 20px 0 0;
    }

    .nav-panel {
      max-width: var(--container);
      margin: 0 auto;
      padding: 10px;
      border-radius: 24px;
      background: rgba(20, 18, 14, .86);
      border: 1px solid rgba(255, 255, 255, .10);
      box-shadow: 0 18px 54px rgba(0, 0, 0, .32);
      backdrop-filter: blur(16px);
    }

    .top-bar,
    .top-bar ul {
      background: transparent;
    }

    .brand-logo {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      min-width: 224px;
      padding: 10px 12px;
      border-radius: 18px;
      background: rgba(255, 247, 225, .06);
      border: 1px solid rgba(255, 247, 225, .10);
      font-weight: 800;
      color: var(--color-cream);
      letter-spacing: -0.02em;
    }

    .brand-mark {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      position: relative;
      background: radial-gradient(circle at 38% 32%, #fff3a6 0 12%, var(--color-yellow) 13% 56%, var(--color-orange) 57% 100%);
      box-shadow: 0 0 28px rgba(242, 201, 76, .42);
      flex: 0 0 auto;
    }

    .brand-mark::after {
      content: "";
      position: absolute;
      width: 24px;
      height: 10px;
      border: 3px solid #15130f;
      border-top: 0;
      border-left: 0;
      border-radius: 0 0 18px 0;
      left: 5px;
      top: 10px;
      transform: rotate(-18deg);
      opacity: .75;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-left: 14px;
    }

    .nav-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 10px 14px;
      border-radius: 15px;
      background: rgba(255, 255, 255, .045);
      border: 1px solid rgba(255, 255, 255, .08);
      color: rgba(255, 248, 231, .78);
      font-size: 14px;
      font-weight: 700;
    }

    .nav-link:hover,
    .nav-link.active {
      background: rgba(242, 201, 76, .14);
      border-color: rgba(242, 201, 76, .34);
      color: var(--color-yellow);
      transform: translateY(-1px);
    }

    .nav-cta {
      margin-left: auto;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .menu-icon {
      filter: invert(1);
    }

    .hero {
      padding-top: 46px;
    }

    .hero-bento {
      display: grid;
      grid-template-columns: minmax(0, 1.36fr) minmax(280px, .64fr);
      grid-template-rows: auto auto;
      gap: 18px;
      align-items: stretch;
    }

    .hero-main,
    .hero-mini,
    .hero-cta-strip,
    .panel-card {
      border-radius: var(--radius-xl);
      border: 1px solid var(--color-border);
      background: linear-gradient(145deg, rgba(34, 29, 20, .88), rgba(14, 13, 10, .92));
      box-shadow: var(--shadow-soft);
      position: relative;
      overflow: hidden;
    }

    .hero-main {
      min-height: 468px;
      padding: clamp(28px, 4vw, 48px);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .hero-main::before {
      content: "";
      position: absolute;
      width: 520px;
      height: 520px;
      right: -180px;
      top: -170px;
      background:
        radial-gradient(circle, rgba(242, 201, 76, .28), transparent 62%);
      pointer-events: none;
    }

    .hero-main::after {
      content: "";
      position: absolute;
      inset: auto -70px -110px auto;
      width: 420px;
      height: 260px;
      border: 28px solid rgba(242, 201, 76, .18);
      border-left-color: transparent;
      border-top-color: transparent;
      border-radius: 50%;
      transform: rotate(-18deg);
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 780px;
    }

    .hero-desc {
      color: var(--color-muted);
      font-size: 17px;
      max-width: 740px;
      margin-bottom: 24px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
      margin-bottom: 18px;
    }

    .age-note {
      display: inline-flex;
      align-items: flex-start;
      gap: 10px;
      max-width: 720px;
      padding: 12px 14px;
      border-radius: 16px;
      background: rgba(242, 201, 76, .10);
      border: 1px solid rgba(242, 201, 76, .24);
      color: rgba(255, 248, 231, .82);
      font-size: 13px;
    }

    .age-note strong {
      color: var(--color-yellow);
      white-space: nowrap;
    }

    .hero-metrics {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-top: 26px;
    }

    .metric-box {
      padding: 14px;
      border-radius: 18px;
      background: rgba(255, 247, 225, .06);
      border: 1px solid rgba(255, 247, 225, .10);
    }

    .metric-box b {
      display: block;
      color: var(--color-yellow);
      font-size: 22px;
      line-height: 1.1;
      margin-bottom: 4px;
    }

    .metric-box span {
      color: var(--color-muted);
      font-size: 13px;
    }

    .hero-side {
      display: grid;
      grid-template-rows: 1fr 1fr;
      gap: 18px;
    }

    .hero-mini {
      padding: 22px;
      min-height: 225px;
    }

    .mini-icon {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      background: rgba(242, 201, 76, .16);
      color: var(--color-yellow);
      border: 1px solid rgba(242, 201, 76, .28);
      font-weight: 900;
      margin-bottom: 16px;
    }

    .hero-mini p {
      color: var(--color-muted);
      font-size: 14px;
      margin-bottom: 16px;
    }

    .mini-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 8px;
    }

    .mini-list li {
      display: flex;
      align-items: center;
      gap: 8px;
      color: rgba(255, 248, 231, .78);
      font-size: 13px;
    }

    .mini-list li::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 99px;
      background: var(--color-yellow);
    }

    .hero-cta-strip {
      grid-column: 1 / -1;
      padding: 16px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 14px;
      align-items: center;
      background:
        linear-gradient(90deg, rgba(242, 201, 76, .16), rgba(217, 135, 50, .10)),
        rgba(24, 21, 16, .92);
    }

    .strip-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
    }

    .track {
      display: flex;
      gap: 18px;
      overflow-x: auto;
      padding: 6px 2px 18px;
      scroll-snap-type: x mandatory;
      scrollbar-width: thin;
      scrollbar-color: rgba(242, 201, 76, .58) rgba(255,255,255,.08);
    }

    .track::-webkit-scrollbar {
      height: 8px;
    }

    .track::-webkit-scrollbar-track {
      background: rgba(255,255,255,.06);
      border-radius: 999px;
    }

    .track::-webkit-scrollbar-thumb {
      background: rgba(242, 201, 76, .62);
      border-radius: 999px;
    }

    .track-card {
      min-width: 228px;
      width: 228px;
      min-height: 286px;
      border-radius: 24px;
      overflow: hidden;
      position: relative;
      border: 1px solid rgba(255,255,255,.10);
      background: var(--color-panel);
      box-shadow: var(--shadow-soft);
      scroll-snap-align: start;
      transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    }

    .track-card.large {
      min-width: 280px;
      width: 280px;
    }

    .track-card:hover {
      transform: scale(1.035) translateY(-4px);
      border-color: rgba(242, 201, 76, .34);
      box-shadow: var(--shadow-warm);
    }

    .abstract-cover {
      height: 100%;
      min-height: 286px;
      background:
        radial-gradient(circle at 22% 18%, rgba(255, 247, 225, .18), transparent 26%),
        radial-gradient(circle at 74% 32%, rgba(242, 201, 76, .34), transparent 28%),
        linear-gradient(145deg, #2b2217, #12100d 55%, #080806);
      position: relative;
    }

    .abstract-cover::before {
      content: "";
      position: absolute;
      width: 155px;
      height: 92px;
      border: 18px solid rgba(242, 201, 76, .22);
      border-left-color: transparent;
      border-top-color: transparent;
      border-radius: 50%;
      right: -28px;
      top: 36px;
      transform: rotate(-25deg);
    }

    .abstract-cover::after {
      content: attr(data-letter);
      position: absolute;
      top: 24px;
      left: 22px;
      color: rgba(255, 247, 225, .10);
      font-size: 84px;
      font-weight: 900;
      line-height: 1;
    }

    .card-overlay {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      min-height: 48%;
      padding: 18px;
      background: linear-gradient(180deg, rgba(17,16,14,.20), rgba(17,16,14,.86) 34%, rgba(17,16,14,.95));
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      transition: background var(--transition);
    }

    .track-card:hover .card-overlay {
      background: linear-gradient(180deg, rgba(17,16,14,.10), rgba(17,16,14,.82) 26%, rgba(17,16,14,.98));
    }

    .card-overlay p {
      color: var(--color-muted);
      font-size: 13px;
      margin-bottom: 12px;
    }

    .card-title {
      font-weight: 800;
      color: var(--color-cream);
      line-height: 1.3;
      margin: 10px 0 7px;
    }

    .steps-panel {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }

    .step-card {
      position: relative;
      padding: 22px;
      min-height: 202px;
      border-radius: 24px;
      background: linear-gradient(145deg, rgba(34, 29, 20, .92), rgba(15, 14, 11, .96));
      border: 1px solid var(--color-border);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
      transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    }

    .step-card:hover {
      transform: translateY(-5px);
      border-color: rgba(242, 201, 76, .32);
      box-shadow: var(--shadow-warm);
    }

    .step-num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      margin-bottom: 18px;
      border-radius: 15px;
      background: var(--color-yellow);
      color: #17120a;
      font-weight: 900;
      box-shadow: 0 10px 22px rgba(242, 201, 76, .18);
    }

    .step-card p {
      color: var(--color-muted);
      font-size: 14px;
      margin-bottom: 0;
    }

    .split-panel {
      display: grid;
      grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
      gap: 20px;
      align-items: stretch;
    }

    .light-panel {
      background: var(--color-cream);
      color: #1b150c;
      border-radius: var(--radius-xl);
      padding: 30px;
      box-shadow: 0 22px 54px rgba(0, 0, 0, .22);
      position: relative;
      overflow: hidden;
    }

    .light-panel::after {
      content: "";
      position: absolute;
      right: -80px;
      bottom: -85px;
      width: 220px;
      height: 220px;
      background: rgba(242, 201, 76, .38);
      border-radius: 50%;
    }

    .light-panel p {
      color: rgba(27, 21, 12, .70);
      position: relative;
      z-index: 1;
    }

    .scenario-list {
      position: relative;
      z-index: 1;
      list-style: none;
      padding: 0;
      margin: 20px 0 0;
      display: grid;
      gap: 12px;
    }

    .scenario-list li {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      padding: 14px;
      border-radius: 16px;
      background: rgba(17,16,14,.06);
      border: 1px solid rgba(17,16,14,.08);
      font-weight: 700;
    }

    .scenario-list li span {
      color: var(--color-orange);
      font-weight: 900;
    }

    .progress-panel {
      border-radius: var(--radius-xl);
      border: 1px solid var(--color-border);
      background:
        radial-gradient(circle at 80% 12%, rgba(242, 201, 76, .16), transparent 28%),
        linear-gradient(145deg, rgba(34, 29, 20, .92), rgba(12, 11, 9, .96));
      padding: 28px;
      box-shadow: var(--shadow-soft);
    }

    .progress-bar-wrap {
      height: 14px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .08);
      overflow: hidden;
      margin: 22px 0 20px;
      border: 1px solid rgba(255, 255, 255, .08);
    }

    .progress-bar-fill {
      height: 100%;
      width: 76%;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--color-yellow), var(--color-orange));
      box-shadow: 0 0 24px rgba(242, 201, 76, .34);
    }

    .check-grid {
      display: grid;
      gap: 12px;
    }

    .check-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 13px 14px;
      border-radius: 16px;
      background: rgba(255, 247, 225, .06);
      border: 1px solid rgba(255, 247, 225, .10);
      color: rgba(255, 248, 231, .82);
      font-size: 14px;
    }

    .check-dot {
      width: 22px;
      height: 22px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      background: rgba(242, 201, 76, .16);
      color: var(--color-yellow);
      border: 1px solid rgba(242, 201, 76, .38);
      font-weight: 900;
      flex: 0 0 auto;
    }

    .check-item.pending .check-dot {
      background: rgba(255, 247, 225, .06);
      color: var(--color-faint);
      border-color: rgba(255, 247, 225, .14);
    }

    .directory-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(190px, 1fr));
      gap: 16px;
      overflow-x: auto;
      padding-bottom: 12px;
    }

    .directory-card {
      min-height: 170px;
      border-radius: 22px;
      padding: 20px;
      background: rgba(255, 247, 225, .06);
      border: 1px solid rgba(255, 247, 225, .10);
      transition: transform var(--transition), background var(--transition), border-color var(--transition);
    }

    .directory-card:hover {
      transform: translateY(-5px);
      background: rgba(242, 201, 76, .10);
      border-color: rgba(242, 201, 76, .28);
    }

    .directory-card strong {
      display: block;
      margin: 10px 0 8px;
      font-size: 18px;
    }

    .directory-card p {
      color: var(--color-muted);
      font-size: 13px;
      margin-bottom: 14px;
    }

    .news-wrap {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 340px;
      gap: 20px;
      align-items: start;
    }

    .news-list,
    .recommend-box {
      border-radius: var(--radius-xl);
      border: 1px solid var(--color-border);
      background: rgba(24, 21, 16, .88);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }

    .news-item {
      display: grid;
      grid-template-columns: 102px 1fr auto;
      gap: 16px;
      align-items: center;
      padding: 18px 20px;
      border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .news-item:last-child {
      border-bottom: 0;
    }

    .news-date {
      color: var(--color-yellow);
      font-weight: 900;
      font-size: 13px;
    }

    .news-item a {
      font-weight: 800;
      color: var(--color-cream);
    }

    .news-item a:hover {
      color: var(--color-yellow);
    }

    .news-item p {
      margin: 4px 0 0;
      color: var(--color-muted);
      font-size: 13px;
    }

    .arrow-link {
      color: var(--color-faint);
      font-weight: 900;
      font-size: 20px;
    }

    .recommend-box {
      padding: 24px;
      position: sticky;
      top: 118px;
    }

    .recommend-box p {
      color: var(--color-muted);
      font-size: 14px;
    }

    .update-line {
      display: grid;
      gap: 12px;
      margin-top: 18px;
    }

    .update-item {
      display: flex;
      gap: 12px;
      padding: 13px;
      border-radius: 16px;
      background: rgba(255, 247, 225, .06);
      border: 1px solid rgba(255, 247, 225, .10);
      font-size: 14px;
    }

    .update-item b {
      color: var(--color-yellow);
      white-space: nowrap;
    }

    .cta-panel {
      border-radius: 34px;
      padding: clamp(28px, 5vw, 48px);
      background:
        radial-gradient(circle at 12% 18%, rgba(255, 247, 225, .16), transparent 24%),
        radial-gradient(circle at 84% 18%, rgba(242, 201, 76, .28), transparent 30%),
        linear-gradient(135deg, #2c2114, #11100e 64%);
      border: 1px solid rgba(242, 201, 76, .22);
      box-shadow: var(--shadow-warm);
      overflow: hidden;
      position: relative;
    }

    .cta-panel::after {
      content: "";
      position: absolute;
      width: 360px;
      height: 210px;
      border: 32px solid rgba(242, 201, 76, .16);
      border-left-color: transparent;
      border-top-color: transparent;
      border-radius: 50%;
      right: -80px;
      bottom: -70px;
      transform: rotate(-14deg);
    }

    .cta-content {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px;
      align-items: center;
    }

    .cta-content p {
      color: var(--color-muted);
      max-width: 760px;
      margin-bottom: 0;
    }

    .cta-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .accordion {
      background: transparent;
      display: grid;
      gap: 12px;
    }

    .accordion-item {
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid var(--color-border);
      background: rgba(24, 21, 16, .88);
      box-shadow: 0 10px 28px rgba(0,0,0,.18);
    }

    .accordion-title {
      color: var(--color-cream);
      font-size: 16px;
      font-weight: 800;
      padding: 20px 22px;
      border: 0;
      background: transparent;
      position: relative;
    }

    .accordion-title:hover,
    .accordion-title:focus {
      background: rgba(242, 201, 76, .08);
      color: var(--color-yellow);
    }

    .accordion-title::before {
      color: var(--color-yellow);
      right: 20px;
      margin-top: -12px;
      font-size: 22px;
    }

    .accordion-content {
      background: rgba(8, 8, 6, .30);
      border: 0;
      color: var(--color-muted);
      padding: 0 22px 22px;
      font-size: 15px;
      position: relative;
    }

    .is-active > .accordion-title {
      color: var(--color-yellow);
    }

    .is-active > .accordion-content {
      border-left: 4px solid var(--color-yellow);
    }

    .floating-cta {
      position: fixed;
      left: 50%;
      bottom: 18px;
      transform: translateX(-50%);
      z-index: 45;
      width: min(760px, calc(100% - 28px));
      padding: 10px;
      border-radius: 22px;
      background: rgba(20, 18, 14, .90);
      border: 1px solid rgba(242, 201, 76, .24);
      box-shadow: 0 18px 52px rgba(0,0,0,.44);
      backdrop-filter: blur(14px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .floating-cta span {
      color: rgba(255, 248, 231, .78);
      font-size: 13px;
      padding-left: 8px;
    }

    .floating-cta .button {
      padding: 10px 16px;
      font-size: 13px;
      white-space: nowrap;
    }

    .site-footer {
      padding: 54px 0 92px;
      background: linear-gradient(180deg, rgba(8, 8, 6, .18), rgba(8, 8, 6, .92));
      border-top: 1px solid rgba(255,255,255,.08);
    }

    .footer-panel {
      border-radius: 28px;
      background: rgba(24, 21, 16, .78);
      border: 1px solid rgba(255,255,255,.09);
      padding: 28px;
      box-shadow: var(--shadow-soft);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr .8fr;
      gap: 28px;
    }

    .footer-logo {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      font-weight: 900;
      margin-bottom: 12px;
    }

    .footer-panel p {
      color: var(--color-muted);
      font-size: 14px;
      margin-bottom: 10px;
    }

    .footer-links {
      display: grid;
      gap: 10px;
    }

    .footer-links a {
      color: rgba(255, 248, 231, .72);
      font-weight: 700;
      font-size: 14px;
    }

    .footer-links a:hover {
      color: var(--color-yellow);
      transform: translateX(2px);
    }

    .copyright {
      margin-top: 22px;
      padding-top: 18px;
      border-top: 1px solid rgba(255,255,255,.08);
      color: var(--color-faint);
      font-size: 13px;
    }

    @media screen and (max-width: 1024px) {
      .hero-bento,
      .split-panel,
      .news-wrap,
      .cta-content {
        grid-template-columns: 1fr;
      }

      .hero-side {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
      }

      .steps-panel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .directory-grid {
        grid-template-columns: repeat(5, 210px);
      }

      .recommend-box {
        position: relative;
        top: auto;
      }

      .cta-actions {
        justify-content: flex-start;
      }
    }

    @media screen and (max-width: 768px) {
      .site-header {
        top: 10px;
        margin-top: 10px;
      }

      .nav-panel {
        margin: 0 12px;
        border-radius: 20px;
      }

      .title-bar {
        background: transparent;
        padding: 0;
      }

      .top-bar {
        padding: 0;
        display: block;
      }

      .top-bar-left,
      .top-bar-right {
        width: 100%;
      }

      .brand-logo {
        min-width: auto;
        width: calc(100% - 48px);
      }

      .nav-links {
        margin: 12px 0 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
      }

      .nav-link {
        width: 100%;
      }

      .nav-cta {
        margin: 12px 0 0;
      }

      .nav-cta .button {
        width: 100%;
      }

      .section {
        padding: 56px 0;
      }

      .hero {
        padding-top: 26px;
      }

      .hero-main {
        min-height: auto;
        padding: 26px;
      }

      .hero-side {
        grid-template-columns: 1fr;
      }

      .hero-cta-strip {
        grid-template-columns: 1fr;
      }

      .hero-metrics {
        grid-template-columns: 1fr;
      }

      .steps-panel {
        grid-template-columns: 1fr;
      }

      .track-card {
        min-width: 78vw;
        width: 78vw;
      }

      .track-card.large {
        min-width: 82vw;
        width: 82vw;
      }

      .news-item {
        grid-template-columns: 1fr auto;
      }

      .news-date {
        grid-column: 1 / -1;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .floating-cta {
        align-items: stretch;
        flex-direction: column;
      }

      .floating-cta span {
        padding-left: 0;
      }
    }

    @media screen and (max-width: 520px) {
      .grid-container.custom-container {
        padding-left: 14px;
        padding-right: 14px;
      }

      h1 {
        font-size: 32px;
      }

      .hero-actions,
      .cta-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .hero-actions .button,
      .cta-actions .button {
        width: 100%;
      }

      .age-note {
        display: block;
      }

      .age-note strong {
        display: block;
        margin-bottom: 4px;
      }

      .light-panel,
      .progress-panel,
      .cta-panel {
        padding: 22px;
        border-radius: 24px;
      }

      .directory-card {
        min-width: 78vw;
      }
    }

/* roulang page: category1 */
:root{
      --bg:#11100e;
      --bg-2:#17140f;
      --panel:#1f1a13;
      --panel-soft:#2a2117;
      --cream:#fff7e1;
      --cream-2:#f8edcf;
      --text:#fff9e9;
      --muted:#c8bda3;
      --muted-2:#9f9278;
      --yellow:#f2c94c;
      --orange:#d98732;
      --brown:#4a321d;
      --line:rgba(255,255,255,.09);
      --line-warm:rgba(242,201,76,.22);
      --shadow:0 20px 54px rgba(0,0,0,.36);
      --shadow-warm:0 18px 42px rgba(217,135,50,.17);
      --radius-xl:28px;
      --radius-lg:22px;
      --radius-md:16px;
      --radius-sm:12px;
      --ease:180ms ease;
      --container:1220px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:"PingFang SC","Microsoft YaHei","Noto Sans SC",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 12% 4%, rgba(242,201,76,.16), transparent 34%),
        radial-gradient(circle at 88% 20%, rgba(217,135,50,.13), transparent 32%),
        linear-gradient(180deg,#11100e 0%,#17120c 46%,#100f0d 100%);
      line-height:1.7;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:color var(--ease),background var(--ease),border-color var(--ease),transform var(--ease),box-shadow var(--ease)}
    a:hover,a:focus{color:var(--yellow)}
    button,.button{font-family:inherit}
    img{max-width:100%;height:auto;display:block}
    :focus-visible{outline:3px solid rgba(242,201,76,.55);outline-offset:3px;border-radius:12px}
    .custom-container{max-width:var(--container);margin:0 auto}
    .section{padding:86px 0}
    .section-tight{padding:58px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border:1px solid var(--line-warm);
      border-radius:999px;
      color:var(--yellow);
      background:rgba(242,201,76,.08);
      font-size:13px;
      font-weight:700;
      letter-spacing:.02em;
    }
    .eyebrow::before{
      content:"";
      width:8px;
      height:8px;
      border-radius:99px;
      background:var(--yellow);
      box-shadow:0 0 18px rgba(242,201,76,.75);
    }
    h1,h2,h3,p{margin-top:0}
    h1{
      margin:18px 0 18px;
      font-size:clamp(32px,5vw,52px);
      line-height:1.12;
      font-weight:800;
      letter-spacing:-.04em;
    }
    h2{
      margin:0 0 14px;
      font-size:clamp(25px,3.2vw,35px);
      line-height:1.2;
      font-weight:800;
      letter-spacing:-.03em;
    }
    h3{
      font-size:20px;
      line-height:1.35;
      font-weight:800;
      margin-bottom:10px;
    }
    p{color:var(--muted);font-size:16px}
    .lead{font-size:17px;color:#eadfc5;max-width:720px}
    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      padding:22px 16px 10px;
      background:linear-gradient(180deg,rgba(17,16,14,.94),rgba(17,16,14,.72) 70%,transparent);
      backdrop-filter:blur(14px);
    }
    .nav-panel{
      max-width:var(--container);
      margin:0 auto;
      border:1px solid var(--line);
      border-radius:24px;
      background:rgba(31,26,19,.86);
      box-shadow:0 18px 44px rgba(0,0,0,.28);
      overflow:hidden;
    }
    .title-bar{
      background:transparent;
      color:var(--text);
      padding:13px 14px;
      justify-content:space-between;
    }
    .menu-icon::after{
      background:var(--yellow);
      box-shadow:0 7px 0 var(--yellow),0 14px 0 var(--yellow);
    }
    .top-bar{
      background:transparent;
      padding:12px;
      gap:14px;
      flex-wrap:wrap;
    }
    .top-bar ul{background:transparent}
    .top-bar-left,.top-bar-right{display:flex;align-items:center}
    .brand-logo{
      display:inline-flex;
      align-items:center;
      gap:10px;
      min-height:44px;
      padding:8px 12px;
      border-radius:16px;
      color:var(--text);
      font-weight:800;
      letter-spacing:-.02em;
      background:rgba(255,255,255,.045);
      border:1px solid rgba(255,255,255,.07);
      white-space:nowrap;
    }
    .brand-logo:hover{background:rgba(242,201,76,.1);color:var(--cream)}
    .brand-mark{
      width:24px;
      height:24px;
      border-radius:50%;
      display:inline-block;
      background:
        radial-gradient(circle at 35% 32%,#fff2a7 0 18%,transparent 19%),
        conic-gradient(from 210deg,var(--yellow),var(--orange),var(--yellow));
      box-shadow:0 0 20px rgba(242,201,76,.45);
      position:relative;
      flex:0 0 auto;
    }
    .brand-mark::after{
      content:"";
      position:absolute;
      width:20px;
      height:9px;
      border:3px solid var(--bg);
      border-left:none;
      border-bottom:none;
      border-radius:50%;
      left:5px;
      top:8px;
      transform:rotate(-18deg);
      opacity:.45;
    }
    .nav-links{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
      padding-left:8px;
    }
    .nav-link{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:42px;
      padding:10px 15px;
      border-radius:15px;
      color:var(--cream-2);
      font-weight:700;
      font-size:14px;
      background:rgba(255,255,255,.045);
      border:1px solid rgba(255,255,255,.07);
    }
    .nav-link:hover{
      transform:translateY(-2px);
      border-color:var(--line-warm);
      background:rgba(242,201,76,.11);
      color:var(--yellow);
    }
    .nav-link.active{
      background:var(--yellow);
      color:#17120c;
      border-color:transparent;
      box-shadow:0 12px 26px rgba(242,201,76,.22);
    }
    .nav-cta{display:flex;align-items:center;gap:10px}
    .button{
      border-radius:999px;
      font-weight:800;
      letter-spacing:.01em;
      margin:0;
      transition:transform var(--ease),box-shadow var(--ease),background var(--ease),border-color var(--ease),color var(--ease);
    }
    .button.primary-action,.button.primary-action:focus{
      background:var(--yellow);
      color:#15130f;
      border:1px solid transparent;
      box-shadow:0 16px 30px rgba(242,201,76,.2);
    }
    .button.primary-action:hover{
      background:var(--orange);
      color:#11100e;
      transform:translateY(-2px);
      box-shadow:0 20px 36px rgba(217,135,50,.28);
    }
    .button.secondary-action{
      background:rgba(255,255,255,.05);
      color:var(--cream);
      border:1px solid var(--line);
    }
    .button.secondary-action:hover{
      background:rgba(242,201,76,.08);
      border-color:var(--yellow);
      color:var(--yellow);
      transform:translateY(-2px);
    }
    .category-hero{
      position:relative;
      padding:64px 0 34px;
      overflow:hidden;
    }
    .category-hero::before{
      content:"";
      position:absolute;
      inset:18px 0 auto 0;
      height:430px;
      background:
        radial-gradient(circle at 72% 36%, rgba(242,201,76,.24), transparent 34%),
        linear-gradient(135deg, rgba(255,247,225,.06), transparent 45%);
      pointer-events:none;
    }
    .hero-panel{
      position:relative;
      border-radius:var(--radius-xl);
      border:1px solid var(--line);
      background:
        linear-gradient(135deg,rgba(31,26,19,.92),rgba(17,16,14,.92)),
        repeating-linear-gradient(135deg,rgba(242,201,76,.08) 0 1px,transparent 1px 18px);
      box-shadow:var(--shadow);
      overflow:hidden;
      padding:34px;
    }
    .hero-panel::after{
      content:"";
      position:absolute;
      right:-120px;
      top:-130px;
      width:360px;
      height:360px;
      border:42px solid rgba(242,201,76,.13);
      border-left-color:transparent;
      border-bottom-color:transparent;
      border-radius:50%;
      transform:rotate(16deg);
      pointer-events:none;
    }
    .breadcrumb-line{
      display:flex;
      align-items:center;
      gap:8px;
      color:var(--muted-2);
      font-size:13px;
      margin-bottom:14px;
    }
    .breadcrumb-line a{color:var(--cream-2)}
    .breadcrumb-line a:hover{color:var(--yellow)}
    .hero-actions{
      display:flex;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
      margin-top:26px;
    }
    .age-note{
      display:flex;
      align-items:flex-start;
      gap:10px;
      margin-top:20px;
      padding:12px 14px;
      max-width:640px;
      border:1px solid rgba(217,135,50,.28);
      border-radius:16px;
      background:rgba(217,135,50,.09);
      color:#f3dfbb;
      font-size:14px;
    }
    .age-note strong{color:var(--yellow)}
    .filter-console{
      position:relative;
      z-index:1;
      padding:18px;
      border-radius:24px;
      border:1px solid var(--line);
      background:rgba(17,16,14,.62);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
    }
    .console-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom:15px;
    }
    .console-title{font-weight:800;color:var(--cream);font-size:16px}
    .status-pill{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:7px 10px;
      border-radius:999px;
      color:#17120c;
      background:var(--yellow);
      font-size:12px;
      font-weight:800;
      white-space:nowrap;
    }
    .tag-matrix{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:12px;
    }
    .tag-card{
      min-height:86px;
      padding:14px;
      border-radius:18px;
      border:1px solid rgba(255,255,255,.08);
      background:rgba(255,255,255,.045);
      transition:transform var(--ease),background var(--ease),border-color var(--ease);
    }
    .tag-card:hover{
      transform:translateY(-3px);
      border-color:var(--line-warm);
      background:rgba(242,201,76,.09);
    }
    .tag-card.active{
      background:linear-gradient(135deg,var(--yellow),#f6d977);
      color:#15130f;
      border-color:transparent;
    }
    .tag-card span{display:block;font-size:12px;font-weight:800;color:inherit;opacity:.75;margin-bottom:5px}
    .tag-card strong{display:block;font-size:16px;line-height:1.25}
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:20px;
      margin-bottom:24px;
    }
    .section-head p{max-width:630px;margin-bottom:0}
    .filter-panel{
      padding:18px;
      border:1px solid var(--line);
      border-radius:24px;
      background:rgba(31,26,19,.68);
      box-shadow:var(--shadow-warm);
    }
    .filter-row{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      margin:12px 0;
    }
    .filter-label{
      width:100%;
      color:var(--muted-2);
      font-size:13px;
      font-weight:800;
      margin-top:4px;
    }
    .chip{
      display:inline-flex;
      align-items:center;
      min-height:38px;
      padding:8px 13px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.08);
      background:rgba(255,255,255,.045);
      color:var(--cream-2);
      font-size:14px;
      font-weight:700;
      cursor:default;
    }
    .chip.current{
      background:var(--yellow);
      color:#17120c;
      border-color:transparent;
    }
    .chip:hover{
      border-color:var(--yellow);
      background:rgba(242,201,76,.1);
      color:var(--yellow);
    }
    .chip.current:hover{color:#17120c;background:var(--orange)}
    .track-block{
      margin-top:26px;
      padding:22px;
      border-radius:28px;
      background:rgba(255,255,255,.035);
      border:1px solid var(--line);
      overflow:hidden;
    }
    .track-title{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      margin-bottom:18px;
    }
    .track-title h3{margin:0}
    .track-title span{
      color:var(--muted-2);
      font-size:13px;
      font-weight:700;
    }
    .content-track{
      display:grid;
      grid-auto-flow:column;
      grid-auto-columns:minmax(220px,1fr);
      gap:18px;
      overflow-x:auto;
      padding:4px 4px 16px;
      scrollbar-width:thin;
      scrollbar-color:var(--yellow) rgba(255,255,255,.08);
    }
    .content-track::-webkit-scrollbar{height:8px}
    .content-track::-webkit-scrollbar-track{background:rgba(255,255,255,.06);border-radius:999px}
    .content-track::-webkit-scrollbar-thumb{background:linear-gradient(90deg,var(--yellow),var(--orange));border-radius:999px}
    .rail-card{
      position:relative;
      min-height:292px;
      border-radius:22px;
      overflow:hidden;
      border:1px solid rgba(255,255,255,.08);
      background:var(--panel);
      box-shadow:0 16px 34px rgba(0,0,0,.24);
      transition:transform 220ms ease,box-shadow 220ms ease,border-color 220ms ease;
    }
    .rail-card:hover{
      transform:scale(1.035) translateY(-4px);
      border-color:rgba(242,201,76,.5);
      box-shadow:0 24px 46px rgba(0,0,0,.36);
    }
    .cover{
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at 30% 18%,rgba(255,247,225,.2),transparent 24%),
        radial-gradient(circle at 82% 28%,rgba(242,201,76,.32),transparent 25%),
        linear-gradient(135deg,#302113,#15130f 58%,#0f0e0c);
    }
    .cover::before{
      content:"";
      position:absolute;
      width:190px;
      height:190px;
      right:-66px;
      top:-42px;
      border-radius:50%;
      border:28px solid rgba(242,201,76,.22);
      border-left-color:transparent;
      transform:rotate(-24deg);
    }
    .cover::after{
      content:"";
      position:absolute;
      left:18px;
      top:18px;
      width:54px;
      height:54px;
      border-radius:18px;
      background:rgba(255,247,225,.1);
      border:1px solid rgba(255,255,255,.14);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
    }
    .rail-card:nth-child(2n) .cover{
      background:
        radial-gradient(circle at 70% 14%,rgba(217,135,50,.32),transparent 28%),
        linear-gradient(145deg,#18130e,#3b2715 55%,#100f0d);
    }
    .rail-card:nth-child(3n) .cover{
      background:
        radial-gradient(circle at 40% 18%,rgba(242,201,76,.26),transparent 25%),
        repeating-linear-gradient(135deg,rgba(255,255,255,.055) 0 1px,transparent 1px 16px),
        linear-gradient(145deg,#15130f,#271c12);
    }
    .rail-info{
      position:absolute;
      left:0;
      right:0;
      bottom:0;
      padding:18px;
      min-height:55%;
      display:flex;
      flex-direction:column;
      justify-content:flex-end;
      background:linear-gradient(180deg,rgba(17,16,14,.16),rgba(17,16,14,.86) 30%,rgba(17,16,14,.95));
      transition:background var(--ease),min-height var(--ease);
    }
    .rail-card:hover .rail-info{
      min-height:64%;
      background:linear-gradient(180deg,rgba(17,16,14,.1),rgba(17,16,14,.9) 22%,rgba(17,16,14,.98));
    }
    .rail-tag{
      align-self:flex-start;
      display:inline-flex;
      padding:5px 9px;
      border-radius:999px;
      background:rgba(242,201,76,.16);
      border:1px solid rgba(242,201,76,.3);
      color:var(--yellow);
      font-size:12px;
      font-weight:800;
      margin-bottom:10px;
    }
    .rail-info h4{
      margin:0 0 8px;
      color:var(--cream);
      font-size:18px;
      line-height:1.32;
      font-weight:800;
    }
    .rail-info p{
      font-size:13px;
      color:#d6c9ad;
      margin-bottom:14px;
      line-height:1.55;
    }
    .mini-btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      align-self:flex-start;
      min-height:34px;
      padding:7px 12px;
      border-radius:999px;
      background:rgba(255,247,225,.1);
      border:1px solid rgba(255,255,255,.12);
      color:var(--cream);
      font-size:13px;
      font-weight:800;
    }
    .mini-btn:hover{background:var(--yellow);color:#15130f;border-color:transparent}
    .explain-panel{
      border-radius:var(--radius-xl);
      border:1px solid var(--line);
      background:linear-gradient(135deg,rgba(255,247,225,.09),rgba(255,255,255,.035));
      padding:28px;
      box-shadow:var(--shadow);
      height:100%;
    }
    .notice-list{
      display:grid;
      gap:12px;
      margin:22px 0 0;
      padding:0;
      list-style:none;
    }
    .notice-list li{
      display:flex;
      gap:12px;
      padding:14px;
      border-radius:16px;
      border:1px solid rgba(255,255,255,.08);
      background:rgba(17,16,14,.42);
      color:#e7dcc2;
      font-size:14px;
    }
    .notice-list li::before{
      content:"✓";
      flex:0 0 24px;
      width:24px;
      height:24px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border-radius:50%;
      background:rgba(242,201,76,.15);
      color:var(--yellow);
      font-weight:900;
    }
    .check-card{
      border-radius:var(--radius-xl);
      background:var(--cream);
      color:#17120c;
      padding:26px;
      box-shadow:0 24px 48px rgba(0,0,0,.22);
      height:100%;
    }
    .check-card h3,.check-card p{color:#17120c}
    .check-card p{opacity:.72}
    .progress-line{
      height:12px;
      border-radius:999px;
      overflow:hidden;
      background:rgba(17,16,14,.1);
      margin:20px 0;
    }
    .progress-line span{
      display:block;
      width:76%;
      height:100%;
      border-radius:inherit;
      background:linear-gradient(90deg,var(--yellow),var(--orange));
      box-shadow:0 8px 16px rgba(217,135,50,.25);
    }
    .check-items{
      display:grid;
      gap:10px;
      margin:0;
      padding:0;
      list-style:none;
    }
    .check-items li{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:12px 0;
      border-bottom:1px solid rgba(17,16,14,.08);
      font-weight:700;
      color:#2d2419;
    }
    .check-items li:last-child{border-bottom:0}
    .state{
      flex:0 0 auto;
      padding:5px 9px;
      border-radius:999px;
      background:#17120c;
      color:var(--yellow);
      font-size:12px;
      font-weight:900;
    }
    .state.pending{background:rgba(217,135,50,.14);color:#8a4f16}
    .cta-panel{
      position:relative;
      overflow:hidden;
      border-radius:32px;
      border:1px solid var(--line-warm);
      background:
        radial-gradient(circle at 82% 22%,rgba(242,201,76,.28),transparent 30%),
        linear-gradient(135deg,#21170f,#11100e 68%);
      padding:34px;
      box-shadow:var(--shadow);
    }
    .cta-panel::before{
      content:"";
      position:absolute;
      inset:auto -80px -120px auto;
      width:280px;
      height:280px;
      border-radius:50%;
      border:38px solid rgba(242,201,76,.15);
      border-top-color:transparent;
      transform:rotate(18deg);
    }
    .cta-panel>*{position:relative;z-index:1}
    .cta-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:22px}
    .accordion{
      background:transparent;
      display:grid;
      gap:12px;
    }
    .accordion-item{
      border-radius:20px!important;
      overflow:hidden;
      border:1px solid var(--line);
      background:rgba(31,26,19,.72);
    }
    .accordion-title{
      border:0!important;
      color:var(--cream)!important;
      background:rgba(255,255,255,.035)!important;
      font-size:16px;
      font-weight:800;
      padding:18px 52px 18px 22px;
    }
    .accordion-title:hover,.accordion-title:focus{
      background:rgba(242,201,76,.08)!important;
      color:var(--yellow)!important;
    }
    .accordion-title::before{color:var(--yellow);font-size:22px;margin-top:-12px}
    .accordion-content{
      border:0!important;
      background:rgba(17,16,14,.5)!important;
      color:var(--muted);
      padding:0 22px 20px 22px;
      position:relative;
    }
    .accordion-content::before{
      content:"";
      position:absolute;
      left:0;
      top:0;
      bottom:20px;
      width:4px;
      border-radius:99px;
      background:var(--yellow);
    }
    .accordion-content p{margin:0;font-size:15px}
    .site-footer{
      padding:36px 0 44px;
      background:linear-gradient(180deg,transparent,rgba(0,0,0,.3));
    }
    .footer-panel{
      border-radius:28px;
      border:1px solid var(--line);
      background:rgba(31,26,19,.78);
      box-shadow:var(--shadow);
      padding:28px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.5fr .8fr 1fr;
      gap:30px;
    }
    .footer-logo{
      display:inline-flex;
      align-items:center;
      gap:10px;
      font-weight:900;
      color:var(--cream);
      margin-bottom:12px;
    }
    .footer-panel h3{
      color:var(--cream);
      font-size:16px;
      margin-bottom:12px;
    }
    .footer-panel p{font-size:14px;margin-bottom:10px}
    .footer-links{display:grid;gap:9px}
    .footer-links a{
      color:var(--muted);
      font-size:14px;
      font-weight:700;
    }
    .footer-links a:hover{color:var(--yellow);transform:translateX(3px)}
    .copyright{
      margin-top:22px;
      padding-top:18px;
      border-top:1px solid var(--line);
      color:var(--muted-2);
      font-size:13px;
    }
    @media (min-width: 1024px){
      .content-track{grid-auto-columns:calc((100% - 72px)/4)}
    }
    @media (max-width: 1023px){
      .site-header{padding-top:14px}
      .hero-panel{padding:26px}
      .section{padding:68px 0}
      .footer-grid{grid-template-columns:1fr 1fr}
      .content-track{grid-auto-columns:minmax(230px,34vw)}
    }
    @media (max-width: 767px){
      .site-header{padding:10px}
      .nav-panel{border-radius:20px}
      .top-bar{
        padding:10px;
        display:block;
      }
      .top-bar-left,.top-bar-right{display:block;width:100%}
      .top-bar-left.show-for-medium{display:none!important}
      .nav-links{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:10px;
        padding:8px 0 10px;
      }
      .nav-link{width:100%;min-height:44px}
      .nav-cta .button{width:100%}
      .category-hero{padding:34px 0 18px}
      .hero-panel{padding:22px;border-radius:24px}
      .tag-matrix{grid-template-columns:1fr}
      .section,.section-tight{padding:52px 0}
      .section-head{
        display:block;
      }
      .track-block{padding:16px;border-radius:22px}
      .track-title{align-items:flex-start;display:block}
      .track-title span{display:block;margin-top:4px}
      .content-track{grid-auto-columns:78vw;gap:14px}
      .rail-card{min-height:282px}
      .footer-grid{grid-template-columns:1fr}
      .cta-panel,.explain-panel,.check-card{padding:22px;border-radius:24px}
      .hero-actions .button,.cta-actions .button{width:100%}
    }
    @media (max-width: 520px){
      h1{font-size:31px}
      .lead{font-size:15px}
      .breadcrumb-line{flex-wrap:wrap}
      .filter-panel{padding:14px}
      .chip{font-size:13px}
      .content-track{grid-auto-columns:84vw}
      .footer-panel{padding:22px}
    }
