/* roulang page: index */
:root {
      --bg: #0b0d10;
      --bg-2: #0f1318;
      --panel: #131820;
      --panel-2: #161d27;
      --line: rgba(255,255,255,.10);
      --line-2: rgba(255,255,255,.16);
      --text: #f4f7fb;
      --muted: #a0acb8;
      --muted-2: #7f8a95;
      --accent: #ff4da6;
      --accent-2: #00d4c7;
      --accent-3: #f6c85f;
      --accent-4: #8b7cf6;
      --shadow: 0 18px 50px rgba(0,0,0,.36);
      --shadow-soft: 0 10px 30px rgba(0,0,0,.24);
      --radius: 20px;
      --radius-sm: 12px;
      --space: 24px;
      --space-lg: 40px;
      --topbar-h: 78px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--text);
      background:
        linear-gradient(180deg, #090b0f 0%, #0c1015 55%, #0b0d10 100%);
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.7;
      letter-spacing: 0;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background:
        repeating-linear-gradient(90deg, rgba(255,255,255,.03) 0, rgba(255,255,255,.03) 1px, transparent 1px, transparent 84px),
        repeating-linear-gradient(180deg, rgba(255,255,255,.02) 0, rgba(255,255,255,.02) 1px, transparent 1px, transparent 84px);
      opacity: .35;
      mask-image: linear-gradient(180deg, rgba(0,0,0,.4), rgba(0,0,0,1));
      z-index: 0;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .18s ease, border-color .18s ease, background-color .18s ease, transform .18s ease, box-shadow .18s ease, opacity .18s ease;
    }

    a:hover,
    a:focus {
      color: inherit;
    }

    img,
    svg {
      display: block;
      max-width: 100%;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    :focus-visible {
      outline: 2px solid var(--accent-2);
      outline-offset: 2px;
    }

    .off-canvas-wrapper {
      background: transparent;
    }

    .off-canvas.position-right {
      width: 320px;
      background: #0f141a;
      color: var(--text);
      border-left: 1px solid var(--line);
      box-shadow: -24px 0 60px rgba(0,0,0,.45);
    }

    .off-canvas .menu {
      padding: 16px;
    }

    .off-canvas .menu a {
      color: var(--text);
      border-radius: 14px;
      padding: 14px 16px;
      margin-bottom: 8px;
      background: rgba(255,255,255,.03);
      border: 1px solid transparent;
    }

    .off-canvas .menu a.is-active {
      background: linear-gradient(90deg, rgba(255,77,166,.16), rgba(0,212,199,.12));
      border-color: rgba(255,77,166,.35);
      box-shadow: 0 0 0 1px rgba(255,77,166,.12) inset;
    }

    .close-button {
      color: var(--text);
    }

    .top-shell {
      position: sticky;
      top: 0;
      z-index: 40;
      background: rgba(9,11,15,.84);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .top-shell::after {
      content: "";
      display: block;
      height: 2px;
      background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3), var(--accent-4));
      box-shadow: 0 0 14px rgba(255,77,166,.35);
    }

    .topbar {
      min-height: var(--topbar-h);
      display: flex;
      align-items: center;
      gap: 18px;
      padding: 0 20px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
      color: var(--text);
      font-weight: 800;
      letter-spacing: 0;
      white-space: nowrap;
    }

    .brand-mark {
      width: 38px;
      height: 38px;
      border-radius: 12px;
      background:
        linear-gradient(135deg, rgba(255,77,166,1), rgba(0,212,199,1));
      box-shadow: 0 10px 24px rgba(255,77,166,.26), 0 0 0 1px rgba(255,255,255,.12) inset;
      display: grid;
      place-items: center;
      color: #0b0d10;
      font-weight: 900;
      flex: 0 0 auto;
    }

    .brand-mark span {
      transform: translateY(-1px);
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      min-width: 0;
      line-height: 1.15;
    }

    .brand-text strong {
      font-size: 1rem;
      font-weight: 800;
    }

    .brand-text small {
      color: var(--muted);
      font-size: .78rem;
      margin-top: 3px;
    }

    .desktop-nav {
      flex: 1 1 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 0;
    }

    .nav-list {
      display: flex;
      align-items: center;
      gap: 12px;
      margin: 0;
      padding: 0;
      list-style: none;
      white-space: nowrap;
    }

    .nav-list a {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 14px;
      border-radius: 999px;
      color: var(--muted);
      border: 1px solid transparent;
      font-weight: 700;
    }

    .nav-list a:hover {
      color: var(--text);
      background: rgba(255,255,255,.04);
      border-color: rgba(255,255,255,.08);
    }

    .nav-list a.is-active {
      color: var(--text);
      background: linear-gradient(90deg, rgba(255,77,166,.16), rgba(0,212,199,.14));
      border-color: rgba(255,77,166,.30);
      box-shadow: 0 0 0 1px rgba(255,77,166,.08) inset, 0 12px 28px rgba(0,0,0,.22);
    }

    .nav-list a.is-active::after {
      content: "";
      position: absolute;
      left: 16px;
      right: 16px;
      bottom: -8px;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--accent), var(--accent-2));
      box-shadow: 0 0 14px rgba(255,77,166,.52);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex: 0 0 auto;
    }

    .menu-button {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.10);
      color: var(--text);
      border-radius: 14px;
      padding: 11px 14px;
      font-weight: 700;
    }

    .menu-button:hover {
      background: rgba(255,255,255,.07);
      border-color: rgba(255,255,255,.18);
    }

    .cta-primary,
    .cta-secondary,
    .ghost-button,
    .soft-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border-radius: 999px;
      padding: 13px 18px;
      font-weight: 800;
      line-height: 1;
      border: 1px solid transparent;
    }

    .cta-primary {
      color: #111318;
      background: linear-gradient(135deg, var(--accent-3), #ffe29e);
      box-shadow: 0 16px 28px rgba(246,200,95,.18);
    }

    .cta-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 18px 30px rgba(246,200,95,.25);
    }

    .cta-secondary {
      color: var(--text);
      background: linear-gradient(135deg, rgba(255,77,166,.15), rgba(0,212,199,.10));
      border-color: rgba(255,255,255,.10);
    }

    .cta-secondary:hover {
      border-color: rgba(255,77,166,.32);
      box-shadow: 0 12px 24px rgba(0,0,0,.18);
    }

    .ghost-button {
      color: var(--text);
      border-color: rgba(255,255,255,.14);
      background: transparent;
    }

    .ghost-button:hover {
      border-color: rgba(0,212,199,.34);
      background: rgba(255,255,255,.04);
    }

    .page-main {
      position: relative;
      z-index: 1;
    }

    .section-band {
      padding: 72px 0;
    }

    .section-band.compact {
      padding: 56px 0;
    }

    .band-divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
      margin-top: 24px;
    }

    .hero-band {
      padding: 32px 0 64px;
      background:
        linear-gradient(135deg, rgba(255,77,166,.10), transparent 24%),
        linear-gradient(315deg, rgba(0,212,199,.08), transparent 28%),
        linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
      overflow: hidden;
    }

    .hero-frame {
      position: relative;
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 28px;
      background:
        linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)),
        linear-gradient(135deg, rgba(255,77,166,.08), rgba(0,212,199,.04));
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .hero-frame::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(120deg, transparent 0%, rgba(255,255,255,.04) 28%, transparent 56%),
        radial-gradient(circle at top left, rgba(255,77,166,.15), transparent 26%),
        radial-gradient(circle at bottom right, rgba(0,212,199,.10), transparent 24%);
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      padding: 34px;
    }

    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #ffd9ea;
      background: rgba(255,77,166,.14);
      border: 1px solid rgba(255,77,166,.28);
      padding: 8px 12px;
      border-radius: 999px;
      font-weight: 700;
      margin-bottom: 18px;
    }

    .hero-title {
      margin: 0;
      font-size: 2.65rem;
      line-height: 1.08;
      letter-spacing: 0;
      font-weight: 900;
      max-width: 10.6em;
    }

    .hero-title span {
      display: inline-block;
      background: linear-gradient(90deg, #fff, #f7c85f 52%, #ff83c1 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero-lead {
      margin: 18px 0 0;
      max-width: 36rem;
      color: var(--muted);
      font-size: 1.03rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 24px;
    }

    .hero-metrics {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 24px;
    }

    .metric-pill {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(255,255,255,.05);
      color: var(--text);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 999px;
      padding: 10px 14px;
      font-weight: 700;
    }

    .metric-pill strong {
      color: #fff;
      font-size: 1rem;
    }

    .hero-stage {
      position: relative;
      padding: 34px 0 0 10px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 24px;
      align-items: start;
    }

    .ring-card,
    .tier-card,
    .hero-cover,
    .info-card,
    .list-card,
    .stat-card,
    .faq-shell,
    .cta-shell {
      border: 1px solid rgba(255,255,255,.08);
      border-radius: var(--radius);
      background: rgba(18,23,31,.86);
      box-shadow: var(--shadow-soft);
    }

    .ring-card {
      padding: 22px;
      margin-bottom: 18px;
    }

    .ring-wrap {
      display: grid;
      grid-template-columns: 118px 1fr;
      gap: 18px;
      align-items: center;
    }

    .progress-ring {
      width: 118px;
      aspect-ratio: 1;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background:
        radial-gradient(circle at center, #0f1318 57%, transparent 58%),
        conic-gradient(var(--accent) calc(var(--progress) * 1%), rgba(255,255,255,.08) 0);
      box-shadow: 0 0 0 1px rgba(255,255,255,.08) inset;
      position: relative;
    }

    .progress-ring::after {
      content: "";
      position: absolute;
      inset: 10px;
      border-radius: 50%;
      background: linear-gradient(180deg, #10151b, #0e1116);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
    }

    .ring-value {
      position: relative;
      z-index: 1;
      text-align: center;
      font-weight: 900;
      font-size: 1.5rem;
      color: #fff;
      line-height: 1.05;
    }

    .ring-value small {
      display: block;
      color: var(--muted);
      font-size: .78rem;
      margin-top: 6px;
      font-weight: 600;
    }

    .ring-copy h2 {
      margin: 0;
      font-size: 1.28rem;
      line-height: 1.2;
      font-weight: 900;
    }

    .ring-copy p {
      margin: 10px 0 0;
      color: var(--muted);
      font-size: .96rem;
    }

    .progress-bar {
      margin-top: 16px;
      height: 12px;
      border-radius: 999px;
      overflow: hidden;
      background: rgba(255,255,255,.07);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
    }

    .progress-bar span {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--accent), var(--accent-2));
      width: 78%;
      box-shadow: 0 0 20px rgba(255,77,166,.22);
    }

    .ring-stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      margin-top: 16px;
    }

    .ring-stat {
      padding: 12px;
      border-radius: 16px;
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.06);
    }

    .ring-stat strong {
      display: block;
      font-size: 1.02rem;
      color: #fff;
      line-height: 1.15;
    }

    .ring-stat span {
      display: block;
      margin-top: 5px;
      font-size: .8rem;
      color: var(--muted);
    }

    .tier-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
    }

    .tier-card {
      padding: 16px;
      min-height: 144px;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }

    .tier-card:hover {
      transform: translateY(-2px);
      border-color: rgba(0,212,199,.24);
      box-shadow: 0 18px 42px rgba(0,0,0,.28);
    }

    .tier-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 7px 10px;
      border-radius: 999px;
      font-size: .76rem;
      font-weight: 800;
      margin-bottom: 12px;
      background: rgba(255,255,255,.05);
      color: #fff;
    }

    .tier-badge.pink {
      background: rgba(255,77,166,.14);
      color: #ffd3e6;
    }

    .tier-badge.teal {
      background: rgba(0,212,199,.14);
      color: #c9fff8;
    }

    .tier-badge.gold {
      background: rgba(246,200,95,.16);
      color: #ffe7ab;
    }

    .tier-card h3 {
      margin: 0;
      font-size: 1rem;
      line-height: 1.2;
      font-weight: 900;
    }

    .tier-card p {
      margin: 10px 0 0;
      color: var(--muted);
      font-size: .9rem;
      line-height: 1.6;
    }

    .tier-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin-top: 14px;
      color: var(--muted);
      font-size: .82rem;
    }

    .hero-cover {
      padding: 18px;
      margin-top: 18px;
    }

    .cover-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .cover-tile {
      border-radius: 18px;
      min-height: 120px;
      padding: 14px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background:
        linear-gradient(135deg, rgba(255,77,166,.18), rgba(0,212,199,.12)),
        linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
      border: 1px solid rgba(255,255,255,.08);
    }

    .cover-tile.alt {
      background:
        linear-gradient(135deg, rgba(246,200,95,.18), rgba(139,124,246,.12)),
        linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
    }

    .cover-tile strong {
      font-size: .98rem;
      line-height: 1.35;
      font-weight: 900;
    }

    .cover-tile span {
      color: rgba(255,255,255,.78);
      font-size: .8rem;
    }

    .chip-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 16px;
    }

    .chip {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 8px 11px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.04);
      color: var(--text);
      font-size: .82rem;
      font-weight: 700;
    }

    .chip strong {
      color: #fff;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 24px;
    }

    .section-head h2 {
      margin: 0;
      font-size: 1.8rem;
      font-weight: 900;
      line-height: 1.15;
    }

    .section-head p {
      margin: 8px 0 0;
      color: var(--muted);
      max-width: 50rem;
    }

    .section-note {
      color: var(--muted);
      font-size: .9rem;
      max-width: 26rem;
    }

    .entry-shell {
      border-top: 1px solid rgba(255,255,255,.08);
      border-bottom: 1px solid rgba(255,255,255,.08);
      background:
        linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
    }

    .filter-bar {
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) auto;
      gap: 14px;
      align-items: center;
      margin-bottom: 22px;
    }

    .filter-input {
      display: flex;
      align-items: center;
      gap: 10px;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.04);
      padding: 12px 14px;
    }

    .filter-input input {
      width: 100%;
      border: 0;
      background: transparent;
      color: var(--text);
      outline: none;
      box-shadow: none;
      margin: 0;
      padding: 0;
    }

    .filter-input input::placeholder {
      color: var(--muted-2);
    }

    .segmented {
      display: inline-flex;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .segmented button {
      border: 1px solid rgba(255,255,255,.10);
      color: var(--text);
      background: rgba(255,255,255,.04);
      border-radius: 999px;
      padding: 11px 14px;
      font-weight: 800;
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
    }

    .segmented button:hover,
    .segmented button.is-active {
      background: linear-gradient(135deg, rgba(255,77,166,.16), rgba(0,212,199,.12));
      border-color: rgba(255,77,166,.30);
      transform: translateY(-1px);
    }

    .entry-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 18px;
      align-items: stretch;
    }

    .entry-feature,
    .entry-list-card {
      border: 1px solid rgba(255,255,255,.08);
      border-radius: var(--radius);
      background: rgba(18,23,31,.86);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }

    .entry-feature {
      padding: 22px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 324px;
      background:
        linear-gradient(135deg, rgba(255,77,166,.10), rgba(0,212,199,.05)),
        rgba(18,23,31,.86);
    }

    .entry-feature h3 {
      margin: 0;
      font-size: 1.42rem;
      line-height: 1.22;
      font-weight: 900;
    }

    .entry-feature p {
      margin: 12px 0 0;
      color: var(--muted);
      max-width: 32rem;
    }

    .badge-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 16px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 8px 10px;
      border-radius: 999px;
      font-size: .8rem;
      font-weight: 800;
      line-height: 1;
      border: 1px solid rgba(255,255,255,.08);
      background: rgba(255,255,255,.05);
    }

    .badge.pink {
      color: #ffd0e5;
      background: rgba(255,77,166,.14);
      border-color: rgba(255,77,166,.26);
    }

    .badge.teal {
      color: #cafef8;
      background: rgba(0,212,199,.12);
      border-color: rgba(0,212,199,.24);
    }

    .badge.gold {
      color: #ffe7ab;
      background: rgba(246,200,95,.12);
      border-color: rgba(246,200,95,.24);
    }

    .feature-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-top: 20px;
      flex-wrap: wrap;
    }

    .feature-foot .cta-secondary {
      padding: 12px 16px;
    }

    .entry-list-card {
      padding: 18px;
    }

    .entry-list {
      display: grid;
      gap: 12px;
    }

    .entry-list-item {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 14px;
      padding: 14px;
      border-radius: 16px;
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.06);
    }

    .entry-list-item:hover {
      border-color: rgba(0,212,199,.18);
      transform: translateY(-1px);
    }

    .entry-list-item strong {
      display: block;
      font-size: .98rem;
      line-height: 1.4;
      font-weight: 800;
    }

    .entry-list-item p {
      margin: 6px 0 0;
      color: var(--muted);
      font-size: .86rem;
      line-height: 1.55;
    }

    .mini-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 8px;
    }

    .mini-meta span {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      color: var(--muted);
      font-size: .76rem;
      padding: 5px 8px;
      border-radius: 999px;
      background: rgba(255,255,255,.04);
    }

    .entry-side {
      margin-top: 18px;
      display: grid;
      gap: 12px;
    }

    .side-strip {
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,.08);
      padding: 13px 14px;
      background: rgba(255,255,255,.04);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .side-strip strong {
      font-size: .95rem;
    }

    .side-strip span {
      color: var(--muted);
      font-size: .84rem;
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .step-card {
      padding: 18px;
      border-radius: var(--radius);
      border: 1px solid rgba(255,255,255,.08);
      background: rgba(18,23,31,.86);
      box-shadow: var(--shadow-soft);
      min-height: 182px;
    }

    .step-index {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(255,77,166,.18), rgba(0,212,199,.14));
      color: #fff;
      font-weight: 900;
      margin-bottom: 12px;
      box-shadow: 0 10px 20px rgba(0,0,0,.18);
    }

    .step-card h3 {
      margin: 0;
      font-size: 1.02rem;
      font-weight: 900;
    }

    .step-card p {
      margin: 10px 0 0;
      color: var(--muted);
      font-size: .91rem;
      line-height: 1.65;
    }

    .step-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 12px;
      color: #dffbfa;
      background: rgba(0,212,199,.10);
      border: 1px solid rgba(0,212,199,.20);
      border-radius: 999px;
      padding: 7px 10px;
      font-size: .76rem;
      font-weight: 800;
    }

    .preview-grid {
      display: grid;
      grid-template-columns: 1.02fr .98fr;
      gap: 18px;
    }

    .preview-rail {
      display: grid;
      gap: 14px;
    }

    .hero-card,
    .preview-card,
    .data-card {
      border-radius: var(--radius);
      border: 1px solid rgba(255,255,255,.08);
      background: rgba(18,23,31,.86);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }

    .preview-card {
      padding: 0;
      display: grid;
      grid-template-columns: 148px 1fr;
      min-height: 160px;
    }

    .preview-cover {
      background:
        linear-gradient(135deg, rgba(255,77,166,.22), rgba(0,212,199,.14)),
        linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
      position: relative;
    }

    .preview-cover.alt {
      background:
        linear-gradient(135deg, rgba(246,200,95,.24), rgba(139,124,246,.12)),
        linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
    }

    .preview-cover::after {
      content: "";
      position: absolute;
      inset: 18px;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,.18);
      background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.02));
    }

    .preview-body {
      padding: 16px 18px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 12px;
    }

    .preview-body h3 {
      margin: 0;
      font-size: 1rem;
      line-height: 1.35;
      font-weight: 900;
    }

    .preview-body p {
      margin: 0;
      color: var(--muted);
      font-size: .9rem;
      line-height: 1.6;
    }

    .preview-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      flex-wrap: wrap;
    }

    .preview-foot .meta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--muted);
      font-size: .8rem;
    }

    .hero-card {
      padding: 20px;
      min-height: 100%;
      background:
        linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02)),
        rgba(18,23,31,.86);
    }

    .hero-card h3 {
      margin: 0;
      font-size: 1.15rem;
      font-weight: 900;
    }

    .hero-card p {
      margin: 10px 0 0;
      color: var(--muted);
    }

    .compact-list {
      display: grid;
      gap: 10px;
      margin-top: 16px;
    }

    .compact-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      padding: 12px 13px;
      border-radius: 16px;
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.06);
    }

    .compact-item strong {
      font-size: .92rem;
    }

    .compact-item span {
      color: var(--muted);
      font-size: .82rem;
    }

    .stats-band {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
      margin-top: 18px;
    }

    .stat-card {
      padding: 18px;
    }

    .stat-card strong {
      display: block;
      font-size: 1.6rem;
      line-height: 1;
      font-weight: 900;
      color: #fff;
    }

    .stat-card span {
      display: block;
      margin-top: 8px;
      color: var(--muted);
      font-size: .88rem;
    }

    .progress-grid {
      display: grid;
      grid-template-columns: 1fr .95fr;
      gap: 18px;
      align-items: stretch;
    }

    .progress-shell {
      padding: 24px;
      border-radius: var(--radius);
      border: 1px solid rgba(255,255,255,.08);
      background: rgba(18,23,31,.86);
      box-shadow: var(--shadow-soft);
    }

    .progress-shell h3 {
      margin: 0;
      font-size: 1.28rem;
      font-weight: 900;
    }

    .progress-shell p {
      margin: 10px 0 0;
      color: var(--muted);
      max-width: 36rem;
    }

    .checklist {
      display: grid;
      gap: 12px;
      margin-top: 18px;
    }

    .check-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 13px 14px;
      border-radius: 16px;
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.06);
    }

    .check-item .icon {
      flex: 0 0 auto;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(0,212,199,.14);
      color: #cbfff9;
      margin-top: 1px;
    }

    .check-item strong {
      display: block;
      font-size: .96rem;
    }

    .check-item span {
      display: block;
      margin-top: 3px;
      color: var(--muted);
      font-size: .86rem;
      line-height: 1.55;
    }

    .ladders {
      display: grid;
      gap: 12px;
    }

    .ladder-card {
      padding: 16px;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,.08);
      background: rgba(255,255,255,.04);
      display: grid;
      gap: 10px;
    }

    .ladder-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }

    .ladder-head strong {
      font-size: .98rem;
      font-weight: 900;
    }

    .ladder-head span {
      color: var(--muted);
      font-size: .8rem;
    }

    .ladder-bar {
      width: 100%;
      height: 10px;
      border-radius: 999px;
      background: rgba(255,255,255,.07);
      overflow: hidden;
    }

    .ladder-bar em {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--accent), var(--accent-2));
    }

    .ladder-card p {
      margin: 0;
      color: var(--muted);
      font-size: .86rem;
      line-height: 1.6;
    }

    .faq-shell {
      padding: 24px;
    }

    .accordion {
      border: 0;
      background: transparent;
    }

    .accordion-title {
      color: var(--text);
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.06);
      border-radius: 16px;
      font-weight: 800;
      padding: 16px 18px;
      line-height: 1.35;
    }

    .accordion-item {
      margin-bottom: 12px;
      border: 0;
      background: transparent;
    }

    .accordion-content {
      border: 1px solid rgba(255,255,255,.06);
      border-top: 0;
      border-radius: 0 0 16px 16px;
      background: rgba(255,255,255,.03);
      color: var(--muted);
      padding: 16px 18px 18px;
    }

    .cta-shell {
      padding: 26px;
      background:
        linear-gradient(135deg, rgba(255,77,166,.18), rgba(0,212,199,.12)),
        rgba(18,23,31,.86);
    }

    .cta-shell h2 {
      margin: 0;
      font-size: 1.7rem;
      font-weight: 900;
      line-height: 1.15;
    }

    .cta-shell p {
      margin: 10px 0 0;
      color: rgba(255,255,255,.82);
      max-width: 44rem;
    }

    .cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 20px;
    }

    .cta-row .ghost-button {
      color: #fff;
      border-color: rgba(255,255,255,.18);
      background: rgba(255,255,255,.04);
    }

    .footer-shell {
      padding: 42px 0 34px;
      border-top: 1px solid rgba(255,255,255,.08);
      background: #090b0f;
      position: relative;
      z-index: 1;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr .8fr .9fr;
      gap: 18px;
    }

    .footer-col h3,
    .footer-col strong {
      margin: 0 0 14px;
      font-size: 1rem;
      font-weight: 900;
    }

    .footer-col p {
      margin: 0;
      color: var(--muted);
      line-height: 1.7;
      font-size: .92rem;
    }

    .footer-links {
      display: grid;
      gap: 10px;
    }

    .footer-links a {
      color: var(--muted);
      font-size: .92rem;
    }

    .footer-links a:hover {
      color: #fff;
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      margin-top: 24px;
      padding-top: 18px;
      border-top: 1px solid rgba(255,255,255,.08);
      color: var(--muted-2);
      font-size: .86rem;
    }

    .footer-credits {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .footer-mark {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--text);
      font-weight: 800;
    }

    .footer-mark .brand-mark {
      width: 30px;
      height: 30px;
      border-radius: 10px;
      font-size: .82rem;
    }

    .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;
    }

    .show-for-small-only {
      display: none;
    }

    @media screen and (max-width: 1024px) {
      .hero-grid,
      .entry-grid,
      .preview-grid,
      .progress-grid {
        grid-template-columns: 1fr;
      }

      .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .stats-band {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .hero-title {
        max-width: none;
      }

      .desktop-nav {
        display: none;
      }

      .show-for-small-only {
        display: inline-flex;
      }
    }

    @media screen and (max-width: 768px) {
      .section-band {
        padding: 56px 0;
      }

      .hero-inner {
        padding: 22px;
      }

      .hero-title {
        font-size: 2.1rem;
      }

      .ring-wrap {
        grid-template-columns: 1fr;
      }

      .ring-card,
      .hero-cover {
        padding: 18px;
      }

      .tier-grid {
        grid-template-columns: 1fr;
      }

      .cover-grid {
        grid-template-columns: 1fr;
      }

      .filter-bar {
        grid-template-columns: 1fr;
      }

      .segmented {
        justify-content: flex-start;
      }

      .preview-card {
        grid-template-columns: 1fr;
      }

      .preview-cover {
        min-height: 150px;
      }

      .steps-grid {
        grid-template-columns: 1fr;
      }

      .stats-band {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .section-head {
        flex-direction: column;
        align-items: flex-start;
      }

      .section-head h2 {
        font-size: 1.45rem;
      }

      .cta-shell h2 {
        font-size: 1.45rem;
      }
    }

    @media screen and (max-width: 520px) {
      .topbar {
        padding: 0 14px;
        gap: 12px;
      }

      .brand-text small {
        display: none;
      }

      .hero-inner {
        padding: 18px;
      }

      .hero-title {
        font-size: 1.82rem;
      }

      .hero-lead,
      .section-head p,
      .cta-shell p {
        font-size: .96rem;
      }

      .hero-actions,
      .cta-row {
        flex-direction: column;
        align-items: stretch;
      }

      .cta-primary,
      .cta-secondary,
      .ghost-button {
        width: 100%;
      }

      .ring-stats {
        grid-template-columns: 1fr;
      }

      .menu-button span {
        display: none;
      }

      .menu-button {
        padding: 11px 12px;
      }
    }

/* roulang page: category1 */
:root{
      --bg:#07080d;
      --bg-soft:#0d1118;
      --panel:#111723;
      --panel-2:#141c2b;
      --panel-3:#181f30;
      --line:rgba(255,255,255,.08);
      --line-strong:rgba(255,255,255,.14);
      --text:#f5f7fb;
      --muted:#a5afc3;
      --muted-2:#7f889a;
      --pink:#ff4d9d;
      --cyan:#30e2db;
      --gold:#f0c45b;
      --violet:#8b63ff;
      --green:#5ee08c;
      --shadow:0 20px 60px rgba(0,0,0,.35);
      --shadow-soft:0 12px 30px rgba(0,0,0,.22);
      --radius:20px;
      --radius-sm:14px;
      --radius-xs:10px;
      --space:clamp(16px,2vw,24px);
      --container:1200px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      background:
        radial-gradient(1200px 700px at 10% -10%, rgba(255,77,157,.14), transparent 55%),
        radial-gradient(900px 600px at 100% 0%, rgba(48,226,219,.10), transparent 48%),
        linear-gradient(180deg, #07080d 0%, #0a0d14 100%);
      color:var(--text);
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei",sans-serif;
      line-height:1.65;
      letter-spacing:0;
      overflow-x:hidden;
    }
    body::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      background:
        linear-gradient(120deg, rgba(255,255,255,.03) 1px, transparent 1px) 0 0/36px 36px,
        linear-gradient(0deg, rgba(255,255,255,.025) 1px, transparent 1px) 0 0/100% 100%;
      mask-image:linear-gradient(180deg, rgba(0,0,0,.58), transparent 80%);
      opacity:.35;
      z-index:0;
    }
    a{color:inherit;text-decoration:none;transition:color .2s ease,transform .2s ease,opacity .2s ease,background-color .2s ease,border-color .2s ease,box-shadow .2s ease}
    img{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    .off-canvas-wrapper{
      min-height:100vh;
      position:relative;
      z-index:1;
    }
    .off-canvas-content{
      background:transparent;
      min-height:100vh;
    }
    .grid-container{
      max-width:var(--container);
      padding-left:clamp(16px,2vw,28px);
      padding-right:clamp(16px,2vw,28px);
    }
    .grid-container.fluid{
      max-width:none;
    }
    .top-shell{
      position:sticky;
      top:0;
      z-index:60;
      backdrop-filter:blur(18px);
      background:rgba(7,8,13,.84);
      border-bottom:1px solid rgba(255,255,255,.08);
      box-shadow:0 1px 0 rgba(255,255,255,.03);
    }
    .topbar{
      min-height:78px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:14px;
      min-width:0;
    }
    .brand-mark{
      width:44px;
      height:44px;
      border-radius:14px;
      display:grid;
      place-items:center;
      background:linear-gradient(145deg, rgba(255,77,157,.95), rgba(48,226,219,.9));
      color:#fff;
      box-shadow:0 0 0 1px rgba(255,255,255,.08) inset, 0 10px 22px rgba(255,77,157,.22);
      flex:none;
      font-weight:800;
    }
    .brand-mark span{
      font-size:1rem;
      line-height:1;
    }
    .brand-text{
      display:flex;
      flex-direction:column;
      min-width:0;
    }
    .brand-text strong{
      font-size:1.04rem;
      line-height:1.15;
      letter-spacing:0;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .brand-text small{
      color:var(--muted);
      font-size:.82rem;
      margin-top:2px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .desktop-nav{
      flex:1;
      display:flex;
      justify-content:center;
    }
    .nav-list{
      list-style:none;
      display:flex;
      align-items:center;
      gap:8px;
      margin:0;
      padding:0;
      flex-wrap:wrap;
    }
    .nav-list a{
      position:relative;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:42px;
      padding:0 16px;
      border-radius:999px;
      color:var(--muted);
      border:1px solid transparent;
      background:transparent;
      font-size:.96rem;
    }
    .nav-list a:hover{
      color:var(--text);
      background:rgba(255,255,255,.04);
      border-color:rgba(255,255,255,.08);
    }
    .nav-list a.is-active{
      color:#fff;
      background:linear-gradient(145deg, rgba(255,77,157,.18), rgba(48,226,219,.12));
      border-color:rgba(255,255,255,.12);
      box-shadow:0 0 0 1px rgba(255,255,255,.04) inset, 0 0 24px rgba(255,77,157,.12);
    }
    .nav-list a.is-active::after{
      content:"";
      position:absolute;
      left:18px;
      right:18px;
      bottom:-10px;
      height:2px;
      border-radius:999px;
      background:linear-gradient(90deg, var(--pink), var(--cyan));
      box-shadow:0 0 12px rgba(255,77,157,.55);
    }
    .header-actions{
      display:flex;
      align-items:center;
      gap:10px;
      flex:none;
    }
    .cta-primary,
    .menu-button,
    .btn-main,
    .btn-ghost,
    .chip-btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border-radius:999px;
      min-height:44px;
      padding:0 18px;
      border:1px solid transparent;
      transition:transform .2s ease,box-shadow .2s ease,background-color .2s ease,border-color .2s ease,color .2s ease,opacity .2s ease;
      cursor:pointer;
      font-weight:700;
      letter-spacing:0;
    }
    .cta-primary,
    .btn-main{
      color:#fff;
      background:linear-gradient(135deg, var(--pink), #ff6c73 38%, var(--violet));
      box-shadow:0 12px 30px rgba(255,77,157,.22);
    }
    .cta-primary:hover,
    .btn-main:hover{
      transform:translateY(-1px);
      box-shadow:0 18px 36px rgba(255,77,157,.26);
      color:#fff;
    }
    .btn-ghost,
    .menu-button,
    .chip-btn{
      color:var(--text);
      background:rgba(255,255,255,.03);
      border-color:rgba(255,255,255,.10);
    }
    .btn-ghost:hover,
    .menu-button:hover,
    .chip-btn:hover{
      color:#fff;
      background:rgba(255,255,255,.06);
      border-color:rgba(255,255,255,.16);
      transform:translateY(-1px);
    }
    .btn-ghost.is-active,
    .chip-btn.is-active{
      background:linear-gradient(135deg, rgba(48,226,219,.15), rgba(255,77,157,.15));
      border-color:rgba(255,255,255,.18);
      box-shadow:0 0 0 1px rgba(255,255,255,.04) inset;
      color:#fff;
    }
    .menu-button{
      padding:0 14px;
    }
    .menu-button span,
    .cta-primary span,
    .btn-main span,
    .btn-ghost span{
      font-size:.96rem;
    }
    .menu-button i,
    .cta-primary i,
    .btn-main i,
    .btn-ghost i,
    .chip-btn i{
      width:16px;
      height:16px;
      flex:none;
    }
    .btn-main:focus,
    .btn-ghost:focus,
    .cta-primary:focus,
    .menu-button:focus,
    .chip-btn:focus,
    input:focus,
    select:focus,
    textarea:focus,
    a:focus{
      outline:none;
      box-shadow:0 0 0 3px rgba(48,226,219,.2);
    }
    .off-canvas{
      background:linear-gradient(180deg, #0c1119, #0a0d14);
      color:var(--text);
      border-right:1px solid rgba(255,255,255,.08);
      padding:18px;
    }
    .mobile-panel{
      display:flex;
      flex-direction:column;
      gap:16px;
      height:100%;
    }
    .mobile-panel .brand{
      padding-bottom:14px;
      border-bottom:1px solid rgba(255,255,255,.08);
    }
    .mobile-links{
      display:flex;
      flex-direction:column;
      gap:8px;
    }
    .mobile-links a{
      min-height:46px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:0 14px;
      border-radius:14px;
      color:var(--text);
      border:1px solid rgba(255,255,255,.08);
      background:rgba(255,255,255,.03);
    }
    .mobile-links a.is-active{
      background:linear-gradient(135deg, rgba(255,77,157,.18), rgba(48,226,219,.1));
      border-color:rgba(255,255,255,.16);
    }
    .mobile-links a:hover{
      background:rgba(255,255,255,.06);
    }
    .mobile-note{
      color:var(--muted);
      font-size:.92rem;
      padding-top:10px;
      border-top:1px solid rgba(255,255,255,.08);
    }
    .hero-shell{
      padding:34px 0 18px;
      position:relative;
      z-index:1;
    }
    .hero-band{
      background:
        linear-gradient(145deg, rgba(255,77,157,.12), rgba(48,226,219,.08) 50%, rgba(139,99,255,.10)),
        linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
      border:1px solid rgba(255,255,255,.08);
      border-radius:28px;
      box-shadow:var(--shadow);
      overflow:hidden;
      position:relative;
    }
    .hero-band::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(800px 300px at 18% 10%, rgba(255,255,255,.08), transparent 50%),
        radial-gradient(600px 220px at 84% 0%, rgba(48,226,219,.12), transparent 55%);
      pointer-events:none;
    }
    .hero-inner{
      position:relative;
      padding:clamp(22px,4vw,42px);
    }
    .hero-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.10);
      color:#fff;
      font-size:.84rem;
      font-weight:700;
      margin-bottom:14px;
    }
    .hero-kicker .dot{
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--cyan);
      box-shadow:0 0 0 4px rgba(48,226,219,.16);
      flex:none;
    }
    .hero-title{
      margin:0;
      font-size:clamp(2rem,3.2vw,3.65rem);
      line-height:1.06;
      letter-spacing:0;
      max-width:12ch;
    }
    .hero-title span{
      display:block;
      color:transparent;
      -webkit-text-fill-color:transparent;
      background:linear-gradient(90deg, #fff 0%, #fff 48%, #ffd3e2 100%);
      -webkit-background-clip:text;
      background-clip:text;
    }
    .hero-copy{
      color:var(--muted);
      font-size:1.02rem;
      max-width:56ch;
      margin:16px 0 20px;
    }
    .hero-points{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-bottom:20px;
    }
    .pill{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.04);
      border:1px solid rgba(255,255,255,.08);
      color:var(--text);
      font-size:.88rem;
      white-space:nowrap;
    }
    .pill i{
      width:14px;
      height:14px;
      color:var(--cyan);
      flex:none;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-bottom:18px;
    }
    .hero-metrics{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:12px;
      max-width:520px;
    }
    .metric{
      background:rgba(8,11,18,.52);
      border:1px solid rgba(255,255,255,.09);
      border-radius:18px;
      padding:14px 14px 12px;
    }
    .metric strong{
      display:block;
      font-size:1.15rem;
      line-height:1.2;
    }
    .metric span{
      display:block;
      color:var(--muted);
      font-size:.86rem;
      margin-top:5px;
    }
    .hero-visual{
      position:relative;
      min-height:100%;
      display:flex;
      align-items:stretch;
    }
    .visual-board{
      width:100%;
      border-radius:24px;
      background:rgba(10,14,23,.72);
      border:1px solid rgba(255,255,255,.08);
      box-shadow:var(--shadow-soft);
      padding:16px;
      display:grid;
      gap:12px;
    }
    .visual-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
    }
    .visual-top strong{
      font-size:1rem;
    }
    .visual-top small{
      color:var(--muted);
    }
    .status-badge{
      display:inline-flex;
      align-items:center;
      gap:7px;
      min-height:34px;
      padding:0 12px;
      border-radius:999px;
      border:1px solid rgba(48,226,219,.22);
      background:rgba(48,226,219,.08);
      color:#dffdfc;
      font-size:.84rem;
      font-weight:700;
      white-space:nowrap;
    }
    .status-badge .dot{
      width:7px;
      height:7px;
      border-radius:50%;
      background:var(--green);
      box-shadow:0 0 0 4px rgba(94,224,140,.13);
    }
    .cover-stage{
      display:grid;
      grid-template-columns:1.3fr .8fr;
      gap:12px;
      min-height:300px;
    }
    .cover-main,
    .cover-tile,
    .visual-card,
    .feature-card,
    .mini-card,
    .promo-card,
    .step-card,
    .progress-card,
    .faq-card,
    .cta-panel,
    .rail-card,
    .section-card,
    .story-card{
      border-radius:var(--radius);
      border:1px solid rgba(255,255,255,.09);
      background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
      box-shadow:0 10px 28px rgba(0,0,0,.18);
    }
    .cover-main{
      position:relative;
      overflow:hidden;
      padding:18px;
      background:
        linear-gradient(145deg, rgba(255,77,157,.18), rgba(139,99,255,.12)),
        linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
      min-height:100%;
    }
    .cover-main::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(500px 180px at 25% 20%, rgba(255,255,255,.12), transparent 50%),
        linear-gradient(135deg, transparent 32%, rgba(255,255,255,.08) 32%, rgba(255,255,255,.08) 34%, transparent 34%);
      opacity:.75;
      pointer-events:none;
    }
    .cover-face{
      position:relative;
      height:100%;
      display:flex;
      flex-direction:column;
      justify-content:flex-end;
      gap:12px;
      min-height:264px;
    }
    .cover-face h3{
      margin:0;
      font-size:1.6rem;
      line-height:1.12;
    }
    .cover-face p{
      margin:0;
      color:rgba(255,255,255,.82);
      max-width:24ch;
      font-size:.94rem;
    }
    .cover-stamps{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .stamp{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:7px 10px;
      border-radius:999px;
      background:rgba(8,10,15,.28);
      border:1px solid rgba(255,255,255,.12);
      color:#fff;
      font-size:.82rem;
      backdrop-filter:blur(12px);
    }
    .stamp i{
      width:13px;
      height:13px;
      color:var(--gold);
    }
    .cover-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:12px;
    }
    .cover-tile{
      padding:14px;
      min-height:144px;
      overflow:hidden;
      position:relative;
      background:linear-gradient(180deg, rgba(20,27,42,.95), rgba(13,16,24,.9));
    }
    .cover-tile::after{
      content:"";
      position:absolute;
      inset:auto -20% -22% auto;
      width:120px;
      height:120px;
      border-radius:30px;
      background:linear-gradient(145deg, rgba(48,226,219,.25), rgba(255,77,157,.08));
      transform:rotate(18deg);
      pointer-events:none;
    }
    .cover-tile strong{
      display:block;
      font-size:1rem;
      margin-top:auto;
      position:relative;
      z-index:1;
    }
    .cover-tile small{
      display:block;
      margin-top:8px;
      color:var(--muted);
      position:relative;
      z-index:1;
    }
    .cover-tile .mini-badge{
      position:relative;
      z-index:1;
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:6px 10px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.10);
      background:rgba(255,255,255,.04);
      font-size:.8rem;
    }
    .cover-tile .mini-badge i{
      width:12px;
      height:12px;
      color:var(--pink);
    }
    .section-shell{
      padding:30px 0;
      position:relative;
      z-index:1;
    }
    .section-shell.tight{
      padding-top:14px;
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:20px;
      margin-bottom:18px;
      flex-wrap:wrap;
    }
    .section-title{
      margin:0;
      font-size:clamp(1.35rem,2.1vw,2rem);
      line-height:1.15;
    }
    .section-lead{
      margin:8px 0 0;
      color:var(--muted);
      max-width:66ch;
      font-size:.98rem;
    }
    .section-tags{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
    }
    .section-tag{
      display:inline-flex;
      align-items:center;
      gap:6px;
      min-height:34px;
      padding:0 12px;
      border-radius:999px;
      color:#fff;
      background:rgba(255,255,255,.04);
      border:1px solid rgba(255,255,255,.08);
      font-size:.84rem;
    }
    .section-tag i{
      width:13px;
      height:13px;
      color:var(--cyan);
    }
    .filter-shell{
      background:rgba(10,13,20,.78);
      border:1px solid rgba(255,255,255,.08);
      border-radius:24px;
      padding:18px;
      box-shadow:var(--shadow-soft);
    }
    .filter-bar{
      display:grid;
      grid-template-columns:1.3fr .8fr auto;
      gap:12px;
      align-items:center;
    }
    .field,
    .select-wrap{
      position:relative;
    }
    .field input,
    .select-wrap select{
      width:100%;
      min-height:46px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.10);
      background:rgba(255,255,255,.04);
      color:var(--text);
      padding:0 14px;
      outline:none;
      appearance:none;
    }
    .field input::placeholder{
      color:var(--muted-2);
    }
    .select-wrap::after{
      content:"";
      position:absolute;
      right:14px;
      top:50%;
      width:8px;
      height:8px;
      border-right:2px solid var(--muted);
      border-bottom:2px solid var(--muted);
      transform:translateY(-65%) rotate(45deg);
      pointer-events:none;
    }
    .filter-tags{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:14px;
    }
    .filter-hint{
      margin-top:10px;
      color:var(--muted);
      font-size:.88rem;
      display:flex;
      align-items:center;
      gap:8px;
      flex-wrap:wrap;
    }
    .filter-hint i{
      width:14px;
      height:14px;
      color:var(--gold);
    }
    .feature-grid{
      display:grid;
      grid-template-columns:minmax(0,1.45fr) minmax(300px,.85fr);
      gap:18px;
      align-items:start;
    }
    .feature-card{
      overflow:hidden;
      position:relative;
      background:
        linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)),
        linear-gradient(145deg, rgba(255,77,157,.08), rgba(48,226,219,.05));
      padding:18px;
      min-height:100%;
    }
    .feature-head{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      margin-bottom:16px;
    }
    .feature-head h3{
      margin:8px 0 8px;
      font-size:1.3rem;
      line-height:1.18;
    }
    .feature-head p{
      margin:0;
      color:var(--muted);
      font-size:.94rem;
      max-width:46ch;
    }
    .feature-cover{
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:14px;
      align-items:stretch;
    }
    .feature-visual{
      border-radius:22px;
      background:
        linear-gradient(145deg, rgba(255,77,157,.22), rgba(48,226,219,.1)),
        linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
      padding:18px;
      min-height:250px;
      position:relative;
      overflow:hidden;
    }
    .feature-visual::before{
      content:"";
      position:absolute;
      inset:18px 18px auto auto;
      width:110px;
      height:110px;
      border-radius:26px;
      background:linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.02));
      transform:rotate(14deg);
      opacity:.7;
    }
    .feature-visual::after{
      content:"";
      position:absolute;
      inset:auto 18px 18px auto;
      width:74px;
      height:74px;
      border-radius:22px;
      background:linear-gradient(145deg, rgba(240,196,91,.32), rgba(255,255,255,.02));
      opacity:.9;
    }
    .feature-visual .visual-number{
      position:absolute;
      left:18px;
      bottom:18px;
      font-size:3rem;
      font-weight:800;
      line-height:1;
      letter-spacing:0;
      color:rgba(255,255,255,.14);
    }
    .feature-copy{
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      gap:12px;
    }
    .feature-copy .desc{
      color:var(--muted);
      font-size:.95rem;
    }
    .feature-points{
      display:grid;
      gap:10px;
    }
    .point-item{
      display:flex;
      align-items:flex-start;
      gap:10px;
      padding:12px 13px;
      border-radius:18px;
      background:rgba(255,255,255,.03);
      border:1px solid rgba(255,255,255,.08);
    }
    .point-item i{
      width:16px;
      height:16px;
      color:var(--cyan);
      margin-top:3px;
      flex:none;
    }
    .point-item strong{
      display:block;
      font-size:.92rem;
      margin-bottom:2px;
    }
    .point-item span{
      color:var(--muted);
      font-size:.86rem;
    }
    .rail-stack{
      display:grid;
      gap:12px;
    }
    .rail-card{
      padding:14px;
      background:rgba(17,23,35,.78);
      overflow:hidden;
    }
    .rail-card h4{
      margin:0 0 8px;
      font-size:1rem;
      line-height:1.24;
    }
    .rail-card p{
      margin:0;
      color:var(--muted);
      font-size:.88rem;
    }
    .rail-meta{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
      margin-top:10px;
    }
    .meta-pill{
      display:inline-flex;
      align-items:center;
      gap:5px;
      min-height:30px;
      padding:0 10px;
      border-radius:999px;
      font-size:.78rem;
      color:#fff;
      background:rgba(255,255,255,.04);
      border:1px solid rgba(255,255,255,.08);
    }
    .meta-pill i{
      width:11px;
      height:11px;
      color:var(--gold);
    }
    .story-grid{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:14px;
    }
    .story-card{
      overflow:hidden;
      background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
      min-height:100%;
    }
    .story-thumb{
      aspect-ratio:16/10;
      background:
        linear-gradient(145deg, rgba(255,77,157,.22), rgba(48,226,219,.12)),
        linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
      position:relative;
      overflow:hidden;
    }
    .story-thumb::before{
      content:"";
      position:absolute;
      inset:14px;
      border-radius:18px;
      border:1px solid rgba(255,255,255,.14);
      background:
        linear-gradient(135deg, rgba(255,255,255,.10) 0%, rgba(255,255,255,.02) 100%);
      mix-blend:screen;
    }
    .story-thumb .corner{
      position:absolute;
      left:12px;
      top:12px;
      display:inline-flex;
      align-items:center;
      min-height:30px;
      padding:0 10px;
      border-radius:999px;
      background:rgba(7,8,13,.58);
      border:1px solid rgba(255,255,255,.12);
      font-size:.77rem;
      color:#fff;
      z-index:1;
    }
    .story-body{
      padding:14px;
    }
    .story-body h4{
      margin:0 0 7px;
      font-size:1rem;
      line-height:1.22;
    }
    .story-body p{
      margin:0 0 12px;
      color:var(--muted);
      font-size:.88rem;
      min-height:2.8em;
    }
    .story-stats{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:8px;
      flex-wrap:wrap;
      color:var(--muted);
      font-size:.82rem;
    }
    .story-stats strong{
      color:#fff;
      font-weight:700;
    }
    .story-link{
      margin-top:12px;
      display:inline-flex;
      align-items:center;
      gap:7px;
      color:#fff;
      font-size:.88rem;
    }
    .story-link i{
      width:14px;
      height:14px;
      color:var(--cyan);
    }
    .stream-layout{
      display:grid;
      grid-template-columns:minmax(0,1fr) 286px;
      gap:18px;
      align-items:start;
    }
    .stream-list{
      display:grid;
      gap:14px;
    }
    .story-item{
      display:grid;
      grid-template-columns:128px minmax(0,1fr);
      gap:14px;
      align-items:stretch;
      padding:14px;
      background:rgba(16,22,33,.82);
      border-radius:22px;
      border:1px solid rgba(255,255,255,.08);
    }
    .story-item:hover{
      transform:translateY(-2px);
      border-color:rgba(255,255,255,.15);
      box-shadow:0 18px 34px rgba(0,0,0,.25);
    }
    .story-item .thumb{
      border-radius:18px;
      min-height:100%;
      background:
        linear-gradient(145deg, rgba(255,77,157,.24), rgba(48,226,219,.10)),
        linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      padding:12px;
      position:relative;
      overflow:hidden;
    }
    .story-item .thumb::after{
      content:"";
      position:absolute;
      inset:auto -10% -10% auto;
      width:86px;
      height:86px;
      border-radius:24px;
      background:rgba(255,255,255,.10);
      transform:rotate(18deg);
    }
    .story-item .thumb b{
      position:relative;
      z-index:1;
      font-size:1.5rem;
      line-height:1;
    }
    .story-item .thumb small{
      position:relative;
      z-index:1;
      color:#fff;
      font-size:.78rem;
    }
    .story-item h4{
      margin:0 0 8px;
      font-size:1.02rem;
      line-height:1.22;
    }
    .story-item p{
      margin:0 0 10px;
      color:var(--muted);
      font-size:.88rem;
    }
    .story-item .row{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      flex-wrap:wrap;
    }
    .story-item .tags{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
    }
    .tiny-tag{
      display:inline-flex;
      align-items:center;
      min-height:28px;
      padding:0 9px;
      border-radius:999px;
      font-size:.76rem;
      background:rgba(255,255,255,.04);
      border:1px solid rgba(255,255,255,.08);
      color:var(--muted);
    }
    .story-item .go{
      display:inline-flex;
      align-items:center;
      gap:6px;
      color:#fff;
      font-size:.86rem;
      white-space:nowrap;
    }
    .story-item .go i{
      width:13px;
      height:13px;
      color:var(--cyan);
    }
    .sidebar{
      position:sticky;
      top:96px;
      display:grid;
      gap:14px;
    }
    .sidebar .sidebar-card{
      padding:16px;
      border-radius:22px;
      background:rgba(16,21,31,.82);
      border:1px solid rgba(255,255,255,.08);
    }
    .sidebar h4{
      margin:0 0 10px;
      font-size:1rem;
    }
    .check-list{
      list-style:none;
      margin:0;
      padding:0;
      display:grid;
      gap:10px;
    }
    .check-list li{
      display:flex;
      align-items:flex-start;
      gap:10px;
      color:var(--muted);
      font-size:.9rem;
    }
    .check-list i{
      width:16px;
      height:16px;
      color:var(--green);
      margin-top:3px;
      flex:none;
    }
    .tag-cloud{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
    }
    .tag-cloud .tiny-tag{
      color:#fff;
    }
    .tag-cloud .tiny-tag:hover{
      border-color:rgba(255,255,255,.14);
      background:rgba(255,255,255,.07);
    }
    .process-grid{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:14px;
    }
    .step-card{
      padding:16px;
      background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
      min-height:100%;
    }
    .step-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom:12px;
    }
    .step-index{
      width:40px;
      height:40px;
      border-radius:14px;
      display:grid;
      place-items:center;
      background:linear-gradient(135deg, rgba(255,77,157,.24), rgba(48,226,219,.14));
      border:1px solid rgba(255,255,255,.12);
      font-weight:800;
      color:#fff;
    }
    .step-head i{
      width:18px;
      height:18px;
      color:var(--gold);
    }
    .step-card h4{
      margin:0 0 8px;
      font-size:1rem;
    }
    .step-card p{
      margin:0;
      color:var(--muted);
      font-size:.88rem;
    }
    .step-card .label{
      display:inline-flex;
      align-items:center;
      min-height:30px;
      padding:0 10px;
      border-radius:999px;
      margin-top:12px;
      background:rgba(255,255,255,.04);
      border:1px solid rgba(255,255,255,.08);
      color:#fff;
      font-size:.78rem;
    }
    .reward-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:14px;
    }
    .promo-card{
      overflow:hidden;
      background:linear-gradient(180deg, rgba(17,23,35,.92), rgba(12,15,22,.9));
    }
    .promo-art{
      aspect-ratio:16/9;
      background:
        linear-gradient(145deg, rgba(255,77,157,.24), rgba(48,226,219,.10)),
        linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.03));
      position:relative;
    }
    .promo-art::before,
    .promo-art::after{
      content:"";
      position:absolute;
      border-radius:20px;
      border:1px solid rgba(255,255,255,.14);
    }
    .promo-art::before{
      inset:16px 16px auto auto;
      width:80px;
      height:80px;
      background:rgba(255,255,255,.08);
      transform:rotate(15deg);
    }
    .promo-art::after{
      inset:auto auto 18px 18px;
      width:120px;
      height:58px;
      background:rgba(7,8,13,.36);
    }
    .promo-body{
      padding:16px;
    }
    .promo-body h4{
      margin:0 0 8px;
      font-size:1.05rem;
    }
    .promo-body p{
      margin:0 0 12px;
      color:var(--muted);
      font-size:.9rem;
    }
    .promo-meta{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .promo-meta .meta-pill{
      background:rgba(255,255,255,.03);
    }
    .progress-band{
      display:grid;
      grid-template-columns:minmax(0,1fr) 360px;
      gap:18px;
      align-items:stretch;
    }
    .progress-card{
      padding:18px;
      background:rgba(16,21,32,.82);
    }
    .progress-head{
      display:flex;
      justify-content:space-between;
      gap:12px;
      align-items:flex-start;
      margin-bottom:14px;
    }
    .progress-head h4{
      margin:0 0 4px;
      font-size:1.05rem;
    }
    .progress-head p{
      margin:0;
      color:var(--muted);
      font-size:.88rem;
    }
    .progress-list{
      display:grid;
      gap:14px;
    }
    .progress-row{
      display:grid;
      grid-template-columns:86px minmax(0,1fr) auto;
      gap:12px;
      align-items:center;
    }
    .progress-row strong{
      font-size:.9rem;
    }
    .progress-bar{
      height:10px;
      border-radius:999px;
      background:rgba(255,255,255,.06);
      overflow:hidden;
      border:1px solid rgba(255,255,255,.08);
    }
    .progress-bar span{
      display:block;
      height:100%;
      border-radius:inherit;
      background:linear-gradient(90deg, var(--pink), var(--cyan));
      box-shadow:0 0 14px rgba(255,77,157,.24);
    }
    .progress-row em{
      font-style:normal;
      color:#fff;
      font-size:.84rem;
      white-space:nowrap;
    }
    .counter-grid{
      display:grid;
      gap:10px;
    }
    .counter-item{
      padding:14px;
      border-radius:18px;
      background:rgba(255,255,255,.04);
      border:1px solid rgba(255,255,255,.08);
    }
    .counter-item strong{
      display:block;
      font-size:1.5rem;
      line-height:1;
    }
    .counter-item span{
      display:block;
      margin-top:6px;
      color:var(--muted);
      font-size:.86rem;
    }
    .faq-wrap .accordion{
      background:transparent;
      border:none;
    }
    .faq-wrap .accordion-item{
      border:1px solid rgba(255,255,255,.08);
      background:rgba(16,21,31,.82);
      border-radius:18px;
      overflow:hidden;
      margin-bottom:12px;
    }
    .faq-wrap .accordion-title{
      color:var(--text);
      background:transparent;
      border:none;
      font-size:.98rem;
      line-height:1.5;
      padding:16px 18px;
    }
    .faq-wrap .accordion-title:hover{
      background:rgba(255,255,255,.03);
    }
    .faq-wrap .accordion-content{
      background:rgba(255,255,255,.02);
      color:var(--muted);
      padding:0 18px 16px;
      border:none;
      font-size:.93rem;
    }
    .faq-wrap .accordion-title::before{
      color:var(--cyan);
      margin-right:10px;
      font-size:1.1rem;
      transform:translateY(-1px);
    }
    .cta-panel{
      position:relative;
      overflow:hidden;
      padding:22px;
      background:
        linear-gradient(135deg, rgba(255,77,157,.18), rgba(48,226,219,.12) 55%, rgba(139,99,255,.14)),
        rgba(16,21,31,.9);
    }
    .cta-panel::before{
      content:"";
      position:absolute;
      inset:-20% auto auto -20%;
      width:280px;
      height:280px;
      border-radius:50%;
      background:radial-gradient(circle, rgba(255,255,255,.12), transparent 62%);
      pointer-events:none;
    }
    .cta-panel h3{
      margin:0 0 8px;
      font-size:1.4rem;
      line-height:1.2;
    }
    .cta-panel p{
      margin:0;
      color:#ecf0f7;
      max-width:54ch;
    }
    .cta-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:18px;
    }
    .footer-shell{
      position:relative;
      z-index:1;
      margin-top:22px;
      border-top:1px solid rgba(255,255,255,.08);
      background:rgba(6,8,12,.88);
      backdrop-filter:blur(14px);
    }
    .footer-shell .grid-container{
      padding-top:26px;
      padding-bottom:22px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr .8fr .8fr;
      gap:20px;
      padding-bottom:18px;
      border-bottom:1px solid rgba(255,255,255,.08);
    }
    .footer-mark{
      display:flex;
      align-items:center;
      gap:12px;
      font-weight:800;
      font-size:1.04rem;
    }
    .footer-col p{
      color:var(--muted);
      font-size:.92rem;
      margin:0;
    }
    .footer-col strong{
      display:block;
      margin-bottom:12px;
      font-size:.95rem;
    }
    .footer-links{
      display:grid;
      gap:8px;
    }
    .footer-links a{
      color:var(--muted);
      font-size:.92rem;
      display:inline-flex;
      align-items:center;
      gap:6px;
      width:max-content;
    }
    .footer-links a:hover{
      color:#fff;
      transform:translateX(2px);
    }
    .footer-bottom{
      display:flex;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      padding-top:16px;
    }
    .footer-credits{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      color:var(--muted);
      font-size:.84rem;
    }
    .icon-chip{
      display:inline-grid;
      place-items:center;
      width:30px;
      height:30px;
      border-radius:10px;
      background:rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.08);
      color:var(--cyan);
      flex:none;
    }
    .icon-chip i{
      width:15px;
      height:15px;
    }
    .show-for-small-only{display:none !important;}
    .show-for-medium{display:inline-flex !important;}
    @media (max-width: 1024px){
      .desktop-nav{display:none}
      .show-for-small-only{display:inline-flex !important;}
      .show-for-medium{display:none !important;}
      .hero-metrics,
      .story-grid,
      .reward-grid,
      .process-grid,
      .footer-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
      }
      .feature-grid,
      .stream-layout,
      .progress-band{
        grid-template-columns:1fr;
      }
      .sidebar{
        position:static;
      }
    }
    @media (max-width: 768px){
      .topbar{
        min-height:72px;
      }
      .brand-text small{
        display:none;
      }
      .hero-shell{
        padding-top:18px;
      }
      .hero-inner{
        padding:18px;
      }
      .hero-title{
        max-width:none;
        font-size:clamp(1.8rem,7vw,2.6rem);
      }
      .hero-metrics,
      .story-grid,
      .reward-grid,
      .process-grid,
      .footer-grid,
      .cover-stage,
      .feature-cover,
      .filter-bar{
        grid-template-columns:1fr;
      }
      .story-item{
        grid-template-columns:1fr;
      }
      .cover-main,
      .feature-visual{
        min-height:auto;
      }
      .cover-face{
        min-height:220px;
      }
      .section-head{
        align-items:flex-start;
      }
      .stream-layout{
        gap:14px;
      }
      .filter-shell{
        padding:14px;
      }
      .hero-actions,
      .cta-actions{
        gap:10px;
      }
      .cta-primary,
      .btn-main,
      .btn-ghost{
        width:100%;
      }
    }
    @media (max-width: 520px){
      .grid-container{
        padding-left:14px;
        padding-right:14px;
      }
      .hero-band{
        border-radius:22px;
      }
      .hero-inner{
        padding:16px;
      }
      .hero-copy,
      .section-lead,
      .cta-panel p{
        font-size:.92rem;
      }
      .metric strong{
        font-size:1.02rem;
      }
      .visual-board,
      .feature-card,
      .progress-card,
      .cta-panel{
        border-radius:18px;
      }
      .accordion-title{
        font-size:.94rem;
      }
      .footer-shell .grid-container{
        padding-top:22px;
      }
    }

