/* roulang page: index */
:root {
      --bg: #100812;
      --bg-deep: #09050c;
      --panel: #1a0f20;
      --panel-2: #25112d;
      --panel-3: #172824;
      --text: #fff7ff;
      --muted: #c9b9cf;
      --soft: #927f9a;
      --line: rgba(255, 255, 255, 0.13);
      --magenta: #ff2f9d;
      --magenta-2: #c91aff;
      --cyan: #31f7ca;
      --amber: #ffc247;
      --green: #6cff8f;
      --danger: #ff6b6b;
      --radius: 8px;
      --shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
      --glow: 0 0 22px rgba(255, 47, 157, 0.34);
      --container: 1210px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--text);
      background:
        linear-gradient(180deg, rgba(255, 47, 157, 0.12), transparent 380px),
        linear-gradient(135deg, #09050c 0%, #15091b 44%, #0e1514 100%);
      font-family: PingFang SC, Microsoft YaHei, Noto Sans SC, system-ui, sans-serif;
      font-size: 16px;
      line-height: 1.72;
      letter-spacing: 0;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
    }

    img {
      display: block;
      max-width: 100%;
    }

    button,
    input,
    select {
      font: inherit;
    }

    button,
    .button {
      min-height: 44px;
    }

    .site-wrap {
      min-height: 100vh;
    }

    .site-container {
      width: min(var(--container), calc(100% - 32px));
      margin: 0 auto;
    }

    .top-campaign {
      background: linear-gradient(90deg, var(--magenta), var(--amber), var(--cyan));
      color: #160814;
      font-weight: 800;
      font-size: 14px;
      line-height: 1.4;
      overflow-x: auto;
      white-space: nowrap;
    }

    .top-campaign-inner {
      width: min(var(--container), calc(100% - 32px));
      margin: 0 auto;
      padding: 9px 0;
      display: flex;
      gap: 18px;
      align-items: center;
    }

    .status-dot {
      width: 9px;
      height: 9px;
      border-radius: 99px;
      background: var(--green);
      box-shadow: 0 0 12px rgba(108, 255, 143, .9);
      flex: 0 0 auto;
    }

    .site-header {
      background: rgba(9, 5, 12, .94);
      border-bottom: 1px solid rgba(255, 47, 157, .32);
      box-shadow: 0 10px 38px rgba(0, 0, 0, .42);
      position: relative;
      z-index: 20;
    }

    .site-header::after {
      content: "";
      display: block;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--magenta), var(--cyan), transparent);
    }

    .top-bar,
    .top-bar ul {
      background: transparent;
    }

    .top-bar {
      width: min(var(--container), calc(100% - 32px));
      margin: 0 auto;
      padding: 14px 0;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 900;
      font-size: 19px;
      color: var(--text);
      max-width: 100%;
    }

    .brand-mark {
      width: 34px;
      height: 34px;
      border-radius: 8px;
      background: linear-gradient(135deg, var(--magenta), var(--cyan));
      color: #130713;
      display: grid;
      place-items: center;
      font-weight: 900;
      box-shadow: var(--glow);
      flex: 0 0 auto;
    }

    .menu a {
      color: var(--muted);
      border-radius: 7px;
      padding: 11px 14px;
      font-size: 15px;
      font-weight: 700;
    }

    .menu a:hover,
    .menu a:focus {
      color: var(--text);
      background: rgba(255, 47, 157, .12);
      outline: none;
    }

    .menu a.active {
      color: #fff;
      border: 1px solid rgba(49, 247, 202, .6);
      box-shadow: 0 0 18px rgba(49, 247, 202, .22);
      background: rgba(49, 247, 202, .08);
    }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 0 18px;
      border-radius: 7px;
      color: #160814;
      background: linear-gradient(135deg, var(--cyan), var(--amber));
      font-weight: 900;
      border: 1px solid rgba(255, 255, 255, .18);
    }

    .nav-cta:hover,
    .nav-cta:focus {
      transform: translateY(-2px);
      box-shadow: 0 0 22px rgba(49, 247, 202, .34);
      color: #160814;
    }

    .title-bar {
      background: transparent;
      padding: 10px 0;
    }

    .menu-icon::after {
      background: var(--cyan);
      box-shadow: 0 7px 0 var(--cyan), 0 14px 0 var(--cyan);
    }

    .hero {
      padding: 72px 0 78px;
      background:
        linear-gradient(135deg, rgba(255, 47, 157, .18), transparent 42%),
        linear-gradient(180deg, rgba(49, 247, 202, .06), transparent);
    }

    .hero-panel {
      background: linear-gradient(135deg, rgba(26, 15, 32, .96), rgba(10, 8, 13, .98));
      border: 1px solid rgba(255, 47, 157, .34);
      border-radius: var(--radius);
      box-shadow: var(--shadow), var(--glow);
      overflow: hidden;
      position: relative;
    }

    .hero-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: linear-gradient(90deg, rgba(255, 47, 157, .09), transparent 24%, rgba(49, 247, 202, .08));
    }

    .hero-content {
      position: relative;
      padding: 36px;
    }

    .eyebrow {
      display: inline-flex;
      gap: 9px;
      align-items: center;
      color: #160814;
      background: var(--amber);
      border-radius: 99px;
      padding: 6px 12px;
      font-size: 13px;
      font-weight: 900;
      margin-bottom: 16px;
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      font-size: 44px;
      line-height: 1.16;
      margin-bottom: 16px;
      font-weight: 950;
      max-width: 760px;
    }

    .hero-lead {
      color: var(--muted);
      font-size: 17px;
      max-width: 760px;
      margin-bottom: 22px;
    }

    .hero-actions,
    .download-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      align-items: center;
      margin: 24px 0 20px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-ghost {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 20px;
      border-radius: 7px;
      font-weight: 900;
      border: 1px solid transparent;
      cursor: pointer;
      line-height: 1.2;
    }

    .btn-primary {
      color: #170815;
      background: linear-gradient(135deg, var(--magenta), var(--amber));
      box-shadow: 0 0 24px rgba(255, 47, 157, .24);
    }

    .btn-secondary {
      color: #09201b;
      background: linear-gradient(135deg, var(--cyan), var(--green));
    }

    .btn-ghost {
      color: var(--text);
      background: rgba(255, 255, 255, .04);
      border-color: rgba(255, 255, 255, .2);
    }

    .btn-primary:hover,
    .btn-secondary:hover,
    .btn-ghost:hover,
    .btn-primary:focus,
    .btn-secondary:focus,
    .btn-ghost:focus {
      transform: translateY(-2px);
      box-shadow: 0 0 28px rgba(49, 247, 202, .26);
      outline: 2px solid rgba(49, 247, 202, .34);
      outline-offset: 3px;
      color: inherit;
    }

    .btn-primary:active,
    .btn-secondary:active,
    .btn-ghost:active {
      transform: translateY(0);
    }

    .data-points {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      margin-top: 20px;
    }

    .point {
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, .045);
      border-radius: var(--radius);
      padding: 13px;
    }

    .point strong {
      display: block;
      color: var(--cyan);
      font-size: 20px;
      line-height: 1.2;
    }

    .point span {
      color: var(--muted);
      font-size: 13px;
    }

    .hero-board {
      padding: 26px;
      border-left: 1px solid rgba(255, 255, 255, .12);
      height: 100%;
      background: rgba(9, 5, 12, .52);
      position: relative;
    }

    .board-title {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: center;
      margin-bottom: 16px;
    }

    .board-title h2 {
      font-size: 20px;
      margin: 0;
    }

    .version-badge,
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border-radius: 99px;
      padding: 5px 10px;
      font-size: 12px;
      font-weight: 900;
      line-height: 1.2;
      border: 1px solid rgba(255, 255, 255, .18);
      white-space: nowrap;
    }

    .version-badge {
      color: #170815;
      background: var(--cyan);
    }

    .badge-magenta {
      background: rgba(255, 47, 157, .18);
      color: #ffd6ec;
      border-color: rgba(255, 47, 157, .48);
    }

    .badge-cyan {
      background: rgba(49, 247, 202, .14);
      color: #c5fff2;
      border-color: rgba(49, 247, 202, .45);
    }

    .badge-amber {
      background: rgba(255, 194, 71, .16);
      color: #ffe2a3;
      border-color: rgba(255, 194, 71, .42);
    }

    .rank-list {
      display: grid;
      gap: 10px;
    }

    .rank-item {
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, .05);
      border-radius: var(--radius);
      padding: 12px;
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 12px;
      align-items: center;
    }

    .rank-no {
      width: 28px;
      height: 28px;
      display: grid;
      place-items: center;
      border-radius: 7px;
      color: #150817;
      background: var(--amber);
      font-weight: 950;
    }

    .rank-item b {
      display: block;
      line-height: 1.25;
    }

    .rank-item small {
      color: var(--soft);
      font-size: 12px;
    }

    .section {
      padding: 72px 0;
    }

    .section-magenta {
      background: linear-gradient(135deg, #a20d58 0%, #351033 58%, #130713 100%);
    }

    .section-cyan {
      background: linear-gradient(135deg, #043a35 0%, #0b211f 48%, #101012 100%);
    }

    .section-purple {
      background: linear-gradient(135deg, #1a0f20 0%, #261032 100%);
    }

    .section-amber {
      background: linear-gradient(135deg, #ffbd38 0%, #fd3c9f 100%);
      color: #170815;
    }

    .section-header {
      margin-bottom: 28px;
      max-width: 820px;
    }

    .section-header h2 {
      font-size: 30px;
      line-height: 1.24;
      margin-bottom: 10px;
      font-weight: 950;
    }

    .section-header p {
      color: var(--muted);
      margin-bottom: 0;
      font-size: 16px;
    }

    .section-amber .section-header p {
      color: rgba(23, 8, 21, .78);
    }

    .orbit {
      border: 1px solid rgba(255, 255, 255, .18);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      background: var(--bg-deep);
    }

    .orbit-figure {
      margin: 0;
    }

    .mock-screen {
      min-height: 390px;
      aspect-ratio: 16 / 8;
      padding: 24px;
      background:
        linear-gradient(135deg, rgba(49, 247, 202, .08), transparent 35%),
        linear-gradient(180deg, #130814, #09050c);
      display: grid;
      grid-template-rows: auto 1fr;
      gap: 18px;
    }

    .mock-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      border-bottom: 1px solid rgba(255,255,255,.12);
      padding-bottom: 14px;
    }

    .mock-title {
      font-weight: 950;
      color: #fff;
    }

    .mock-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 18px;
      align-items: stretch;
    }

    .mock-card,
    .info-card,
    .require-card,
    .review-card,
    .article-item,
    .faq-wrap,
    .side-note {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .055);
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
    }

    .mock-card {
      padding: 16px;
    }

    .mock-row {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 14px;
      align-items: center;
      padding: 12px 0;
      border-bottom: 1px solid rgba(255,255,255,.09);
      color: var(--muted);
    }

    .mock-row:last-child {
      border-bottom: 0;
    }

    .mock-line {
      height: 9px;
      border-radius: 99px;
      background: linear-gradient(90deg, rgba(255,255,255,.22), rgba(49,247,202,.34));
      margin: 8px 0;
    }

    .orbit-previous,
    .orbit-next {
      background: rgba(9, 5, 12, .88);
      border: 1px solid rgba(49, 247, 202, .52);
      border-radius: 7px;
      width: 46px;
      height: 46px;
    }

    .orbit-bullets button {
      background: rgba(255, 255, 255, .3);
      width: 12px;
      height: 12px;
    }

    .orbit-bullets button.is-active {
      background: var(--cyan);
      box-shadow: 0 0 14px rgba(49, 247, 202, .9);
    }

    .feature-index {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 12px;
      margin-top: 18px;
    }

    .info-card {
      padding: 16px;
      min-height: 124px;
    }

    .info-card:hover,
    .require-card:hover,
    .review-card:hover,
    .article-item:hover,
    .side-note:hover {
      transform: translateY(-3px);
      border-color: rgba(49, 247, 202, .55);
      box-shadow: 0 0 24px rgba(49, 247, 202, .13);
      background: rgba(255, 255, 255, .075);
    }

    .info-card h3,
    .require-card h3,
    .review-card h3,
    .article-item h3 {
      font-size: 18px;
      line-height: 1.35;
      margin-bottom: 8px;
      font-weight: 900;
    }

    .info-card p,
    .require-card p,
    .review-card p,
    .article-item p {
      color: var(--muted);
      font-size: 14px;
      margin: 0;
    }

    .requirements-grid {
      display: grid;
      grid-template-columns: 1.4fr .8fr;
      gap: 22px;
      align-items: start;
    }

    .dark-table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      overflow: hidden;
      border-radius: var(--radius);
      border: 1px solid rgba(49, 247, 202, .26);
      background: rgba(7, 17, 15, .68);
    }

    .dark-table th,
    .dark-table td {
      color: var(--text);
      padding: 15px 16px;
      border-bottom: 1px solid rgba(255, 255, 255, .1);
      vertical-align: top;
    }

    .dark-table th {
      width: 30%;
      background: rgba(49, 247, 202, .16);
      color: #c6fff3;
      font-weight: 950;
    }

    .dark-table tr:hover td,
    .dark-table tr:hover th {
      background: rgba(255, 255, 255, .06);
    }

    .require-card {
      padding: 20px;
      background: rgba(255, 194, 71, .1);
      border-color: rgba(255, 194, 71, .42);
    }

    .reviews-flow {
      display: grid;
      grid-template-columns: 1fr 1.15fr .85fr;
      gap: 14px;
      align-items: start;
    }

    .review-card {
      padding: 18px;
    }

    .review-card:nth-child(2) {
      margin-top: 34px;
    }

    .review-card:nth-child(4) {
      margin-top: -18px;
    }

    .review-head {
      display: flex;
      gap: 11px;
      align-items: center;
      margin-bottom: 12px;
    }

    .avatar {
      width: 36px;
      height: 36px;
      border-radius: 7px;
      display: grid;
      place-items: center;
      color: #160814;
      background: linear-gradient(135deg, var(--cyan), var(--amber));
      font-weight: 950;
      flex: 0 0 auto;
    }

    .tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 12px;
    }

    .download-panel {
      border-radius: var(--radius);
      border: 1px solid rgba(23, 8, 21, .25);
      background:
        linear-gradient(90deg, rgba(23, 8, 21, .14), rgba(23, 8, 21, .02)),
        rgba(255, 255, 255, .34);
      padding: 28px;
      box-shadow: 0 20px 45px rgba(45, 6, 28, .28);
    }

    .download-meta {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 10px;
      margin-top: 22px;
    }

    .meta-box {
      border: 1px solid rgba(23, 8, 21, .22);
      background: rgba(255, 255, 255, .45);
      border-radius: var(--radius);
      padding: 13px;
    }

    .meta-box b {
      display: block;
      line-height: 1.25;
      font-size: 18px;
    }

    .meta-box span {
      color: rgba(23, 8, 21, .72);
      font-size: 13px;
    }

    .data-section {
      background: #0e0a12;
    }

    .kpi-grid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 18px;
    }

    .kpi-card {
      border: 1px solid rgba(255,255,255,.14);
      border-radius: var(--radius);
      padding: 22px;
      background: linear-gradient(135deg, rgba(255,47,157,.12), rgba(49,247,202,.06));
    }

    .kpi-number {
      display: block;
      color: var(--cyan);
      font-size: 34px;
      line-height: 1;
      font-weight: 950;
      margin-bottom: 8px;
    }

    .bar-chart {
      display: grid;
      gap: 12px;
    }

    .bar-row {
      display: grid;
      grid-template-columns: 92px 1fr 48px;
      align-items: center;
      gap: 12px;
      color: var(--muted);
      font-size: 14px;
    }

    .bar-track {
      height: 12px;
      border-radius: 99px;
      background: rgba(255,255,255,.1);
      overflow: hidden;
    }

    .bar-fill {
      height: 100%;
      border-radius: 99px;
      background: linear-gradient(90deg, var(--magenta), var(--cyan));
    }

    .articles-layout {
      display: grid;
      grid-template-columns: 1.25fr .75fr;
      gap: 18px;
    }

    .article-list {
      display: grid;
      gap: 12px;
    }

    .article-item {
      padding: 17px;
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 14px;
      align-items: center;
    }

    .article-index {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border-radius: 7px;
      background: rgba(255, 47, 157, .2);
      color: #ffd6ec;
      font-weight: 950;
      border: 1px solid rgba(255, 47, 157, .4);
    }

    .article-item a {
      color: var(--text);
      font-weight: 900;
    }

    .article-item a:hover {
      color: var(--cyan);
    }

    .side-note {
      padding: 18px;
      background: rgba(49, 247, 202, .08);
    }

    .tag-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
      margin-top: 12px;
    }

    .accordion {
      background: transparent;
    }

    .accordion-item {
      border: 1px solid rgba(255,255,255,.14);
      border-radius: var(--radius);
      overflow: hidden;
      margin-bottom: 10px;
      background: rgba(255,255,255,.045);
    }

    .accordion-title {
      color: var(--text);
      background: rgba(255,255,255,.035);
      border: 0;
      font-weight: 900;
      font-size: 16px;
      padding: 18px 48px 18px 18px;
    }

    .accordion-title:hover,
    .accordion-title:focus {
      color: var(--cyan);
      background: rgba(49,247,202,.08);
      outline: none;
    }

    .accordion-content {
      color: var(--muted);
      background: rgba(9, 5, 12, .55);
      border: 0;
      border-left: 3px solid var(--magenta);
      padding: 18px;
    }

    .site-footer {
      background: var(--bg-deep);
      border-top: 1px solid rgba(49, 247, 202, .26);
      padding: 34px 0;
      color: var(--muted);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr .8fr;
      gap: 22px;
      align-items: start;
    }

    .footer-title {
      color: var(--text);
      font-weight: 950;
      font-size: 18px;
      margin-bottom: 9px;
    }

    .footer-links {
      display: grid;
      gap: 8px;
    }

    .footer-links a {
      color: var(--muted);
    }

    .footer-links a:hover,
    .footer-links a:focus {
      color: var(--cyan);
    }

    .copyright {
      margin-top: 24px;
      padding-top: 18px;
      border-top: 1px solid rgba(255,255,255,.1);
      font-size: 13px;
      color: var(--soft);
    }

    @media screen and (max-width: 1024px) {
      h1 {
        font-size: 38px;
      }

      .hero-content {
        padding: 28px;
      }

      .feature-index,
      .download-meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .reviews-flow,
      .kpi-grid,
      .articles-layout,
      .requirements-grid {
        grid-template-columns: 1fr;
      }

      .review-card:nth-child(2),
      .review-card:nth-child(4) {
        margin-top: 0;
      }
    }

    @media screen and (max-width: 640px) {
      .site-container,
      .top-bar,
      .top-campaign-inner {
        width: min(100% - 24px, var(--container));
      }

      .hero,
      .section {
        padding: 44px 0;
      }

      h1 {
        font-size: 31px;
      }

      .section-header h2 {
        font-size: 26px;
      }

      .hero-content,
      .hero-board,
      .download-panel {
        padding: 20px;
      }

      .hero-board {
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.12);
      }

      .data-points,
      .feature-index,
      .download-meta {
        grid-template-columns: 1fr;
      }

      .hero-actions,
      .download-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .btn-primary,
      .btn-secondary,
      .btn-ghost,
      .nav-cta {
        width: 100%;
      }

      .mock-screen {
        min-height: auto;
        aspect-ratio: auto;
      }

      .mock-grid,
      .article-item {
        grid-template-columns: 1fr;
      }

      .dark-table,
      .dark-table tbody,
      .dark-table tr,
      .dark-table th,
      .dark-table td {
        display: block;
        width: 100%;
      }

      .dark-table th {
        border-bottom: 0;
      }

      .bar-row {
        grid-template-columns: 72px 1fr 42px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .brand {
        font-size: 17px;
      }

      .top-bar-right {
        margin-top: 12px;
      }
    }

