/* roulang page: index */
:root {
      --bg: #09070f;
      --bg-soft: #11101a;
      --panel: #151421;
      --panel-2: #1b1828;
      --panel-3: #211b31;
      --text: #f8f3ff;
      --muted: #b9adca;
      --weak: #837692;
      --line: rgba(255,255,255,.12);
      --line-strong: rgba(255,255,255,.2);
      --pink: #ff4fb7;
      --cyan: #31f2e7;
      --amber: #ffc257;
      --violet: #9c6bff;
      --green: #6df0a4;
      --danger: #ff6a7a;
      --radius: 8px;
      --shadow: 0 22px 60px rgba(0,0,0,.35);
      --glow-pink: 0 0 28px rgba(255,79,183,.28);
      --glow-cyan: 0 0 28px rgba(49,242,231,.22);
      --container: 1180px;
      --font: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: var(--font);
      color: var(--text);
      background:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
        radial-gradient(circle at 8% 12%, rgba(255,79,183,.16), transparent 28%),
        radial-gradient(circle at 85% 8%, rgba(49,242,231,.12), transparent 24%),
        radial-gradient(circle at 65% 85%, rgba(156,107,255,.12), transparent 26%),
        var(--bg);
      background-size: 34px 34px, 34px 34px, auto, auto, auto, auto;
      line-height: 1.7;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
    }

    img { max-width: 100%; height: auto; display: block; }

    button, input, textarea, select {
      font: inherit;
    }

    button, .button {
      cursor: pointer;
      border-radius: var(--radius);
      letter-spacing: 0;
    }

    .site-shell {
      position: relative;
      min-height: 100vh;
    }

    .container {
      width: min(var(--container), calc(100% - 40px));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(9,7,15,.88);
      border-bottom: 1px solid rgba(255,255,255,.1);
      backdrop-filter: blur(18px);
      box-shadow: 0 12px 34px rgba(0,0,0,.28);
    }

    .top-bar {
      background: transparent;
      padding: 0;
      min-height: 74px;
    }

    .top-bar .top-bar-left,
    .top-bar .top-bar-right {
      display: flex;
      align-items: center;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      color: var(--text);
      max-width: 360px;
      line-height: 1.25;
    }

    .brand-mark {
      width: 38px;
      height: 38px;
      border-radius: 8px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--pink), var(--violet) 48%, var(--cyan));
      box-shadow: var(--glow-pink);
      flex: 0 0 auto;
      color: #08060d;
      font-weight: 900;
    }

    .brand-text {
      font-size: 16px;
      white-space: normal;
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 6px;
      margin: 0;
      list-style: none;
    }

    .nav-menu a {
      position: relative;
      display: inline-flex;
      align-items: center;
      min-height: 42px;
      padding: 0 14px;
      color: var(--muted);
      font-size: 14px;
      border: 1px solid transparent;
      border-radius: 8px;
    }

    .nav-menu a::after {
      content: "";
      position: absolute;
      left: 14px;
      right: 14px;
      bottom: 4px;
      height: 2px;
      background: linear-gradient(90deg, var(--pink), var(--cyan));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .2s ease;
      border-radius: 999px;
    }

    .nav-menu a:hover,
    .nav-menu a:focus,
    .nav-menu a.active {
      color: var(--text);
      background: rgba(255,255,255,.05);
      border-color: rgba(255,79,183,.22);
      outline: none;
    }

    .nav-menu a:hover::after,
    .nav-menu a.active::after {
      transform: scaleX(1);
    }

    .nav-cta {
      margin-left: 10px;
    }

    .menu-toggle {
      display: none;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(255,255,255,.16);
      background: rgba(255,255,255,.05);
      color: var(--text);
      border-radius: 8px;
    }

    .menu-toggle span {
      display: block;
      width: 18px;
      height: 2px;
      margin: 5px auto;
      background: currentColor;
      border-radius: 999px;
    }

    .mobile-panel {
      display: none;
      border-top: 1px solid rgba(255,255,255,.08);
      padding: 12px 0 18px;
      background: rgba(12,10,19,.98);
    }

    .mobile-panel.open { display: block; }

    .mobile-panel a {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 13px 0;
      color: var(--muted);
      border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .mobile-panel a.active {
      color: var(--text);
      text-shadow: 0 0 18px rgba(49,242,231,.35);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 44px;
      padding: 0 18px;
      border-radius: var(--radius);
      font-weight: 700;
      border: 1px solid transparent;
      white-space: nowrap;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
    }

    .btn-primary {
      color: #08060d;
      background: linear-gradient(135deg, var(--cyan), var(--pink) 52%, var(--amber));
      box-shadow: 0 0 0 1px rgba(255,255,255,.12), var(--glow-pink);
    }

    .btn-primary:hover,
    .btn-primary:focus {
      color: #08060d;
      transform: translateY(-1px);
      box-shadow: 0 0 0 1px rgba(255,255,255,.18), 0 0 36px rgba(255,79,183,.42);
      outline: none;
    }

    .btn-ghost {
      color: var(--text);
      background: rgba(255,255,255,.04);
      border-color: rgba(49,242,231,.35);
      box-shadow: inset 0 0 18px rgba(49,242,231,.08);
    }

    .btn-ghost:hover,
    .btn-ghost:focus {
      color: var(--text);
      border-color: rgba(255,79,183,.55);
      transform: translateY(-1px);
      box-shadow: 0 0 24px rgba(49,242,231,.18);
      outline: none;
    }

    .section {
      padding: 84px 0;
      position: relative;
    }

    .section.tight { padding: 64px 0; }

    .section-head {
      max-width: 780px;
      margin-bottom: 34px;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--cyan);
      font-size: 13px;
      font-weight: 800;
      margin-bottom: 10px;
    }

    .section-kicker::before {
      content: "";
      width: 28px;
      height: 2px;
      background: linear-gradient(90deg, var(--pink), var(--cyan));
      border-radius: 999px;
    }

    h1, h2, h3, h4, p { margin-top: 0; }

    h1 {
      font-size: 48px;
      line-height: 1.14;
      letter-spacing: 0;
      margin-bottom: 20px;
    }

    h2 {
      font-size: 32px;
      line-height: 1.22;
      letter-spacing: 0;
      margin-bottom: 14px;
    }

    h3 {
      font-size: 19px;
      line-height: 1.35;
      letter-spacing: 0;
      margin-bottom: 10px;
    }

    p {
      color: var(--muted);
      font-size: 16px;
      margin-bottom: 0;
    }

    .hero {
      padding: 72px 0 52px;
      min-height: calc(100vh - 74px);
      display: flex;
      align-items: center;
    }

    .hero-band {
      width: 100%;
      border-top: 1px solid rgba(255,255,255,.12);
      border-bottom: 1px solid rgba(255,255,255,.12);
      background:
        linear-gradient(110deg, rgba(255,79,183,.16), transparent 36%),
        linear-gradient(250deg, rgba(49,242,231,.13), transparent 34%),
        rgba(17,16,26,.7);
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .hero-band::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.06), transparent);
      transform: translateX(-45%);
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      padding: 52px 0;
    }

    .hero-copy {
      padding-right: 24px;
    }

    .hero-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 10px;
      margin-bottom: 18px;
      color: var(--amber);
      background: rgba(255,194,87,.08);
      border: 1px solid rgba(255,194,87,.28);
      border-radius: 999px;
      font-size: 13px;
      font-weight: 800;
    }

    .hero-intro {
      max-width: 720px;
      font-size: 17px;
      color: #d8cee6;
      margin-bottom: 24px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 24px;
    }

    .hero-points {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .hero-points li {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 12px;
      color: var(--muted);
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 8px;
      font-size: 14px;
    }

    .dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--cyan);
      box-shadow: 0 0 16px rgba(49,242,231,.8);
      flex: 0 0 auto;
    }

    .faux-rank {
      border: 1px solid rgba(255,255,255,.14);
      background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
      border-radius: 8px;
      padding: 18px;
      box-shadow: var(--shadow);
    }

    .rank-head {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      align-items: flex-start;
      padding-bottom: 14px;
      border-bottom: 1px solid rgba(255,255,255,.1);
      margin-bottom: 14px;
    }

    .rank-title {
      font-weight: 900;
      color: var(--text);
    }

    .rank-status {
      color: var(--green);
      font-size: 13px;
      font-weight: 800;
    }

    .rank-list {
      display: grid;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .rank-item {
      display: grid;
      grid-template-columns: 34px 1fr auto;
      gap: 12px;
      align-items: center;
      padding: 12px;
      min-height: 66px;
      border: 1px solid rgba(255,255,255,.1);
      background: rgba(9,7,15,.42);
      border-radius: 8px;
    }

    .rank-no {
      width: 28px;
      height: 28px;
      display: grid;
      place-items: center;
      color: #08060d;
      background: linear-gradient(135deg, var(--amber), var(--pink));
      border-radius: 6px;
      font-weight: 900;
      font-size: 13px;
    }

    .rank-name {
      color: var(--text);
      font-weight: 800;
      line-height: 1.35;
    }

    .rank-note {
      display: block;
      color: var(--weak);
      font-size: 13px;
      margin-top: 2px;
    }

    .rank-tag {
      color: var(--cyan);
      font-size: 13px;
      font-weight: 800;
      white-space: nowrap;
    }

    .panel-card {
      position: relative;
      background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 8px;
      padding: 22px;
      min-height: 100%;
      overflow: hidden;
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }

    .panel-card::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, var(--pink), var(--cyan), var(--amber));
      opacity: .9;
    }

    .panel-card:hover {
      transform: translateY(-3px);
      border-color: rgba(49,242,231,.36);
      box-shadow: 0 18px 46px rgba(0,0,0,.28), var(--glow-cyan);
    }

    .case-grid {
      align-items: stretch;
    }

    .case-card .case-top {
      display: flex;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 12px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      min-height: 26px;
      padding: 2px 9px;
      border-radius: 999px;
      color: var(--cyan);
      background: rgba(49,242,231,.08);
      border: 1px solid rgba(49,242,231,.25);
      font-size: 12px;
      font-weight: 800;
      white-space: nowrap;
    }

    .badge.pink {
      color: #ffd7ef;
      background: rgba(255,79,183,.1);
      border-color: rgba(255,79,183,.3);
    }

    .quote {
      color: #efe8f9;
      font-size: 15px;
      margin: 14px 0 16px;
    }

    .meta-line {
      color: var(--weak);
      font-size: 13px;
      border-top: 1px solid rgba(255,255,255,.1);
      padding-top: 12px;
    }

    .data-board {
      display: grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 18px;
      align-items: stretch;
    }

    .kpi-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: 14px;
    }

    .kpi {
      padding: 20px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 8px;
      background: rgba(255,255,255,.045);
    }

    .kpi strong {
      display: block;
      font-size: 31px;
      line-height: 1;
      margin-bottom: 8px;
      background: linear-gradient(135deg, var(--text), var(--cyan));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .kpi span {
      color: var(--muted);
      font-size: 14px;
    }

    .chart-card {
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.04);
      border-radius: 8px;
      padding: 22px;
    }

    .chart-bars {
      display: grid;
      gap: 14px;
      margin-top: 18px;
    }

    .bar-row {
      display: grid;
      grid-template-columns: 92px 1fr 46px;
      gap: 12px;
      align-items: center;
      color: var(--muted);
      font-size: 14px;
    }

    .bar-track {
      height: 10px;
      background: rgba(255,255,255,.08);
      border-radius: 999px;
      overflow: hidden;
    }

    .bar-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--pink), var(--cyan));
      border-radius: 999px;
      box-shadow: 0 0 18px rgba(49,242,231,.25);
    }

    .compare-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }

    .compare-card {
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.04);
      border-radius: 8px;
      padding: 22px;
    }

    .compare-card.highlight {
      border-color: rgba(255,79,183,.38);
      background: linear-gradient(180deg, rgba(255,79,183,.1), rgba(255,255,255,.035));
      box-shadow: var(--glow-pink);
    }

    .compare-list {
      display: grid;
      gap: 12px;
      margin: 18px 0 0;
      padding: 0;
      list-style: none;
    }

    .compare-list li {
      display: flex;
      gap: 10px;
      color: var(--muted);
      font-size: 15px;
    }

    .compare-list li::before {
      content: "";
      width: 9px;
      height: 9px;
      margin-top: 8px;
      border-radius: 999px;
      background: var(--weak);
      flex: 0 0 auto;
    }

    .highlight .compare-list li::before {
      background: var(--cyan);
      box-shadow: 0 0 14px rgba(49,242,231,.8);
    }

    .category-strip {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 20px;
      align-items: stretch;
      border-top: 1px solid rgba(255,255,255,.1);
      border-bottom: 1px solid rgba(255,255,255,.1);
      padding: 22px 0;
    }

    .category-entry {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 20px;
      border: 1px solid rgba(49,242,231,.28);
      border-radius: 8px;
      background: linear-gradient(135deg, rgba(49,242,231,.1), rgba(255,79,183,.08));
    }

    .entry-title {
      font-size: 20px;
      font-weight: 900;
      color: var(--text);
      margin-bottom: 4px;
    }

    .entry-desc {
      color: var(--muted);
      font-size: 14px;
    }

    .news-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
      gap: 22px;
      align-items: start;
    }

    .news-list {
      display: grid;
      gap: 12px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .news-item a {
      display: grid;
      grid-template-columns: 84px 1fr auto;
      gap: 16px;
      align-items: center;
      padding: 16px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 8px;
      background: rgba(255,255,255,.035);
    }

    .news-item a:hover,
    .news-item a:focus {
      border-color: rgba(49,242,231,.34);
      background: rgba(255,255,255,.055);
      transform: translateY(-2px);
      outline: none;
    }

    .news-date {
      color: var(--amber);
      font-weight: 900;
      font-size: 13px;
    }

    .news-title {
      color: var(--text);
      font-weight: 850;
      margin-bottom: 4px;
    }

    .news-summary {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.55;
    }

    .news-arrow {
      color: var(--cyan);
      font-weight: 900;
    }

    .side-panel {
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 8px;
      padding: 20px;
      background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
    }

    .mini-list {
      display: grid;
      gap: 12px;
      margin: 16px 0 0;
      padding: 0;
      list-style: none;
    }

    .mini-list li {
      padding-left: 16px;
      position: relative;
      color: var(--muted);
      font-size: 14px;
    }

    .mini-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 10px;
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: var(--pink);
      box-shadow: 0 0 14px rgba(255,79,183,.75);
    }

    .accordion {
      background: transparent;
    }

    .accordion-item {
      margin-bottom: 12px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 8px;
      overflow: hidden;
      background: rgba(255,255,255,.035);
    }

    .accordion-title {
      border: 0;
      color: var(--text);
      background: rgba(255,255,255,.035);
      font-weight: 850;
      font-size: 16px;
      padding: 17px 48px 17px 18px;
    }

    .accordion-title:hover,
    .accordion-title:focus {
      background: rgba(49,242,231,.07);
      color: var(--text);
      outline: none;
    }

    .accordion-title::before {
      color: var(--cyan);
      right: 18px;
      margin-top: -12px;
      font-size: 22px;
    }

    .accordion-content {
      border: 0;
      background: rgba(9,7,15,.52);
      color: var(--muted);
      padding: 18px;
      font-size: 15px;
      line-height: 1.75;
    }

    .contact-section {
      padding-bottom: 94px;
    }

    .cta-band {
      border-top: 1px solid rgba(255,255,255,.14);
      border-bottom: 1px solid rgba(255,255,255,.14);
      background:
        linear-gradient(120deg, rgba(255,79,183,.16), transparent 45%),
        linear-gradient(260deg, rgba(49,242,231,.14), transparent 42%),
        rgba(17,16,26,.78);
      padding: 34px 0;
    }

    .form-panel {
      border: 1px solid rgba(255,255,255,.13);
      border-radius: 8px;
      padding: 22px;
      background: rgba(9,7,15,.5);
    }

    label {
      color: var(--text);
      font-weight: 800;
      font-size: 14px;
      margin-bottom: 6px;
    }

    input[type="text"],
    input[type="tel"],
    select,
    textarea {
      min-height: 46px;
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.06);
      color: var(--text);
      box-shadow: none;
      margin-bottom: 14px;
    }

    textarea {
      min-height: 110px;
      resize: vertical;
    }

    input::placeholder,
    textarea::placeholder {
      color: #7f738d;
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: rgba(49,242,231,.68);
      background: rgba(255,255,255,.08);
      box-shadow: 0 0 0 3px rgba(49,242,231,.12);
      outline: none;
    }

    select option {
      background: #151421;
      color: var(--text);
    }

    .form-note {
      color: var(--weak);
      font-size: 13px;
      margin-top: 10px;
    }

    .site-footer {
      background: #07050b;
      border-top: 1px solid rgba(255,255,255,.12);
      padding: 44px 0 26px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr .8fr;
      gap: 28px;
      align-items: start;
    }

    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 900;
      color: var(--text);
      margin-bottom: 12px;
    }

    .footer-title {
      color: var(--text);
      font-weight: 900;
      margin-bottom: 12px;
    }

    .footer-links {
      display: grid;
      gap: 9px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .footer-links a {
      color: var(--muted);
      font-size: 14px;
    }

    .footer-links a:hover,
    .footer-links a:focus {
      color: var(--cyan);
      outline: none;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      margin-top: 30px;
      padding-top: 18px;
      border-top: 1px solid rgba(255,255,255,.1);
      color: var(--weak);
      font-size: 13px;
    }

    @media (max-width: 1024px) {
      h1 { font-size: 40px; }
      h2 { font-size: 29px; }
      .section { padding: 68px 0; }
      .nav-menu a { padding: 0 10px; }
      .data-board,
      .category-strip,
      .news-layout {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .container {
        width: min(100% - 28px, var(--container));
      }

      .site-header .top-bar-right {
        display: none;
      }

      .menu-toggle {
        display: inline-block;
      }

      .top-bar {
        min-height: 66px;
      }

      .brand-text {
        font-size: 14px;
      }

      .hero {
        min-height: auto;
        padding: 42px 0 34px;
      }

      .hero-inner {
        padding: 38px 0;
      }

      .hero-copy {
        padding-right: 0;
        margin-bottom: 24px;
      }

      h1 {
        font-size: 34px;
      }

      h2 {
        font-size: 26px;
      }

      .section {
        padding: 54px 0;
      }

      .kpi-grid,
      .compare-wrap,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .news-item a {
        grid-template-columns: 1fr;
        gap: 8px;
      }

      .news-arrow {
        display: none;
      }

      .hero-actions .btn,
      .cta-actions .btn {
        width: 100%;
      }

      .rank-item {
        grid-template-columns: 32px 1fr;
      }

      .rank-tag {
        grid-column: 2;
      }
    }

    @media (max-width: 520px) {
      h1 { font-size: 30px; }
      .hero-intro, p { font-size: 15px; }
      .section-head { margin-bottom: 24px; }
      .panel-card, .faux-rank, .form-panel, .side-panel, .compare-card, .chart-card, .kpi {
        padding: 18px;
      }
      .bar-row {
        grid-template-columns: 76px 1fr 38px;
        gap: 8px;
        font-size: 13px;
      }
      .category-entry {
        flex-direction: column;
        align-items: flex-start;
      }
      .footer-bottom {
        display: block;
      }
    }

/* roulang page: category1 */
:root{
      --bg:#07080d;
      --bg-soft:#0d1018;
      --panel:#111625;
      --panel-2:#151c2e;
      --panel-3:#1b2440;
      --line:rgba(255,255,255,.08);
      --line-strong:rgba(255,255,255,.14);
      --text:#f1f5ff;
      --muted:#9aa6c3;
      --muted-2:#7e88a7;
      --accent:#f43f8d;
      --accent-2:#35d6ff;
      --accent-3:#ffd36a;
      --good:#38d39f;
      --warn:#ff9b5e;
      --shadow:0 18px 50px rgba(0,0,0,.4);
      --shadow-soft:0 10px 28px rgba(0,0,0,.25);
      --radius:8px;
      --radius-sm:6px;
      --space:clamp(18px, 2vw, 28px);
      --container:1200px;
    }
    *{box-sizing:border-box}
    html,body{margin:0;padding:0;min-height:100%}
    body{
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Microsoft YaHei",sans-serif;
      color:var(--text);
      background:
        radial-gradient(1200px 500px at 80% 0%, rgba(244,63,141,.14), transparent 60%),
        radial-gradient(900px 420px at 0% 20%, rgba(53,214,255,.12), transparent 58%),
        linear-gradient(180deg,#07080d 0%, #090b12 35%, #07080d 100%);
      background-attachment:fixed;
      line-height:1.7;
      letter-spacing:0;
      overflow-x:hidden;
    }
    body::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
      background-size:36px 36px;
      mask-image:linear-gradient(180deg, rgba(0,0,0,.35), transparent 85%);
      opacity:.4;
      z-index:-1;
    }
    a{color:inherit;text-decoration:none}
    a:hover,a:focus{color:#fff}
    img{max-width:100%;display:block}
    .container{
      width:min(100% - 32px, var(--container));
      margin:0 auto;
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      background:rgba(7,8,13,.82);
      backdrop-filter:blur(18px);
      border-bottom:1px solid var(--line);
      box-shadow:0 1px 0 rgba(255,255,255,.03);
    }
    .title-bar{
      background:transparent;
      color:var(--text);
      padding:14px 0;
    }
    .title-bar-title{
      font-size:15px;
      font-weight:700;
      letter-spacing:0;
      display:flex;
      align-items:center;
      gap:12px;
    }
    .brand-mark{
      width:34px;
      height:34px;
      border-radius:8px;
      display:inline-grid;
      place-items:center;
      background:linear-gradient(135deg, rgba(244,63,141,.95), rgba(53,214,255,.95));
      color:#fff;
      font-weight:800;
      box-shadow:0 10px 24px rgba(244,63,141,.22);
      flex:none;
    }
    .brand-text{
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .top-bar{
      background:transparent;
      padding:0;
    }
    .top-bar, .top-bar ul{
      background:transparent;
    }
    .top-bar-left, .top-bar-right{
      align-items:center;
    }
    .nav-wrap{
      width:100%;
    }
    .nav-menu{
      list-style:none;
      margin:0;
      padding:0;
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
    }
    .nav-menu li{margin:0}
    .nav-menu a{
      position:relative;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:42px;
      padding:10px 14px;
      border-radius:7px;
      color:var(--muted);
      font-size:14px;
      font-weight:600;
      transition:transform .18s ease, color .18s ease, background .18s ease, box-shadow .18s ease, border-color .18s ease;
      border:1px solid transparent;
      white-space:nowrap;
    }
    .nav-menu a:hover,
    .nav-menu a:focus{
      color:#fff;
      background:rgba(255,255,255,.03);
      border-color:rgba(255,255,255,.08);
      transform:translateY(-1px);
    }
    .nav-menu a.active{
      color:#fff;
      background:linear-gradient(135deg, rgba(244,63,141,.18), rgba(53,214,255,.12));
      border-color:rgba(244,63,141,.38);
      box-shadow:0 0 0 1px rgba(53,214,255,.14) inset, 0 0 24px rgba(244,63,141,.08);
    }
    .nav-menu a.active::after{
      content:"";
      position:absolute;
      left:12px;
      right:12px;
      bottom:6px;
      height:2px;
      background:linear-gradient(90deg, var(--accent), var(--accent-2));
      border-radius:99px;
      box-shadow:0 0 18px rgba(244,63,141,.6);
    }
    .nav-cta{
      background:linear-gradient(135deg, var(--accent), #ff5ea2);
      color:#fff !important;
      border-color:transparent !important;
      box-shadow:0 12px 28px rgba(244,63,141,.26);
    }
    .nav-cta:hover,.nav-cta:focus{
      background:linear-gradient(135deg, #ff5ea2, #ff7ab3);
      transform:translateY(-1px);
    }
    .title-bar-right .button{
      margin:0;
    }
    .hero{
      position:relative;
      padding:34px 0 20px;
    }
    .hero-shell{
      position:relative;
      overflow:hidden;
      border:1px solid rgba(255,255,255,.08);
      border-radius:8px;
      background:
        linear-gradient(180deg, rgba(17,22,37,.94), rgba(10,12,20,.94));
      box-shadow:var(--shadow);
    }
    .hero-shell::before,
    .hero-shell::after{
      content:"";
      position:absolute;
      inset:auto;
      pointer-events:none;
    }
    .hero-shell::before{
      inset:0;
      background:
        radial-gradient(700px 260px at 15% 0%, rgba(244,63,141,.22), transparent 65%),
        radial-gradient(520px 260px at 85% 12%, rgba(53,214,255,.16), transparent 55%);
      opacity:.9;
    }
    .hero-shell::after{
      left:0;
      right:0;
      bottom:0;
      height:1px;
      background:linear-gradient(90deg, transparent, rgba(244,63,141,.55), rgba(53,214,255,.55), transparent);
    }
    .hero-grid{
      position:relative;
      display:grid;
      grid-template-columns:1.15fr .95fr;
      gap:28px;
      padding:clamp(24px, 4vw, 40px);
      z-index:1;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:999px;
      border:1px solid rgba(53,214,255,.22);
      color:#d8fbff;
      background:rgba(53,214,255,.06);
      font-size:13px;
      font-weight:600;
      letter-spacing:0;
      margin-bottom:16px;
    }
    .eyebrow i{color:var(--accent-3)}
    h1{
      margin:0 0 14px;
      font-size:clamp(32px, 4.2vw, 54px);
      line-height:1.12;
      letter-spacing:0;
      text-wrap:balance;
    }
    .hero-copy{
      color:#e7ecff;
      font-size:17px;
      max-width:640px;
      margin:0 0 20px;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin:0 0 20px;
    }
    .button{
      border-radius:7px;
      font-weight:700;
      letter-spacing:0;
      transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
      line-height:1.1;
    }
    .button i{margin-right:8px}
    .button.primary,
    .button.button-primary,
    .button.btn-primary{
      background:linear-gradient(135deg, var(--accent), #ff5f9f);
      color:#fff;
      border:1px solid rgba(255,255,255,.05);
      box-shadow:0 14px 34px rgba(244,63,141,.22);
    }
    .button.primary:hover,
    .button.button-primary:hover,
    .button.btn-primary:hover{
      transform:translateY(-1px);
      box-shadow:0 18px 38px rgba(244,63,141,.3);
    }
    .button.secondary{
      background:rgba(255,255,255,.02);
      color:#f4f7ff;
      border:1px solid rgba(53,214,255,.26);
      box-shadow:inset 0 0 0 1px rgba(53,214,255,.06);
    }
    .button.secondary:hover{
      transform:translateY(-1px);
      border-color:rgba(53,214,255,.4);
      background:rgba(53,214,255,.06);
    }
    .hero-meta{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:18px;
    }
    .meta-chip{
      display:inline-flex;
      align-items:center;
      gap:8px;
      min-height:36px;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.03);
      border:1px solid rgba(255,255,255,.08);
      color:#d8def0;
      font-size:13px;
    }
    .hero-panel{
      position:relative;
      border:1px solid rgba(255,255,255,.08);
      border-radius:8px;
      background:linear-gradient(180deg, rgba(20,26,41,.9), rgba(11,14,24,.96));
      padding:18px;
      box-shadow:var(--shadow-soft);
    }
    .hero-panel .panel-title{
      font-size:15px;
      font-weight:700;
      margin-bottom:10px;
      color:#fff;
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:10px;
    }
    .countdown{
      display:grid;
      grid-template-columns:repeat(4, minmax(0,1fr));
      gap:10px;
      margin-bottom:16px;
    }
    .countdown-item{
      text-align:center;
      padding:12px 8px;
      background:rgba(255,255,255,.03);
      border:1px solid rgba(255,255,255,.08);
      border-radius:8px;
    }
    .countdown-item strong{
      display:block;
      font-size:24px;
      line-height:1.1;
      color:#fff;
      margin-bottom:4px;
    }
    .countdown-item span{
      color:var(--muted);
      font-size:12px;
    }
    .task-list{
      display:grid;
      gap:10px;
      margin:0;
      padding:0;
      list-style:none;
    }
    .task-list li{
      display:flex;
      align-items:flex-start;
      gap:12px;
      padding:12px 12px 12px 14px;
      border-radius:8px;
      background:linear-gradient(135deg, rgba(244,63,141,.08), rgba(53,214,255,.05));
      border:1px solid rgba(255,255,255,.08);
    }
    .task-icon{
      width:26px;
      height:26px;
      border-radius:6px;
      display:inline-grid;
      place-items:center;
      background:rgba(255,255,255,.06);
      color:var(--accent-3);
      flex:none;
      margin-top:1px;
    }
    .task-list strong{
      display:block;
      font-size:14px;
      margin-bottom:2px;
      color:#fff;
    }
    .task-list p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.55;
    }
    .section{
      padding:72px 0;
    }
    .section-head{
      display:flex;
      justify-content:space-between;
      align-items:flex-end;
      gap:20px;
      margin-bottom:24px;
    }
    .section-title{
      margin:0;
      font-size:clamp(24px, 2.8vw, 34px);
      line-height:1.2;
      letter-spacing:0;
    }
    .section-subtitle{
      margin:0;
      max-width:720px;
      color:var(--muted);
      font-size:15px;
    }
    .signal-line{
      margin-top:14px;
      width:72px;
      height:3px;
      border-radius:99px;
      background:linear-gradient(90deg, var(--accent), var(--accent-2));
      box-shadow:0 0 18px rgba(244,63,141,.42);
    }
    .chip-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-bottom:18px;
    }
    .chip{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.03);
      border:1px solid rgba(255,255,255,.08);
      color:#dce3f7;
      font-size:13px;
      transition:transform .18s ease, border-color .18s ease, background .18s ease;
    }
    .chip:hover{
      transform:translateY(-1px);
      border-color:rgba(53,214,255,.24);
      background:rgba(53,214,255,.06);
    }
    .panel-grid{
      display:grid;
      grid-template-columns:repeat(12,minmax(0,1fr));
      gap:18px;
    }
    .dark-card{
      background:linear-gradient(180deg, rgba(21,28,46,.96), rgba(14,18,30,.96));
      border:1px solid rgba(255,255,255,.08);
      border-radius:8px;
      box-shadow:var(--shadow-soft);
      position:relative;
      overflow:hidden;
      height:100%;
    }
    .dark-card::before{
      content:"";
      position:absolute;
      left:0;right:0;top:0;
      height:2px;
      background:linear-gradient(90deg, transparent, rgba(244,63,141,.8), rgba(53,214,255,.8), transparent);
      opacity:.8;
    }
    .dark-card:hover{
      border-color:rgba(53,214,255,.18);
      box-shadow:0 18px 36px rgba(0,0,0,.3);
    }
    .problem-card{
      padding:20px;
      min-height:180px;
    }
    .problem-num{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:34px;
      height:34px;
      border-radius:8px;
      background:rgba(244,63,141,.12);
      color:#ffdce9;
      border:1px solid rgba(244,63,141,.25);
      margin-bottom:14px;
      font-weight:800;
    }
    .problem-card h3,
    .feature-card h3,
    .list-card h3,
    .quote-card h3,
    .cta-card h3,
    .faq-title{
      margin:0 0 10px;
      font-size:18px;
      line-height:1.25;
      letter-spacing:0;
    }
    .problem-card p,
    .feature-card p,
    .list-card p,
    .quote-card p,
    .cta-card p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.72;
    }
    .status-badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      margin-top:14px;
      padding:6px 10px;
      border-radius:999px;
      background:rgba(56,211,159,.08);
      color:#c7ffee;
      border:1px solid rgba(56,211,159,.2);
      font-size:12px;
      font-weight:700;
    }
    .feature-strip{
      padding:22px;
    }
    .timeline{
      display:grid;
      gap:14px;
    }
    .timeline-step{
      display:grid;
      grid-template-columns:34px 1fr;
      gap:12px;
      align-items:flex-start;
      padding:14px 0;
      border-bottom:1px solid rgba(255,255,255,.07);
    }
    .timeline-step:last-child{border-bottom:0;padding-bottom:0}
    .timeline-step:first-child{padding-top:0}
    .step-dot{
      width:18px;
      height:18px;
      margin-top:4px;
      border-radius:50%;
      border:4px solid rgba(53,214,255,.15);
      background:linear-gradient(135deg, var(--accent), var(--accent-2));
      box-shadow:0 0 0 6px rgba(244,63,141,.08);
    }
    .timeline-step h4{
      margin:0 0 6px;
      font-size:15px;
      color:#fff;
    }
    .timeline-step p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.65;
    }
    .compare-box{
      padding:22px;
    }
    .compare-list{
      list-style:none;
      margin:0;
      padding:0;
      display:grid;
      gap:12px;
    }
    .compare-list li{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:12px 14px;
      border-radius:8px;
      background:rgba(255,255,255,.03);
      border:1px solid rgba(255,255,255,.07);
    }
    .compare-list i{
      color:var(--accent-3);
      margin-top:2px;
    }
    .compare-list strong{
      display:block;
      color:#fff;
      margin-bottom:4px;
      font-size:14px;
    }
    .compare-list span{
      display:block;
      color:var(--muted);
      font-size:13px;
      line-height:1.6;
    }
    .stats-grid{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:14px;
    }
    .stat-card{
      padding:20px;
      text-align:left;
    }
    .stat-card .num{
      display:block;
      font-size:34px;
      font-weight:800;
      line-height:1;
      margin-bottom:8px;
      background:linear-gradient(135deg, #fff, #dff9ff 35%, #ffd7e6 70%, #fff);
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
    }
    .stat-card .caption{
      color:var(--muted);
      font-size:13px;
      line-height:1.6;
      margin:0;
    }
    .meter{
      height:10px;
      border-radius:999px;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.07);
      overflow:hidden;
      margin-top:14px;
    }
    .meter > span{
      display:block;
      height:100%;
      width:var(--w, 60%);
      background:linear-gradient(90deg, var(--accent), var(--accent-2));
      box-shadow:0 0 20px rgba(53,214,255,.22);
      border-radius:999px;
    }
    .list-grid{
      display:grid;
      grid-template-columns:repeat(12,minmax(0,1fr));
      gap:18px;
    }
    .list-card{
      grid-column:span 4;
      padding:18px;
    }
    .list-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom:12px;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:6px 10px;
      border-radius:999px;
      background:rgba(53,214,255,.08);
      border:1px solid rgba(53,214,255,.18);
      color:#d9fbff;
      font-size:12px;
      white-space:nowrap;
    }
    .meta-note{
      color:var(--muted-2);
      font-size:12px;
      white-space:nowrap;
    }
    .list-actions{
      margin-top:14px;
      display:flex;
      gap:10px;
      flex-wrap:wrap;
    }
    .link-action{
      color:#fff;
      font-size:13px;
      font-weight:700;
      padding:0;
      border:0;
      background:none;
    }
    .link-action:hover{color:#ffe6f0}
    .quote-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:18px;
    }
    .quote-card{
      padding:20px;
    }
    .quote-card blockquote{
      margin:0;
      color:#f4f8ff;
      font-size:15px;
      line-height:1.72;
      border-left:2px solid rgba(244,63,141,.42);
      padding-left:14px;
    }
    .quote-meta{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-top:16px;
      color:var(--muted);
      font-size:12px;
    }
    .quote-role{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:6px 10px;
      border-radius:999px;
      background:rgba(255,255,255,.03);
      border:1px solid rgba(255,255,255,.08);
    }
    .faq-wrap .accordion{
      background:transparent;
      border:0;
    }
    .accordion-item{
      border:1px solid rgba(255,255,255,.08);
      border-radius:8px;
      overflow:hidden;
      background:linear-gradient(180deg, rgba(18,23,37,.96), rgba(12,15,24,.96));
      box-shadow:var(--shadow-soft);
      margin-bottom:12px;
    }
    .accordion-title{
      background:transparent;
      color:#fff;
      font-size:15px;
      font-weight:700;
      border:0;
      padding:18px 18px 18px 46px;
      line-height:1.4;
    }
    .accordion-title:hover,
    .accordion-title:focus{
      background:rgba(255,255,255,.02);
      color:#fff;
    }
    .accordion-title::before{
      left:18px;
      top:50%;
      transform:translateY(-50%);
      color:var(--accent-2);
      border-color:var(--accent-2) transparent transparent;
    }
    .accordion-content{
      background:transparent;
      color:var(--muted);
      border:0;
      padding:0 18px 18px 46px;
      font-size:14px;
      line-height:1.72;
    }
    .contact-band{
      padding:0 0 72px;
    }
    .cta-card{
      padding:28px;
      background:
        radial-gradient(650px 240px at 20% 0%, rgba(244,63,141,.18), transparent 62%),
        radial-gradient(600px 220px at 85% 20%, rgba(53,214,255,.12), transparent 58%),
        linear-gradient(180deg, rgba(18,23,37,.98), rgba(11,14,22,.98));
    }
    .cta-grid{
      display:grid;
      grid-template-columns:1fr .95fr;
      gap:24px;
      align-items:start;
    }
    .cta-list{
      display:grid;
      gap:10px;
      margin:18px 0 0;
      padding:0;
      list-style:none;
    }
    .cta-list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:#dfe7fb;
      font-size:14px;
    }
    .cta-list i{
      color:var(--good);
      margin-top:3px;
      flex:none;
    }
    .form-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:14px;
    }
    .field{
      display:grid;
      gap:8px;
    }
    .field.full{grid-column:1 / -1}
    label{
      font-size:13px;
      color:#dbe4ff;
      font-weight:600;
    }
    input,select,textarea{
      width:100%;
      min-height:46px;
      border-radius:7px;
      background:#0a0f19;
      color:#fff;
      border:1px solid rgba(255,255,255,.1);
      box-shadow:none;
      padding:12px 14px;
      font-size:14px;
      line-height:1.5;
      transition:border-color .18s ease, box-shadow .18s ease, background .18s ease;
    }
    textarea{min-height:120px;resize:vertical}
    input::placeholder,textarea::placeholder{color:#6f7894}
    input:focus,select:focus,textarea:focus{
      outline:none;
      border-color:rgba(53,214,255,.55);
      box-shadow:0 0 0 3px rgba(53,214,255,.12);
      background:#0b1220;
    }
    .form-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:6px;
    }
    .form-hint{
      color:var(--muted-2);
      font-size:12px;
      margin-top:10px;
      line-height:1.6;
    }
    .site-footer{
      border-top:1px solid var(--line);
      background:linear-gradient(180deg, rgba(8,10,16,.92), rgba(6,8,13,.98));
      padding:34px 0 18px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.5fr 1fr 1fr;
      gap:24px;
      padding-bottom:24px;
    }
    .footer-brand{
      display:inline-flex;
      align-items:center;
      gap:12px;
      font-size:16px;
      font-weight:800;
      color:#fff;
      margin-bottom:12px;
    }
    .site-footer p{
      color:var(--muted);
      margin:0;
      font-size:14px;
      line-height:1.72;
    }
    .footer-title{
      color:#fff;
      font-size:14px;
      font-weight:700;
      margin-bottom:10px;
    }
    .footer-links{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:8px;
    }
    .footer-links a{
      color:var(--muted);
      font-size:14px;
    }
    .footer-links a:hover{color:#fff}
    .footer-bottom{
      display:flex;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      padding-top:16px;
      border-top:1px solid rgba(255,255,255,.07);
      color:var(--muted-2);
      font-size:12px;
    }
    .reveal{
      background:linear-gradient(180deg, rgba(16,21,34,.98), rgba(9,12,20,.98));
      border:1px solid rgba(255,255,255,.08);
      border-radius:8px;
      color:#fff;
    }
    .reveal .close-button{
      color:#fff;
      font-size:28px;
      top:12px;
      right:14px;
    }
    .mini-signals{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:12px;
      margin-top:16px;
    }
    .signal-card{
      padding:14px;
      border-radius:8px;
      background:rgba(255,255,255,.03);
      border:1px solid rgba(255,255,255,.08);
    }
    .signal-card strong{
      display:block;
      font-size:14px;
      color:#fff;
      margin-bottom:4px;
    }
    .signal-card span{
      color:var(--muted);
      font-size:12px;
      line-height:1.5;
    }
    .badge-row{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:14px;
    }
    .mini-badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:6px 10px;
      border-radius:999px;
      background:rgba(255,255,255,.04);
      border:1px solid rgba(255,255,255,.08);
      color:#dfe6fb;
      font-size:12px;
    }
    @media screen and (max-width: 1024px){
      .hero-grid,
      .cta-grid,
      .footer-grid{
        grid-template-columns:1fr;
      }
      .stats-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
      }
      .quote-grid{
        grid-template-columns:1fr;
      }
      .list-card{
        grid-column:span 6;
      }
      .section{
        padding:60px 0;
      }
    }
    @media screen and (max-width: 767px){
      .container{width:min(100% - 20px, var(--container))}
      .hero{padding-top:20px}
      .hero-grid,
      .hero-shell,
      .cta-card,
      .problem-card,
      .feature-strip,
      .compare-box,
      .stat-card,
      .list-card,
      .quote-card{
        padding-left:16px;
        padding-right:16px;
      }
      .hero-grid{
        gap:18px;
      }
      .nav-menu{
        gap:8px;
      }
      .nav-menu a{
        padding:9px 12px;
        min-height:40px;
        font-size:13px;
      }
      .countdown{
        grid-template-columns:repeat(2,minmax(0,1fr));
      }
      .stats-grid,
      .mini-signals,
      .form-grid{
        grid-template-columns:1fr;
      }
      .list-card{
        grid-column:span 12;
      }
      .section-head{
        flex-direction:column;
        align-items:flex-start;
      }
      .hero-copy{
        font-size:15px;
      }
      .section-subtitle{
        font-size:14px;
      }
      .accordion-title{
        padding-left:42px;
        padding-right:14px;
      }
      .accordion-content{
        padding-left:42px;
        padding-right:14px;
      }
      .footer-bottom{
        flex-direction:column;
      }
    }