/* roulang page: category2 */
:root{
    --bg:#0b0d12;
    --bg-soft:#11151c;
    --bg-panel:#151b25;
    --panel:#10151e;
    --panel-2:#171d28;
    --text:#eef2ff;
    --muted:#9aa3b4;
    --border:rgba(255,255,255,.08);
    --border-strong:rgba(255,255,255,.14);
    --accent:#ff4fa0;
    --accent-2:#33e4ff;
    --accent-3:#ffcb66;
    --accent-4:#9a6dff;
    --shadow:0 18px 50px rgba(0,0,0,.42);
    --shadow-soft:0 10px 30px rgba(0,0,0,.24);
    --radius:20px;
    --radius-sm:14px;
    --radius-xs:10px;
}

*,
*::before,
*::after {
    box-sizing:border-box;
}

html {
    scroll-behavior:smooth;
}

body {
    margin:0;
    color:var(--text);
    background:
        linear-gradient(180deg, #090b10 0%, #0b0d12 50%, #090b10 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    line-height:1.7;
    letter-spacing:0;
    overflow-x:hidden;
}

body::before {
    content:"";
    position:fixed;
    inset:0;
    pointer-events:none;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size:100% 120px, 120px 100%;
    opacity:.22;
    mask-image: linear-gradient(180deg, rgba(0,0,0,.85), rgba(0,0,0,.18));
}

a {
    color:inherit;
    text-decoration:none;
    transition:color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

img {
    max-width:100%;
    display:block;
}

button,
input,
textarea,
select {
    font:inherit;
}

button {
    cursor:pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline:2px solid var(--accent-2);
    outline-offset:2px;
}

::selection {
    background: rgba(51,228,255,.25);
    color:#fff;
}

.off-canvas-wrapper {
    background:transparent;
}

.off-canvas-content {
    background:transparent;
    min-height:100vh;
}

.off-canvas {
    background: #0f1218;
    border-right:1px solid var(--border);
    color:var(--text);
}

.mobile-menu {
    padding:20px 18px 24px;
}

.mobile-menu-head {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    padding-bottom:18px;
    margin-bottom:18px;
    border-bottom:1px solid var(--border);
}

.mobile-menu-close {
    width:42px;
    height:42px;
    border-radius:12px;
    border:1px solid var(--border);
    background:rgba(255,255,255,.03);
    color:var(--text);
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

.mobile-menu-list {
    list-style:none;
    margin:0;
    padding:0;
    display:grid;
    gap:10px;
}

.mobile-menu-list a {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:14px 16px;
    border-radius:14px;
    border:1px solid var(--border);
    background:rgba(255,255,255,.02);
    color:var(--text);
}

.mobile-menu-list a.is-active {
    border-color:rgba(51,228,255,.45);
    box-shadow:0 0 0 1px rgba(255,79,160,.08) inset;
    background:linear-gradient(135deg, rgba(255,79,160,.11), rgba(51,228,255,.07));
}

.mobile-menu-cta {
    margin-top:18px;
    width:100%;
}

.top-shell {
    position:sticky;
    top:0;
    z-index:50;
    border-bottom:1px solid rgba(255,255,255,.08);
    background:rgba(9,11,16,.82);
    backdrop-filter: blur(12px);
    box-shadow:0 1px 0 rgba(255,255,255,.02) inset;
}

.topbar.grid-container.fluid {
    max-width:1360px;
    padding:14px 24px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
}

.brand {
    display:flex;
    align-items:center;
    gap:14px;
    min-width:0;
}

.brand-mark {
    width:44px;
    height:44px;
    border-radius:16px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:
        linear-gradient(135deg, rgba(255,79,160,.96), rgba(51,228,255,.9));
    color:#fff;
    font-weight:800;
    letter-spacing:0;
    box-shadow:0 12px 28px rgba(255,79,160,.18), 0 0 0 1px rgba(255,255,255,.12) inset;
    border:1px solid rgba(255,255,255,.12);
    flex:0 0 auto;
}

.brand-mark span {
    font-size:16px;
    line-height:1;
}

.brand-text {
    display:flex;
    flex-direction:column;
    gap:2px;
    min-width:0;
}

.brand-text strong {
    font-size:15px;
    line-height:1.2;
    white-space:nowrap;
}

.brand-text small {
    color:var(--muted);
    font-size:12px;
    line-height:1.2;
    white-space:nowrap;
}

.desktop-nav {
    flex:1 1 auto;
    display:flex;
    justify-content:center;
}

.nav-list {
    list-style:none;
    margin:0;
    padding:0;
    display:flex;
    align-items:center;
    gap:8px;
}

.nav-list a {
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:44px;
    padding:0 16px;
    border-radius:999px;
    color:var(--muted);
    border:1px solid transparent;
}

.nav-list a:hover {
    color:#fff;
    background:rgba(255,255,255,.03);
    border-color:rgba(255,255,255,.06);
}

.nav-list a.is-active {
    color:#fff;
    background:linear-gradient(135deg, rgba(255,79,160,.12), rgba(51,228,255,.08));
    border-color:rgba(51,228,255,.3);
    box-shadow:0 0 0 1px rgba(255,79,160,.08) inset;
}

.nav-list a.is-active::after {
    content:"";
    position:absolute;
    left:16px;
    right:16px;
    bottom:7px;
    height:2px;
    border-radius:999px;
    background:linear-gradient(90deg, var(--accent), var(--accent-2));
    box-shadow:0 0 12px rgba(51,228,255,.45);
}

.header-actions {
    display:flex;
    align-items:center;
    gap:12px;
    flex:0 0 auto;
}

.cta-primary,
.menu-button,
.ghost-btn,
.filter-chip,
.card-link {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
}

.cta-primary,
.menu-button {
    min-height:46px;
    padding:0 18px;
    border-radius:999px;
    border:1px solid transparent;
    font-weight:700;
}

.cta-primary {
    color:#fff;
    background:linear-gradient(135deg, var(--accent), #ff7a5d 52%, var(--accent-2));
    box-shadow:0 12px 30px rgba(255,79,160,.22);
}

.cta-primary:hover {
    transform:translateY(-1px);
    box-shadow:0 14px 34px rgba(255,79,160,.28);
    color:#fff;
}

.menu-button {
    background:rgba(255,255,255,.04);
    color:var(--text);
    border-color:var(--border);
    box-shadow:var(--shadow-soft);
}

.menu-button:hover {
    background:rgba(255,255,255,.08);
    color:#fff;
}

.page-main {
    position:relative;
    z-index:1;
}

.section-shell {
    padding:18px 0 24px;
}

.hero-shell {
    padding:34px 0 12px;
}

.hero-panel {
    position:relative;
    padding:26px 0 6px;
}

.hero-panel::before {
    content:"";
    position:absolute;
    inset:0 0 auto 0;
    height:1px;
    background:linear-gradient(90deg, transparent, rgba(255,79,160,.42), rgba(51,228,255,.42), transparent);
}

.hero-copy {
    max-width:620px;
}

.hero-kicker {
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 12px;
    margin-bottom:14px;
    border-radius:999px;
    border:1px solid rgba(51,228,255,.24);
    background:rgba(255,255,255,.03);
    color:#dce6ff;
    font-size:12px;
    letter-spacing:0;
}

.hero-copy h1 {
    margin:0 0 14px;
    font-size:46px;
    line-height:1.08;
    letter-spacing:0;
}

.hero-copy p {
    margin:0;
    color:var(--muted);
    font-size:16px;
    line-height:1.9;
}

.hero-stats {
    margin-top:22px;
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:12px;
}

.stat-pill {
    padding:14px 14px 15px;
    border-radius:18px;
    border:1px solid var(--border);
    background:rgba(255,255,255,.03);
    box-shadow:var(--shadow-soft);
}

.stat-pill strong {
    display:block;
    font-size:18px;
    line-height:1.1;
    margin-bottom:4px;
}

.stat-pill span {
    display:block;
    color:var(--muted);
    font-size:12px;
    line-height:1.4;
}

.hero-actions {
    margin-top:22px;
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.cta-secondary {
    min-height:46px;
    padding:0 18px;
    border-radius:999px;
    border:1px solid var(--border-strong);
    background:rgba(255,255,255,.03);
    color:var(--text);
    font-weight:700;
}

.cta-secondary:hover {
    background:rgba(255,255,255,.08);
    border-color:rgba(51,228,255,.4);
    color:#fff;
}

.hero-bento {
    display:grid;
    grid-template-columns:1.2fr .92fr;
    grid-template-areas:
        "main side"
        "strip strip";
    gap:16px;
    align-items:stretch;
}

.bento-main,
.mini-panel,
.bento-strip,
.filter-panel,
.rank-card,
.rail-card,
.progress-board,
.cta-panel,
.faq-accordion .accordion-item,
.footer-shell .footer-grid,
.footer-shell .footer-bottom {
    border:1px solid var(--border);
    background:var(--panel);
    box-shadow:var(--shadow-soft);
}

.bento-main {
    grid-area:main;
    min-height:340px;
    padding:18px;
    border-radius:var(--radius);
    background:
        linear-gradient(145deg, rgba(255,79,160,.16), rgba(12,15,22,.86) 50%, rgba(51,228,255,.12)),
        linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
    position:relative;
    overflow:hidden;
}

.bento-main::before {
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(120deg, rgba(255,255,255,.05) 0, transparent 18%),
        linear-gradient(90deg, transparent 0 35%, rgba(255,255,255,.04) 36% 37%, transparent 38% 100%);
    opacity:.75;
    pointer-events:none;
}

.bento-main-inner {
    position:relative;
    z-index:1;
    display:flex;
    flex-direction:column;
    height:100%;
    gap:14px;
}

.bento-head {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    flex-wrap:wrap;
}

.live-badge,
.panel-badge,
.stat-badge,
.cover-pill,
.hot-chip,
.status-badge {
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:7px 10px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,.12);
    background:rgba(255,255,255,.05);
    color:#e6eeff;
    font-size:12px;
    line-height:1;
}

.live-badge {
    border-color:rgba(51,228,255,.3);
    background:rgba(51,228,255,.08);
}

.live-dot {
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--accent-2);
    box-shadow:0 0 0 4px rgba(51,228,255,.12);
}

.cover-stage {
    flex:1 1 auto;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    gap:14px;
    margin-top:4px;
    padding:16px;
    border-radius:18px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
    border:1px solid rgba(255,255,255,.08);
}

.cover-stage-top,
.cover-mini-row {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    flex-wrap:wrap;
}

.cover-stage-top strong {
    font-size:18px;
    line-height:1.2;
}

.cover-grid {
    display:grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap:14px;
    align-items:end;
}

.cover-board {
    min-height:124px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    gap:6px;
    padding:14px;
    border-radius:18px;
    background:linear-gradient(135deg, rgba(255,79,160,.2), rgba(51,228,255,.1));
    border:1px solid rgba(255,255,255,.08);
}

.cover-board strong {
    display:block;
    font-size:34px;
    line-height:1;
}

.cover-board span {
    color:#dfe6f5;
    font-size:13px;
}

.cover-bars {
    display:flex;
    align-items:flex-end;
    gap:8px;
    min-height:124px;
    padding:10px 0 0;
}

.cover-bars span {
    flex:1 1 0;
    border-radius:12px 12px 4px 4px;
    background:linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.04));
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 10px 18px rgba(0,0,0,.12);
}

.cover-bars span:nth-child(1) { height:42%; background:linear-gradient(180deg, rgba(255,79,160,.9), rgba(255,79,160,.35)); }
.cover-bars span:nth-child(2) { height:68%; background:linear-gradient(180deg, rgba(51,228,255,.95), rgba(51,228,255,.3)); }
.cover-bars span:nth-child(3) { height:55%; background:linear-gradient(180deg, rgba(255,203,102,.95), rgba(255,203,102,.28)); }
.cover-bars span:nth-child(4) { height:82%; background:linear-gradient(180deg, rgba(154,109,255,.95), rgba(154,109,255,.28)); }
.cover-bars span:nth-child(5) { height:61%; background:linear-gradient(180deg, rgba(255,122,93,.95), rgba(255,122,93,.3)); }

.cover-mini-row span {
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#d6def0;
    font-size:12px;
}

.bento-side {
    grid-area:side;
    display:grid;
    gap:16px;
}

.mini-panel {
    min-height:162px;
    padding:18px;
    border-radius:var(--radius);
    background:
        linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015)),
        var(--panel-2);
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    gap:12px;
}

