/* roulang page: index */
:root {
      --bg: #090c12;
      --bg-2: #0e1420;
      --bg-3: #121a28;
      --panel: #131a26;
      --panel-2: #172132;
      --line: rgba(255, 255, 255, 0.09);
      --line-strong: rgba(255, 255, 255, 0.15);
      --text: #f4f7fb;
      --muted: #a4afc1;
      --soft: #dce4f0;
      --gold: #d7aa4d;
      --gold-2: #f0c97b;
      --cyan: #71d7e5;
      --emerald: #84e0b2;
      --danger: #ef7b7b;
      --shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
      --shadow-soft: 0 12px 24px rgba(0, 0, 0, 0.22);
      --radius: 8px;
      --radius-lg: 12px;
      --container: 1200px;
      --gap: 24px;
      --transition: 180ms ease;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-height: 100vh;
      color: var(--text);
      background:
        linear-gradient(180deg, #080b11 0%, #0a1018 42%, #090c12 100%);
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", "Segoe UI", sans-serif;
      line-height: 1.65;
      letter-spacing: 0;
      overflow-x: hidden;
      position: relative;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background:
        repeating-linear-gradient(90deg, rgba(103, 214, 232, 0.05) 0 1px, transparent 1px 120px),
        repeating-linear-gradient(0deg, rgba(215, 170, 77, 0.04) 0 1px, transparent 1px 120px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.02), transparent 42%, rgba(255, 255, 255, 0.01));
      opacity: 0.42;
      mix-blend-mode: screen;
    }

    body::after {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 22%),
        linear-gradient(90deg, transparent 0, rgba(215, 170, 77, 0.04) 50%, transparent 100%);
      opacity: 0.45;
    }

    ::selection {
      background: rgba(215, 170, 77, 0.28);
      color: var(--text);
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img,
    svg {
      display: block;
      max-width: 100%;
    }

    button,
    input,
    textarea,
    select {
      font: inherit;
      color: inherit;
    }

    button {
      border: 0;
      background: none;
      cursor: pointer;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .container {
      width: min(calc(100% - 32px), var(--container));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 60;
      background: rgba(7, 10, 16, 0.88);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    }

    .header-inner {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      position: relative;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
      flex: 0 1 auto;
    }

    .brand-mark {
      width: 16px;
      height: 16px;
      border-radius: 4px;
      background:
        linear-gradient(135deg, var(--gold-2), var(--gold));
      box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.14) inset,
        0 0 18px rgba(215, 170, 77, 0.38);
      flex: 0 0 auto;
    }

    .brand-text {
      font-size: 1.03rem;
      font-weight: 800;
      letter-spacing: 0;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .header-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }

    .header-status {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 12px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 999px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
      color: var(--soft);
      font-size: 0.86rem;
      white-space: nowrap;
    }

    .status-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--emerald);
      box-shadow: 0 0 0 4px rgba(132, 224, 178, 0.14);
      flex: 0 0 auto;
    }

    .site-nav {
      display: flex;
      align-items: center;
      gap: 18px;
      min-width: 0;
    }

    .nav-link,
    .nav-trigger {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 0;
      color: var(--soft);
      font-size: 0.95rem;
      font-weight: 600;
      letter-spacing: 0;
      transition:
        color var(--transition),
        opacity var(--transition),
        transform var(--transition);
      white-space: nowrap;
    }

    .nav-link::after,
    .nav-trigger::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 8px;
      height: 1px;
      background: transparent;
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform var(--transition), background var(--transition);
    }

    .nav-link:hover,
    .nav-link:focus-visible,
    .nav-trigger:hover,
    .nav-trigger:focus-visible {
      color: #ffffff;
    }

    .nav-link:hover::after,
    .nav-link:focus-visible::after,
    .nav-link.active::after,
    .nav-trigger:hover::after,
    .nav-trigger:focus-visible::after {
      transform: scaleX(1);
      background: linear-gradient(90deg, var(--gold-2), var(--cyan));
    }

    .nav-link.active {
      color: var(--gold-2);
    }

    .nav-trigger {
      background: none;
      border: 0;
      cursor: pointer;
    }

    .nav-caret {
      width: 10px;
      height: 10px;
      position: relative;
      flex: 0 0 auto;
      opacity: 0.9;
      transform: translateY(1px);
    }

    .nav-caret::before,
    .nav-caret::after {
      content: "";
      position: absolute;
      width: 7px;
      height: 1.5px;
      top: 4px;
      background: currentColor;
      border-radius: 999px;
    }

    .nav-caret::before {
      left: 0;
      transform: rotate(35deg);
    }

    .nav-caret::after {
      right: 0;
      transform: rotate(-35deg);
    }

    .nav-detail {
      position: relative;
    }

    .nav-detail summary {
      list-style: none;
    }

    .nav-detail summary::-webkit-details-marker {
      display: none;
    }

    .mega-panel {
      display: none;
      position: absolute;
      top: calc(100% + 14px);
      right: 0;
      width: min(760px, 82vw);
      padding: 18px;
      border-radius: 12px;
      border: 1px solid var(--line-strong);
      background:
        linear-gradient(180deg, rgba(19, 26, 38, 0.98), rgba(12, 17, 26, 0.98));
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .mega-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, rgba(215, 170, 77, 0.08), transparent 36%),
        linear-gradient(315deg, rgba(113, 215, 229, 0.08), transparent 34%);
      pointer-events: none;
    }

    .mega-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 16px;
      position: relative;
      z-index: 1;
    }

    .mega-title {
      font-size: 0.94rem;
      font-weight: 700;
      color: #fff;
    }

    .mega-note {
      color: var(--muted);
      font-size: 0.84rem;
    }

    .mega-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
    }

    .mega-card {
      display: block;
      min-height: 130px;
      padding: 14px 14px 15px;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
      transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition),
        background var(--transition);
    }

    .mega-card:hover,
    .mega-card:focus-visible {
      transform: translateY(-2px);
      border-color: rgba(215, 170, 77, 0.42);
      box-shadow: var(--shadow-soft);
      background:
        linear-gradient(180deg, rgba(215, 170, 77, 0.09), rgba(255, 255, 255, 0.03));
    }

    .mega-card strong {
      display: block;
      font-size: 1.02rem;
      line-height: 1.3;
      margin: 10px 0 8px;
    }

    .mega-card p {
      margin: 0;
      color: var(--muted);
      font-size: 0.88rem;
      line-height: 1.55;
    }

    .mini-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 9px;
      border-radius: 999px;
      font-size: 0.76rem;
      font-weight: 700;
      color: #f2f6fb;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.08);
      white-space: nowrap;
    }

    .mini-badge.gold {
      color: #21150b;
      background: linear-gradient(135deg, var(--gold-2), var(--gold));
      border-color: rgba(255, 255, 255, 0.12);
    }

    .mini-badge.cyan {
      color: #07212b;
      background: linear-gradient(135deg, #9ee9f2, var(--cyan));
      border-color: rgba(255, 255, 255, 0.12);
    }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      align-items: center;
      justify-content: center;
      gap: 4px;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(255, 255, 255, 0.03);
      color: var(--text);
      transition:
        background var(--transition),
        border-color var(--transition),
        transform var(--transition);
      flex: 0 0 auto;
    }

    .menu-toggle:hover,
    .menu-toggle:focus-visible {
      background: rgba(215, 170, 77, 0.1);
      border-color: rgba(215, 170, 77, 0.32);
    }

    .menu-bars {
      width: 18px;
      display: grid;
      gap: 4px;
    }

    .menu-bars span {
      display: block;
      height: 1.6px;
      border-radius: 999px;
      background: currentColor;
    }

    main {
      position: relative;
      z-index: 1;
    }

    .section {
      padding: clamp(26px, 4vw, 54px) 0;
    }

    .hero {
      padding-top: 28px;
      padding-bottom: 18px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
      gap: 30px;
      align-items: stretch;
    }

    .hero-copy {
      min-width: 0;
      padding: 8px 0 8px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      width: fit-content;
      padding: 7px 11px;
      margin-bottom: 16px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(255, 255, 255, 0.04);
      color: var(--gold-2);
      font-size: 0.84rem;
      font-weight: 700;
      letter-spacing: 0;
    }

    .hero h1 {
      margin: 0;
      font-size: clamp(36px, 5vw, 64px);
      line-height: 1.04;
      letter-spacing: 0;
      text-wrap: balance;
      max-width: 11.2em;
      text-shadow: 0 12px 34px rgba(0, 0, 0, 0.26);
    }

    .hero-lead {
      margin: 18px 0 0;
      max-width: 60ch;
      color: var(--soft);
      font-size: 1.02rem;
      line-height: 1.78;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 24px;
      align-items: center;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 46px;
      padding: 0 16px;
      border-radius: 10px;
      font-weight: 700;
      font-size: 0.94rem;
      letter-spacing: 0;
      transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition),
        color var(--transition),
        border-color var(--transition),
        opacity var(--transition);
      will-change: transform;
      white-space: nowrap;
    }

    .btn svg {
      width: 16px;
      height: 16px;
      flex: 0 0 auto;
    }

    .btn-primary {
      color: #1c1407;
      background: linear-gradient(135deg, var(--gold-2), var(--gold));
      box-shadow:
        0 10px 24px rgba(215, 170, 77, 0.28),
        0 0 0 1px rgba(255, 255, 255, 0.12) inset;
    }

    .btn-primary:hover,
    .btn-primary:focus-visible {
      transform: translateY(-1px);
      box-shadow:
        0 14px 30px rgba(215, 170, 77, 0.34),
        0 0 0 1px rgba(255, 255, 255, 0.12) inset;
    }

    .btn-secondary {
      color: var(--text);
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.03);
    }

    .btn-secondary:hover,
    .btn-secondary:focus-visible {
      transform: translateY(-1px);
      border-color: rgba(113, 215, 229, 0.28);
      background: rgba(113, 215, 229, 0.06);
    }

    .btn-outline {
      color: var(--text);
      border: 1px solid rgba(215, 170, 77, 0.34);
      background: rgba(215, 170, 77, 0.05);
    }

    .btn-outline:hover,
    .btn-outline:focus-visible {
      transform: translateY(-1px);
      border-color: rgba(215, 170, 77, 0.56);
      background: rgba(215, 170, 77, 0.1);
    }

    .btn:active {
      transform: translateY(0);
    }

    .btn:disabled,
    .btn.loading {
      cursor: not-allowed;
      opacity: 0.7;
      transform: none;
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 18px;
    }

    .hero-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(255, 255, 255, 0.03);
      color: var(--soft);
      font-size: 0.85rem;
      white-space: nowrap;
    }

    .hero-chip strong {
      color: #fff;
      font-weight: 700;
    }

    .hero-note {
      margin-top: 18px;
      padding-left: 14px;
      border-left: 2px solid rgba(215, 170, 77, 0.58);
      color: var(--muted);
      font-size: 0.93rem;
      line-height: 1.7;
      max-width: 58ch;
    }

    .hero-art {
      position: relative;
      min-width: 0;
      display: flex;
      align-items: stretch;
    }

    .hero-panel {
      position: relative;
      width: 100%;
      min-height: 520px;
      padding: 18px;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background:
        linear-gradient(180deg, rgba(19, 26, 38, 0.98), rgba(10, 14, 22, 0.98));
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .hero-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, rgba(215, 170, 77, 0.10), transparent 34%),
        linear-gradient(315deg, rgba(113, 215, 229, 0.12), transparent 38%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 18%);
      pointer-events: none;
    }

    .hero-panel::after {
      content: "";
      position: absolute;
      inset: 15px;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.05);
      pointer-events: none;
    }

    .panel-top {
      position: relative;
      z-index: 1;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 16px;
    }

    .panel-title {
      font-size: 0.92rem;
      color: #fff;
      font-weight: 700;
    }

    .panel-body {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-rows: auto auto 1fr;
      gap: 16px;
      min-height: calc(100% - 42px);
    }

    .sigil-stage {
      position: relative;
      min-height: 222px;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.09);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
        radial-gradient(circle at 24% 20%, rgba(215, 170, 77, 0.22), transparent 34%),
        radial-gradient(circle at 82% 76%, rgba(113, 215, 229, 0.20), transparent 30%);
      overflow: hidden;
      padding: 18px;
    }

    .sigil-ring {
      position: absolute;
      inset: 20px;
      border-radius: 50%;
      border: 1px solid rgba(215, 170, 77, 0.26);
      box-shadow:
        0 0 0 14px rgba(215, 170, 77, 0.03),
        0 0 42px rgba(215, 170, 77, 0.12) inset;
      transform: rotate(18deg);
    }

    .sigil-ring::before,
    .sigil-ring::after {
      content: "";
      position: absolute;
      inset: 18%;
      border-radius: 50%;
      border: 1px dashed rgba(113, 215, 229, 0.20);
    }

    .sigil-ring::after {
      inset: 34%;
      border-style: solid;
      border-color: rgba(255, 255, 255, 0.08);
    }

    .sigil-core {
      position: relative;
      z-index: 1;
      width: 118px;
      height: 118px;
      margin: 34px auto 18px;
      border-radius: 28px;
      background:
        linear-gradient(135deg, rgba(240, 201, 123, 0.96), rgba(215, 170, 77, 0.94));
      box-shadow:
        0 0 0 12px rgba(215, 170, 77, 0.08),
        0 20px 42px rgba(0, 0, 0, 0.22);
      display: grid;
      place-items: center;
      transform: rotate(12deg);
    }

    .sigil-core::before {
      content: "";
      width: 46px;
      height: 46px;
      border-radius: 14px;
      border: 2px solid rgba(31, 21, 8, 0.82);
      box-shadow:
        0 0 0 10px rgba(255, 255, 255, 0.12) inset;
      transform: rotate(45deg);
    }

    .sigil-lines {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 10px;
      max-width: 280px;
      margin: 0 auto;
      text-align: center;
    }

    .sigil-lines strong {
      font-size: 1.1rem;
      line-height: 1.35;
    }

    .sigil-lines span {
      color: var(--muted);
      font-size: 0.9rem;
    }

    .panel-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
    }

    .panel-tile {
      padding: 12px 12px 13px;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(255, 255, 255, 0.03);
      min-width: 0;
    }

    .panel-tile .tile-kicker {
      display: block;
      color: var(--gold-2);
      font-size: 0.74rem;
      font-weight: 700;
      letter-spacing: 0;
      margin-bottom: 6px;
    }

    .panel-tile strong {
      display: block;
      font-size: 0.95rem;
      line-height: 1.35;
      margin-bottom: 7px;
    }

    .panel-tile p {
      margin: 0;
      color: var(--muted);
      font-size: 0.82rem;
      line-height: 1.55;
    }

    .meter {
      height: 8px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.06);
      overflow: hidden;
      margin-top: 10px;
    }

    .meter span {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--gold), var(--cyan));
      box-shadow: 0 0 18px rgba(113, 215, 229, 0.2);
    }

    .sigil-side {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
    }

    .sigil-side .panel-tile {
      min-height: 104px;
    }

    .section-head {
      display: grid;
      gap: 10px;
      margin-bottom: 18px;
      max-width: 760px;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      width: fit-content;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      color: var(--gold-2);
      font-size: 0.8rem;
      font-weight: 700;
    }

    .section-head h2 {
      margin: 0;
      font-size: clamp(24px, 2.8vw, 34px);
      line-height: 1.12;
      letter-spacing: 0;
      text-wrap: balance;
    }

    .section-copy {
      margin: 0;
      color: var(--muted);
      max-width: 68ch;
      line-height: 1.78;
      font-size: 0.96rem;
    }

    .entry-strip {
      padding-top: 8px;
    }

    .strip-row {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: minmax(210px, 1fr);
      gap: 14px;
      overflow-x: auto;
      padding-bottom: 8px;
      scroll-snap-type: x proximity;
      overscroll-behavior-x: contain;
    }

    .strip-row::-webkit-scrollbar,
    .news-list::-webkit-scrollbar {
      height: 8px;
      width: 8px;
    }

    .strip-row::-webkit-scrollbar-thumb,
    .news-list::-webkit-scrollbar-thumb {
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.16);
    }

    .entry-card {
      position: relative;
      display: grid;
      gap: 12px;
      min-height: 154px;
      padding: 16px 16px 15px;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
      box-shadow: var(--shadow-soft);
      scroll-snap-align: start;
      transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition),
        background var(--transition);
      min-width: 0;
    }

    .entry-card:hover,
    .entry-card:focus-visible {
      transform: translateY(-2px);
      border-color: rgba(215, 170, 77, 0.34);
      background:
        linear-gradient(180deg, rgba(215, 170, 77, 0.08), rgba(255, 255, 255, 0.03));
      box-shadow: var(--shadow);
    }

    .entry-card strong {
      font-size: 1rem;
      line-height: 1.35;
      margin: 0;
    }

    .entry-card p {
      margin: 0;
      color: var(--muted);
      font-size: 0.88rem;
      line-height: 1.6;
    }

    .entry-card .card-foot {
      margin-top: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      color: var(--soft);
      font-size: 0.8rem;
    }

    .card-arrow {
      width: 18px;
      height: 18px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      background: rgba(255, 255, 255, 0.05);
      color: var(--gold-2);
      flex: 0 0 auto;
    }

    .spotlight-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
      gap: 16px;
      align-items: stretch;
    }

    .feature-panel,
    .summary-panel,
    .category-panel,
    .progress-panel,
    .analytics-panel,
    .cta-shell,
    .footer-panel,
    .news-side-box {
      position: relative;
      padding: 18px;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background:
        linear-gradient(180deg, rgba(19, 26, 38, 0.95), rgba(12, 16, 24, 0.95));
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }

    .feature-panel::before,
    .summary-panel::before,
    .category-panel::before,
    .progress-panel::before,
    .analytics-panel::before,
    .cta-shell::before,
    .footer-panel::before,
    .news-side-box::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, rgba(215, 170, 77, 0.06), transparent 34%),
        linear-gradient(315deg, rgba(113, 215, 229, 0.06), transparent 36%);
      pointer-events: none;
    }

    .feature-panel > *,
    .summary-panel > *,
    .category-panel > *,
    .progress-panel > *,
    .analytics-panel > *,
    .cta-shell > *,
    .footer-panel > *,
    .news-side-box > * {
      position: relative;
      z-index: 1;
    }

    .spotlight-title {
      margin: 0 0 10px;
      font-size: 1.32rem;
      line-height: 1.25;
      text-wrap: balance;
    }

    .spotlight-copy {
      margin: 0 0 16px;
      color: var(--muted);
      line-height: 1.78;
      font-size: 0.95rem;
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 10px;
      border-radius: 999px;
      font-size: 0.78rem;
      color: #f2f6fb;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
      white-space: nowrap;
    }

    .tag.gold {
      color: #23150a;
      background: linear-gradient(135deg, var(--gold-2), var(--gold));
      border-color: rgba(255, 255, 255, 0.13);
    }

    .tag.cyan {
      color: #081f28;
      background: linear-gradient(135deg, #9ee9f2, var(--cyan));
      border-color: rgba(255, 255, 255, 0.13);
    }

    .quote-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .quote-card {
      min-height: 132px;
      padding: 14px;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(255, 255, 255, 0.03);
      transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition);
      min-width: 0;
    }

    .quote-card:hover,
    .quote-card:focus-visible {
      transform: translateY(-2px);
      border-color: rgba(113, 215, 229, 0.3);
      background: rgba(113, 215, 229, 0.05);
    }

    .quote-label {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--gold-2);
      font-size: 0.78rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .quote-card p {
      margin: 0;
      color: var(--soft);
      line-height: 1.7;
      font-size: 0.9rem;
    }

    .news-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(300px, 0.74fr);
      gap: 16px;
      align-items: start;
    }

    .news-list {
      display: grid;
      gap: 10px;
      overflow: auto;
      padding-right: 4px;
    }

    .news-item {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 12px;
      align-items: center;
      padding: 14px 16px;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(255, 255, 255, 0.03);
      transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition);
      min-width: 0;
    }

    .news-item:hover,
    .news-item:focus-visible {
      transform: translateY(-2px);
      border-color: rgba(215, 170, 77, 0.34);
      background: rgba(215, 170, 77, 0.06);
    }

    .news-title {
      font-size: 0.97rem;
      line-height: 1.52;
      color: #f8fbff;
      min-width: 0;
      overflow-wrap: anywhere;
    }

    .news-item time {
      color: var(--muted);
      font-size: 0.82rem;
      white-space: nowrap;
    }

    .news-side-box {
      position: sticky;
      top: 92px;
      display: grid;
      gap: 14px;
    }

    .summary-grid {
      display: grid;
      gap: 10px;
    }

    .summary-line {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 11px 12px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.06);
      min-width: 0;
    }

    .summary-line span {
      color: var(--muted);
      font-size: 0.88rem;
      white-space: nowrap;
    }

    .summary-line strong {
      font-size: 0.92rem;
      text-align: right;
      overflow-wrap: anywhere;
    }

    .summary-panel .section-kicker {
      margin-bottom: 12px;
    }

    .summary-panel p {
      margin: 0;
      color: var(--soft);
      line-height: 1.76;
      font-size: 0.94rem;
    }

    .summary-stack {
      display: grid;
      gap: 12px;
      margin-top: 14px;
    }

    .metric {
      display: grid;
      gap: 4px;
      padding: 14px 14px 13px;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.07);
      background: rgba(255, 255, 255, 0.03);
    }

    .metric strong {
      font-size: 1.45rem;
      line-height: 1.08;
      color: #fff;
    }

    .metric span {
      color: var(--muted);
      font-size: 0.84rem;
    }

    .category-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }

    .category-card {
      display: grid;
      gap: 12px;
      min-height: 220px;
      padding: 16px;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
      transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition),
        background var(--transition);
      min-width: 0;
    }

    .category-card:hover,
    .category-card:focus-visible {
      transform: translateY(-2px);
      border-color: rgba(113, 215, 229, 0.28);
      box-shadow: var(--shadow-soft);
      background:
        linear-gradient(180deg, rgba(113, 215, 229, 0.06), rgba(255, 255, 255, 0.03));
    }

    .category-card h3 {
      margin: 0;
      font-size: 1.08rem;
      line-height: 1.35;
    }

    .category-card p {
      margin: 0;
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.72;
    }

    .chip-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: auto;
    }

    .chip-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      min-height: 34px;
      padding: 0 11px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.09);
      background: rgba(255, 255, 255, 0.03);
      color: var(--soft);
      font-size: 0.8rem;
      white-space: nowrap;
      transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition),
        color var(--transition);
    }

    .chip-link:hover,
    .chip-link:focus-visible {
      transform: translateY(-1px);
      color: #fff;
      border-color: rgba(215, 170, 77, 0.34);
      background: rgba(215, 170, 77, 0.08);
    }

    .category-side {
      padding: 18px;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background:
        linear-gradient(180deg, rgba(19, 26, 38, 0.95), rgba(12, 16, 24, 0.95));
      box-shadow: var(--shadow-soft);
      display: grid;
      gap: 14px;
      min-width: 0;
    }

    .category-side h3 {
      margin: 0;
      font-size: 1.06rem;
    }

    .side-list {
      display: grid;
      gap: 10px;
    }

    .side-item {
      display: grid;
      gap: 6px;
      padding: 12px 12px 11px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .side-item strong {
      font-size: 0.93rem;
    }

    .side-item span {
      color: var(--muted);
      font-size: 0.84rem;
      line-height: 1.56;
    }

    .progress-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
      gap: 16px;
      align-items: stretch;
    }

    .progress-meter {
      display: grid;
      gap: 10px;
    }

    .progress-track {
      height: 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.06);
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .progress-track span {
      display: block;
      height: 100%;
      width: 72%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--gold), var(--cyan));
      box-shadow: 0 0 18px rgba(113, 215, 229, 0.22);
    }

    .progress-labels {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      font-size: 0.82rem;
      color: var(--muted);
    }

    .step-list {
      list-style: none;
      display: grid;
      gap: 10px;
      padding: 0;
      margin: 16px 0 0;
    }

    .step-list li {
      display: grid;
      grid-template-columns: 28px minmax(0, 1fr);
      gap: 12px;
      align-items: start;
      padding: 10px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .step-list li:last-child {
      border-bottom: 0;
    }

    .step-index {
      width: 28px;
      height: 28px;
      border-radius: 8px;
      display: grid;
      place-items: center;
      background: rgba(215, 170, 77, 0.12);
      border: 1px solid rgba(215, 170, 77, 0.26);
      color: var(--gold-2);
      font-size: 0.82rem;
      font-weight: 800;
      flex: 0 0 auto;
    }

    .step-list strong {
      display: block;
      margin-bottom: 4px;
      font-size: 0.95rem;
    }

    .step-list p {
      margin: 0;
      color: var(--muted);
      line-height: 1.7;
      font-size: 0.88rem;
    }

    .progress-note {
      display: grid;
      gap: 12px;
    }

    .progress-card-mini {
      padding: 13px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .progress-card-mini strong {
      display: block;
      margin-bottom: 6px;
      font-size: 0.94rem;
    }

    .progress-card-mini p {
      margin: 0;
      color: var(--muted);
      font-size: 0.86rem;
      line-height: 1.68;
    }

    .analytics-grid {
      display: grid;
      gap: 14px;
    }

    .kpi-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
    }

    .kpi {
      padding: 15px 14px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.06);
      min-width: 0;
    }

    .kpi strong {
      display: block;
      font-size: 1.54rem;
      line-height: 1.05;
      margin-bottom: 5px;
      color: #fff;
    }

    .kpi span {
      display: block;
      color: var(--muted);
      font-size: 0.84rem;
      line-height: 1.55;
    }

    .chart-panel {
      padding: 16px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.06);
      min-width: 0;
    }

    .chart-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 14px;
    }

    .chart-head strong {
      font-size: 0.95rem;
    }

    .chart-head span {
      color: var(--muted);
      font-size: 0.82rem;
    }

    .bar-chart {
      display: grid;
      gap: 12px;
    }

    .bar-row {
      display: grid;
      grid-template-columns: 90px minmax(0, 1fr) 44px;
      gap: 12px;
      align-items: center;
      min-width: 0;
    }

    .bar-row label {
      color: var(--soft);
      font-size: 0.86rem;
      white-space: nowrap;
    }

    .bar-track {
      height: 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.06);
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .bar-track span {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--cyan), var(--gold));
    }

    .bar-row em {
      font-style: normal;
      color: var(--muted);
      font-size: 0.82rem;
      text-align: right;
      white-space: nowrap;
    }

    .faq-list {
      display: grid;
      gap: 12px;
    }

    .faq-item {
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(255, 255, 255, 0.03);
      overflow: hidden;
      transition: border-color var(--transition), background var(--transition);
    }

    .faq-item[open] {
      border-color: rgba(215, 170, 77, 0.28);
      background: rgba(215, 170, 77, 0.05);
    }

    .faq-item summary {
      list-style: none;
      cursor: pointer;
      padding: 14px 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      font-weight: 700;
      color: #fff;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary span {
      min-width: 0;
      overflow-wrap: anywhere;
    }

    .faq-icon {
      width: 18px;
      height: 18px;
      position: relative;
      flex: 0 0 auto;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .faq-icon::before,
    .faq-icon::after {
      content: "";
      position: absolute;
      background: currentColor;
      border-radius: 999px;
      top: 8px;
      left: 4px;
      right: 4px;
      height: 1.6px;
      transition: transform var(--transition), opacity var(--transition);
    }

    .faq-icon::after {
      transform: rotate(90deg);
    }

    .faq-item[open] .faq-icon::after {
      opacity: 0;
      transform: rotate(0);
    }

    .faq-answer {
      padding: 0 16px 16px;
      color: var(--muted);
      line-height: 1.78;
      font-size: 0.92rem;
    }

    .cta-band {
      padding-bottom: 56px;
    }

    .cta-shell {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 18px;
      align-items: center;
    }

    .cta-shell h2 {
      margin: 0 0 10px;
      font-size: clamp(24px, 3vw, 34px);
      line-height: 1.1;
      text-wrap: balance;
    }

    .cta-shell p {
      margin: 0;
      color: var(--soft);
      max-width: 62ch;
      line-height: 1.78;
      font-size: 0.96rem;
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: flex-end;
      align-items: center;
    }

    .footer {
      padding: 0 0 38px;
    }

    .footer-panel {
      padding: 20px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.55fr) minmax(180px, 0.55fr);
      gap: 16px;
      align-items: start;
    }

    .footer-brand {
      display: grid;
      gap: 12px;
      min-width: 0;
    }

    .footer-brand strong {
      font-size: 1.02rem;
    }

    .footer-brand p {
      margin: 0;
      color: var(--muted);
      line-height: 1.76;
      font-size: 0.9rem;
      max-width: 54ch;
    }

    .footer-title {
      display: inline-flex;
      margin-bottom: 10px;
      font-size: 0.84rem;
      font-weight: 700;
      color: var(--gold-2);
    }

    .footer-links {
      display: grid;
      gap: 10px;
    }

    .footer-links a {
      color: var(--soft);
      font-size: 0.9rem;
      transition: color var(--transition), transform var(--transition);
      width: fit-content;
    }

    .footer-links a:hover,
    .footer-links a:focus-visible {
      color: #fff;
      transform: translateX(2px);
    }

    .footer-note {
      margin-top: 16px;
      padding-top: 14px;
      border-top: 1px solid rgba(255, 255, 255, 0.07);
      color: var(--muted);
      font-size: 0.84rem;
      line-height: 1.7;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: space-between;
      align-items: center;
    }

    .footer-note span:last-child {
      color: var(--soft);
      white-space: nowrap;
    }

    .footer-note a {
      color: var(--gold-2);
    }

    .focusable:focus-visible,
    a:focus-visible,
    button:focus-visible,
    summary:focus-visible {
      outline: 2px solid rgba(113, 215, 229, 0.7);
      outline-offset: 2px;
    }

    @media (hover:hover) {
      .nav-detail:hover .mega-panel {
        display: block;
      }
    }

    @media (max-width: 1120px) {
      .hero-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .hero h1 {
        max-width: 14ch;
      }

      .hero-panel {
        min-height: 460px;
      }

      .spotlight-grid,
      .news-grid,
      .progress-layout,
      .cta-shell,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .news-side-box {
        position: relative;
        top: auto;
      }

      .kpi-grid,
      .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .mega-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .sigil-side {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 920px) {
      .header-inner {
        min-height: 68px;
      }

      .menu-toggle {
        display: inline-flex;
      }

      .site-nav {
        display: none;
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        padding: 14px 0 18px;
        background: rgba(8, 11, 17, 0.98);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        box-shadow: 0 18px 32px rgba(0, 0, 0, 0.24);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
      }

      .site-header.mobile-open .site-nav {
        display: flex;
      }

      .nav-link,
      .nav-trigger {
        width: 100%;
        padding: 13px 0;
      }

      .nav-link::after,
      .nav-trigger::after {
        bottom: 10px;
      }

      .nav-detail {
        width: 100%;
      }

      .mega-panel {
        position: static;
        width: 100%;
        margin-top: 8px;
        box-shadow: none;
        border-radius: 10px;
      }

      .mega-grid {
        grid-template-columns: 1fr;
      }

      .hero-panel {
        min-height: auto;
      }

      .sigil-stage {
        min-height: 204px;
      }

      .panel-grid {
        grid-template-columns: 1fr;
      }

      .cta-actions {
        justify-content: flex-start;
      }
    }

    @media (max-width: 720px) {
      .container {
        width: min(calc(100% - 24px), var(--container));
      }

      .hero {
        padding-top: 18px;
      }

      .hero h1 {
        font-size: clamp(32px, 10vw, 44px);
      }

      .hero-lead,
      .section-copy,
      .spotlight-copy,
      .cta-shell p,
      .footer-brand p {
        font-size: 0.93rem;
      }

      .hero-actions,
      .hero-meta,
      .tag-row,
      .chip-grid {
        gap: 10px;
      }

      .strip-row {
        grid-auto-columns: minmax(192px, 82vw);
      }

      .quote-grid,
      .kpi-grid,
      .category-grid {
        grid-template-columns: 1fr;
      }

      .bar-row {
        grid-template-columns: 72px minmax(0, 1fr) 38px;
      }

      .news-item {
        grid-template-columns: 1fr;
      }

      .news-item time {
        justify-self: start;
      }

      .footer-note {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media (max-width: 560px) {
      .brand-text {
        font-size: 0.95rem;
      }

      .header-status {
        display: none;
      }

      .hero-meta {
        grid-template-columns: 1fr;
      }

      .btn {
        width: 100%;
        justify-content: center;
      }

      .hero-actions {
        width: 100%;
      }

      .hero-panel {
        padding: 14px;
      }

      .panel-top {
        align-items: flex-start;
      }

      .sigil-core {
        width: 104px;
        height: 104px;
      }

      .sigil-lines strong {
        font-size: 1rem;
      }

      .sigil-lines span {
        font-size: 0.86rem;
      }

      .entry-card,
      .quote-card,
      .category-card,
      .feature-panel,
      .summary-panel,
      .category-panel,
      .progress-panel,
      .analytics-panel,
      .cta-shell,
      .footer-panel,
      .news-side-box {
        padding: 15px;
      }

      .section-head h2 {
        font-size: 1.45rem;
      }
    }

/* roulang page: category1 */
:root {
      --bg: #0b0d12;
      --bg-2: #10131a;
      --panel: #131823;
      --panel-2: #171d29;
      --line: rgba(255, 233, 180, 0.14);
      --line-strong: rgba(255, 233, 180, 0.24);
      --text: #f3f5f8;
      --muted: #b8c0cf;
      --subtle: #8390a6;
      --gold: #d7b15d;
      --gold-2: #f1d08a;
      --cyan: #6ddbd4;
      --violet: #b58cff;
      --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
      --shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.24);
      --radius: 10px;
      --radius-sm: 8px;
      --container: 1200px;
      --gap: 24px;
      --gap-sm: 16px;
      --gap-xs: 10px;
      --header-h: 86px;
      --ease: 180ms ease;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--text);
      background:
        linear-gradient(180deg, rgba(10, 12, 18, 0.96), rgba(12, 14, 20, 0.99)),
        radial-gradient(circle at top left, rgba(215, 177, 93, 0.08), transparent 30%),
        radial-gradient(circle at top right, rgba(109, 219, 212, 0.08), transparent 26%),
        linear-gradient(135deg, #0a0c11 0%, #0e1118 52%, #0b0d12 100%);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.6;
      letter-spacing: 0;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
      background-size: 100% 92px, 124px 100%;
      mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 70%);
      opacity: 0.36;
      z-index: 0;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
      color: inherit;
    }

    button,
    .btn,
    .focusable {
      outline: none;
    }

    .focusable:focus-visible,
    .btn:focus-visible,
    input:focus-visible,
    summary:focus-visible {
      outline: 2px solid rgba(215, 177, 93, 0.95);
      outline-offset: 3px;
    }

    .container {
      width: min(100% - 32px, var(--container));
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .page-shell {
      position: relative;
      min-height: 100vh;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(9, 11, 16, 0.78);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .header-inner {
      min-height: var(--header-h);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--gap);
      padding: 14px 0;
      flex-wrap: wrap;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
    }

    .brand-mark {
      width: 48px;
      height: 48px;
      border-radius: var(--radius);
      display: grid;
      place-items: center;
      background:
        linear-gradient(145deg, rgba(215, 177, 93, 0.25), rgba(109, 219, 212, 0.12)),
        linear-gradient(180deg, #1b2230, #121720);
      border: 1px solid var(--line-strong);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), var(--shadow-soft);
      color: var(--gold-2);
      font-weight: 800;
      letter-spacing: 0;
      flex: none;
    }

    .brand-text {
      display: grid;
      gap: 3px;
      min-width: 0;
    }

    .brand-text strong {
      display: block;
      font-size: 18px;
      line-height: 1.15;
      color: var(--text);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .brand-text small {
      color: var(--subtle);
      font-size: 12px;
      line-height: 1.4;
    }

    .header-tools {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .header-chips {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .mini-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 28px;
      padding: 0 10px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(255, 255, 255, 0.04);
      color: var(--muted);
      font-size: 12px;
      line-height: 1;
      white-space: nowrap;
    }

    .mini-badge.gold {
      color: #1e1400;
      background: linear-gradient(135deg, #f5d38b, #d8af5a);
      border-color: rgba(245, 211, 139, 0.6);
    }

    .mini-badge.cyan {
      color: #072825;
      background: linear-gradient(135deg, #a6f3eb, #69d7d0);
      border-color: rgba(109, 219, 212, 0.4);
    }

    .mini-badge.violet {
      color: #1d1234;
      background: linear-gradient(135deg, #d4baff, #aa86ff);
      border-color: rgba(181, 140, 255, 0.42);
    }

    .site-nav {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      position: relative;
    }

    .nav-link,
    .nav-trigger {
      min-height: 42px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 0 14px;
      border-radius: var(--radius-sm);
      border: 1px solid transparent;
      background: transparent;
      color: var(--muted);
      transition: transform var(--ease), background var(--ease), border-color var(--ease), color var(--ease), box-shadow var(--ease);
      white-space: nowrap;
      cursor: pointer;
      font-size: 14px;
    }

    .nav-link:hover,
    .nav-trigger:hover,
    .nav-link.active,
    .nav-trigger.active {
      color: var(--text);
      background: rgba(255, 255, 255, 0.05);
      border-color: rgba(255, 255, 255, 0.08);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }

    .nav-link.active {
      color: #17110a;
      background: linear-gradient(135deg, #f5d38b, #d3a954);
      border-color: rgba(245, 211, 139, 0.5);
      box-shadow: 0 14px 22px rgba(215, 177, 93, 0.18);
    }

    .nav-detail {
      position: relative;
    }

    .nav-detail > summary {
      list-style: none;
    }

    .nav-detail > summary::-webkit-details-marker {
      display: none;
    }

    .nav-caret {
      width: 8px;
      height: 8px;
      border-right: 1.8px solid currentColor;
      border-bottom: 1.8px solid currentColor;
      transform: rotate(45deg);
      margin-top: -2px;
      transition: transform var(--ease);
    }

    .nav-detail[open] .nav-caret {
      transform: rotate(225deg);
      margin-top: 3px;
    }

    .mega-panel {
      position: absolute;
      top: calc(100% + 12px);
      right: 0;
      width: min(680px, 92vw);
      padding: 18px;
      border-radius: 14px;
      background:
        linear-gradient(180deg, rgba(24, 30, 42, 0.98), rgba(14, 17, 24, 0.98));
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: var(--shadow);
      display: none;
    }

    .nav-detail[open] .mega-panel {
      display: block;
    }

    .mega-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 14px;
    }

    .mega-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 4px;
    }

    .mega-note {
      color: var(--subtle);
      font-size: 13px;
    }

    .mega-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
    }

    .mega-card {
      display: grid;
      gap: 10px;
      padding: 14px;
      border-radius: 12px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.022));
      border: 1px solid rgba(255, 255, 255, 0.06);
      min-height: 140px;
      transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease), background var(--ease);
    }

    .mega-card strong {
      font-size: 15px;
      line-height: 1.3;
      color: var(--text);
    }

    .mega-card p {
      margin: 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.7;
    }

    .mega-card:hover,
    .mega-card.active {
      transform: translateY(-2px);
      border-color: rgba(215, 177, 93, 0.35);
      box-shadow: 0 16px 24px rgba(0, 0, 0, 0.18);
      background:
        linear-gradient(180deg, rgba(215, 177, 93, 0.09), rgba(255, 255, 255, 0.025));
    }

    main {
      position: relative;
      z-index: 1;
    }

    .catalog-hero {
      padding: 34px 0 20px;
    }

    .catalog-shell {
      padding: 28px;
      border-radius: 16px;
      background:
        linear-gradient(180deg, rgba(20, 25, 35, 0.96), rgba(13, 16, 23, 0.96));
      border: 1px solid rgba(255, 255, 255, 0.07);
      box-shadow: var(--shadow);
      overflow: hidden;
      position: relative;
    }

    .catalog-shell::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, rgba(215, 177, 93, 0.08), transparent 28%),
        linear-gradient(315deg, rgba(109, 219, 212, 0.07), transparent 24%);
      pointer-events: none;
    }

    .catalog-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
      gap: 26px;
      align-items: stretch;
      position: relative;
    }

    .hero-copy {
      display: grid;
      gap: 18px;
      align-content: start;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      width: fit-content;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(215, 177, 93, 0.11);
      border: 1px solid rgba(215, 177, 93, 0.2);
      color: var(--gold-2);
      font-size: 13px;
      line-height: 1;
    }

    .hero-copy h1 {
      margin: 0;
      font-size: 52px;
      line-height: 1.08;
      letter-spacing: 0;
      max-width: 12.5em;
    }

    .hero-lead {
      margin: 0;
      max-width: 42em;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.9;
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      align-items: center;
    }

    .btn {
      min-height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 0 18px;
      border-radius: 10px;
      border: 1px solid transparent;
      transition: transform var(--ease), background var(--ease), border-color var(--ease), box-shadow var(--ease), color var(--ease), opacity var(--ease);
      cursor: pointer;
      white-space: nowrap;
      font-size: 14px;
      line-height: 1;
    }

    .btn:hover {
      transform: translateY(-1px);
    }

    .btn:active {
      transform: translateY(0);
    }

    .btn-primary {
      background: linear-gradient(135deg, #f3d48c, #d3a952);
      color: #1d1406;
      border-color: rgba(245, 211, 139, 0.48);
      box-shadow: 0 16px 24px rgba(213, 173, 84, 0.18);
    }

    .btn-primary:hover {
      box-shadow: 0 18px 30px rgba(213, 173, 84, 0.26);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.03);
      color: var(--text);
      border-color: rgba(255, 255, 255, 0.12);
    }

    .btn-secondary:hover {
      border-color: rgba(215, 177, 93, 0.28);
      background: rgba(215, 177, 93, 0.08);
    }

    .hero-notes {
      margin: 0;
      padding: 0;
      list-style: none;
      display: flex;
      gap: 10px 16px;
      flex-wrap: wrap;
      color: var(--subtle);
      font-size: 13px;
    }

    .hero-notes li {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding-left: 12px;
      position: relative;
    }

    .hero-notes li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 10px;
      width: 5px;
      height: 5px;
      border-radius: 999px;
      background: var(--gold);
      box-shadow: 0 0 0 4px rgba(215, 177, 93, 0.12);
    }

    .hero-panel {
      display: grid;
      gap: 16px;
      align-content: start;
    }

    .panel-card {
      padding: 18px;
      border-radius: 14px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }

    .panel-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 16px;
    }

    .panel-head strong {
      font-size: 15px;
      color: var(--text);
    }

    .panel-head span {
      font-size: 12px;
      color: var(--subtle);
    }

    .status-grid {
      display: grid;
      grid-template-columns: 118px 1fr;
      gap: 16px;
      align-items: center;
    }

    .ring-wrap {
      display: grid;
      place-items: center;
    }

    .ring {
      --p: 68;
      width: 118px;
      aspect-ratio: 1;
      border-radius: 50%;
      display: grid;
      place-items: center;
      position: relative;
      background:
        radial-gradient(circle at center, rgba(20, 25, 35, 0.98) 53%, transparent 54%),
        conic-gradient(var(--gold) calc(var(--p) * 1%), rgba(255, 255, 255, 0.08) 0);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 0 0 10px rgba(215, 177, 93, 0.05);
    }

    .ring::after {
      content: "";
      position: absolute;
      inset: 10px;
      border-radius: 50%;
      background: linear-gradient(180deg, #12161f, #0e1118);
      border: 1px solid rgba(255, 255, 255, 0.06);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }

    .ring strong,
    .ring span {
      position: relative;
      z-index: 1;
      text-align: center;
    }

    .ring strong {
      font-size: 24px;
      line-height: 1;
      color: var(--gold-2);
    }

    .ring span {
      margin-top: 4px;
      font-size: 12px;
      color: var(--muted);
    }

    .panel-list {
      display: grid;
      gap: 10px;
    }

    .quick-search {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 10px;
      margin-top: 6px;
    }

    .quick-search input {
      min-height: 46px;
      width: 100%;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(7, 9, 13, 0.6);
      color: var(--text);
      padding: 0 14px;
    }

    .quick-search input::placeholder {
      color: #748197;
    }

    .state-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
    }

    .state-item {
      padding: 12px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.035);
      border: 1px solid rgba(255, 255, 255, 0.07);
    }

    .state-item strong {
      display: block;
      font-size: 14px;
      line-height: 1.3;
      margin-bottom: 5px;
      color: var(--text);
    }

    .state-item p {
      margin: 0;
      color: var(--subtle);
      font-size: 12px;
      line-height: 1.7;
    }

    .summary-strip {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      padding-top: 4px;
    }

    .stat-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 40px;
      padding: 0 14px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(255, 255, 255, 0.035);
      color: var(--muted);
      font-size: 13px;
      white-space: nowrap;
    }

    .stat-chip strong {
      color: var(--text);
      font-size: 14px;
    }

    .section {
      padding: 20px 0 8px;
    }

    .section-block {
      padding: 24px 0 0;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 18px;
    }

    .section-head h2 {
      margin: 0;
      font-size: 28px;
      line-height: 1.2;
      letter-spacing: 0;
    }

    .section-head p {
      margin: 4px 0 0;
      color: var(--subtle);
      font-size: 14px;
      line-height: 1.8;
      max-width: 52em;
    }

    .section-tools {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .tag-bar {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 18px;
    }

    .tag-link {
      min-height: 38px;
      display: inline-flex;
      align-items: center;
      padding: 0 14px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      color: var(--muted);
      font-size: 13px;
      transition: transform var(--ease), border-color var(--ease), background var(--ease), color var(--ease);
    }

    .tag-link:hover,
    .tag-link.active {
      transform: translateY(-1px);
      color: var(--text);
      border-color: rgba(215, 177, 93, 0.28);
      background: rgba(215, 177, 93, 0.09);
    }

    .entry-strip {
      overflow-x: auto;
      padding-bottom: 10px;
      scrollbar-width: thin;
      scrollbar-color: rgba(215, 177, 93, 0.35) transparent;
    }

    .entry-grid {
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 14px;
      min-width: 960px;
    }

    .entry-card {
      display: grid;
      gap: 12px;
      min-height: 166px;
      padding: 16px;
      border-radius: 14px;
      background:
        linear-gradient(180deg, rgba(24, 31, 42, 0.96), rgba(16, 20, 29, 0.98));
      border: 1px solid rgba(255, 255, 255, 0.07);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
      transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
    }

    .entry-card:hover {
      transform: translateY(-2px);
      border-color: rgba(215, 177, 93, 0.3);
      box-shadow: 0 14px 26px rgba(0, 0, 0, 0.22);
    }

    .entry-card h3 {
      margin: 0;
      font-size: 16px;
      line-height: 1.35;
    }

    .entry-card p {
      margin: 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.75;
    }

    .entry-foot {
      margin-top: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      color: var(--subtle);
      font-size: 12px;
    }

    .entry-foot strong {
      color: var(--gold-2);
      font-size: 12px;
    }

    .content-band {
      padding: 18px 0 2px;
    }

    .hot-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
      gap: 18px;
    }

    .feature-panel,
    .stack-panel {
      display: grid;
      gap: 18px;
    }

    .feature-card,
    .small-card,
    .group-card {
      border-radius: 14px;
      background:
        linear-gradient(180deg, rgba(24, 31, 43, 0.96), rgba(15, 19, 27, 0.98));
      border: 1px solid rgba(255, 255, 255, 0.07);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    }

    .feature-card {
      padding: 22px;
      display: grid;
      gap: 18px;
      min-height: 100%;
    }

    .feature-card h3 {
      margin: 0;
      font-size: 26px;
      line-height: 1.2;
    }

    .feature-card p,
    .small-card p,
    .group-card p,
    .faq-item p,
    .cta-copy p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.85;
    }

    .card-meta-row {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      align-items: center;
    }

    .feature-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: auto;
    }

    .stack-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .small-card {
      padding: 16px;
      min-height: 160px;
      display: grid;
      gap: 12px;
      transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
    }

    .small-card:hover {
      transform: translateY(-2px);
      border-color: rgba(109, 219, 212, 0.26);
      box-shadow: 0 14px 24px rgba(0, 0, 0, 0.18);
    }

    .small-card h4 {
      margin: 0;
      font-size: 15px;
      line-height: 1.35;
    }

    .small-card .mini-line {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      color: var(--subtle);
      font-size: 12px;
    }

    .section-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .group-card {
      padding: 18px;
      display: grid;
      gap: 14px;
    }

    .group-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .group-head h3 {
      margin: 0;
      font-size: 18px;
      line-height: 1.25;
    }

    .group-head span {
      color: var(--subtle);
      font-size: 12px;
      white-space: nowrap;
    }

    .group-list {
      display: grid;
      gap: 12px;
    }

    .group-link {
      display: grid;
      gap: 8px;
      padding: 14px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.035);
      border: 1px solid rgba(255, 255, 255, 0.06);
      transition: transform var(--ease), border-color var(--ease), background var(--ease);
    }

    .group-link:hover {
      transform: translateY(-1px);
      border-color: rgba(215, 177, 93, 0.28);
      background: rgba(215, 177, 93, 0.07);
    }

    .group-link strong {
      font-size: 15px;
      line-height: 1.3;
    }

    .group-link p {
      margin: 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.7;
    }

    .meta-line {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      color: var(--subtle);
      font-size: 12px;
    }

    .pager-wrap {
      display: grid;
      gap: 12px;
      padding-top: 18px;
    }

    .pager {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      align-items: center;
    }

    .page-step,
    .page-num {
      min-height: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 14px;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(255, 255, 255, 0.035);
      color: var(--muted);
      transition: transform var(--ease), border-color var(--ease), background var(--ease), color var(--ease);
    }

    .page-step:hover,
    .page-num:hover,
    .page-num.active {
      color: var(--text);
      border-color: rgba(215, 177, 93, 0.24);
      background: rgba(215, 177, 93, 0.08);
      transform: translateY(-1px);
    }

    .page-step.disabled {
      opacity: 0.45;
      pointer-events: none;
    }

    .state-note {
      color: var(--subtle);
      font-size: 13px;
      line-height: 1.75;
    }

    .faq-section {
      padding: 36px 0 12px;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .faq-item {
      padding: 18px;
      border-radius: 14px;
      background:
        linear-gradient(180deg, rgba(24, 31, 42, 0.96), rgba(14, 18, 25, 0.98));
      border: 1px solid rgba(255, 255, 255, 0.07);
    }

    .faq-item summary {
      list-style: none;
      cursor: pointer;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
      font-size: 15px;
      line-height: 1.5;
      color: var(--text);
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary span {
      color: var(--subtle);
      margin-left: auto;
      transition: transform var(--ease);
      flex: none;
    }

    .faq-item[open] summary span {
      transform: rotate(45deg);
    }

    .faq-item p {
      margin-top: 12px;
    }

    .cta-section {
      padding: 34px 0 52px;
    }

    .cta-panel {
      padding: 24px;
      border-radius: 16px;
      background:
        linear-gradient(180deg, rgba(28, 35, 48, 0.96), rgba(16, 20, 28, 0.98));
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: var(--shadow);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    .cta-copy {
      display: grid;
      gap: 8px;
      max-width: 44em;
    }

    .cta-copy h2 {
      margin: 0;
      font-size: 28px;
      line-height: 1.2;
    }

    .cta-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      align-items: center;
    }

    .footer {
      padding: 0 0 34px;
    }

    .footer-panel {
      padding: 22px 0 0;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      gap: 24px;
      padding: 20px 0 18px;
    }

    .footer-brand strong {
      display: block;
      font-size: 18px;
      line-height: 1.35;
      margin-bottom: 10px;
    }

    .footer-brand p {
      margin: 0;
      color: var(--subtle);
      font-size: 14px;
      line-height: 1.85;
      max-width: 36em;
    }

    .footer-title {
      display: inline-block;
      font-size: 13px;
      color: var(--gold-2);
      margin-bottom: 12px;
    }

    .footer-links {
      display: grid;
      gap: 10px;
    }

    .footer-links a {
      color: var(--muted);
      font-size: 14px;
      transition: color var(--ease), transform var(--ease);
    }

    .footer-links a:hover {
      color: var(--text);
      transform: translateX(2px);
    }

    .footer-note {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      flex-wrap: wrap;
      padding-top: 14px;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      color: var(--subtle);
      font-size: 13px;
      line-height: 1.7;
    }

    .footer-note a {
      color: var(--gold-2);
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    @media (max-width: 1120px) {
      .catalog-grid,
      .hot-layout {
        grid-template-columns: 1fr;
      }

      .section-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .faq-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 820px) {
      .header-inner {
        align-items: flex-start;
      }

      .header-tools {
        width: 100%;
        justify-content: flex-start;
      }

      .site-nav {
        width: 100%;
      }

      .mega-panel {
        right: auto;
        left: 0;
        width: min(100%, 680px);
      }

      .hero-copy h1 {
        font-size: 42px;
      }

      .section-head {
        align-items: flex-start;
        flex-direction: column;
      }

      .section-head h2,
      .cta-copy h2 {
        font-size: 24px;
      }

      .stack-grid,
      .state-grid {
        grid-template-columns: 1fr;
      }

      .section-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 560px) {
      .container {
        width: min(100% - 20px, var(--container));
      }

      .catalog-shell,
      .cta-panel,
      .panel-card,
      .group-card,
      .faq-item {
        border-radius: 12px;
      }

      .catalog-shell {
        padding: 18px;
      }

      .hero-copy h1 {
        font-size: 34px;
        max-width: none;
      }

      .hero-lead {
        font-size: 15px;
      }

      .brand-mark {
        width: 42px;
        height: 42px;
      }

      .brand-text strong {
        font-size: 16px;
      }

      .nav-link,
      .nav-trigger,
      .btn,
      .tag-link,
      .page-step,
      .page-num {
        min-height: 40px;
      }

      .mega-grid {
        grid-template-columns: 1fr;
      }

      .entry-grid {
        min-width: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
      }

      .entry-strip {
        overflow: visible;
      }

      .entry-card {
        min-height: 150px;
      }

      .cta-panel {
        padding: 18px;
      }

      .quick-search {
        grid-template-columns: 1fr;
      }

      .section-head p,
      .footer-brand p,
      .state-note {
        font-size: 13px;
      }
    }
