/* roulang page: index */
:root {
      --bg: #070a0b;
      --bg-2: #0c1113;
      --panel: #11181b;
      --panel-2: #0f1517;
      --panel-3: #151d20;
      --line: rgba(160, 186, 186, 0.14);
      --line-strong: rgba(160, 186, 186, 0.24);
      --text: #eef4f4;
      --muted: #99aaaa;
      --muted-2: #7f9191;
      --accent: #34f0c0;
      --accent-2: #ff8a3d;
      --accent-3: #ff5d6c;
      --accent-4: #e8f25a;
      --shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
      --shadow-soft: 0 8px 18px rgba(0, 0, 0, 0.18);
      --radius: 8px;
      --radius-sm: 6px;
      --space: 24px;
      --space-lg: 36px;
      --space-xl: 60px;
      --container: 1240px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--text);
      background:
        linear-gradient(180deg, rgba(7, 10, 11, 0.96), rgba(7, 10, 11, 0.98)),
        radial-gradient(circle at top right, rgba(52, 240, 192, 0.08), transparent 28%),
        radial-gradient(circle at left 18%, rgba(255, 138, 61, 0.06), transparent 24%),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
      background-size: auto, auto, auto, 44px 44px, 44px 44px;
      background-position: center, center, center, center, center;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
      line-height: 1.65;
      letter-spacing: 0;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(115deg, transparent 0%, rgba(52, 240, 192, 0.04) 38%, transparent 55%),
        linear-gradient(0deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01) 2px, transparent 2px, transparent 16px);
      opacity: 0.6;
      z-index: -1;
    }

    ::selection {
      background: rgba(52, 240, 192, 0.24);
      color: var(--text);
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    a:hover {
      color: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    .container-xxl {
      max-width: var(--container);
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1030;
      backdrop-filter: blur(12px);
      background: rgba(7, 10, 11, 0.84);
      border-bottom: 1px solid var(--line);
    }

    .topbar {
      padding: 14px 0 10px;
    }

    .brand-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
    }

    .brand-mark {
      width: 38px;
      height: 38px;
      border-radius: 7px;
      background:
        linear-gradient(145deg, rgba(52, 240, 192, 0.95), rgba(255, 138, 61, 0.9));
      box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 8px 16px rgba(0,0,0,0.28);
      position: relative;
      flex: 0 0 auto;
    }

    .brand-mark::after {
      content: "";
      position: absolute;
      inset: 8px;
      border: 1px solid rgba(7, 10, 11, 0.32);
      border-radius: 4px;
    }

    .brand-copy {
      min-width: 0;
    }

    .brand-name {
      display: block;
      font-weight: 800;
      font-size: 1.02rem;
      line-height: 1.2;
      letter-spacing: 0;
      color: var(--text);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 100%;
    }

    .brand-sub {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: 3px;
      color: var(--muted);
      font-size: 0.88rem;
      flex-wrap: wrap;
    }

    .status-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 10px;
      border-radius: 999px;
      border: 1px solid rgba(52, 240, 192, 0.34);
      color: var(--accent);
      background: rgba(52, 240, 192, 0.08);
      font-size: 0.82rem;
      white-space: nowrap;
    }

    .status-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 0 rgba(52, 240, 192, 0.4);
      animation: pulse 2s infinite;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .btn-strong,
    .btn-soft,
    .btn-linkish {
      border-radius: var(--radius-sm);
      font-weight: 700;
      letter-spacing: 0;
      transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid transparent;
    }

    .btn-strong {
      background: linear-gradient(135deg, var(--accent), #12c6a0);
      color: #071011;
      box-shadow: 0 10px 20px rgba(18, 198, 160, 0.18);
    }

    .btn-strong:hover,
    .btn-strong:focus-visible {
      color: #071011;
      transform: translateY(-1px);
      box-shadow: 0 12px 24px rgba(18, 198, 160, 0.24);
    }

    .btn-soft {
      background: rgba(255,255,255,0.03);
      color: var(--text);
      border-color: var(--line);
    }

    .btn-soft:hover,
    .btn-soft:focus-visible {
      color: var(--text);
      border-color: rgba(52, 240, 192, 0.34);
      background: rgba(52, 240, 192, 0.06);
      transform: translateY(-1px);
    }

    .btn-linkish {
      background: transparent;
      color: var(--muted);
      border-color: transparent;
      padding-left: 0;
      padding-right: 0;
    }

    .btn-linkish:hover,
    .btn-linkish:focus-visible {
      color: var(--text);
    }

    .btn .icon,
    .icon {
      width: 16px;
      height: 16px;
      stroke-width: 2.1;
      flex: 0 0 auto;
    }

    .channelbar {
      border-top: 1px solid rgba(255,255,255,0.04);
      padding: 10px 0 14px;
    }

    .channel-nav {
      display: flex;
      gap: 8px;
      overflow-x: auto;
      padding-bottom: 2px;
      scrollbar-width: thin;
      scrollbar-color: rgba(255,255,255,0.18) transparent;
    }

    .channel-nav::-webkit-scrollbar {
      height: 6px;
    }

    .channel-nav::-webkit-scrollbar-thumb {
      background: rgba(255,255,255,0.16);
      border-radius: 999px;
    }

    .channel-nav a {
      flex: 0 0 auto;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      min-height: 36px;
      padding: 0 14px;
      border-radius: 999px;
      border: 1px solid var(--line);
      color: var(--muted);
      background: rgba(255,255,255,0.02);
      transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
      white-space: nowrap;
      font-size: 0.92rem;
    }

    .channel-nav a:hover,
    .channel-nav a:focus-visible {
      color: var(--text);
      border-color: rgba(52, 240, 192, 0.32);
      background: rgba(52, 240, 192, 0.06);
      transform: translateY(-1px);
      box-shadow: 0 6px 14px rgba(0,0,0,0.16);
    }

    .channel-nav a.active {
      color: var(--text);
      border-color: rgba(52, 240, 192, 0.58);
      background: linear-gradient(180deg, rgba(52, 240, 192, 0.12), rgba(255,255,255,0.02));
      box-shadow: inset 0 -2px 0 rgba(52, 240, 192, 0.55);
    }

    main {
      padding-bottom: 42px;
    }

    .section-band {
      padding: 42px 0;
      position: relative;
    }

    .section-band.alt {
      background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
      border-top: 1px solid rgba(255,255,255,0.03);
      border-bottom: 1px solid rgba(255,255,255,0.03);
    }

    .section-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--accent);
      font-size: 0.84rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0;
      margin-bottom: 10px;
    }

    .section-title {
      margin: 0;
      font-size: 2rem;
      line-height: 1.15;
      font-weight: 800;
      letter-spacing: 0;
      color: var(--text);
    }

    .section-lead {
      max-width: 720px;
      margin: 10px 0 0;
      color: var(--muted);
      font-size: 1rem;
    }

    .small-note {
      color: var(--muted-2);
      font-size: 0.88rem;
    }

    .hero {
      padding: 34px 0 26px;
      position: relative;
      overflow: hidden;
    }

    .hero-shell {
      border: 1px solid rgba(255,255,255,0.08);
      background:
        linear-gradient(180deg, rgba(17, 24, 27, 0.92), rgba(10, 14, 16, 0.95));
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 28px;
      position: relative;
      overflow: hidden;
    }

    .hero-shell::before,
    .hero-shell::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .hero-shell::before {
      background:
        linear-gradient(105deg, transparent 0%, rgba(52, 240, 192, 0.07) 32%, transparent 52%),
        linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.02) 100%);
      mix-blend-mode: screen;
    }

    .hero-shell::after {
      background:
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 52px 52px;
      opacity: 0.28;
    }

    .hero-copy {
      position: relative;
      z-index: 1;
      max-width: 860px;
    }

    .hero-title {
      margin: 14px 0 12px;
      font-size: 3rem;
      line-height: 1.05;
      font-weight: 900;
      letter-spacing: 0;
      max-width: 14ch;
    }

    .hero-text {
      margin: 0;
      color: #c6d3d3;
      font-size: 1.04rem;
      max-width: 760px;
    }

    .hero-tags {
      margin-top: 20px;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .mini-tag,
    .stat-tag,
    .chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      min-height: 30px;
      padding: 4px 10px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.03);
      color: var(--muted);
      font-size: 0.84rem;
      white-space: nowrap;
    }

    .mini-tag strong,
    .stat-tag strong,
    .chip strong {
      color: var(--text);
      font-weight: 700;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 22px;
      position: relative;
      z-index: 1;
    }

    .countdown-bar {
      margin-top: 26px;
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 10px;
    }

    .count-card {
      border: 1px solid var(--line);
      background: rgba(7, 10, 11, 0.44);
      border-radius: var(--radius-sm);
      padding: 14px 15px;
      box-shadow: var(--shadow-soft);
      min-height: 78px;
    }

    .count-label {
      color: var(--muted);
      font-size: 0.82rem;
      margin-bottom: 6px;
    }

    .count-value {
      font-size: 1.12rem;
      font-weight: 800;
      color: var(--text);
      line-height: 1.2;
    }

    .count-sub {
      color: var(--muted-2);
      font-size: 0.84rem;
      margin-top: 4px;
    }

    .hero-stage {
      position: relative;
      z-index: 1;
      margin-top: 18px;
      display: grid;
      grid-template-columns: 1.35fr 1fr 1fr;
      gap: 12px;
    }

    .stage-panel {
      border-radius: var(--radius-sm);
      border: 1px solid var(--line);
      background:
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)),
        rgba(15, 21, 23, 0.9);
      padding: 16px;
      min-height: 178px;
      box-shadow: var(--shadow-soft);
      position: relative;
      overflow: hidden;
    }

    .stage-panel::after {
      content: "";
      position: absolute;
      inset: auto 12px 12px 12px;
      height: 2px;
      background: linear-gradient(90deg, rgba(52, 240, 192, 0.0), rgba(52, 240, 192, 0.58), rgba(255, 138, 61, 0.42), rgba(52, 240, 192, 0.0));
      opacity: 0.9;
    }

    .stage-title {
      font-size: 0.95rem;
      font-weight: 800;
      margin-bottom: 10px;
      color: var(--text);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .stage-list {
      display: grid;
      gap: 10px;
    }

    .stage-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      border: 1px solid rgba(255,255,255,0.06);
      background: rgba(255,255,255,0.03);
      border-radius: 7px;
      padding: 10px 12px;
      min-height: 52px;
    }

    .stage-item strong {
      font-size: 0.95rem;
    }

    .stage-item span {
      color: var(--muted);
      font-size: 0.84rem;
    }

    .pulse {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 0 rgba(52, 240, 192, 0.42);
      animation: pulse 1.9s infinite;
    }

    .indicator-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .indicator-card {
      border-radius: var(--radius-sm);
      border: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(21, 29, 32, 0.95), rgba(13, 18, 20, 0.95));
      padding: 18px 16px;
      position: relative;
      overflow: hidden;
      min-height: 128px;
      transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
    }

    .indicator-card::before {
      content: "";
      position: absolute;
      top: 14px;
      right: 14px;
      width: 10px;
      height: 10px;
      border-radius: 2px;
      background: rgba(52, 240, 192, 0.9);
      box-shadow: 0 0 0 6px rgba(52, 240, 192, 0.08);
    }

    .indicator-card:hover {
      transform: translateY(-2px);
      border-color: rgba(52, 240, 192, 0.28);
      box-shadow: 0 12px 20px rgba(0,0,0,0.2);
    }

    .indicator-label {
      color: var(--muted);
      font-size: 0.84rem;
      margin-bottom: 8px;
    }

    .indicator-value {
      font-size: 1.8rem;
      line-height: 1;
      font-weight: 900;
      margin-bottom: 10px;
      color: var(--text);
      letter-spacing: 0;
    }

    .indicator-desc {
      color: var(--muted);
      font-size: 0.92rem;
      margin: 0;
    }

    .matrix-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .feature-card {
      background: linear-gradient(180deg, rgba(15, 21, 23, 0.98), rgba(11, 15, 17, 0.98));
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      padding: 18px 16px;
      min-height: 220px;
      position: relative;
      overflow: hidden;
      transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
    }

    .feature-card:hover {
      transform: translateY(-2px);
      border-color: rgba(52, 240, 192, 0.3);
      box-shadow: 0 14px 24px rgba(0,0,0,0.2);
    }

    .feature-icon {
      width: 40px;
      height: 40px;
      border-radius: 7px;
      display: grid;
      place-items: center;
      color: #071011;
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      margin-bottom: 14px;
      box-shadow: 0 8px 18px rgba(0,0,0,0.26);
    }

    .feature-title {
      margin: 0 0 8px;
      font-size: 1.08rem;
      line-height: 1.25;
      font-weight: 800;
    }

    .feature-text {
      color: var(--muted);
      margin: 0;
      font-size: 0.94rem;
    }

    .feature-meta {
      margin-top: 14px;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .feature-link {
      margin-top: 16px;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: var(--accent);
      font-weight: 700;
      font-size: 0.92rem;
    }

    .compare-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 16px;
      align-items: start;
    }

    .compare-panel {
      border: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(15, 21, 23, 0.96), rgba(11, 15, 17, 0.96));
      border-radius: var(--radius-sm);
      padding: 18px 16px;
      min-height: 100%;
    }

    .compare-list {
      display: grid;
      gap: 14px;
      margin-top: 8px;
    }

    .compare-row {
      display: grid;
      gap: 7px;
    }

    .compare-topline {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      font-size: 0.94rem;
    }

    .compare-track {
      height: 10px;
      border-radius: 999px;
      background: rgba(255,255,255,0.06);
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.04);
    }

    .compare-fill {
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--accent), rgba(255, 138, 61, 0.9));
      box-shadow: 0 0 18px rgba(52, 240, 192, 0.16);
    }

    .compare-fill.alt {
      background: linear-gradient(90deg, var(--accent-2), var(--accent-3));
    }

    .compare-fill.third {
      background: linear-gradient(90deg, var(--accent-4), var(--accent));
    }

    .compare-fill.fourth {
      background: linear-gradient(90deg, #8fe3ff, var(--accent));
    }

    .compare-fill.fifth {
      background: linear-gradient(90deg, #ff9ac1, var(--accent-3));
    }

    .compare-side {
      display: grid;
      gap: 12px;
    }

    .spec-box {
      border-radius: var(--radius-sm);
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.03);
      padding: 16px;
    }

    .spec-title {
      font-weight: 800;
      margin-bottom: 10px;
    }

    .spec-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 10px;
    }

    .spec-list li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      color: var(--muted);
      font-size: 0.94rem;
    }

    .spec-list li .icon {
      color: var(--accent);
      margin-top: 3px;
    }

    .news-layout {
      display: grid;
      grid-template-columns: 1.25fr 0.75fr;
      gap: 16px;
    }

    .news-panel {
      border: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(15, 21, 23, 0.96), rgba(11, 15, 17, 0.96));
      border-radius: var(--radius-sm);
      padding: 18px 16px;
    }

    .news-list {
      display: grid;
      gap: 10px;
    }

    .news-item {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 10px 14px;
      align-items: center;
      border: 1px solid rgba(255,255,255,0.05);
      background: rgba(255,255,255,0.025);
      border-radius: 7px;
      padding: 12px 13px;
      min-height: 64px;
      transition: transform 0.18s ease, border-color 0.18s ease;
    }

    .news-item:hover {
      transform: translateY(-1px);
      border-color: rgba(52, 240, 192, 0.22);
    }

    .news-title {
      margin: 0 0 5px;
      font-size: 0.98rem;
      font-weight: 700;
      line-height: 1.35;
    }

    .news-meta {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      color: var(--muted-2);
      font-size: 0.84rem;
    }

    .news-status {
      justify-self: end;
    }

    .quick-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .quick-tags .chip {
      cursor: default;
      background: rgba(255,255,255,0.03);
    }

    .faq-accordion .accordion-item {
      background: transparent;
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      overflow: hidden;
      margin-bottom: 10px;
    }

    .faq-accordion .accordion-button {
      background: rgba(15, 21, 23, 0.98);
      color: var(--text);
      font-weight: 700;
      box-shadow: none;
      padding: 16px 18px;
    }

    .faq-accordion .accordion-button:not(.collapsed) {
      color: var(--text);
      background: rgba(21, 29, 32, 1);
      box-shadow: inset 0 -1px 0 rgba(255,255,255,0.04);
    }

    .faq-accordion .accordion-button:focus {
      border-color: rgba(52, 240, 192, 0.38);
      box-shadow: 0 0 0 0.15rem rgba(52, 240, 192, 0.16);
    }

    .faq-accordion .accordion-button::after {
      filter: invert(1) saturate(0) brightness(1.3);
    }

    .faq-accordion .accordion-body {
      background: rgba(11, 15, 17, 0.98);
      color: var(--muted);
      padding: 0 18px 18px;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 16px;
      align-items: stretch;
    }

    .contact-panel {
      border: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(15, 21, 23, 0.96), rgba(11, 15, 17, 0.96));
      border-radius: var(--radius-sm);
      padding: 20px 18px;
    }

    .form-label {
      color: #dbe5e5;
      font-weight: 700;
      font-size: 0.92rem;
      margin-bottom: 8px;
    }

    .form-control,
    .form-select {
      min-height: 48px;
      border-radius: 7px;
      border: 1px solid var(--line);
      background-color: rgba(255,255,255,0.03);
      color: var(--text);
      box-shadow: none;
    }

    .form-control::placeholder {
      color: var(--muted-2);
    }

    .form-control:focus,
    .form-select:focus {
      border-color: rgba(52, 240, 192, 0.52);
      box-shadow: 0 0 0 0.16rem rgba(52, 240, 192, 0.14);
      background-color: rgba(255,255,255,0.04);
      color: var(--text);
    }

    textarea.form-control {
      min-height: 130px;
      resize: vertical;
    }

    .form-help {
      color: var(--muted);
      font-size: 0.88rem;
      margin-top: 8px;
    }

    .form-side {
      display: grid;
      gap: 12px;
    }

    .side-box {
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.03);
      border-radius: var(--radius-sm);
      padding: 16px;
    }

    .side-box-title {
      font-weight: 800;
      margin-bottom: 8px;
    }

    .side-box p {
      margin: 0;
      color: var(--muted);
    }

    .footer {
      padding: 26px 0 30px;
      border-top: 1px solid var(--line);
      background: rgba(6, 9, 10, 0.9);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr 0.8fr;
      gap: 16px;
      align-items: start;
    }

    .footer-title {
      font-size: 1rem;
      font-weight: 800;
      margin: 0 0 10px;
    }

    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 8px;
    }

    .footer-links a {
      color: var(--muted);
    }

    .footer-links a:hover,
    .footer-links a:focus-visible {
      color: var(--text);
    }

    .copyright {
      margin-top: 18px;
      padding-top: 16px;
      border-top: 1px solid rgba(255,255,255,0.06);
      color: var(--muted-2);
      font-size: 0.86rem;
      display: flex;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
    }

    .floating-rail {
      position: sticky;
      bottom: 14px;
      z-index: 1010;
      margin-top: 22px;
    }

    .floating-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 14px;
      border: 1px solid rgba(52, 240, 192, 0.24);
      background: rgba(9, 13, 15, 0.9);
      backdrop-filter: blur(10px);
      border-radius: var(--radius-sm);
      padding: 12px 14px;
      box-shadow: var(--shadow-soft);
    }

    .floating-bar strong {
      font-size: 0.95rem;
    }

    .floating-bar span {
      color: var(--muted);
      font-size: 0.88rem;
    }

    .fade-line {
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(52, 240, 192, 0.35), rgba(255, 138, 61, 0.28), transparent);
      margin: 14px 0 0;
    }

    .accordion-body p:last-child,
    .side-box p:last-child,
    .feature-text:last-child,
    .section-lead:last-child {
      margin-bottom: 0;
    }

    .btn:focus-visible,
    .form-control:focus-visible,
    .form-select:focus-visible,
    .accordion-button:focus-visible,
    a:focus-visible {
      outline: none;
    }

    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(52, 240, 192, 0.42); }
      70% { box-shadow: 0 0 0 8px rgba(52, 240, 192, 0); }
      100% { box-shadow: 0 0 0 0 rgba(52, 240, 192, 0); }
    }

    @media (max-width: 1199.98px) {
      .matrix-grid,
      .indicator-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .compare-grid,
      .news-layout,
      .contact-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .hero-title {
        max-width: 100%;
      }
    }

    @media (max-width: 991.98px) {
      .hero-shell {
        padding: 22px;
      }

      .hero-title {
        font-size: 2.4rem;
      }

      .countdown-bar,
      .hero-stage {
        grid-template-columns: 1fr;
      }

      .section-title {
        font-size: 1.7rem;
      }
    }

    @media (max-width: 767.98px) {
      .topbar {
        padding-top: 12px;
      }

      .brand-row {
        align-items: flex-start;
      }

      .header-actions {
        justify-content: flex-start;
      }

      .hero {
        padding-top: 26px;
      }

      .hero-shell {
        padding: 18px;
      }

      .hero-title {
        font-size: 2rem;
        line-height: 1.12;
      }

      .hero-text {
        font-size: 0.98rem;
      }

      .section-band {
        padding: 34px 0;
      }

      .indicator-grid,
      .matrix-grid {
        grid-template-columns: 1fr;
      }

      .news-item {
        grid-template-columns: 1fr;
      }

      .news-status {
        justify-self: start;
      }

      .floating-bar {
        align-items: flex-start;
        flex-direction: column;
      }

      .btn-strong,
      .btn-soft {
        width: 100%;
        justify-content: center;
      }

      .hero-actions .btn-strong,
      .hero-actions .btn-soft {
        width: auto;
      }
    }

    @media (max-width: 520px) {
      .brand {
        width: 100%;
      }

      .brand-name {
        font-size: 0.96rem;
        white-space: normal;
      }

      .brand-sub {
        font-size: 0.82rem;
      }

      .hero-title {
        font-size: 1.72rem;
      }

      .section-title {
        font-size: 1.42rem;
      }

      .count-value,
      .indicator-value {
        font-size: 1.34rem;
      }

      .hero-actions {
        display: grid;
      }

      .hero-actions .btn-strong,
      .hero-actions .btn-soft {
        width: 100%;
      }

      .stage-panel,
      .feature-card,
      .indicator-card,
      .compare-panel,
      .news-panel,
      .contact-panel {
        padding: 15px;
      }
    }