.mini-panel i {
    font-size:18px;
    color:var(--accent-2);
}

.mini-panel strong {
    font-size:18px;
    line-height:1.2;
}

.mini-panel span {
    color:var(--muted);
    font-size:13px;
    line-height:1.8;
}

.bento-strip {
    grid-area:strip;
    min-height:66px;
    padding:0 18px;
    border-radius:18px;
    background:
        linear-gradient(135deg, rgba(255,79,160,.12), rgba(51,228,255,.08) 60%, rgba(255,203,102,.08));
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    font-weight:700;
}

.bento-strip:hover {
    transform:translateY(-1px);
    border-color:rgba(51,228,255,.35);
    color:#fff;
}

.filter-panel {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    padding:18px;
    border-radius:var(--radius);
    background:
        linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015)),
        var(--panel);
}

.filter-left {
    display:flex;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
    min-width:0;
}

.filter-tabs {
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:nowrap;
    overflow-x:auto;
    padding-bottom:2px;
    -webkit-overflow-scrolling:touch;
}

.filter-tabs::-webkit-scrollbar {
    height:6px;
}

.filter-tabs::-webkit-scrollbar-thumb {
    background:rgba(255,255,255,.12);
    border-radius:999px;
}

.filter-chip {
    min-height:42px;
    padding:0 14px;
    border-radius:999px;
    border:1px solid var(--border);
    background:rgba(255,255,255,.02);
    color:var(--muted);
    white-space:nowrap;
    font-weight:700;
}

