/* roulang page: index */
:root {
      --bg: #160f24;
      --bg-deep: #0d0916;
      --panel: #211832;
      --panel-2: #2b203e;
      --panel-soft: #37294e;
      --cream: #fff4d6;
      --text: #fff8e8;
      --muted: #c6b8d8;
      --muted-2: #9586aa;
      --pink: #ff3fa4;
      --pink-2: #ff78c7;
      --cyan: #35f2d0;
      --orange: #ff9f2e;
      --yellow: #ffe45e;
      --green: #64ff89;
      --border: rgba(255, 244, 214, .18);
      --border-strong: rgba(53, 242, 208, .55);
      --shadow-pink: 5px 5px 0 rgba(255, 63, 164, .34);
      --shadow-cyan: 5px 5px 0 rgba(53, 242, 208, .26);
      --shadow-orange: 5px 5px 0 rgba(255, 159, 46, .3);
      --radius-lg: 24px;
      --radius-md: 18px;
      --radius-sm: 12px;
      --container: 1200px;
      --nav-height: 112px;
      --ease: .22s ease;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-height: 100vh;
      color: var(--text);
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
      line-height: 1.75;
      background:
        radial-gradient(circle at 12% 8%, rgba(255, 63, 164, .2), transparent 25%),
        radial-gradient(circle at 88% 18%, rgba(53, 242, 208, .16), transparent 24%),
        linear-gradient(180deg, var(--bg-deep), var(--bg) 38%, #120b1f);
      padding-bottom: 92px;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: -1;
      background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(rgba(255, 244, 214, .03) 50%, transparent 50%);
      background-size: 24px 24px, 24px 24px, 100% 6px;
      opacity: .78;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color var(--ease), border-color var(--ease), background var(--ease), transform var(--ease), box-shadow var(--ease);
    }

    a:hover {
      color: var(--cyan);
    }

    img, svg {
      max-width: 100%;
      display: block;
    }

    button, input, select, textarea {
      font: inherit;
    }

    button:focus-visible,
    a:focus-visible,
    input:focus-visible,
    .accordion-button:focus {
      outline: 3px solid rgba(53, 242, 208, .72);
      outline-offset: 3px;
      box-shadow: none;
    }

    .site-container {
      width: min(var(--container), calc(100% - 32px));
      margin-inline: auto;
    }

    .section {
      padding: 78px 0;
      position: relative;
    }

    .section-tight {
      padding: 58px 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 12px;
      border: 2px solid rgba(255, 228, 94, .42);
      border-radius: 999px;
      background: rgba(255, 228, 94, .08);
      color: var(--yellow);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: .04em;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      background: var(--yellow);
      box-shadow: 10px 0 0 var(--pink), 20px 0 0 var(--cyan);
    }

    .section-title {
      margin: 16px 0 12px;
      font-size: clamp(26px, 4vw, 38px);
      line-height: 1.18;
      font-weight: 900;
      letter-spacing: -.03em;
      color: var(--cream);
      text-shadow: 3px 3px 0 rgba(255, 63, 164, .18);
    }

    .section-desc {
      margin: 0;
      color: var(--muted);
      font-size: 16px;
      max-width: 760px;
    }

    .pixel-header {
      position: sticky;
      top: 0;
      z-index: 1030;
      border-bottom: 2px solid rgba(255, 244, 214, .14);
      background: rgba(13, 9, 22, .96);
      box-shadow: 0 10px 0 rgba(0, 0, 0, .15);
    }

    .notice-strip {
      border-bottom: 1px dashed rgba(255, 228, 94, .35);
      background: linear-gradient(90deg, rgba(255, 159, 46, .16), rgba(53, 242, 208, .08), rgba(255, 63, 164, .12));
      color: var(--cream);
      font-size: 13px;
      font-weight: 700;
    }

    .notice-strip .site-container {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 7px 0;
    }

    .notice-dot {
      width: 10px;
      height: 10px;
      background: var(--orange);
      box-shadow: 4px 4px 0 rgba(0,0,0,.35);
      flex: 0 0 auto;
    }

    .topbar {
      padding: 16px 0 12px;
    }

    .brand-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 13px;
    }

    .brand-logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }

    .logo-mark {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      border: 2px solid var(--cream);
      background:
        linear-gradient(135deg, var(--pink) 0 35%, transparent 35% 45%, var(--cyan) 45% 70%, var(--orange) 70%);
      box-shadow: 4px 4px 0 rgba(255, 244, 214, .2);
      position: relative;
      flex: 0 0 auto;
    }

    .logo-mark::after {
      content: "";
      position: absolute;
      inset: 10px;
      border: 2px solid rgba(13, 9, 22, .75);
      border-radius: 4px;
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1.15;
      min-width: 0;
    }

    .brand-name {
      color: var(--cream);
      font-weight: 950;
      font-size: 18px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .brand-sub {
      color: var(--muted-2);
      font-size: 12px;
      font-weight: 700;
    }

    .nav-chip-row {
      display: flex;
      gap: 10px;
      overflow-x: auto;
      padding: 3px 2px 8px;
      scrollbar-width: thin;
      scrollbar-color: var(--pink) transparent;
    }

    .nav-chip-row::-webkit-scrollbar {
      height: 6px;
    }

    .nav-chip-row::-webkit-scrollbar-thumb {
      background: var(--pink);
      border-radius: 999px;
    }

    .nav-pills .nav-link.pixel-nav {
      color: var(--text);
      background: rgba(43, 32, 62, .88);
      border: 2px solid rgba(255, 244, 214, .18);
      border-radius: 999px;
      padding: 9px 15px;
      font-size: 14px;
      font-weight: 850;
      white-space: nowrap;
      box-shadow: 3px 3px 0 rgba(0,0,0,.22);
    }

    .nav-pills .nav-link.pixel-nav:hover {
      color: var(--cyan);
      border-color: rgba(53, 242, 208, .75);
      transform: translateY(-2px);
      box-shadow: 4px 4px 0 rgba(53, 242, 208, .16);
    }

    .nav-pills .nav-link.pixel-nav.active {
      color: #170c1f;
      background: var(--cyan);
      border-color: var(--cream);
      box-shadow: 4px 4px 0 rgba(255, 63, 164, .45);
    }

    .pixel-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 44px;
      padding: 11px 18px;
      border: 2px solid var(--cream);
      border-radius: 13px;
      font-weight: 900;
      letter-spacing: .01em;
      transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
      cursor: pointer;
      user-select: none;
    }

    .pixel-btn:hover {
      transform: translate(-2px, -2px);
    }

    .pixel-btn:active {
      transform: translate(1px, 1px);
      box-shadow: 2px 2px 0 rgba(0,0,0,.35) !important;
    }

    .pixel-btn.primary {
      color: #180b1c;
      background: var(--pink);
      box-shadow: 5px 5px 0 rgba(53, 242, 208, .42);
    }

    .pixel-btn.primary:hover {
      color: #180b1c;
      background: var(--orange);
      box-shadow: 6px 6px 0 rgba(255, 63, 164, .36);
    }

    .pixel-btn.secondary {
      color: var(--cyan);
      background: rgba(53, 242, 208, .06);
      border-color: var(--cyan);
      box-shadow: 5px 5px 0 rgba(255, 63, 164, .18);
    }

    .pixel-btn.secondary:hover {
      color: #13091b;
      background: var(--cyan);
      border-color: var(--cream);
    }

    .pixel-btn.ghost {
      color: var(--cream);
      background: rgba(255, 244, 214, .06);
      border-color: rgba(255, 244, 214, .3);
      box-shadow: 4px 4px 0 rgba(0,0,0,.3);
    }

    .hero {
      padding: 74px 0 70px;
      overflow: hidden;
    }

    .hero-stage {
      border: 2px solid rgba(255, 244, 214, .2);
      border-radius: 30px;
      background:
        linear-gradient(135deg, rgba(255, 63, 164, .16), transparent 30%),
        linear-gradient(315deg, rgba(53, 242, 208, .12), transparent 28%),
        rgba(33, 24, 50, .82);
      box-shadow: 8px 8px 0 rgba(0,0,0,.28), inset 0 0 0 2px rgba(255,255,255,.03);
      padding: clamp(24px, 4vw, 46px);
      position: relative;
    }

    .hero-stage::before {
      content: "";
      position: absolute;
      right: 24px;
      top: 24px;
      width: 96px;
      height: 96px;
      background:
        linear-gradient(90deg, rgba(255,255,255,.08) 50%, transparent 50%),
        linear-gradient(rgba(255,255,255,.08) 50%, transparent 50%);
      background-size: 16px 16px;
      opacity: .5;
      border-radius: 18px;
    }

    .hero h1 {
      margin: 18px 0 16px;
      font-size: clamp(30px, 5vw, 52px);
      line-height: 1.15;
      font-weight: 950;
      letter-spacing: -.045em;
      color: var(--cream);
      max-width: 900px;
    }

    .hero h1 .highlight {
      color: var(--cyan);
      text-shadow: 4px 4px 0 rgba(255, 63, 164, .35);
    }

    .hero-intro {
      max-width: 820px;
      color: var(--muted);
      font-size: 17px;
      margin: 0 0 24px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin: 26px 0 22px;
    }

    .hero-data {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-top: 22px;
    }

    .kpi-card {
      border: 2px solid rgba(255, 244, 214, .18);
      border-radius: 18px;
      background: rgba(13, 9, 22, .44);
      padding: 14px 16px;
      box-shadow: 4px 4px 0 rgba(0,0,0,.22);
    }

    .kpi-num {
      color: var(--yellow);
      font-size: 24px;
      font-weight: 950;
      line-height: 1;
    }

    .kpi-label {
      margin-top: 7px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    .entry-matrix {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 14px;
      height: 100%;
    }

    .matrix-card {
      border: 2px solid rgba(255, 244, 214, .18);
      border-radius: 22px;
      background: rgba(22, 15, 36, .82);
      padding: 18px;
      min-height: 126px;
      box-shadow: var(--shadow-cyan);
      position: relative;
      overflow: hidden;
    }

    .matrix-card.large {
      grid-row: span 2;
      min-height: 268px;
      background:
        radial-gradient(circle at 20% 20%, rgba(255, 63, 164, .18), transparent 36%),
        rgba(22, 15, 36, .88);
      box-shadow: var(--shadow-pink);
    }

    .matrix-card::after {
      content: "";
      position: absolute;
      top: 14px;
      right: 14px;
      width: 18px;
      height: 18px;
      background: var(--pink);
      box-shadow: -12px 12px 0 var(--cyan), -24px 24px 0 var(--orange);
      opacity: .92;
    }

    .matrix-icon {
      width: 38px;
      height: 38px;
      border: 2px solid var(--cream);
      border-radius: 10px;
      background: var(--cyan);
      box-shadow: 4px 4px 0 rgba(0,0,0,.28);
      margin-bottom: 16px;
    }

    .matrix-card:nth-child(2) .matrix-icon {
      background: var(--orange);
    }

    .matrix-card:nth-child(3) .matrix-icon {
      background: var(--pink);
    }

    .matrix-card h3 {
      margin: 0 0 8px;
      color: var(--cream);
      font-size: 18px;
      font-weight: 950;
    }

    .matrix-card p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .time-panel {
      margin-top: 18px;
      border: 2px dashed rgba(255, 228, 94, .42);
      border-radius: 18px;
      padding: 14px;
      background: rgba(255, 228, 94, .06);
    }

    .time-title {
      color: var(--yellow);
      font-size: 14px;
      font-weight: 900;
      margin-bottom: 10px;
    }

    .time-slots {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .time-slot {
      padding: 7px 10px;
      border: 2px solid rgba(255,244,214,.18);
      border-radius: 999px;
      color: var(--cream);
      background: rgba(255,255,255,.04);
      font-size: 13px;
      font-weight: 800;
    }

    .time-slot.active {
      color: #170c1f;
      background: var(--yellow);
      border-color: var(--cream);
    }

    .ladder-wrap {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: 24px;
      align-items: stretch;
      margin-top: 30px;
    }

    .ladder-main {
      border: 2px solid rgba(255, 244, 214, .22);
      border-radius: 26px;
      padding: 26px;
      background: var(--cream);
      color: #22142e;
      box-shadow: var(--shadow-orange);
    }

    .ladder-main h3,
    .compare-panel h3 {
      margin: 0 0 10px;
      font-size: 24px;
      font-weight: 950;
    }

    .ladder-main p {
      margin: 0 0 18px;
      color: #5d4c66;
    }

    .pixel-steps {
      display: grid;
      gap: 13px;
    }

    .pixel-step {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      padding: 14px;
      border: 2px solid rgba(34,20,46,.18);
      border-radius: 16px;
      background: rgba(255,255,255,.52);
    }

    .step-no {
      display: inline-flex;
      width: 34px;
      height: 34px;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
      border: 2px solid #22142e;
      border-radius: 10px;
      background: var(--cyan);
      box-shadow: 3px 3px 0 rgba(34,20,46,.22);
      font-weight: 950;
    }

    .step-copy strong {
      display: block;
      font-weight: 950;
      margin-bottom: 2px;
    }

    .step-copy span {
      color: #654f6e;
      font-size: 14px;
    }

    .ladder-cards {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }

    .vertical-card {
      border: 2px solid rgba(255, 244, 214, .18);
      border-radius: 24px;
      background: rgba(33, 24, 50, .92);
      padding: 20px;
      min-height: 210px;
      box-shadow: 5px 5px 0 rgba(0,0,0,.25);
      transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
      position: relative;
      overflow: hidden;
    }

    .vertical-card:hover {
      transform: translate(-3px, -3px);
      border-color: var(--cyan);
      box-shadow: 7px 7px 0 rgba(53, 242, 208, .22);
    }

    .vertical-card::before {
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: 8px;
      background: linear-gradient(90deg, var(--pink), var(--orange), var(--cyan));
    }

    .pixel-number {
      display: inline-flex;
      padding: 5px 9px;
      border: 2px solid rgba(255,244,214,.2);
      border-radius: 999px;
      color: var(--cyan);
      background: rgba(53, 242, 208, .08);
      font-size: 13px;
      font-weight: 950;
      margin-bottom: 18px;
    }

    .vertical-card h3 {
      margin: 0 0 8px;
      color: var(--cream);
      font-size: 21px;
      font-weight: 950;
    }

    .vertical-card p {
      margin: 0 0 16px;
      color: var(--muted);
      font-size: 15px;
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: auto;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      padding: 5px 9px;
      border: 1px solid rgba(255,244,214,.2);
      border-radius: 999px;
      color: var(--muted);
      background: rgba(255,255,255,.04);
      font-size: 12px;
      font-weight: 800;
    }

    .tag.hot {
      color: #170c1f;
      background: var(--orange);
      border-color: var(--cream);
    }

    .compare-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
      margin-top: 30px;
    }

    .compare-panel {
      border: 2px solid rgba(255,244,214,.18);
      border-radius: 24px;
      padding: 24px;
      background: rgba(33,24,50,.86);
      box-shadow: 5px 5px 0 rgba(0,0,0,.24);
    }

    .compare-panel.featured {
      border-color: rgba(53,242,208,.7);
      box-shadow: var(--shadow-cyan);
    }

    .compare-panel h3 {
      color: var(--cream);
    }

    .compare-list {
      list-style: none;
      padding: 0;
      margin: 18px 0 0;
      display: grid;
      gap: 12px;
    }

    .compare-list li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      color: var(--muted);
      padding: 12px;
      border-radius: 14px;
      background: rgba(255,255,255,.045);
      border: 1px solid rgba(255,244,214,.12);
    }

    .compare-list li::before {
      content: "";
      width: 12px;
      height: 12px;
      margin-top: 7px;
      flex: 0 0 auto;
      background: var(--pink);
      box-shadow: 4px 4px 0 rgba(0,0,0,.22);
    }

    .compare-panel.featured .compare-list li::before {
      background: var(--cyan);
    }

    .assurance-bar {
      border: 2px solid rgba(255,244,214,.2);
      border-radius: 26px;
      background: linear-gradient(90deg, rgba(255,63,164,.12), rgba(53,242,208,.09), rgba(255,159,46,.12));
      box-shadow: var(--shadow-pink);
      padding: 18px;
    }

    .assurance-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
    }

    .assurance-item {
      padding: 16px;
      border-radius: 18px;
      border: 2px solid rgba(255,244,214,.14);
      background: rgba(13,9,22,.48);
    }

    .assurance-item strong {
      display: block;
      color: var(--cream);
      font-size: 16px;
      font-weight: 950;
      margin-bottom: 4px;
    }

    .assurance-item span {
      color: var(--muted);
      font-size: 13px;
    }

    .scene-layout {
      display: grid;
      grid-template-columns: 360px 1fr;
      gap: 24px;
      margin-top: 32px;
      align-items: start;
    }

    .filter-panel {
      position: sticky;
      top: 148px;
      border: 2px solid rgba(255,244,214,.18);
      border-radius: 24px;
      background: rgba(13,9,22,.62);
      padding: 20px;
      box-shadow: var(--shadow-orange);
    }

    .filter-title {
      color: var(--cream);
      font-size: 19px;
      font-weight: 950;
      margin: 0 0 14px;
    }

    .filter-group {
      margin-bottom: 17px;
    }

    .filter-label {
      color: var(--muted-2);
      font-size: 13px;
      font-weight: 900;
      margin-bottom: 8px;
    }

    .chip-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .filter-chip {
      border: 2px solid rgba(255,244,214,.16);
      border-radius: 999px;
      padding: 7px 10px;
      background: rgba(255,255,255,.04);
      color: var(--muted);
      font-size: 13px;
      font-weight: 850;
    }

    .filter-chip.active,
    .filter-chip:hover {
      color: #160f24;
      background: var(--cyan);
      border-color: var(--cream);
      transform: translateY(-1px);
    }

    .search-box {
      display: flex;
      gap: 8px;
      margin-top: 18px;
    }

    .search-box input {
      width: 100%;
      min-width: 0;
      border: 2px solid rgba(255,244,214,.18);
      border-radius: 14px;
      color: var(--cream);
      background: rgba(255,255,255,.06);
      padding: 11px 12px;
    }

    .search-box input::placeholder {
      color: rgba(198,184,216,.7);
    }

    .entry-flow {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    .content-card {
      border: 2px solid rgba(255,244,214,.18);
      border-radius: 26px;
      background: rgba(33,24,50,.9);
      padding: 18px;
      min-height: 260px;
      box-shadow: 5px 5px 0 rgba(0,0,0,.24);
      transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
    }

    .content-card:nth-child(2),
    .content-card:nth-child(5) {
      margin-top: 28px;
    }

    .content-card:hover {
      transform: translate(-3px, -3px);
      border-color: var(--pink);
      box-shadow: 7px 7px 0 rgba(255,63,164,.26);
    }

    .abstract-thumb {
      height: 92px;
      border-radius: 18px;
      border: 2px solid rgba(255,244,214,.2);
      margin-bottom: 16px;
      background:
        linear-gradient(90deg, rgba(255,63,164,.8) 0 18%, transparent 18% 22%, rgba(53,242,208,.85) 22% 46%, transparent 46% 52%, rgba(255,159,46,.9) 52% 74%, transparent 74%),
        linear-gradient(180deg, rgba(255,255,255,.1), rgba(0,0,0,.08));
      position: relative;
    }

    .abstract-thumb::after {
      content: "HD";
      position: absolute;
      left: 12px;
      bottom: 10px;
      padding: 3px 8px;
      border: 2px solid #160f24;
      border-radius: 8px;
      color: #160f24;
      background: var(--yellow);
      font-size: 12px;
      font-weight: 950;
      box-shadow: 3px 3px 0 rgba(0,0,0,.22);
    }

    .content-card h3 {
      margin: 0 0 8px;
      color: var(--cream);
      font-size: 19px;
      font-weight: 950;
    }

    .content-card p {
      color: var(--muted);
      margin: 0 0 14px;
      font-size: 14px;
    }

    .content-card .pixel-btn {
      margin-top: auto;
      width: 100%;
      min-height: 40px;
      padding: 9px 12px;
      font-size: 14px;
    }

    .proof-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 22px;
      margin-top: 30px;
    }

    .progress-panel,
    .reason-panel {
      border: 2px solid rgba(255,244,214,.18);
      border-radius: 26px;
      padding: 24px;
      background: rgba(33,24,50,.88);
      box-shadow: var(--shadow-cyan);
    }

    .reason-panel {
      box-shadow: var(--shadow-pink);
    }

    .pixel-progress {
      display: grid;
      gap: 15px;
      margin-top: 16px;
    }

    .progress-line {
      display: grid;
      grid-template-columns: 110px 1fr 45px;
      gap: 12px;
      align-items: center;
      color: var(--muted);
      font-weight: 800;
      font-size: 14px;
    }

    .bar {
      height: 16px;
      border: 2px solid rgba(255,244,214,.18);
      border-radius: 0;
      background: rgba(0,0,0,.25);
      overflow: hidden;
    }

    .bar span {
      display: block;
      height: 100%;
      background: linear-gradient(90deg, var(--pink), var(--orange), var(--cyan));
    }

    .reason-list {
      list-style: none;
      margin: 16px 0 0;
      padding: 0;
      display: grid;
      gap: 12px;
    }

    .reason-list li {
      padding: 13px 14px;
      border: 2px solid rgba(255,244,214,.14);
      border-radius: 16px;
      background: rgba(255,255,255,.045);
      color: var(--muted);
      font-size: 14px;
    }

    .news-layout {
      display: grid;
      grid-template-columns: 1.25fr .75fr;
      gap: 22px;
      margin-top: 30px;
    }

    .news-list,
    .recommend-box {
      border: 2px solid rgba(255,244,214,.18);
      border-radius: 26px;
      background: rgba(13,9,22,.56);
      padding: 20px;
      box-shadow: 5px 5px 0 rgba(0,0,0,.24);
    }

    .news-item {
      display: grid;
      grid-template-columns: 112px 1fr auto;
      gap: 14px;
      align-items: center;
      padding: 15px 0;
      border-bottom: 1px dashed rgba(255,244,214,.16);
    }

    .news-item:last-child {
      border-bottom: 0;
    }

    .news-date {
      color: var(--yellow);
      font-size: 13px;
      font-weight: 950;
      padding: 6px 9px;
      border: 2px solid rgba(255,228,94,.28);
      border-radius: 999px;
      text-align: center;
      background: rgba(255,228,94,.06);
    }

    .news-item a {
      color: var(--cream);
      font-weight: 950;
      line-height: 1.35;
    }

    .news-item a:hover {
      color: var(--cyan);
    }

    .news-item p {
      margin: 4px 0 0;
      color: var(--muted);
      font-size: 14px;
    }

    .news-more {
      color: var(--cyan);
      font-size: 13px;
      font-weight: 900;
      white-space: nowrap;
    }

    .recommend-box h3 {
      margin: 0 0 14px;
      color: var(--cream);
      font-weight: 950;
    }

    .mini-card {
      display: block;
      padding: 15px;
      border: 2px solid rgba(255,244,214,.14);
      border-radius: 18px;
      background: rgba(255,255,255,.045);
      margin-bottom: 12px;
    }

    .mini-card:hover {
      border-color: var(--cyan);
      transform: translateY(-2px);
    }

    .mini-card strong {
      display: block;
      color: var(--cream);
      margin-bottom: 4px;
    }

    .mini-card span {
      color: var(--muted);
      font-size: 13px;
    }

    .festival-section {
      border: 2px solid rgba(255,244,214,.2);
      border-radius: 30px;
      background:
        linear-gradient(135deg, rgba(255,63,164,.22), transparent 36%),
        linear-gradient(315deg, rgba(255,159,46,.2), transparent 34%),
        rgba(33,24,50,.88);
      padding: clamp(22px, 4vw, 38px);
      box-shadow: var(--shadow-orange);
    }

    .festival-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 14px;
      margin-top: 22px;
    }

    .festival-card {
      border: 2px solid rgba(255,244,214,.18);
      border-radius: 22px;
      padding: 18px;
      background: rgba(13,9,22,.48);
    }

    .festival-card strong {
      color: var(--cream);
      display: block;
      margin-bottom: 6px;
      font-size: 17px;
    }

    .festival-card span {
      color: var(--muted);
      font-size: 14px;
    }

    .faq-wrap {
      margin-top: 30px;
    }

    .accordion.pixel-accordion {
      display: grid;
      gap: 12px;
    }

    .pixel-accordion .accordion-item {
      overflow: hidden;
      border: 2px solid rgba(255,244,214,.18);
      border-radius: 20px;
      background: rgba(33,24,50,.9);
      box-shadow: 4px 4px 0 rgba(0,0,0,.24);
    }

    .pixel-accordion .accordion-button {
      color: var(--cream);
      background: rgba(33,24,50,.95);
      font-weight: 950;
      line-height: 1.45;
      padding: 18px 20px;
    }

    .pixel-accordion .accordion-button:not(.collapsed) {
      color: #160f24;
      background: var(--cyan);
      box-shadow: none;
    }

    .pixel-accordion .accordion-button::after {
      filter: invert(1);
    }

    .pixel-accordion .accordion-button:not(.collapsed)::after {
      filter: none;
    }

    .pixel-accordion .accordion-body {
      color: var(--muted);
      padding: 18px 20px 22px;
      background: rgba(13,9,22,.46);
    }

    .limit-panel {
      display: grid;
      grid-template-columns: 1fr 360px;
      gap: 24px;
      align-items: center;
      border: 2px solid rgba(53,242,208,.48);
      border-radius: 30px;
      padding: clamp(22px, 4vw, 36px);
      background:
        radial-gradient(circle at 84% 20%, rgba(53,242,208,.18), transparent 28%),
        rgba(13,9,22,.65);
      box-shadow: var(--shadow-cyan);
    }

    .quick-form {
      border: 2px solid rgba(255,244,214,.16);
      border-radius: 24px;
      background: rgba(255,255,255,.045);
      padding: 18px;
    }

    .quick-form label {
      color: var(--muted);
      font-size: 13px;
      font-weight: 900;
      margin-bottom: 7px;
    }

    .quick-form .form-control,
    .quick-form .form-select {
      color: var(--cream);
      background-color: rgba(13,9,22,.72);
      border: 2px solid rgba(255,244,214,.18);
      border-radius: 14px;
      min-height: 46px;
    }

    .quick-form .form-control::placeholder {
      color: rgba(198,184,216,.72);
    }

    .quick-form .form-control:focus,
    .quick-form .form-select:focus {
      color: var(--cream);
      background-color: rgba(13,9,22,.88);
      border-color: var(--cyan);
      box-shadow: 0 0 0 4px rgba(53,242,208,.14);
    }

    .site-footer {
      padding: 54px 0 34px;
      border-top: 2px solid rgba(255,244,214,.15);
      background:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
        #0b0712;
      background-size: 18px 18px;
    }

    .footer-panel {
      border: 2px solid rgba(255,244,214,.18);
      border-radius: 28px;
      background: rgba(22,15,36,.82);
      padding: 26px;
      box-shadow: 6px 6px 0 rgba(0,0,0,.32);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr .9fr;
      gap: 24px;
    }

    .footer-title {
      color: var(--cream);
      font-size: 18px;
      font-weight: 950;
      margin-bottom: 10px;
    }

    .footer-text {
      color: var(--muted);
      margin: 0;
      font-size: 14px;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
    }

    .footer-links a {
      padding: 7px 10px;
      border: 2px solid rgba(255,244,214,.14);
      border-radius: 999px;
      color: var(--muted);
      background: rgba(255,255,255,.04);
      font-size: 13px;
      font-weight: 850;
    }

    .footer-links a:hover {
      color: #160f24;
      background: var(--cyan);
      border-color: var(--cream);
    }

    .copyright {
      margin-top: 20px;
      padding-top: 18px;
      border-top: 1px dashed rgba(255,244,214,.18);
      color: var(--muted-2);
      font-size: 13px;
      display: flex;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
    }

    .sticky-cta {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 1040;
      border-top: 2px solid rgba(53,242,208,.55);
      background: rgba(13, 9, 22, .97);
      box-shadow: 0 -8px 0 rgba(0,0,0,.18);
      padding: 12px 0 calc(12px + env(safe-area-inset-bottom));
    }

    .sticky-inner {
      width: min(var(--container), calc(100% - 32px));
      margin-inline: auto;
      display: grid;
      grid-template-columns: 1fr auto auto;
      gap: 14px;
      align-items: center;
    }

    .sticky-copy {
      color: var(--cream);
      font-weight: 900;
      min-width: 0;
    }

    .sticky-copy span {
      color: var(--muted);
      font-size: 13px;
      display: block;
      font-weight: 700;
    }

    .sticky-chips {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .sticky-chip {
      padding: 6px 9px;
      border: 2px solid rgba(255,244,214,.16);
      border-radius: 999px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 850;
      background: rgba(255,255,255,.04);
      white-space: nowrap;
    }

    @media (max-width: 1199px) {
      .entry-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .assurance-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 991px) {
      body {
        padding-bottom: 88px;
      }

      .hero {
        padding-top: 48px;
      }

      .entry-matrix,
      .ladder-wrap,
      .scene-layout,
      .proof-grid,
      .news-layout,
      .limit-panel,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .filter-panel {
        position: static;
      }

      .chip-list {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 6px;
      }

      .filter-chip {
        white-space: nowrap;
      }

      .content-card:nth-child(2),
      .content-card:nth-child(5) {
        margin-top: 0;
      }

      .festival-grid {
        grid-template-columns: 1fr;
      }

      .sticky-inner {
        grid-template-columns: 1fr auto;
      }

      .sticky-chips {
        display: none;
      }
    }

    @media (max-width: 767px) {
      .section {
        padding: 54px 0;
      }

      .section-tight {
        padding: 44px 0;
      }

      .brand-row {
        align-items: flex-start;
      }

      .brand-name {
        font-size: 15px;
        max-width: 58vw;
      }

      .brand-sub {
        display: none;
      }

      .brand-row .pixel-btn {
        min-height: 38px;
        padding: 8px 11px;
        font-size: 13px;
      }

      .hero-data,
      .ladder-cards,
      .compare-grid,
      .entry-flow,
      .assurance-grid {
        grid-template-columns: 1fr;
      }

      .matrix-card.large {
        min-height: 220px;
      }

      .news-item {
        grid-template-columns: 1fr;
        gap: 8px;
      }

      .news-date {
        width: fit-content;
      }

      .news-more {
        width: fit-content;
      }

      .progress-line {
        grid-template-columns: 82px 1fr 38px;
        gap: 8px;
        font-size: 12px;
      }

      .limit-panel {
        padding: 22px;
      }

      .copyright {
        flex-direction: column;
      }
    }

    @media (max-width: 575px) {
      body {
        padding-bottom: 82px;
      }

      .site-container,
      .sticky-inner {
        width: min(100% - 22px, var(--container));
      }

      .notice-strip {
        font-size: 12px;
      }

      .hero-stage {
        border-radius: 22px;
        padding: 20px;
      }

      .hero h1 {
        font-size: 30px;
      }

      .hero-intro {
        font-size: 15px;
      }

      .hero-actions {
        flex-direction: column;
      }

      .hero-actions .pixel-btn,
      .sticky-inner .pixel-btn {
        width: 100%;
      }

      .entry-matrix {
        gap: 12px;
      }

      .matrix-card {
        min-height: 116px;
      }

      .sticky-inner {
        grid-template-columns: 1fr 136px;
        gap: 10px;
      }

      .sticky-copy {
        font-size: 13px;
        line-height: 1.35;
      }

      .sticky-copy span {
        display: none;
      }

      .sticky-inner .pixel-btn {
        min-height: 42px;
        padding: 8px 10px;
        font-size: 13px;
      }

      .footer-panel {
        padding: 20px;
        border-radius: 22px;
      }
    }

/* roulang page: category1 */
:root{
      --bg:#160d20;
      --bg-2:#21142e;
      --bg-3:#2c1b3b;
      --panel:#241732;
      --panel-2:#301d42;
      --cream:#fff3d3;
      --text:#fff8e8;
      --muted:#cdb9da;
      --muted-2:#9e8caf;
      --pink:#ff4fd8;
      --orange:#ff9f1c;
      --cyan:#2fffd2;
      --yellow:#ffe45c;
      --green:#86ff5f;
      --line:rgba(255,243,211,.18);
      --line-strong:rgba(47,255,210,.7);
      --dark:#0d0813;
      --radius-sm:10px;
      --radius:18px;
      --radius-lg:26px;
      --shadow-pink:5px 5px 0 rgba(255,79,216,.35);
      --shadow-cyan:5px 5px 0 rgba(47,255,210,.28);
      --shadow-orange:5px 5px 0 rgba(255,159,28,.34);
      --shadow-dark:6px 6px 0 rgba(0,0,0,.35);
      --container:1200px;
      --ease:all .22s ease;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      min-height:100vh;
      color:var(--text);
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",sans-serif;
      line-height:1.75;
      background:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
        radial-gradient(circle at 10% 8%, rgba(255,79,216,.20), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(47,255,210,.14), transparent 24%),
        radial-gradient(circle at 50% 95%, rgba(255,159,28,.12), transparent 26%),
        var(--bg);
      background-size:18px 18px,18px 18px,auto,auto,auto,auto;
      padding-bottom:92px;
      overflow-x:hidden;
    }
    body:before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      z-index:-1;
      background:repeating-linear-gradient(0deg, rgba(255,255,255,.025) 0, rgba(255,255,255,.025) 1px, transparent 1px, transparent 6px);
      opacity:.45;
    }
    a{color:inherit;text-decoration:none}
    a:hover{color:inherit}
    button,input{font:inherit}
    img,svg{max-width:100%;display:block}
    ::selection{background:var(--pink);color:#fff}

    .site-container{
      width:min(100% - 32px,var(--container));
      margin-inline:auto;
    }

    .pixel-header{
      position:sticky;
      top:0;
      z-index:1000;
      background:rgba(22,13,32,.96);
      border-bottom:2px solid rgba(255,243,211,.14);
      box-shadow:0 8px 0 rgba(0,0,0,.18);
    }
    .notice-strip{
      background:linear-gradient(90deg, rgba(255,159,28,.16), rgba(255,79,216,.10), rgba(47,255,210,.12));
      color:var(--cream);
      font-size:13px;
      border-bottom:1px solid rgba(255,243,211,.14);
    }
    .notice-strip .site-container{
      min-height:34px;
      display:flex;
      align-items:center;
      gap:10px;
    }
    .notice-dot{
      width:10px;
      height:10px;
      display:inline-block;
      background:var(--yellow);
      box-shadow:3px 3px 0 rgba(0,0,0,.45);
      border:1px solid var(--dark);
      flex:0 0 auto;
    }
    .topbar{padding:16px 0 14px}
    .brand-row{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      margin-bottom:14px;
    }
    .brand-logo{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:0;
    }
    .logo-mark{
      width:42px;
      height:42px;
      flex:0 0 auto;
      border:2px solid var(--cream);
      border-radius:12px;
      background:
        linear-gradient(90deg, transparent 46%, rgba(13,8,19,.45) 46% 54%, transparent 54%),
        linear-gradient(0deg, transparent 46%, rgba(13,8,19,.45) 46% 54%, transparent 54%),
        linear-gradient(135deg,var(--pink),var(--orange) 48%,var(--cyan));
      box-shadow:4px 4px 0 rgba(47,255,210,.34);
    }
    .brand-text{display:flex;flex-direction:column;line-height:1.2;min-width:0}
    .brand-name{
      font-weight:900;
      letter-spacing:.02em;
      color:var(--text);
      font-size:18px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
      text-shadow:2px 2px 0 rgba(255,79,216,.25);
    }
    .brand-sub{font-size:12px;color:var(--muted);margin-top:3px}
    .nav-chip-row{
      display:flex;
      flex-wrap:nowrap;
      gap:10px;
      overflow-x:auto;
      padding:2px 2px 8px;
      scrollbar-width:thin;
      scrollbar-color:var(--pink) transparent;
    }
    .nav-chip-row::-webkit-scrollbar{height:6px}
    .nav-chip-row::-webkit-scrollbar-thumb{background:var(--pink);border-radius:99px}
    .pixel-nav.nav-link{
      color:var(--cream);
      background:rgba(36,23,50,.92);
      border:2px solid rgba(255,243,211,.16);
      border-radius:999px;
      padding:9px 16px;
      font-size:14px;
      font-weight:800;
      white-space:nowrap;
      transition:var(--ease);
      box-shadow:3px 3px 0 rgba(0,0,0,.32);
    }
    .pixel-nav.nav-link:hover,
    .pixel-nav.nav-link:focus{
      color:var(--text);
      border-color:var(--cyan);
      transform:translate(-1px,-2px);
      box-shadow:4px 4px 0 rgba(47,255,210,.24);
      outline:none;
    }
    .pixel-nav.nav-link.active{
      color:#160d20;
      background:linear-gradient(135deg,var(--cyan),var(--yellow));
      border-color:var(--dark);
      position:relative;
      box-shadow:4px 4px 0 rgba(255,79,216,.45);
    }
    .pixel-nav.nav-link.active:after{
      content:"";
      position:absolute;
      right:8px;
      top:-4px;
      width:8px;
      height:8px;
      background:var(--pink);
      border:1px solid var(--dark);
    }

    .pixel-btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border:2px solid var(--dark);
      border-radius:14px;
      padding:11px 18px;
      font-size:14px;
      font-weight:900;
      line-height:1.2;
      transition:var(--ease);
      cursor:pointer;
      box-shadow:4px 4px 0 rgba(0,0,0,.38);
      text-align:center;
      white-space:nowrap;
    }
    .pixel-btn.primary{
      color:#180f21;
      background:linear-gradient(135deg,var(--pink),var(--orange));
    }
    .pixel-btn.secondary{
      color:var(--cyan);
      background:rgba(13,8,19,.35);
      border-color:var(--cyan);
      box-shadow:4px 4px 0 rgba(47,255,210,.24);
    }
    .pixel-btn.cream{
      color:#20132d;
      background:var(--cream);
      box-shadow:4px 4px 0 rgba(255,228,92,.32);
    }
    .pixel-btn:hover,
    .pixel-btn:focus{
      transform:translate(-2px,-2px);
      box-shadow:6px 6px 0 rgba(0,0,0,.48);
      outline:3px solid rgba(255,79,216,.22);
      outline-offset:2px;
    }
    .pixel-btn.secondary:hover{background:var(--cyan);color:#130c1a}

    main{position:relative}
    .section{padding:76px 0}
    .section.compact{padding:56px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--cyan);
      background:rgba(47,255,210,.08);
      border:2px solid rgba(47,255,210,.34);
      border-radius:999px;
      padding:7px 12px;
      font-size:13px;
      font-weight:900;
      box-shadow:3px 3px 0 rgba(0,0,0,.28);
      margin-bottom:16px;
    }
    .eyebrow:before{
      content:"";
      width:8px;
      height:8px;
      background:var(--pink);
      box-shadow:2px 2px 0 rgba(0,0,0,.45);
    }
    h1,h2,h3,p{margin-top:0}
    h1{
      font-size:clamp(30px,5vw,48px);
      line-height:1.16;
      letter-spacing:-.03em;
      font-weight:950;
      margin-bottom:18px;
      text-shadow:3px 3px 0 rgba(255,79,216,.18);
    }
    h2{
      font-size:clamp(24px,3.5vw,34px);
      line-height:1.25;
      font-weight:950;
      margin-bottom:14px;
    }
    h3{font-size:20px;font-weight:950;margin-bottom:10px}
    .lead{
      color:var(--muted);
      font-size:17px;
      max-width:760px;
      margin-bottom:0;
    }
    .text-muted-pixel{color:var(--muted)}
    .highlight{
      color:var(--yellow);
      text-shadow:2px 2px 0 rgba(255,79,216,.32);
    }

    .category-hero{
      padding:58px 0 44px;
      background:
        linear-gradient(90deg, rgba(255,79,216,.10) 0 25%, transparent 25% 50%, rgba(47,255,210,.08) 50% 75%, transparent 75%),
        radial-gradient(circle at 82% 20%, rgba(255,159,28,.18), transparent 28%),
        linear-gradient(180deg, rgba(36,23,50,.96), rgba(22,13,32,.75));
      background-size:44px 44px,auto,auto;
      border-bottom:2px solid rgba(255,243,211,.12);
      position:relative;
      overflow:hidden;
    }
    .category-hero:after{
      content:"";
      position:absolute;
      right:-80px;
      top:40px;
      width:260px;
      height:260px;
      border:3px solid rgba(47,255,210,.16);
      border-radius:38px;
      transform:rotate(12deg);
      box-shadow:12px 12px 0 rgba(255,79,216,.12);
    }
    .hero-grid{
      display:grid;
      grid-template-columns:minmax(0,1.08fr) minmax(300px,.72fr);
      gap:28px;
      align-items:stretch;
      position:relative;
      z-index:1;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:24px;
      align-items:center;
    }
    .current-chip{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:999px;
      color:#180f21;
      background:var(--yellow);
      border:2px solid var(--dark);
      box-shadow:4px 4px 0 rgba(0,0,0,.36);
      font-weight:950;
      font-size:13px;
      margin-top:18px;
    }
    .current-chip span{
      width:9px;
      height:9px;
      background:var(--pink);
      border:1px solid var(--dark);
      display:inline-block;
    }

    .progress-panel{
      background:linear-gradient(180deg,rgba(48,29,66,.96),rgba(31,18,44,.96));
      border:2px solid rgba(255,243,211,.18);
      border-radius:var(--radius-lg);
      padding:20px;
      box-shadow:var(--shadow-cyan);
    }
    .progress-title{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom:16px;
    }
    .progress-title strong{font-size:17px}
    .mini-badge{
      display:inline-flex;
      color:#170d20;
      background:var(--cyan);
      border:2px solid var(--dark);
      border-radius:999px;
      padding:5px 9px;
      font-size:12px;
      font-weight:950;
      box-shadow:3px 3px 0 rgba(0,0,0,.35);
      white-space:nowrap;
    }
    .ring-wrap{
      display:grid;
      grid-template-columns:138px minmax(0,1fr);
      gap:18px;
      align-items:center;
      margin-bottom:18px;
    }
    .progress-ring{
      width:138px;
      height:138px;
      border-radius:50%;
      background:conic-gradient(var(--pink) 0 42%, var(--orange) 42% 68%, rgba(255,243,211,.12) 68% 100%);
      border:3px solid var(--dark);
      box-shadow:5px 5px 0 rgba(255,79,216,.22);
      position:relative;
      display:grid;
      place-items:center;
    }
    .progress-ring:before{
      content:"";
      position:absolute;
      inset:16px;
      background:var(--panel);
      border:2px solid rgba(255,243,211,.20);
      border-radius:50%;
    }
    .ring-number{
      position:relative;
      z-index:1;
      display:flex;
      flex-direction:column;
      align-items:center;
      line-height:1.1;
      font-weight:950;
      color:var(--cream);
    }
    .ring-number b{font-size:30px;color:var(--yellow)}
    .ring-number small{font-size:12px;color:var(--muted)}
    .tier-list{display:grid;gap:10px}
    .tier-item{
      display:flex;
      justify-content:space-between;
      gap:12px;
      align-items:center;
      background:rgba(13,8,19,.32);
      border:2px solid rgba(255,243,211,.13);
      border-radius:16px;
      padding:10px 12px;
    }
    .tier-item span:first-child{font-weight:900}
    .tier-item span:last-child{color:var(--cyan);font-size:13px;font-weight:900}

    .filter-panel,
    .info-panel,
    .card-flow,
    .faq-wrap,
    .cta-panel{
      background:rgba(36,23,50,.86);
      border:2px solid rgba(255,243,211,.16);
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow-dark);
    }

    .filter-panel{padding:22px}
    .filter-head{
      display:flex;
      justify-content:space-between;
      align-items:flex-end;
      gap:16px;
      margin-bottom:18px;
    }
    .filter-head p{margin-bottom:0;color:var(--muted);max-width:650px}
    .filter-groups{display:grid;gap:16px}
    .filter-group{
      display:grid;
      grid-template-columns:92px minmax(0,1fr);
      gap:12px;
      align-items:start;
      padding:14px;
      background:rgba(13,8,19,.24);
      border:1px solid rgba(255,243,211,.10);
      border-radius:18px;
    }
    .filter-label{
      color:var(--yellow);
      font-weight:950;
      font-size:14px;
      padding-top:6px;
    }
    .chip-scroll{
      display:flex;
      gap:10px;
      overflow-x:auto;
      padding:0 2px 8px;
      scrollbar-width:thin;
      scrollbar-color:var(--orange) transparent;
    }
    .filter-chip{
      flex:0 0 auto;
      border:2px solid rgba(255,243,211,.18);
      color:var(--cream);
      background:rgba(48,29,66,.92);
      border-radius:999px;
      padding:8px 13px;
      font-weight:900;
      font-size:13px;
      transition:var(--ease);
      box-shadow:3px 3px 0 rgba(0,0,0,.24);
    }
    .filter-chip:hover,
    .filter-chip:focus,
    .filter-chip.active{
      color:#150d1d;
      background:linear-gradient(135deg,var(--cyan),var(--green));
      border-color:var(--dark);
      transform:translateY(-2px);
      outline:none;
    }

    .flow-grid{
      column-count:3;
      column-gap:18px;
    }
    .entry-card{
      break-inside:avoid;
      display:inline-block;
      width:100%;
      margin:0 0 18px;
      border-radius:22px;
      background:linear-gradient(180deg,rgba(48,29,66,.96),rgba(31,18,44,.96));
      border:2px solid rgba(255,243,211,.17);
      box-shadow:4px 4px 0 rgba(0,0,0,.35);
      overflow:hidden;
      transition:var(--ease);
      vertical-align:top;
    }
    .entry-card:hover{
      transform:translate(-2px,-3px);
      border-color:var(--pink);
      box-shadow:6px 6px 0 rgba(255,79,216,.30);
    }
    .entry-card:nth-child(2n):hover{
      border-color:var(--cyan);
      box-shadow:6px 6px 0 rgba(47,255,210,.24);
    }
    .card-strip{
      height:12px;
      background:linear-gradient(90deg,var(--pink),var(--orange),var(--cyan));
      border-bottom:2px solid rgba(13,8,19,.75);
    }
    .entry-card-body{padding:18px}
    .entry-card .kicker{
      display:flex;
      justify-content:space-between;
      gap:8px;
      align-items:center;
      color:var(--muted);
      font-size:12px;
      font-weight:900;
      margin-bottom:10px;
    }
    .pixel-no{
      color:#160d20;
      background:var(--orange);
      border:2px solid var(--dark);
      border-radius:8px;
      padding:1px 7px;
      box-shadow:2px 2px 0 rgba(0,0,0,.35);
    }
    .entry-card p{
      color:var(--muted);
      margin-bottom:14px;
      font-size:15px;
    }
    .tag-row{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin:12px 0 16px;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      color:var(--cream);
      background:rgba(255,243,211,.07);
      border:1px solid rgba(255,243,211,.16);
      border-radius:999px;
      padding:5px 9px;
      font-size:12px;
      font-weight:800;
    }
    .tag.hot{color:#160d20;background:var(--yellow);border-color:var(--dark)}
    .tag.cyan{color:#130c1a;background:var(--cyan);border-color:var(--dark)}
    .card-link{
      display:inline-flex;
      align-items:center;
      gap:6px;
      color:var(--cyan);
      font-weight:950;
      font-size:14px;
      transition:var(--ease);
    }
    .card-link:hover{color:var(--yellow);gap:10px}

    .info-panel{padding:24px;position:relative;overflow:hidden}
    .info-panel:before{
      content:"";
      position:absolute;
      inset:auto -60px -100px auto;
      width:220px;
      height:220px;
      border-radius:36px;
      border:3px solid rgba(255,159,28,.13);
      transform:rotate(18deg);
    }
    .step-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
      margin-top:22px;
      position:relative;
      z-index:1;
    }
    .step-box{
      background:rgba(13,8,19,.30);
      border:2px solid rgba(255,243,211,.14);
      border-radius:20px;
      padding:16px;
      min-height:150px;
      transition:var(--ease);
    }
    .step-box:hover{
      border-color:var(--cyan);
      transform:translateY(-3px);
      box-shadow:4px 4px 0 rgba(47,255,210,.18);
    }
    .step-num{
      display:inline-flex;
      color:#170d20;
      background:var(--pink);
      border:2px solid var(--dark);
      border-radius:9px;
      padding:2px 8px;
      font-weight:950;
      margin-bottom:12px;
      box-shadow:3px 3px 0 rgba(0,0,0,.36);
    }
    .step-box:nth-child(even) .step-num{background:var(--cyan)}
    .step-box p{margin:0;color:var(--muted);font-size:14px}

    .compare-grid{
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:18px;
      margin-top:24px;
    }
    .support-card{
      background:rgba(13,8,19,.30);
      border:2px solid rgba(255,243,211,.14);
      border-radius:22px;
      padding:18px;
    }
    .support-line{
      display:grid;
      grid-template-columns:104px 1fr 44px;
      gap:10px;
      align-items:center;
      margin-top:14px;
      font-size:13px;
      font-weight:900;
    }
    .bar{
      height:12px;
      background:rgba(255,243,211,.12);
      border:1px solid rgba(255,243,211,.14);
      border-radius:999px;
      overflow:hidden;
    }
    .bar i{
      display:block;
      height:100%;
      background:linear-gradient(90deg,var(--pink),var(--orange));
      border-right:2px solid var(--dark);
    }
    .reason-list{
      display:grid;
      gap:12px;
    }
    .reason-item{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:13px;
      background:rgba(13,8,19,.28);
      border:1px solid rgba(255,243,211,.12);
      border-radius:18px;
    }
    .reason-icon{
      width:26px;
      height:26px;
      flex:0 0 auto;
      background:var(--cyan);
      border:2px solid var(--dark);
      box-shadow:3px 3px 0 rgba(0,0,0,.32);
      border-radius:7px;
      margin-top:3px;
    }
    .reason-item:nth-child(2) .reason-icon{background:var(--pink)}
    .reason-item:nth-child(3) .reason-icon{background:var(--yellow)}
    .reason-item strong{display:block;margin-bottom:2px}
    .reason-item p{margin:0;color:var(--muted);font-size:14px}

    .accordion.pixel-accordion{
      --bs-accordion-bg:transparent;
      --bs-accordion-border-color:transparent;
      --bs-accordion-btn-focus-box-shadow:none;
      display:grid;
      gap:12px;
    }
    .pixel-accordion .accordion-item{
      color:var(--text);
      background:rgba(36,23,50,.92);
      border:2px solid rgba(255,243,211,.16);
      border-radius:18px;
      overflow:hidden;
      box-shadow:4px 4px 0 rgba(0,0,0,.30);
    }
    .pixel-accordion .accordion-button{
      color:var(--cream);
      background:rgba(13,8,19,.20);
      font-weight:950;
      padding:17px 18px;
      border:0;
      box-shadow:none;
    }
    .pixel-accordion .accordion-button:not(.collapsed){
      color:#160d20;
      background:linear-gradient(135deg,var(--cyan),var(--yellow));
    }
    .pixel-accordion .accordion-button:after{
      filter:invert(1);
    }
    .pixel-accordion .accordion-button:not(.collapsed):after{
      filter:none;
    }
    .pixel-accordion .accordion-body{
      color:var(--muted);
      padding:0 18px 18px;
      font-size:15px;
    }

    .cta-panel{
      padding:26px;
      background:
        linear-gradient(135deg,rgba(255,79,216,.18),rgba(47,255,210,.10)),
        rgba(36,23,50,.92);
      display:grid;
      grid-template-columns:1fr auto;
      gap:22px;
      align-items:center;
    }
    .cta-panel p{margin:0;color:var(--muted)}
    .footer-panel{
      padding:28px;
      background:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px),
        rgba(13,8,19,.84);
      background-size:16px 16px;
      border:2px solid rgba(255,243,211,.16);
      border-radius:var(--radius-lg) var(--radius-lg) 0 0;
      box-shadow:0 -5px 0 rgba(255,79,216,.10);
    }
    .site-footer{
      padding:36px 0 28px;
      background:rgba(10,6,14,.62);
      border-top:2px solid rgba(255,243,211,.08);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.25fr .9fr 1fr;
      gap:24px;
    }
    .footer-title{
      color:var(--cream);
      font-weight:950;
      margin-bottom:10px;
      text-shadow:2px 2px 0 rgba(255,79,216,.18);
    }
    .footer-text{color:var(--muted);margin:0;font-size:14px}
    .footer-links{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .footer-links a{
      color:var(--cream);
      background:rgba(255,243,211,.06);
      border:1px solid rgba(255,243,211,.15);
      border-radius:999px;
      padding:7px 10px;
      font-size:13px;
      font-weight:800;
      transition:var(--ease);
    }
    .footer-links a:hover{
      color:#160d20;
      background:var(--cyan);
      border-color:var(--dark);
      transform:translateY(-2px);
    }
    .copyright{
      display:flex;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      margin-top:24px;
      padding-top:16px;
      border-top:1px dashed rgba(255,243,211,.20);
      color:var(--muted-2);
      font-size:13px;
    }

    .bottom-bar{
      position:fixed;
      left:0;
      right:0;
      bottom:0;
      z-index:1100;
      background:rgba(18,10,26,.97);
      border-top:3px solid var(--cyan);
      box-shadow:0 -6px 0 rgba(0,0,0,.28);
      padding:12px 0 calc(12px + env(safe-area-inset-bottom));
    }
    .bottom-inner{
      display:grid;
      grid-template-columns:1fr auto auto;
      gap:16px;
      align-items:center;
    }
    .bottom-note{
      color:var(--cream);
      font-weight:900;
      line-height:1.35;
    }
    .bottom-note small{
      display:block;
      color:var(--muted);
      font-weight:700;
      margin-top:2px;
    }
    .bottom-chips{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
    }
    .bottom-chips span{
      display:inline-flex;
      color:var(--cyan);
      border:1px solid rgba(47,255,210,.35);
      border-radius:999px;
      padding:6px 9px;
      font-size:12px;
      font-weight:900;
      background:rgba(47,255,210,.06);
    }

    @media (max-width: 991px){
      .hero-grid,
      .compare-grid,
      .cta-panel{
        grid-template-columns:1fr;
      }
      .flow-grid{column-count:2}
      .step-grid{grid-template-columns:repeat(2,1fr)}
      .bottom-inner{grid-template-columns:1fr auto}
      .bottom-chips{display:none}
      .brand-row{align-items:flex-start}
    }
    @media (max-width: 767px){
      body{padding-bottom:84px}
      .section{padding:56px 0}
      .category-hero{padding:44px 0 34px}
      .brand-row{
        display:grid;
        grid-template-columns:1fr;
        gap:12px;
      }
      .brand-logo{max-width:100%}
      .brand-name{font-size:16px}
      .brand-sub{font-size:11px}
      .pixel-btn{width:100%;padding:12px 14px}
      .nav-chip-row{margin-inline:-2px}
      .ring-wrap{grid-template-columns:1fr}
      .progress-ring{margin-inline:auto}
      .filter-head{display:block}
      .filter-group{
        grid-template-columns:1fr;
        gap:8px;
      }
      .filter-label{padding-top:0}
      .step-grid{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr}
      .bottom-inner{grid-template-columns:1fr auto;gap:10px}
      .bottom-note{font-size:13px}
      .bottom-note small{display:none}
      .bottom-bar .pixel-btn{width:auto;padding:10px 12px;font-size:13px}
    }
    @media (max-width: 575px){
      .site-container{width:min(100% - 22px,var(--container))}
      .flow-grid{column-count:1}
      .entry-card{margin-bottom:14px}
      .filter-panel,.info-panel,.cta-panel,.progress-panel{padding:18px}
      .support-line{grid-template-columns:86px 1fr 38px}
      .hero-actions{display:grid;grid-template-columns:1fr}
      .current-chip{width:100%;justify-content:center}
      .notice-strip{font-size:12px}
      .notice-strip .site-container{align-items:flex-start;padding:8px 0}
    }