/* roulang page: category1 */
:root{
      --bg:#080a0c;
      --bg-2:#101316;
      --panel:#14181c;
      --panel-2:#181e22;
      --line:rgba(169,255,224,.18);
      --line-strong:rgba(45,255,190,.44);
      --text:#f4f7f4;
      --muted:#aab7b2;
      --soft:#6f7d78;
      --green:#29f0b4;
      --green-2:#79ffd2;
      --orange:#ff9a3c;
      --red:#ff5e66;
      --yellow:#ffd36a;
      --shadow:0 18px 45px rgba(0,0,0,.36);
      --shadow-short:0 10px 22px rgba(0,0,0,.28);
      --radius:8px;
      --radius-sm:6px;
      --container:1180px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Microsoft YaHei",Arial,sans-serif;
      color:var(--text);
      background:
        linear-gradient(rgba(41,240,180,.035) 1px,transparent 1px),
        linear-gradient(90deg,rgba(41,240,180,.035) 1px,transparent 1px),
        radial-gradient(circle at 16% 8%,rgba(41,240,180,.14),transparent 28%),
        radial-gradient(circle at 84% 10%,rgba(255,154,60,.12),transparent 26%),
        linear-gradient(180deg,#07090b 0%,#101316 48%,#080a0c 100%);
      background-size:34px 34px,34px 34px,auto,auto,auto;
      line-height:1.65;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none}
    a:hover{color:var(--green-2)}
    img,svg{max-width:100%}
    button,input,select,textarea{font:inherit}
    ::selection{background:rgba(41,240,180,.28);color:#fff}
    .container-xxl{max-width:var(--container);margin:0 auto;padding-left:22px;padding-right:22px}
    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(8,10,12,.86);
      backdrop-filter:blur(16px);
      border-bottom:1px solid rgba(255,255,255,.07);
      box-shadow:0 10px 28px rgba(0,0,0,.24);
    }
    .topbar{border-bottom:1px solid rgba(255,255,255,.06)}
    .brand-row{
      min-height:76px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }
    .brand{display:flex;align-items:center;gap:14px;min-width:0}
    .brand-mark{
      width:42px;
      height:42px;
      border-radius:8px;
      position:relative;
      flex:0 0 auto;
      background:
        linear-gradient(135deg,rgba(41,240,180,.95),rgba(255,154,60,.92)),
        linear-gradient(180deg,#111,#222);
      box-shadow:0 0 0 1px rgba(255,255,255,.12) inset,0 0 24px rgba(41,240,180,.24);
    }
    .brand-mark:before,.brand-mark:after{
      content:"";
      position:absolute;
      inset:9px;
      border:1px solid rgba(8,10,12,.68);
      transform:skew(-12deg);
    }
    .brand-mark:after{
      inset:15px 10px;
      border-color:rgba(255,255,255,.64);
    }
    .brand-copy{display:flex;flex-direction:column;min-width:0}
    .brand-name{
      font-weight:800;
      font-size:18px;
      line-height:1.25;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .brand-sub{
      margin-top:4px;
      color:var(--muted);
      font-size:12px;
      display:flex;
      align-items:center;
      gap:8px;
      flex-wrap:wrap;
    }
    .status-pill,.badge-state{
      display:inline-flex;
      align-items:center;
      gap:6px;
      border:1px solid var(--line);
      background:rgba(41,240,180,.08);
      color:var(--green-2);
      padding:3px 8px;
      border-radius:6px;
      font-size:12px;
      line-height:1.25;
      white-space:nowrap;
    }
    .status-dot{
      width:7px;
      height:7px;
      border-radius:50%;
      background:var(--green);
      box-shadow:0 0 0 4px rgba(41,240,180,.13),0 0 12px rgba(41,240,180,.8);
      animation:pulse 1.8s infinite;
    }
    @keyframes pulse{
      0%,100%{opacity:1;transform:scale(1)}
      50%{opacity:.58;transform:scale(.82)}
    }
    .header-actions{display:flex;align-items:center;gap:10px;flex:0 0 auto}
    .btn{
      border-radius:6px;
      border:1px solid transparent;
      font-weight:700;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:40px;
      padding:10px 16px;
      transition:transform .2s ease,box-shadow .2s ease,background .2s ease,border-color .2s ease,color .2s ease;
    }
    .btn-sm{min-height:34px;padding:7px 12px;font-size:13px}
    .btn-strong{
      background:linear-gradient(135deg,var(--green),#9dffd8);
      color:#06110d;
      box-shadow:0 0 0 1px rgba(255,255,255,.12) inset,0 10px 24px rgba(41,240,180,.18);
    }
    .btn-strong:hover,.btn-strong:focus{color:#03100b;transform:translateY(-2px);box-shadow:0 0 0 1px rgba(255,255,255,.16) inset,0 16px 30px rgba(41,240,180,.26)}
    .btn-soft{
      background:rgba(255,255,255,.06);
      color:var(--text);
      border-color:rgba(255,255,255,.11);
    }
    .btn-soft:hover,.btn-soft:focus{background:rgba(41,240,180,.1);border-color:var(--line-strong);transform:translateY(-2px);color:#fff}
    .btn-darkline{
      background:#0d1012;
      color:var(--green-2);
      border-color:var(--line);
    }
    .btn-darkline:hover,.btn-darkline:focus{border-color:var(--orange);color:#fff;background:#161b1f;transform:translateY(-2px)}
    .icon{width:16px;height:16px;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;flex:0 0 auto}
    .channelbar{background:rgba(12,15,17,.72)}
    .channel-nav{
      display:flex;
      align-items:center;
      gap:8px;
      overflow-x:auto;
      scrollbar-width:none;
      padding:10px 0;
    }
    .channel-nav::-webkit-scrollbar{display:none}
    .channel-nav a{
      position:relative;
      flex:0 0 auto;
      color:var(--muted);
      font-weight:700;
      font-size:14px;
      padding:8px 13px;
      border:1px solid rgba(255,255,255,.08);
      border-radius:6px;
      background:rgba(255,255,255,.035);
      transition:background .2s ease,border-color .2s ease,color .2s ease,box-shadow .2s ease;
    }
    .channel-nav a:hover{color:#fff;border-color:rgba(41,240,180,.32);background:rgba(41,240,180,.08)}
    .channel-nav a.active{
      color:#07110e;
      background:var(--green);
      border-color:var(--green);
      box-shadow:0 0 18px rgba(41,240,180,.22);
    }
    .section{padding:72px 0;position:relative}
    .section-tight{padding:44px 0}
    .section-alt{background:rgba(255,255,255,.025);border-top:1px solid rgba(255,255,255,.06);border-bottom:1px solid rgba(255,255,255,.06)}
    .section-head{max-width:760px;margin-bottom:28px}
    .kicker{
      color:var(--orange);
      font-size:13px;
      font-weight:800;
      letter-spacing:0;
      display:inline-flex;
      align-items:center;
      gap:8px;
      margin-bottom:12px;
    }
    .kicker:before{content:"";width:22px;height:2px;background:var(--orange);box-shadow:0 0 12px rgba(255,154,60,.7)}
    h1,h2,h3,p{margin-top:0}
    h1{
      font-size:clamp(34px,5vw,64px);
      line-height:1.08;
      font-weight:900;
      letter-spacing:0;
      margin-bottom:18px;
    }
    h2{font-size:clamp(26px,3.4vw,42px);line-height:1.18;font-weight:900;margin-bottom:12px}
    h3{font-size:19px;font-weight:850;line-height:1.32;margin-bottom:10px}
    .lead{color:#d2ddd8;font-size:17px;max-width:760px}
    .muted{color:var(--muted)}
    .small-note{color:var(--muted);font-size:13px}
    .hero{
      padding:34px 0 64px;
      min-height:calc(100vh - 124px);
      display:flex;
      align-items:center;
    }
    .hero-bento{
      display:grid;
      grid-template-columns:1.45fr .9fr;
      grid-template-rows:auto auto;
      gap:16px;
      width:100%;
    }
    .hero-main,.hero-tile,.hero-cta{
      border:1px solid rgba(255,255,255,.08);
      border-radius:var(--radius);
      background:
        linear-gradient(135deg,rgba(41,240,180,.1),transparent 38%),
        linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.025));
      box-shadow:var(--shadow-short);
      position:relative;
      overflow:hidden;
    }
    .hero-main:before,.hero-tile:before,.hero-cta:before{
      content:"";
      position:absolute;
      inset:0;
      pointer-events:none;
      background:
        linear-gradient(90deg,transparent,rgba(41,240,180,.07),transparent),
        repeating-linear-gradient(0deg,rgba(255,255,255,.025) 0,rgba(255,255,255,.025) 1px,transparent 1px,transparent 9px);
      opacity:.75;
    }
    .hero-main{
      grid-row:1 / span 2;
      padding:48px;
      min-height:520px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .hero-tile{padding:24px;min-height:252px}
    .hero-cta{
      grid-column:1 / -1;
      padding:20px 24px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
      background:
        linear-gradient(90deg,rgba(41,240,180,.14),rgba(255,154,60,.08)),
        rgba(18,22,25,.88);
    }
    .hero-map{
      margin-top:34px;
      border:1px solid var(--line);
      border-radius:var(--radius);
      background:#0a0f10;
      padding:20px;
      position:relative;
      overflow:hidden;
    }
    .hero-map:before{
      content:"";
      position:absolute;
      inset:-40px;
      background:
        linear-gradient(115deg,transparent 0 22%,rgba(41,240,180,.22) 23%,transparent 24% 58%,rgba(255,154,60,.16) 59%,transparent 60%),
        radial-gradient(circle at 18% 30%,rgba(41,240,180,.24),transparent 18%),
        radial-gradient(circle at 78% 70%,rgba(255,154,60,.2),transparent 16%);
      opacity:.8;
    }
    .route-row{position:relative;display:grid;grid-template-columns:repeat(4,1fr);gap:10px}
    .route-node{
      min-height:82px;
      border:1px solid rgba(255,255,255,.09);
      background:rgba(255,255,255,.05);
      border-radius:6px;
      padding:12px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .node-num{color:var(--green-2);font-size:22px;font-weight:900;line-height:1}
    .node-label{color:var(--muted);font-size:12px}
    .progress-track{
      height:8px;
      border-radius:99px;
      background:rgba(255,255,255,.08);
      overflow:hidden;
      margin:18px 0 8px;
    }
    .progress-fill{
      height:100%;
      width:76%;
      background:linear-gradient(90deg,var(--green),var(--orange));
      box-shadow:0 0 18px rgba(41,240,180,.5);
    }
    .tile-title{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:18px}
    .status-list{display:grid;gap:10px;position:relative}
    .status-item{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:12px;
      padding:10px 0;
      border-bottom:1px solid rgba(255,255,255,.07);
      color:var(--muted);
      font我先把这一页的尾部补齐，顺手把还缺的主体区块、FAQ 和表单一起收拢成能直接运行的完整页面。font-size:14px;
      font-weight:700;
    }
    .status-item:last-child{border-bottom:0;padding-bottom:0}
    .status-item strong{color:#fff;font-weight:800}
    .metrics{
      display:grid;
      grid-template-columns:repeat(5,minmax(0,1fr));
      gap:14px;
      margin-top:-28px;
      position:relative;
      z-index:2;
    }
    .metric-card,.filter-panel,.result-panel,.compare-card,.contact-panel,.footer{
      border:1px solid rgba(255,255,255,.08);
      border-radius:var(--radius);
      background:rgba(16,19,22,.84);
      box-shadow:var(--shadow-short);
    }
    .metric-card{
      padding:18px 16px;
      min-height:112px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      position:relative;
      overflow:hidden;
    }
    .metric-card:before,.entry-card:before,.compare-card:before{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(135deg,rgba(41,240,180,.06),transparent 38%);
      pointer-events:none;
    }
    .metric-num{
      font-size:28px;
      font-weight:900;
      line-height:1;
      color:#fff;
      letter-spacing:0;
    }
    .metric-label{font-size:13px;color:var(--muted);margin-top:8px}
    .metric-note{font-size:12px;color:var(--green-2)}
    .pill-row,.tag-row{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .tag,.filter-chip{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.09);
      background:rgba(255,255,255,.04);
      color:#dbe5e1;
      font-size:13px;
      font-weight:700;
      line-height:1.2;
      transition:transform .2s ease,border-color .2s ease,background .2s ease,color .2s ease,box-shadow .2s ease;
    }
    .tag:hover,.filter-chip:hover{transform:translateY(-1px);border-color:rgba(41,240,180,.35);background:rgba(41,240,180,.08);color:#fff}
    .tag.active,.filter-chip.active{
      background:rgba(41,240,180,.14);
      border-color:rgba(41,240,180,.5);
      color:#fff;
      box-shadow:0 0 18px rgba(41,240,180,.12);
    }
    .content-grid{
      display:grid;
      grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);
      gap:16px;
      align-items:start;
    }
    .panel-pad{padding:22px}
    .filter-panel{
      padding:22px;
      position:sticky;
      top:132px;
    }
    .filter-group{margin-bottom:18px}
    .filter-title{
      font-size:14px;
      color:#fff;
      font-weight:800;
      margin-bottom:12px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
    }
    .filter-title span{color:var(--muted);font-weight:600;font-size:12px}
    .filter-list{display:flex;flex-wrap:wrap;gap:8px}
    .range-line{
      height:6px;
      border-radius:999px;
      background:rgba(255,255,255,.08);
      position:relative;
      overflow:hidden;
    }
    .range-line:before{
      content:"";
      position:absolute;
      inset:0;
      width:68%;
      background:linear-gradient(90deg,var(--green),var(--orange));
    }
    .result-panel{padding:22px;overflow:hidden}
    .result-top{
      display:flex;
      justify-content:space-between;
      align-items:flex-start;
      gap:14px;
      margin-bottom:16px;
    }
    .result-top h2{margin-bottom:4px;font-size:28px}
    .sort-chip{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:6px;
      border:1px solid rgba(255,255,255,.08);
      background:rgba(255,255,255,.04);
      color:var(--muted);
      font-size:13px;
      white-space:nowrap;
    }
    .entry-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:14px;
    }
    .entry-card{
      min-height:210px;
      border:1px solid rgba(255,255,255,.08);
      border-radius:var(--radius);
      background:rgba(255,255,255,.03);
      padding:18px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      position:relative;
      overflow:hidden;
      transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease,background .2s ease;
    }
    .entry-card:hover{
      transform:translateY(-2px);
      border-color:rgba(41,240,180,.34);
      background:rgba(41,240,180,.05);
      box-shadow:0 14px 24px rgba(0,0,0,.22);
    }
    .entry-head{display:flex;align-items:flex-start;justify-content:space-between;gap:12px}
    .entry-title{
      font-size:18px;
      font-weight:850;
      line-height:1.35;
      margin-bottom:8px;
    }
    .entry-summary{color:#d1ddd7;font-size:14px;min-height:42px}
    .entry-meta{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:14px;
      color:var(--muted);
      font-size:12px;
    }
    .entry-meta span{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:4px 8px;
      border-radius:999px;
      background:rgba(255,255,255,.04);
      border:1px solid rgba(255,255,255,.06);
    }
    .entry-actions{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      margin-top:18px;
    }
    .entry-actions .btn{min-width:110px}
    .compare-grid{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:14px;
    }
    .compare-card{
      padding:18px;
      min-height:188px;
      position:relative;
      overflow:hidden;
    }
    .compare-card h3{font-size:17px;margin-bottom:12px}
    .score{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom:10px;
    }
    .score strong{font-size:28px;color:var(--green-2)}
    .score .unit{color:var(--muted);font-size:12px}
    .bar{
      height:8px;
      border-radius:99px;
      background:rgba(255,255,255,.08);
      overflow:hidden;
      margin-bottom:10px;
    }
    .bar > span{
      display:block;
      height:100%;
      background:linear-gradient(90deg,var(--green),var(--orange));
      border-radius:inherit;
    }
    .compare-card p{color:var(--muted);font-size:13px;margin-bottom:0}
    .faq-wrap .accordion{
      --bs-accordion-bg:transparent;
      --bs-accordion-border-color:rgba(255,255,255,.08);
      --bs-accordion-btn-color:#fff;
      --bs-accordion-color:#dbe5e1;
      --bs-accordion-active-bg:rgba(41,240,180,.08);
      --bs-accordion-active-color:#fff;
      --bs-accordion-btn-focus-box-shadow:0 0 0 .2rem rgba(41,240,180,.12);
      --bs-accordion-btn-padding-x:0;
      --bs-accordion-btn-padding-y:18px;
      --bs-accordion-body-padding-x:0;
      --bs-accordion-body-padding-y:0 0 18px;
    }
    .accordion-item{
      background:transparent;
      border-left:0;
      border-right:0;
      border-top:0;
      border-bottom:1px solid rgba(255,255,255,.08);
      border-radius:0 !important;
    }
    .accordion-button{
      background:transparent !important;
      box-shadow:none !important;
      font-weight:800;
      padding-left:0;
      padding-right:0;
    }
    .accordion-button::after{
      filter:brightness(1.2) contrast(1.05);
    }
    .accordion-body{
      padding:0 0 18px;
      color:var(--muted);
      max-width:840px;
    }
    .contact-panel{
      padding:24px;
      position:relative;
      overflow:hidden;
    }
    .form-control,.form-select{
      background:#0d1114;
      border:1px solid rgba(255,255,255,.08);
      color:#fff;
      border-radius:6px;
      min-height:46px;
      box-shadow:none;
    }
    .form-control:focus,.form-select:focus{
      background:#0d1114;
      color:#fff;
      border-color:rgba(41,240,180,.5);
      box-shadow:0 0 0 .2rem rgba(41,240,180,.12);
    }
    .form-control::placeholder{color:#6f7d78}
    .contact-box{
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:16px;
      align-items:start;
    }
    .contact-copy{
      padding-right:12px;
    }
    .contact-list{
      margin:0;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .contact-list li{
      display:flex;
      align-items:flex-start;
      gap:10px;
      color:#d9e4df;
      font-size:14px;
    }
    .contact-list li:before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--green);
      margin-top:8px;
      box-shadow:0 0 0 4px rgba(41,240,180,.12);
      flex:0 0 auto;
    }
    .footer{
      margin-top:32px;
      border-left:0;
      border-right:0;
      border-bottom:0;
      border-radius:0;
      background:#090c0e;
      box-shadow:none;
      padding:34px 0 16px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.2fr .7fr .7fr;
      gap:18px;
      align-items:start;
    }
    .footer-title{
      font-size:17px;
      font-weight:850;
      margin-bottom:12px;
      color:#fff;
    }
    .footer-links{
      margin:0;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .footer-links a{
      color:var(--muted);
      font-size:14px;
    }
    .footer-links a:hover{color:#fff}
    .copyright{
      margin-top:22px;
      padding-top:16px;
      border-top:1px solid rgba(255,255,255,.07);
      display:flex;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      color:var(--soft);
      font-size:13px;
    }
    .section-anchor{scroll-margin-top:108px}
    .title-row{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
      margin-bottom:18px;
    }
    .subtle-line{
      height:1px;
      background:linear-gradient(90deg,rgba(255,255,255,.08),rgba(41,240,180,.34),rgba(255,255,255,.08));
      margin:18px 0;
    }
    .pill-stat{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:6px 10px;
      border-radius:6px;
      border:1px solid rgba(255,255,255,.08);
      color:#d8e4df;
      background:rgba(255,255,255,.035);
      font-size:13px;
      font-weight:700;
    }
    .text-green{color:var(--green-2)}
    @media (max-width:1199.98px){
      .metrics{grid-template-columns:repeat(3,minmax(0,1fr))}
      .compare-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
      .hero-bento{grid-template-columns:1fr}
      .hero-main{grid-row:auto;min-height:auto}
    }
    @media (max-width:991.98px){
      .content-grid,.contact-box{grid-template-columns:1fr}
      .filter-panel{position:static}
      .entry-grid{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr 1fr}
      .hero{min-height:auto;padding-top:28px}
      .hero-main{padding:30px}
      .hero-cta{flex-direction:column;align-items:flex-start}
      .route-row{grid-template-columns:repeat(2,minmax(0,1fr))}
    }
    @media (max-width:767.98px){
      .brand-row{flex-direction:column;align-items:flex-start;padding:14px 0}
      .header-actions{width:100%;justify-content:space-between;flex-wrap:wrap}
      .metrics{grid-template-columns:repeat(2,minmax(0,1fr));margin-top:0}
      .compare-grid,.footer-grid{grid-template-columns:1fr}
      .result-top{flex-direction:column;align-items:flex-start}
      .section{padding:58px 0}
      .hero-main{padding:24px}
      .hero-map{padding:16px}
      .route-row{grid-template-columns:1fr 1fr}
      h1{font-size:32px}
      .lead{font-size:16px}
    }
    @media (max-width:519.98px){
      .container-xxl{padding-left:16px;padding-right:16px}
      .metrics{grid-template-columns:1fr}
      .route-row{grid-template-columns:1fr}
      .entry-actions{flex-direction:column;align-items:stretch}
      .entry-actions .btn{width:100%}
      .header-actions .btn{flex:1 1 calc(50% - 5px)}
      .brand-name{font-size:17px;white-space:normal}
      .hero-main,.hero-tile,.hero-cta,.metric-card,.filter-panel,.result-panel,.compare-card,.contact-panel{border-radius:6px}
    }