.filter-chip:hover {
    border-color:rgba(51,228,255,.35);
    color:#fff;
    background:rgba(255,255,255,.05);
}

.filter-chip.is-active {
    color:#fff;
    border-color:rgba(51,228,255,.35);
    background:linear-gradient(135deg, rgba(255,79,160,.16), rgba(51,228,255,.12));
    box-shadow:0 0 0 1px rgba(255,79,160,.08) inset;
}

.filter-search {
    flex:1 1 290px;
    max-width:340px;
    min-width:220px;
    display:flex;
    align-items:center;
    gap:10px;
    padding:0 14px;
    min-height:46px;
    border-radius:16px;
    border:1px solid var(--border);
    background:rgba(255,255,255,.03);
    color:var(--muted);
}

.filter-search i {
    font-size:16px;
    color:var(--accent-2);
}

.filter-search input {
    margin:0;
    padding:0;
    height:auto;
    background:transparent;
    border:none;
    color:var(--text);
    box-shadow:none;
}

.filter-search input::placeholder {
    color:#7f889a;
}

.filter-count {
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:var(--muted);
    font-size:13px;
    white-space:nowrap;
}

.content-shell {
    padding:18px 0 18px;
}

.section-head {
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:14px;
    margin-bottom:18px;
}

.section-head h2 {
    margin:0;
    font-size:26px;
    line-height:1.2;
}