/* roulang page: category1 */
:root{
  --bg:#090712;
  --bg-2:#100c1d;
  --panel:#141020;
  --panel-2:#1a132c;
  --panel-3:#1f1732;
  --line:rgba(255,255,255,.09);
  --line-2:rgba(255,73,215,.28);
  --text:#f3f4ff;
  --muted:#b6afcf;
  --muted-2:#8d84a8;
  --pink:#ff49d7;
  --pink-2:#d43fff;
  --cyan:#29f0d2;
  --amber:#ffbf4d;
  --violet:#7b4dff;
  --danger:#ff5d7a;
  --success:#4df3a4;
  --shadow:0 16px 36px rgba(0,0,0,.34);
  --shadow-soft:0 10px 20px rgba(0,0,0,.22);
  --radius:8px;
  --space:20px;
  --space-lg:32px;
  --site-max:1240px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--text);
  font-family:"PingFang SC","Microsoft YaHei","Noto Sans SC",system-ui,sans-serif;
  line-height:1.7;
  letter-spacing:0;
  background:
    linear-gradient(180deg, rgba(255,73,215,.08) 0%, rgba(255,73,215,0) 18%),
    linear-gradient(180deg, #0d0917 0%, #090712 100%);
  overflow-x:hidden;
}
body,button,input,select,textarea{font-family:inherit}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{cursor:pointer}
:focus{outline:none}
:focus-visible{
  outline:2px solid rgba(41,240,210,.9);
  outline-offset:2px;
}
.site-container{
  width:min(100%,var(--site-max));
  margin:0 auto;
  padding:0 20px;
}
.site-header{
  position:relative;
  z-index:40;
  background:rgba(7,6,13,.96);
  border-bottom:1px solid rgba(255,73,215,.22);
  box-shadow:0 1px 0 rgba(255,255,255,.02);
}
.title-bar{
  display:none;
  min-height:68px;
  border-bottom:1px solid rgba(255,255,255,.06);
  background:linear-gradient(180deg, rgba(18,13,31,.98), rgba(10,8,17,.98));
}
.title-bar .site-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:12px;
  font-weight:700;
  color:var(--text);
  letter-spacing:0;
}
.brand span:last-child{
  line-height:1.15;
}
.brand-mark{
  width:34px;
  height:34px;
  border-radius:7px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,var(--pink),var(--amber));
  color:#120b1c;
  font-size:15px;
  font-weight:800;
  box-shadow:0 0 0 1px rgba(255,255,255,.08) inset, 0 8px 20px rgba(255,73,215,.22);
}
.top-bar{
  background:linear-gradient(180deg, rgba(16,12,27,.98), rgba(9,7,18,.98));
  padding:14px 0;
}
.top-bar,
.top-bar ul{
  align-items:center;
}
.top-bar-left,
.top-bar-right{
  width:auto;
}
.top-bar .site-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.top-bar .menu{
  gap:8px;
}
.top-bar .menu > li > a{
  position:relative;
  display:inline-flex;
  align-items:center;
  min-height:44px;
  padding:10px 15px;
  border-radius:7px;
  color:var(--muted);
  font-size:15px;
  transition:background .2s ease,color .2s ease,box-shadow .2s ease,transform .2s ease;
}
.top-bar .menu > li > a:hover,
.top-bar .menu > li > a:focus-visible{
  color:var(--text);
  background:rgba(255,255,255,.04);
  box-shadow:0 0 0 1px rgba(255,255,255,.08) inset;
  transform:translateY(-1px);
}
.top-bar .menu > li > a.active{
  color:#fff;
  background:linear-gradient(135deg, rgba(255,73,215,.2), rgba(41,240,210,.12));
  box-shadow:0 0 0 1px rgba(255,73,215,.45) inset, 0 0 18px rgba(255,73,215,.14);
}
.nav-cta{
  color:#150f20 !important;
  background:linear-gradient(135deg,var(--cyan),var(--amber)) !important;
  box-shadow:0 12px 24px rgba(41,240,210,.14);
  font-weight:700;
}
.nav-cta:hover,
.nav-cta:focus-visible{
  background:linear-gradient(135deg,var(--amber),var(--pink)) !important;
  color:#120b1c !important;
}
.menu-icon{
  width:44px;
  height:44px;
  border-radius:7px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  position:relative;
}
.menu-icon:hover{
  background:rgba(255,255,255,.07);
}
.menu-icon::after{
  content:"";
  position:absolute;
  inset:11px 12px auto 12px;
  height:2px;
  background:#fff;
  box-shadow:0 7px 0 #fff, 0 14px 0 #fff;
}
.page-main{
  padding-bottom:72px;
}
.page-hero{
  padding:24px 0 20px;
  background:
    linear-gradient(180deg, rgba(24,16,39,.98), rgba(11,8,20,.98)),
    linear-gradient(90deg, rgba(255,73,215,.05), rgba(41,240,210,.05));
  border-bottom:1px solid rgba(255,255,255,.05);
}
.hero-grid{
  display:flex;
  align-items:stretch;
  gap:24px;
}
.hero-copy{
  min-width:0;
}
.hero-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:30px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(255,73,215,.12);
  color:#ffadef;
  border:1px solid rgba(255,73,215,.28);
  font-size:13px;
  font-weight:700;
}
.hero-kicker::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--success);
  box-shadow:0 0 0 4px rgba(77,243,164,.16);
}
.hero-copy h1{
  margin:16px 0 12px;
  font-size:46px;
  line-height:1.12;
  letter-spacing:0;
}
.hero-copy p{
  margin:0;
  max-width:760px;
  font-size:17px;
  color:var(--muted);
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:22px;
}
.button{
  min-height:46px;
  margin:0;
  padding:0 18px;
  border:1px solid transparent;
  border-radius:7px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-size:15px;
  font-weight:700;
  letter-spacing:0;
  transition:transform .2s ease,box-shadow .2s ease,background .2s ease,color .2s ease,border-color .2s ease;
}
.button:hover,
.button:focus-visible{
  transform:translateY(-2px);
}
.primary-action{
  color:#140d1f;
  background:linear-gradient(135deg,var(--pink),var(--amber));
  box-shadow:0 14px 28px rgba(255,73,215,.18), 0 0 0 1px rgba(255,255,255,.08) inset;
}
.primary-action:hover,
.primary-action:focus-visible{
  background:linear-gradient(135deg,var(--amber),var(--cyan));
  color:#120b1c;
  box-shadow:0 18px 32px rgba(255,191,77,.15), 0 0 0 1px rgba(255,255,255,.08) inset;
}
.secondary-action{
  color:var(--text);
  background:rgba(255,255,255,.02);
  border-color:rgba(255,255,255,.12);
  box-shadow:0 0 0 1px rgba(255,255,255,.04) inset;
}
.secondary-action:hover,
.secondary-action:focus-visible{
  color:#fff;
  border-color:rgba(41,240,210,.42);
  background:rgba(41,240,210,.08);
}
.limit-bar{
  margin-top:20px;
  padding:12px 14px;
  border-radius:7px;
  background:linear-gradient(90deg, rgba(255,73,215,.15), rgba(255,191,77,.1), rgba(41,240,210,.12));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 0 0 1px rgba(0,0,0,.18) inset;
}
.limit-bar-inner{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:12px;
  font-size:14px;
}
.limit-bar .state-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--success);
  box-shadow:0 0 0 5px rgba(77,243,164,.12);
}
.limit-bar .limit-label{
  color:#fff;
  font-weight:700;
}
.limit-bar .limit-meta{
  color:rgba(255,255,255,.82);
}
.hero-badges{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:16px;
}
.badge{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:0 10px;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
  border:1px solid transparent;
  letter-spacing:0;
}
.badge.recent{background:rgba(255,73,215,.12);color:#ff9ae9;border-color:rgba(255,73,215,.22)}
.badge.subtitle{background:rgba(41,240,210,.12);color:#92fff0;border-color:rgba(41,240,210,.22)}
.badge.updated{background:rgba(77,243,164,.12);color:#a8ffd0;border-color:rgba(77,243,164,.22)}
.badge.need{background:rgba(255,191,77,.12);color:#ffd38a;border-color:rgba(255,191,77,.22)}
.badge.mobile{background:rgba(123,77,255,.12);color:#d9c8ff;border-color:rgba(123,77,255,.22)}
.badge.desktop{background:rgba(255,255,255,.06);color:#e7e4f9;border-color:rgba(255,255,255,.12)}
.hero-panel{
  min-width:0;
  background:linear-gradient(180deg, rgba(31,23,50,.96), rgba(16,12,27,.98));
  border:1px solid rgba(255,255,255,.08);
  border-radius:8px;
  box-shadow:var(--shadow);
  padding:18px;
  position:relative;
  overflow:hidden;
}
.hero-panel::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg,var(--pink),var(--cyan),var(--amber));
}
.panel-title{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:14px;
  font-size:16px;
  font-weight:800;
}
.panel-tag{
  display:inline-flex;
  align-items:center;
  min-height:26px;
  padding:0 10px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  color:var(--muted);
  font-size:12px;
  border:1px solid rgba(255,255,255,.08);
}
.panel-status{
  display:grid;
  gap:12px;
}
.status-row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  padding:12px 0;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.status-row:last-child{border-bottom:0;padding-bottom:0}
.status-key{
  color:var(--muted);
  font-size:13px;
}
.status-value{
  text-align:right;
  font-size:14px;
  font-weight:700;
}
.progress-shell{
  margin-top:6px;
}
.progress-label{
  display:flex;
  align-items:center;
  justify-content:space-between;
  color:var(--muted);
  font-size:13px;
  margin-bottom:8px;
}
.progress-bar{
  height:10px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.06);
}
.progress-bar span{
  display:block;
  height:100%;
  width:72%;
  border-radius:999px;
  background:linear-gradient(90deg,var(--pink),var(--cyan),var(--amber));
  box-shadow:0 0 14px rgba(255,73,215,.35);
}
.hero-mini{
  margin-top:14px;
  padding:13px 14px;
  border-radius:7px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
}
.hero-mini-title{
  margin-bottom:8px;
  color:#fff;
  font-size:14px;
  font-weight:800;
}
.hero-mini-list{
  margin:0;
  padding:0;
  list-style:none;
}
.hero-mini-list li{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:7px 0;
  color:var(--muted);
  font-size:13px;
  border-bottom:1px dashed rgba(255,255,255,.07);
}
.hero-mini-list li:last-child{border-bottom:0}
.breadcrumbs{
  margin-top:18px;
  color:var(--muted-2);
  font-size:13px;
}
.breadcrumbs a{
  color:var(--muted);
}
.breadcrumbs a:hover{
  color:#fff;
}
.content-section{
  padding:64px 0;
}
.section--filters{
  background:
    linear-gradient(180deg, rgba(255,73,215,.07), rgba(255,73,215,0) 28%),
    linear-gradient(180deg, rgba(17,13,28,.95), rgba(12,9,21,.96));
  border-top:1px solid rgba(255,73,215,.12);
  border-bottom:1px solid rgba(255,255,255,.04);
}
.section--results{
  background:linear-gradient(180deg, rgba(9,7,18,.98), rgba(10,8,19,.98));
}
.section--download{
  padding:58px 0;
  background:
    linear-gradient(180deg, rgba(255,191,77,.12), rgba(255,191,77,.05)),
    linear-gradient(180deg, rgba(18,14,29,.97), rgba(13,10,22,.97));
  border-top:1px solid rgba(255,191,77,.18);
  border-bottom:1px solid rgba(255,255,255,.04);
}
.section--faq{
  background:
    linear-gradient(180deg, rgba(123,77,255,.08), rgba(123,77,255,0) 24%),
    linear-gradient(180deg, rgba(10,8,20,.98), rgba(8,7,15,.98));
}
.section-head{
  margin-bottom:18px;
}
.section-tag{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:0 10px;
  border-radius:999px;
  background:rgba(255,255,255,.05);
  color:#d7d3eb;
  border:1px solid rgba(255,255,255,.08);
  font-size:12px;
  font-weight:700;
}
.section-head h2{
  margin:12px 0 0;
  font-size:30px;
  line-height:1.2;
  letter-spacing:0;
}
.section-head p{
  margin:10px 0 0;
  max-width:760px;
  color:var(--muted);
  font-size:15px;
}
.filter-panel,
.download-strip{
  background:linear-gradient(180deg, rgba(28,20,45,.96), rgba(18,14,30,.98));
  border:1px solid rgba(255,255,255,.08);
  border-radius:8px;
  box-shadow:var(--shadow-soft);
  position:relative;
  overflow:hidden;
}
.filter-panel::before,
.download-strip::before{
  content:"";
  position:absolute;
  inset:0 auto auto 0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg,var(--pink),var(--cyan),var(--amber));
}
.filter-panel{
  padding:20px;
}
.filter-label{
  display:block;
  margin-bottom:7px;
  color:var(--muted);
  font-size:13px;
  font-weight:700;
}
.filter-panel select,
.filter-panel input[type="text"],
.filter-panel input[type="search"]{
  margin:0;
  height:46px;
  border-radius:7px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.12);
  color:var(--text);
  box-shadow:none;
  transition:border-color .2s ease,box-shadow .2s ease,background .2s ease;
}
.filter-panel select:focus,
.filter-panel input[type="text"]:focus,
.filter-panel input[type="search"]:focus{
  border-color:rgba(41,240,210,.58);
  background:rgba(41,240,210,.04);
  box-shadow:0 0 0 3px rgba(41,240,210,.12);
}
.filter-panel option{
  background:#13101f;
  color:#fff;
}
.switch{
  margin:0;
}
.switch-paddle{
  background:rgba(255,255,255,.12);
  border-radius:999px;
  border:1px solid rgba(255,255,255,.1);
}
.switch-paddle::after{
  border-radius:50%;
  background:#fff;
}
.switch input:checked ~ .switch-paddle{
  background:linear-gradient(135deg,var(--pink),var(--cyan));
}
.switch-label{
  color:var(--muted);
  font-size:13px;
  font-weight:600;
}
.switch-row{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  align-items:center;
  margin-top:18px;
}
.switch-item{
  display:flex;
  align-items:center;
  gap:10px;
}
.chip-group{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.filter-chip{
  min-height:40px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(255,255,255,.03);
  color:var(--muted);
  border:1px solid rgba(255,255,255,.1);
  transition:transform .2s ease,background .2s ease,color .2s ease,border-color .2s ease,box-shadow .2s ease;
}
.filter-chip:hover,
.filter-chip:focus-visible,
.filter-chip.is-selected{
  color:#fff;
  border-color:rgba(255,73,215,.4);
  background:linear-gradient(135deg, rgba(255,73,215,.18), rgba(41,240,210,.1));
  box-shadow:0 0 0 1px rgba(255,73,215,.22) inset, 0 0 18px rgba(255,73,215,.12);
  transform:translateY(-1px);
}
.tag-index{
  margin-top:20px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.tag-index a,
.tag-index span{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.09);
  background:rgba(255,255,255,.03);
  color:#ddd8ef;
  font-size:13px;
  transition:background .2s ease,border-color .2s ease,color .2s ease,transform .2s ease;
}
.tag-index a:hover{
  color:#fff;
  background:rgba(41,240,210,.08);
  border-color:rgba(41,240,210,.25);
  transform:translateY(-1px);
}
.results-head{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  align-items:flex-end;
  gap:12px;
  margin-bottom:16px;
}
.results-head h2{
  margin:0;
  font-size:28px;
}
.results-head p{
  margin:0;
  color:var(--muted);
  font-size:14px;
}
.entry-list{
  display:grid;
  gap:14px;
}
.entry-card{
  position:relative;
  background:linear-gradient(180deg, rgba(27,20,42,.98), rgba(17,12,28,.98));
  border:1px solid rgba(255,255,255,.08);
  border-radius:8px;
  box-shadow:0 10px 24px rgba(0,0,0,.18);
  padding:18px;
  overflow:hidden;
  transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
}
.entry-card::before{
  content:"";
  position:absolute;
  inset:0 auto auto 0;
  width:100%;
  height:3px;
  background:linear-gradient(90deg,var(--pink),var(--cyan));
  opacity:.85;
}
.entry-card:hover{
  transform:translateY(-2px);
  border-color:rgba(255,73,215,.26);
  box-shadow:0 16px 28px rgba(0,0,0,.24), 0 0 0 1px rgba(255,73,215,.08) inset;
}
.entry-head{
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:flex-start;
}
.entry-kicker{
  color:#ff9eea;
  font-size:12px;
  font-weight:700;
  letter-spacing:0;
}
.entry-card h3{
  margin:6px 0 0;
  font-size:19px;
  line-height:1.3;
}
.entry-desc{
  margin:10px 0 0;
  color:var(--muted);
  font-size:15px;
}
.entry-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:14px;
}
.entry-meta span{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:0 10px;
  border-radius:999px;
  background:rgba(255,255,255,.04);
  color:#ddd8ef;
  border:1px solid rgba(255,255,255,.08);
  font-size:12px;
}
.status-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:30px;
  padding:0 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  border:1px solid transparent;
}
.status-pill::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
}
.status-pill.up{background:rgba(77,243,164,.12);color:#a8ffd0;border-color:rgba(77,243,164,.22)}
.status-pill.up::before{background:var(--success);box-shadow:0 0 0 4px rgba(77,243,164,.12)}
.status-pill.need{background:rgba(255,191,77,.12);color:#ffd38a;border-color:rgba(255,191,77,.22)}
.status-pill.need::before{background:var(--amber);box-shadow:0 0 0 4px rgba(255,191,77,.12)}
.status-pill.check{background:rgba(255,255,255,.05);color:#e7e4f9;border-color:rgba(255,255,255,.12)}
.status-pill.check::before{background:#8f86ae;box-shadow:0 0 0 4px rgba(143,134,174,.12)}
.entry-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:16px;
}
.entry-actions .button{
  min-width:116px;
  padding-inline:14px;
  font-size:14px;
}
.sidebar-stack{
  display:grid;
  gap:14px;
}
.sidebar-panel{
  background:linear-gradient(180deg, rgba(25,19,39,.98), rgba(16,12,28,.98));
  border:1px solid rgba(255,255,255,.08);
  border-radius:8px;
  padding:18px;
  box-shadow:var(--shadow-soft);
}
.sidebar-panel h3{
  margin:0 0 12px;
  font-size:18px;
  line-height:1.25;
}
.info-list{
  margin:0;
  padding:0;
  list-style:none;
}
.info-list li{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,.06);
  font-size:14px;
}
.info-list li:last-child{border-bottom:0;padding-bottom:0}
.info-list span{
  color:var(--muted);
}
.info-list strong{
  text-align:right;
  color:#fff;
}
.sidebar-note{
  margin-top:12px;
  padding:14px;
  border-radius:7px;
  border:1px solid rgba(255,191,77,.22);
  background:rgba(255,191,77,.08);
  color:#ffe2ad;
  font-size:14px;
}
.sidebar-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.sidebar-tags a{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.03);
  color:#e8e3f7;
  font-size:13px;
  transition:transform .2s ease,border-color .2s ease,background .2s ease;
}
.sidebar-tags a:hover{
  transform:translateY(-1px);
  border-color:rgba(41,240,210,.25);
  background:rgba(41,240,210,.07);
}
.sidebar-cta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.sidebar-cta .button{
  flex:1 1 140px;
}
.download-strip{
  padding:22px;
}
.download-strip .grid-x{
  align-items:center;
}
.download-copy h2{
  margin:10px 0 0;
  font-size:28px;
  line-height:1.2;
}
.download-copy p{
  margin:10px 0 0;
  max-width:760px;
  color:var(--muted);
  font-size:15px;
}
.download-actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:12px;
}
.download-actions .button{
  min-width:152px;
}
.accordion{
  margin:0;
  border:0;
  background:transparent;
}
.accordion-item{
  margin-bottom:12px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:8px;
  overflow:hidden;
  background:linear-gradient(180deg, rgba(27,20,42,.98), rgba(16,12,28,.98));
  box-shadow:var(--shadow-soft);
}
.accordion-title{
  position:relative;
  padding:18px 18px 18px 48px;
  color:#fff;
  font-size:16px;
  font-weight:700;
  border:0;
}
.accordion-title::before{
  content:"";
  position:absolute;
  left:18px;
  top:50%;
  width:14px;
  height:14px;
  transform:translateY(-50%);
  border-radius:50%;
  border:2px solid rgba(255,255,255,.4);
}
.accordion-title::after{
  border-color:transparent transparent transparent rgba(255,255,255,.55);
  right:18px;
}
.accordion-item.is-active > .accordion-title{
  background:rgba(255,73,215,.08);
}
.accordion-item.is-active > .accordion-title::before{
  border-color:var(--cyan);
  box-shadow:0 0 0 5px rgba(41,240,210,.12);
}
.accordion-content{
  padding:0 18px 18px 48px;
  color:var(--muted);
  font-size:15px;
  border-top:1px solid rgba(255,255,255,.06);
}
.pagination-wrap{
  margin-top:20px;
}
.pagination{
  justify-content:flex-start;
  gap:8px;
  margin:0;
}
.pagination li{
  display:inline-flex;
}
.pagination a,
.pagination button{
  min-width:44px;
  height:44px;
  padding:0 14px;
  border-radius:7px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:var(--text);
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.1);
  transition:background .2s ease,border-color .2s ease,transform .2s ease,box-shadow .2s ease;
}
.pagination a:hover,
.pagination button:hover,
.pagination a:focus-visible,
.pagination button:focus-visible{
  background:rgba(41,240,210,.08);
  border-color:rgba(41,240,210,.3);
  transform:translateY(-1px);
}
.pagination .current{
  min-width:44px;
  height:44px;
  padding:0 14px;
  border-radius:7px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,var(--pink),var(--amber));
  color:#130b1c;
  border:0;
  font-weight:800;
  box-shadow:0 0 0 1px rgba(255,255,255,.08) inset;
}
.site-footer{
  margin-top:0;
  padding:42px 0 26px;
  background:#07060d;
  border-top:1px solid rgba(255,73,215,.22);
}
.site-footer::before{
  content:"";
  display:block;
  height:2px;
  margin-bottom:22px;
  background:linear-gradient(90deg,var(--pink),var(--cyan),var(--amber));
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:24px;
}
.footer-title{
  margin-bottom:12px;
  font-size:16px;
  font-weight:800;
  color:#fff;
}
.site-footer p{
  margin:0;
  color:var(--muted);
  font-size:14px;
}
.footer-links{
  display:grid;
  gap:10px;
}
.footer-links a{
  color:var(--muted);
  font-size:14px;
  transition:color .2s ease,transform .2s ease;
}
.footer-links a:hover,
.footer-links a:focus-visible{
  color:#fff;
  transform:translateX(2px);
}
.copyright{
  margin-top:24px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.06);
  color:var(--muted-2);
  font-size:13px;
}
@media (max-width: 1024px){
  .hero-grid{
    flex-direction:column;
  }
  .download-actions{
    justify-content:flex-start;
    margin-top:18px;
  }
  .footer-grid{
    grid-template-columns:1fr 1fr;
  }
}
@media (max-width: 640px){
  .title-bar{
    display:block;
  }
  .top-bar{
    padding:10px 0 14px;
  }
  .top-bar .site-container{
    flex-direction:column;
    align-items:flex-start;
  }
  .top-bar-left{
    display:none;
  }
  .top-bar .menu{
    width:100%;
    flex-direction:column;
    align-items:stretch;
    gap:6px;
  }
  .top-bar .menu > li > a{
    width:100%;
    justify-content:center;
  }
  .hero-copy h1{
    font-size:32px;
  }
  .hero-copy p{
    font-size:15px;
  }
  .section-head h2,
  .results-head h2,
  .download-copy h2{
    font-size:24px;
  }
  .content-section{
    padding:42px 0;
  }
  .filter-panel{
    padding:16px;
  }
  .switch-row,
  .chip-group,
  .tag-index,
  .hero-badges,
  .entry-actions,
  .sidebar-cta,
  .download-actions{
    gap:10px;
  }
  .entry-head{
    flex-direction:column;
  }
  .entry-actions .button,
  .sidebar-cta .button,
  .download-actions .button{
    width:100%;
  }
  .accordion-title{
    padding-left:42px;
    padding-right:42px;
  }
  .accordion-content{
    padding-left:18px;
  }
  .footer-grid{
    grid-template-columns:1fr;
  }
}