.section-head p {
    margin:0;
    color:var(--muted);
    font-size:13px;
}

.section-note {
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 10px;
    border-radius:999px;
    border:1px solid rgba(51,228,255,.24);
    background:rgba(255,255,255,.03);
    color:#dce6ff;
    font-size:12px;
}

.rank-layout {
    display:grid;
    grid-template-columns:minmax(0, 1fr) 336px;
    gap:20px;
    align-items:start;
}

.rank-grid .cell {
    margin-bottom:16px;
}

.rank-card {
    height:100%;
    border-radius:var(--radius);
    overflow:hidden;
    background:var(--panel);
    border:1px solid var(--border);
    transition:transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.rank-card:hover {
    transform:translateY(-3px);
    border-color:rgba(51,228,255,.34);
    box-shadow:0 16px 40px rgba(0,0,0,.36), 0 0 0 1px rgba(255,79,160,.08) inset;
}

.rank-cover {
    position:relative;
    min-height:176px;
    padding:16px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    overflow:hidden;
}

.rank-cover::after {
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(135deg, rgba(255,255,255,.08), transparent 34%),
        radial-gradient(circle at 85% 20%, rgba(255,255,255,.1), transparent 22%);
    opacity:.75;
    pointer-events:none;
}

.cover-a { background:linear-gradient(135deg, rgba(255,79,160,.92), rgba(18,21,32,.84) 58%, rgba(51,228,255,.52)); }
.cover-b { background:linear-gradient(135deg, rgba(51,228,255,.9), rgba(18,21,32,.84) 54%, rgba(255,203,102,.48)); }
.cover-c { background:linear-gradient(135deg, rgba(255,203,102,.92), rgba(18,21,32,.86) 55%, rgba(255,79,160,.48)); }
.cover-d { background:linear-gradient(135deg, rgba(154,109,255,.9), rgba(18,21,32,.86) 56%, rgba(51,228,255,.5)); }
.cover-e { background:linear-gradient(135deg, rgba(255,122,93,.92), rgba(18,21,32,.86) 56%, rgba(255,79,160,.52)); }
.cover-f { background:linear-gradient(135deg, rgba(63,232,214,.86), rgba(18,21,32,.86) 55%, rgba(255,203,102,.48)); }

.cover-top {
    position:relative;
    z-index:1;
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:10px;
}

.rank-num {
    width:46px;
    height:46px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:16px;
    background:rgba(0,0,0,.26);
    border:1px solid rgba(255,255,255,.12);
    color:#fff;
    font-weight:800;
    font-size:15px;
    box-shadow:0 10px 20px rgba(0,0,0,.18);
}

.cover-flag {
    position:relative;
    z-index:1;
}

.cover-trend {
    position:relative;
    z-index:1;
    display:inline-flex;
    align-items:center;
    gap:6px;
    margin-left:auto;
}

.rank-body {
    padding:18px 18px 20px;
    display:flex;
    flex-direction:column;
    gap:14px;
    min-height:100%;
}

.rank-body h3 {
    margin:0;
    font-size:18px;
    line-height:1.3;
}

.rank-body p {
    margin:0;
    color:var(--muted);
    font-size:14px;
    line-height:1.8;
}

.tag-row {
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}

.tag-pill {
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:7px 10px;
    border-radius:999px;
    border:1px solid var(--border);
    background:rgba(255,255,255,.03);
    color:#e2e8f8;
    font-size:12px;
    line-height:1;
}

.meta-row {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    color:var(--muted);
    font-size:12px;
}

.card-link {
    margin-top:auto;
    width:max-content;
    color:var(--accent-2);
    font-weight:700;
    font-size:14px;
}

.card-link:hover {
    color:#fff;
}

.card-link i {
    font-size:14px;
}

.rank-card[hidden] {
    display:none !important;
}

.side-rail {
    position:sticky;
    top:92px;
    display:grid;
    gap:16px;
}

.rail-card {
    border-radius:var(--radius);
    background:
        linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015)),
        var(--panel-2);
    padding:18px;
}

.rail-card h3 {
    margin:0 0 12px;
    font-size:16px;
    line-height:1.3;
}

.rail-list {
    list-style:none;
    margin:0;
    padding:0;
    display:grid;
    gap:12px;
}

.rail-list li {
    display:flex;
    gap:10px;
    align-items:flex-start;
    color:var(--muted);
    font-size:13px;
    line-height:1.7;
}

.rail-list i {
    color:var(--accent-2);
    margin-top:2px;
    flex:0 0 auto;
}

.rail-meters {
    display:grid;
    gap:14px;
}

.meter-row {
    display:grid;
    gap:8px;
}

.meter-head {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    color:#d7def0;
    font-size:12px;
}

.meter-track {
    height:10px;
    border-radius:999px;
    overflow:hidden;
    background:rgba(255,255,255,.05);
    border:1px solid var(--border);
}

.meter-fill {
    display:block;
    height:100%;
    border-radius:inherit;
    background:linear-gradient(90deg, var(--accent), var(--accent-3), var(--accent-2));
}

.status-badges {
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.status-badge {
    border-color:rgba(255,255,255,.11);
    background:rgba(255,255,255,.04);
    color:#dbe5f8;
}

.tags-cloud {
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}

.small-chip {
    display:inline-flex;
    align-items:center;
    gap:6px;
    min-height:34px;
    padding:0 12px;
    border-radius:999px;
    border:1px solid var(--border);
    background:rgba(255,255,255,.03);
    color:var(--muted);
    font-size:12px;
}

.progress-shell {
    padding:6px 0 22px;
}

.progress-board {
    border-radius:24px;
    background:
        linear-gradient(135deg, rgba(255,79,160,.09), rgba(51,228,255,.08) 52%, rgba(255,203,102,.06)),
        var(--panel);
    padding:22px;
}

.progress-head {
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:14px;
    margin-bottom:14px;
}

.progress-head h2 {
    margin:0;
    font-size:26px;
    line-height:1.2;
}

.progress-head p {
    margin:0;
    color:var(--muted);
    font-size:13px;
}

.progress-line {
    height:12px;
    border-radius:999px;
    overflow:hidden;
    border:1px solid var(--border);
    background:rgba(255,255,255,.05);
    margin-bottom:18px;
}

.progress-line span {
    display:block;
    height:100%;
    width:72%;
    border-radius:inherit;
    background:linear-gradient(90deg, var(--accent), var(--accent-3), var(--accent-2));
}

.progress-grid {
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:14px;
}

.progress-item {
    border-radius:18px;
    border:1px solid var(--border);
    background:var(--panel-2);
    padding:16px;
}

.progress-item strong {
    display:block;
    margin-bottom:6px;
    font-size:15px;
    line-height:1.3;
}

.progress-item span {
    display:block;
    color:var(--muted);
    font-size:12px;
    line-height:1.7;
}

.progress-bar {
    margin-top:12px;
    height:8px;
    border-radius:999px;
    overflow:hidden;
    border:1px solid var(--border);
    background:rgba(255,255,255,.05);
}

.progress-bar span {
    display:block;
    height:100%;
    border-radius:inherit;
    background:linear-gradient(90deg, rgba(255,79,160,.95), rgba(255,203,102,.95), rgba(51,228,255,.95));
}

.faq-shell {
    padding:14px 0 24px;
}

.faq-shell .section-head {
    margin-bottom:16px;
}

.faq-accordion {
    margin:0;
    background:transparent;
    border:none;
}

.faq-accordion .accordion-item {
    border-radius:18px;
    overflow:hidden;
    margin-bottom:12px;
    background:var(--panel);
    border:1px solid var(--border);
}

.faq-accordion .accordion-title {
    color:var(--text);
    background:transparent;
    border:none;
    padding:16px 18px;
    font-size:15px;
    line-height:1.5;
    padding-right:52px;
}

.faq-accordion .accordion-title:before {
    color:var(--accent-2);
    right:18px;
    margin-top:-9px;
}

.faq-accordion .accordion-content {
    border:none;
    background:var(--panel-2);
    color:var(--muted);
    padding:0 18px 18px;
    font-size:14px;
    line-height:1.9;
}

.cta-shell {
    padding:16px 0 34px;
}

.cta-panel {
    border-radius:24px;
    padding:24px;
    background:
        linear-gradient(135deg, rgba(255,79,160,.12), rgba(51,228,255,.08) 55%, rgba(255,203,102,.08)),
        var(--panel);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
}

.cta-copy h2 {
    margin:0 0 8px;
    font-size:26px;
    line-height:1.2;
}

.cta-copy p {
    margin:0;
    color:var(--muted);
    font-size:15px;
    line-height:1.8;
}

.cta-actions {
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    justify-content:flex-end;
}

.ghost-btn {
    min-height:46px;
    padding:0 18px;
    border-radius:999px;
    border:1px solid var(--border-strong);
    background:rgba(255,255,255,.03);
    color:var(--text);
    font-weight:700;
}

.ghost-btn:hover {
    background:rgba(255,255,255,.08);
    border-color:rgba(51,228,255,.35);
    color:#fff;
    transform:translateY(-1px);
}

.footer-shell {
    margin-top:10px;
    padding:24px 0 18px;
    border-top:1px solid rgba(255,255,255,.08);
    background:linear-gradient(180deg, rgba(255,255,255,.015), rgba(255,255,255,.03));
}

.footer-shell .grid-container {
    max-width:1360px;
}

.footer-grid {
    border-radius:24px;
    padding:24px;
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1fr;
    gap:20px;
    background:rgba(255,255,255,.02);
}

.footer-col strong {
    display:block;
    margin-bottom:12px;
    font-size:14px;
    line-height:1.3;
}

.footer-mark {
    display:flex;
    align-items:center;
    gap:12px;
    font-size:16px;
    font-weight:700;
}

.footer-col p {
    margin:0;
    color:var(--muted);
    font-size:13px;
    line-height:1.8;
}

.footer-links {
    display:grid;
    gap:10px;
}

.footer-links a {
    color:var(--muted);
    font-size:13px;
}

.footer-links a:hover {
    color:#fff;
}

.footer-bottom {
    margin-top:14px;
    border-radius:20px;
    padding:16px 18px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    color:var(--muted);
    background:rgba(255,255,255,.02);
}

.footer-credits {
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:10px;
    font-size:12px;
}

@media screen and (max-width: 1080px) {
    .desktop-nav {
        display:none;
    }

    .hero-bento,
    .rank-layout {
        grid-template-columns:1fr;
    }

    .side-rail {
        position:static;
    }

    .progress-grid,
    .footer-grid {
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
}

@media screen and (max-width: 768px) {
    .topbar.grid-container.fluid {
        padding:12px 16px;
    }

    .brand-text small {
        white-space:normal;
    }

    .hero-shell {
        padding-top:22px;
    }

    .hero-copy h1 {
        font-size:32px;
    }

    .hero-stats {
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }

    .hero-actions {
        width:100%;
    }

    .hero-actions > a {
        flex:1 1 220px;
    }

    .filter-panel {
        flex-direction:column;
        align-items:stretch;
    }

    .filter-left {
        width:100%;
    }

    .filter-search {
        max-width:none;
        width:100%;
    }

    .section-head,
    .progress-head,
    .cta-panel,
    .footer-bottom {
        flex-direction:column;
        align-items:flex-start;
    }

    .progress-grid {
        grid-template-columns:1fr;
    }

    .cta-actions {
        width:100%;
        justify-content:flex-start;
    }

    .footer-grid {
        grid-template-columns:1fr;
    }
}

@media screen and (max-width: 520px) {
    .hero-stats {
        grid-template-columns:1fr;
    }

    .cover-grid {
        grid-template-columns:1fr;
    }

    .cover-board {
        min-height:96px;
    }

    .cover-bars {
        min-height:96px;
    }

    .rank-cover {
        min-height:156px;
    }

    .cta-primary,
    .cta-secondary,
    .ghost-btn,
    .menu-button,
    .filter-chip {
        width:100%;
    }

    .header-actions {
        gap:8px;
    }

    .header-actions .cta-primary {
        display:none;
    }

    .brand-text strong {
        font-size:14px;
    }

    .brand-text small {
        font-size:11px;
    }

    .bento-strip {
        min-height:72px;
        padding:14px 16px;
        flex-direction:column;
        align-items:flex-start;
    }

    .cta-panel {
        padding:18px;
    }

    .hero-copy p,
    .cta-copy p {
        font-size:14px;
    }
}
