/* roulang page: index */
:root {
      --bg: #090a0d;
      --bg-soft: #111318;
      --panel: #171a20;
      --panel-2: #1d2028;
      --text: #f5f7fb;
      --muted: #a8afbd;
      --weak: #727b8c;
      --line: rgba(255,255,255,.11);
      --line-strong: rgba(42, 255, 190, .35);
      --cyan: #2affbe;
      --purple: #a45cff;
      --coral: #ff6d54;
      --pink: #ff4fb3;
      --yellow: #ffe66b;
      --radius: 20px;
      --radius-sm: 14px;
      --shadow: 0 18px 48px rgba(0,0,0,.34);
      --shadow-soft: 0 10px 26px rgba(0,0,0,.24);
      --container: 1180px;
      --font: "PingFang SC", "HarmonyOS Sans", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      min-width: 320px;
      font-family: var(--font);
      color: var(--text);
      background:
        radial-gradient(circle at 50% -10%, rgba(42,255,190,.16), transparent 34%),
        linear-gradient(180deg, #08090c 0%, #0c0e12 46%, #090a0d 100%);
      line-height: 1.7;
      letter-spacing: 0;
    }
    a { color: inherit; text-decoration: none; transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease; }
    img { max-width: 100%; display: block; }
    button, input, textarea { font: inherit; }
    button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible {
      outline: 3px solid rgba(42,255,190,.45);
      outline-offset: 3px;
    }

    .site-container {
      width: min(100% - 32px, var(--container));
      margin-inline: auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(9,10,13,.88);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--line);
    }
    .navbar {
      padding: 18px 0;
    }
    .brand-lockup {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      color: var(--text);
      white-space: nowrap;
    }
    .brand-mark {
      width: 34px;
      height: 34px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--cyan), var(--purple));
      color: #06070a;
      font-weight: 900;
      box-shadow: 0 0 28px rgba(42,255,190,.28);
    }
    .brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1.15;
    }
    .brand-text strong { font-size: 1rem; }
    .brand-text span { font-size: .72rem; color: var(--muted); font-weight: 500; margin-top: 3px; }

    .navbar-toggler {
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 8px 10px;
      color: var(--text);
    }
    .navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(42,255,190,.18); }
    .navbar-toggler-icon {
      width: 1.3em;
      height: 1.3em;
      filter: invert(1);
    }
    .nav-menu {
      gap: 28px;
      align-items: center;
    }
    .nav-link {
      position: relative;
      color: var(--muted);
      padding: 8px 0 !important;
      font-size: .96rem;
      font-weight: 600;
    }
    .nav-link:hover,
    .nav-link.active {
      color: var(--text);
    }
    .nav-link.active::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 2px;
      border-radius: 999px;
      background: var(--cyan);
      box-shadow: 0 0 16px rgba(42,255,190,.55);
    }
    .header-action {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 14px;
      border: 1px solid var(--line);
      border-radius: 999px;
      color: var(--muted);
      font-size: .9rem;
      background: rgba(255,255,255,.03);
    }
    .header-action:hover {
      color: var(--text);
      border-color: var(--line-strong);
      background: rgba(42,255,190,.08);
    }

    main { overflow: hidden; }
    section {
      padding: 86px 0;
      position: relative;
    }
    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(42,255,190,.09);
      border: 1px solid rgba(42,255,190,.24);
      color: var(--cyan);
      font-size: .86rem;
      font-weight: 700;
      margin-bottom: 18px;
    }
    .section-title {
      font-size: clamp(1.75rem, 3vw, 3rem);
      line-height: 1.15;
      font-weight: 800;
      margin: 0 0 18px;
    }
    .section-desc {
      color: var(--muted);
      max-width: 760px;
      margin: 0;
      font-size: 1.04rem;
    }

    .btn-neon,
    .btn-ghost,
    .btn-coral {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 12px 18px;
      border-radius: 999px;
      font-weight: 800;
      border: 1px solid transparent;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
      white-space: nowrap;
    }
    .btn-neon {
      color: #050609;
      background: var(--cyan);
      box-shadow: 0 14px 36px rgba(42,255,190,.25);
    }
    .btn-neon:hover {
      transform: translateY(-2px);
      color: #050609;
      box-shadow: 0 18px 42px rgba(42,255,190,.36);
    }
    .btn-coral {
      color: #fff;
      background: linear-gradient(135deg, var(--coral), var(--pink));
      box-shadow: 0 14px 34px rgba(255,109,84,.22);
    }
    .btn-coral:hover {
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 18px 40px rgba(255,79,179,.28);
    }
    .btn-ghost {
      color: var(--text);
      background: rgba(255,255,255,.04);
      border-color: var(--line);
    }
    .btn-ghost:hover {
      color: var(--cyan);
      border-color: var(--line-strong);
      background: rgba(42,255,190,.07);
      transform: translateY(-2px);
    }

    .hero {
      padding: 66px 0 84px;
      border-bottom: 1px solid var(--line);
    }
    .hero-top {
      text-align: center;
      max-width: 900px;
      margin: 0 auto 34px;
    }
    .hero h1 {
      font-size: clamp(2.35rem, 6vw, 5.2rem);
      line-height: 1.02;
      font-weight: 900;
      margin: 0 0 22px;
    }
    .hero-intro {
      color: var(--muted);
      font-size: clamp(1rem, 1.8vw, 1.2rem);
      max-width: 820px;
      margin: 0 auto;
    }
    .hero-stage {
      display: grid;
      grid-template-columns: 1fr minmax(360px, 520px) 1fr;
      align-items: center;
      gap: 24px;
      margin-top: 42px;
    }
    .value-stack {
      display: grid;
      gap: 16px;
    }
    .value-pill {
      border: 1px solid var(--line);
      background: rgba(255,255,255,.035);
      border-radius: var(--radius);
      padding: 18px;
      box-shadow: var(--shadow-soft);
    }
    .value-pill strong {
      display: block;
      font-size: 1.05rem;
      margin-bottom: 6px;
    }
    .value-pill span {
      color: var(--muted);
      font-size: .93rem;
    }
    .product-stage {
      min-height: 420px;
      border-radius: 28px;
      padding: 18px;
      background:
        linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03)),
        var(--panel);
      border: 1px solid rgba(255,255,255,.14);
      box-shadow: var(--shadow), inset 0 0 0 1px rgba(42,255,190,.06);
      position: relative;
      overflow: hidden;
    }
    .stage-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 12px 18px;
      color: var(--muted);
      font-size: .88rem;
    }
    .stage-dots { display: flex; gap: 7px; }
    .stage-dots i {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--weak);
      display: block;
    }
    .stage-dots i:nth-child(1) { background: var(--coral); }
    .stage-dots i:nth-child(2) { background: var(--yellow); }
    .stage-dots i:nth-child(3) { background: var(--cyan); }
    .stage-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .stage-card {
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 16px;
      background: rgba(0,0,0,.22);
      min-height: 130px;
    }
    .stage-card.wide { grid-column: 1 / -1; }
    .stage-tag {
      display: inline-flex;
      padding: 5px 9px;
      border-radius: 999px;
      background: rgba(164,92,255,.16);
      color: #d7c2ff;
      font-size: .76rem;
      font-weight: 800;
      margin-bottom: 12px;
    }
    .stage-card h2,
    .stage-card h3 {
      font-size: 1rem;
      margin: 0 0 8px;
      font-weight: 800;
    }
    .stage-card p {
      margin: 0;
      color: var(--muted);
      font-size: .88rem;
    }
    .progress-line {
      height: 8px;
      background: rgba(255,255,255,.08);
      border-radius: 999px;
      overflow: hidden;
      margin-top: 12px;
    }
    .progress-line span {
      display: block;
      height: 100%;
      width: 78%;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--cyan), var(--purple));
    }
    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 20px;
    }
    .hero-stat {
      display: grid;
      gap: 10px;
      margin-top: 22px;
    }
    .stat-mini {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      padding: 13px 0;
      border-bottom: 1px solid var(--line);
      color: var(--muted);
    }
    .stat-mini b {
      color: var(--text);
      font-size: 1.18rem;
    }

    .coupon-grid {
      background: var(--bg-soft);
    }
    .coupon-layout {
      display: grid;
      grid-template-columns: .9fr 1.4fr;
      gap: 26px;
      align-items: start;
    }
    .coupon-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }
    .coupon-card,
    .info-card,
    .step-card,
    .review-card,
    .faq-item,
    .lead-panel {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255,255,255,.04);
      box-shadow: var(--shadow-soft);
      transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
    }
    .coupon-card {
      padding: 18px;
      min-height: 176px;
      overflow: hidden;
      position: relative;
    }
    .coupon-card:hover,
    .info-card:hover,
    .step-card:hover,
    .review-card:hover {
      transform: translateY(-3px);
      border-color: var(--line-strong);
      box-shadow: 0 18px 44px rgba(0,0,0,.34);
      background: rgba(42,255,190,.055);
    }
    .coupon-card::before {
      content: "";
      position: absolute;
      inset: 0 auto 0 0;
      width: 4px;
      background: var(--cyan);
    }
    .coupon-card.alt::before { background: var(--coral); }
    .coupon-card.purple::before { background: var(--purple); }
    .coupon-card h3 {
      font-size: 1.15rem;
      margin: 0 0 10px;
      font-weight: 850;
    }
    .coupon-card p {
      color: var(--muted);
      margin: 0 0 15px;
      font-size: .95rem;
    }
    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .tag {
      display: inline-flex;
      align-items: center;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(255,255,255,.06);
      border: 1px solid var(--line);
      color: var(--muted);
      font-size: .8rem;
      font-weight: 700;
    }
    .tag.hot {
      color: #050609;
      background: var(--cyan);
      border-color: var(--cyan);
    }

    .rules {
      background: linear-gradient(180deg, #090a0d 0%, #101217 100%);
    }
    .rules-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
      margin-top: 30px;
    }
    .rule-line {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding: 20px;
      border-bottom: 1px solid var(--line);
      background: rgba(255,255,255,.025);
      border-radius: 16px;
    }
    .rule-num {
      flex: 0 0 38px;
      height: 38px;
      border-radius: 13px;
      display: grid;
      place-items: center;
      background: rgba(255,109,84,.16);
      color: var(--coral);
      font-weight: 900;
    }
    .rule-line h3 {
      margin: 0 0 6px;
      font-size: 1.08rem;
      font-weight: 800;
    }
    .rule-line p {
      margin: 0;
      color: var(--muted);
      font-size: .95rem;
    }

    .news {
      background: var(--bg-soft);
    }
    .news-layout {
      display: grid;
      grid-template-columns: 1.35fr .75fr;
      gap: 24px;
      margin-top: 30px;
    }
    .news-list {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
      background: rgba(255,255,255,.035);
    }
    .news-link {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 14px;
      align-items: center;
      padding: 18px 20px;
      border-bottom: 1px solid var(--line);
    }
    .news-link:last-child { border-bottom: 0; }
    .news-link:hover {
      background: rgba(42,255,190,.065);
      color: var(--text);
    }
    .news-index {
      width: 32px;
      height: 32px;
      display: grid;
      place-items: center;
      border-radius: 12px;
      background: rgba(164,92,255,.15);
      color: #d9c4ff;
      font-weight: 900;
      font-size: .86rem;
    }
    .news-link strong {
      display: block;
      font-size: 1rem;
      margin-bottom: 4px;
    }
    .news-link span {
      color: var(--muted);
      font-size: .9rem;
    }
    .news-arrow {
      color: var(--cyan);
      font-weight: 900;
    }
    .recommend-panel {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 22px;
      background: linear-gradient(180deg, rgba(42,255,190,.09), rgba(255,255,255,.035));
      box-shadow: var(--shadow-soft);
    }
    .recommend-panel h3 { margin: 0 0 12px; font-weight: 850; }
    .recommend-panel p { color: var(--muted); margin: 0 0 18px; }
    .mini-check {
      display: grid;
      gap: 10px;
      color: var(--muted);
      padding: 0;
      margin: 0;
      list-style: none;
    }
    .mini-check li {
      display: flex;
      gap: 10px;
      align-items: center;
    }
    .mini-check i {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 14px rgba(42,255,190,.5);
    }

    .intro-band {
      background: #0b0c10;
    }
    .intro-box {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      align-items: center;
      padding: 30px;
      border: 1px solid var(--line);
      border-radius: 28px;
      background:
        linear-gradient(135deg, rgba(164,92,255,.14), transparent 45%),
        rgba(255,255,255,.035);
    }
    .intro-copy p {
      color: var(--muted);
      margin: 0;
    }
    .metric-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: 12px;
    }
    .metric-card {
      padding: 18px;
      border-radius: 18px;
      background: rgba(0,0,0,.24);
      border: 1px solid var(--line);
    }
    .metric-card b {
      display: block;
      color: var(--cyan);
      font-size: 2rem;
      line-height: 1;
      margin-bottom: 8px;
    }
    .metric-card span { color: var(--muted); font-size: .92rem; }

    .guide-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap: 16px;
      margin-top: 30px;
    }
    .step-card {
      padding: 20px;
    }
    .step-card .step-num {
      width: 42px;
      height: 42px;
      border-radius: 15px;
      display: grid;
      place-items: center;
      background: rgba(42,255,190,.12);
      color: var(--cyan);
      font-weight: 900;
      margin-bottom: 18px;
    }
    .step-card h3 { font-size: 1.05rem; margin: 0 0 10px; font-weight: 850; }
    .step-card p { color: var(--muted); margin: 0; font-size: .94rem; }

    .category-strip {
      background: var(--bg-soft);
    }
    .category-card {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 20px;
      align-items: center;
      padding: 28px;
      border-radius: 28px;
      border: 1px solid rgba(42,255,190,.24);
      background:
        linear-gradient(135deg, rgba(42,255,190,.12), rgba(255,79,179,.08)),
        rgba(255,255,255,.035);
      box-shadow: var(--shadow-soft);
    }
    .category-card p { color: var(--muted); margin: 0; max-width: 680px; }

    .reviews {
      background: #0b0c10;
    }
    .review-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      margin-top: 30px;
    }
    .review-card {
      padding: 22px;
    }
    .avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--cyan), var(--purple));
      margin-bottom: 16px;
    }
    .review-card p {
      color: var(--muted);
      margin: 0 0 16px;
      font-size: .96rem;
    }
    .review-card strong { display: block; }
    .review-card span { color: var(--weak); font-size: .86rem; }

    .lead {
      background: var(--bg-soft);
    }
    .lead-panel {
      padding: 30px;
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      gap: 28px;
      align-items: start;
    }
    .lead-panel p { color: var(--muted); margin: 0; }
    .lead-form {
      display: grid;
      grid-template-columns: 1fr 1fr auto;
      gap: 12px;
    }
    .form-control {
      min-height: 48px;
      border-radius: 14px;
      border: 1px solid var(--line);
      background: rgba(0,0,0,.24);
      color: var(--text);
      padding: 12px 14px;
    }
    .form-control::placeholder { color: var(--weak); }
    .form-control:focus {
      background: rgba(0,0,0,.32);
      border-color: var(--cyan);
      color: var(--text);
      box-shadow: 0 0 0 4px rgba(42,255,190,.12);
    }
    .privacy-note {
      grid-column: 1 / -1;
      color: var(--weak);
      font-size: .86rem;
      margin-top: 2px;
    }

    .faq-wrap {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: 26px;
      align-items: start;
    }
    .accordion {
      display: grid;
      gap: 12px;
    }
    .faq-item {
      overflow: hidden;
      background: rgba(255,255,255,.035);
    }
    .accordion-button {
      background: transparent;
      color: var(--text);
      font-weight: 800;
      padding: 18px 20px;
      box-shadow: none;
    }
    .accordion-button:not(.collapsed) {
      background: rgba(42,255,190,.08);
      color: var(--cyan);
      box-shadow: none;
    }
    .accordion-button::after { filter: invert(1); }
    .accordion-body {
      color: var(--muted);
      padding: 0 20px 20px;
    }

    .final-cta {
      padding: 86px 0 98px;
      background:
        linear-gradient(135deg, rgba(255,109,84,.18), rgba(42,255,190,.10)),
        #0b0c10;
    }
    .cta-bar {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px;
      align-items: center;
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 30px;
      padding: 34px;
      background: rgba(255,255,255,.045);
      box-shadow: var(--shadow);
    }
    .cta-bar h2 {
      margin: 0 0 10px;
      font-weight: 900;
      font-size: clamp(1.7rem, 3vw, 3rem);
    }
    .cta-bar p { margin: 0; color: var(--muted); max-width: 760px; }
    .cta-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .site-footer {
      border-top: 1px solid var(--line);
      background: #07080a;
      padding: 42px 0 26px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr .8fr;
      gap: 24px;
      align-items: start;
    }
    .footer-grid p {
      color: var(--muted);
      margin: 14px 0 0;
      max-width: 520px;
    }
    .footer-title {
      font-weight: 850;
      margin-bottom: 12px;
    }
    .footer-links {
      display: grid;
      gap: 9px;
    }
    .footer-links a {
      color: var(--muted);
    }
    .footer-links a:hover {
      color: var(--cyan);
    }
    .copyright {
      margin-top: 28px;
      padding-top: 20px;
      border-top: 1px solid var(--line);
      color: var(--weak);
      font-size: .9rem;
      display: flex;
      justify-content: space-between;
      gap: 14px;
      flex-wrap: wrap;
    }

    .mobile-quick {
      display: none;
      position: fixed;
      left: 12px;
      right: 12px;
      bottom: 12px;
      z-index: 60;
      padding: 10px;
      border: 1px solid var(--line);
      border-radius: 18px;
      background: rgba(9,10,13,.88);
      backdrop-filter: blur(14px);
      box-shadow: var(--shadow);
      gap: 10px;
    }
    .mobile-quick a {
      flex: 1;
      min-height: 42px;
      border-radius: 13px;
      font-size: .9rem;
    }

    @media (max-width: 1024px) {
      section { padding: 72px 0; }
      .hero-stage {
        grid-template-columns: 1fr;
      }
      .value-stack {
        grid-template-columns: repeat(2, minmax(0,1fr));
      }
      .product-stage { order: -1; }
      .coupon-layout,
      .news-layout,
      .intro-box,
      .lead-panel,
      .faq-wrap {
        grid-template-columns: 1fr;
      }
      .guide-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
      }
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .navbar-collapse {
        margin-top: 16px;
        padding: 18px;
        border: 1px solid var(--line);
        border-radius: 20px;
        background: rgba(17,19,24,.96);
      }
      .nav-menu { gap: 10px; align-items: flex-start; }
      .header-action { margin-top: 10px; }
      .hero { padding-top: 44px; }
      .hero h1 { font-size: clamp(2.05rem, 12vw, 3.45rem); }
      .hero-top { text-align: left; }
      .hero-intro { margin-left: 0; }
      .product-stage { min-height: auto; }
      .stage-grid,
      .coupon-list,
      .rules-wrap,
      .review-grid,
      .metric-grid,
      .lead-form,
      .category-card,
      .cta-bar {
        grid-template-columns: 1fr;
      }
      .news-link {
        grid-template-columns: auto 1fr;
      }
      .news-arrow { display: none; }
      .footer-grid {
        grid-template-columns: 1fr;
      }
      .cta-actions {
        justify-content: flex-start;
      }
      .mobile-quick {
        display: flex;
      }
      body { padding-bottom: 74px; }
    }

    @media (max-width: 520px) {
      .site-container { width: min(100% - 22px, var(--container)); }
      section { padding: 58px 0; }
      .brand-text span { display: none; }
      .value-stack,
      .guide-grid {
        grid-template-columns: 1fr;
      }
      .hero-actions,
      .cta-actions {
        flex-direction: column;
      }
      .btn-neon,
      .btn-ghost,
      .btn-coral {
        width: 100%;
      }
      .intro-box,
      .lead-panel,
      .cta-bar {
        padding: 22px;
        border-radius: 22px;
      }
      .coupon-card,
      .step-card,
      .review-card {
        border-radius: 17px;
      }
      .copyright {
        flex-direction: column;
      }
    }

/* roulang page: category1 */
:root{
      --bg:#080a0c;
      --bg-2:#0d1014;
      --panel:#11161b;
      --panel-2:#151b22;
      --panel-soft:#1a2129;
      --text:#f4f7f8;
      --muted:#a6b1bb;
      --subtle:#6d7984;
      --line:rgba(255,255,255,.11);
      --line-strong:rgba(10,242,178,.42);
      --primary:#0af2b2;
      --primary-dark:#08c895;
      --secondary:#ff4f86;
      --orange:#ff8b3d;
      --violet:#9a6cff;
      --radius-sm:12px;
      --radius:18px;
      --radius-lg:26px;
      --shadow:0 18px 60px rgba(0,0,0,.38);
      --shadow-glow:0 18px 58px rgba(10,242,178,.13);
      --container:1180px;
      --header-h:82px;
      --font:"PingFang SC","Hiragino Sans GB","Microsoft YaHei","HarmonyOS Sans",Arial,sans-serif;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      min-height:100vh;
      font-family:var(--font);
      line-height:1.7;
      color:var(--text);
      background:
        radial-gradient(circle at 12% 10%, rgba(10,242,178,.11), transparent 32%),
        radial-gradient(circle at 82% 8%, rgba(255,79,134,.10), transparent 28%),
        linear-gradient(180deg,#07090b 0%,#0b0e12 42%,#080a0c 100%);
      overflow-x:hidden;
    }
    body::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      background:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.018) 1px, transparent 1px);
      background-size:36px 36px;
      mask-image:linear-gradient(to bottom,rgba(0,0,0,.55),transparent 72%);
      z-index:-1;
    }
    a{color:inherit;text-decoration:none;transition:color .22s ease, border-color .22s ease, background .22s ease, transform .22s ease}
    img{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    ::selection{background:rgba(10,242,178,.3);color:#fff}
    .site-container{
      width:min(var(--container), calc(100% - 40px));
      margin-inline:auto;
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      background:rgba(8,10,12,.84);
      backdrop-filter:blur(18px);
      border-bottom:1px solid var(--line);
    }
    .navbar{
      min-height:var(--header-h);
      padding:0;
    }
    .brand-lockup{
      display:inline-flex;
      align-items:center;
      gap:12px;
      min-width:0;
    }
    .brand-mark{
      width:42px;
      height:42px;
      border-radius:15px;
      display:grid;
      place-items:center;
      color:#06110e;
      font-weight:900;
      letter-spacing:-.08em;
      background:linear-gradient(135deg,var(--primary),#b4ffe9 58%,var(--secondary));
      box-shadow:0 0 0 1px rgba(255,255,255,.14), 0 14px 38px rgba(10,242,178,.18);
    }
    .brand-text{
      display:flex;
      flex-direction:column;
      line-height:1.1;
    }
    .brand-text strong{
      font-size:18px;
      letter-spacing:.02em;
      color:var(--text);
      font-weight:800;
    }
    .brand-text span{
      margin-top:5px;
      color:var(--muted);
      font-size:12px;
      letter-spacing:.08em;
    }
    .nav-menu{
      align-items:center;
      gap:8px;
      padding:12px 0;
    }
    .nav-link{
      position:relative;
      padding:10px 14px!important;
      color:#d9e2e7;
      font-size:14px;
      font-weight:600;
      border-radius:999px;
    }
    .nav-link::after{
      content:"";
      position:absolute;
      left:16px;
      right:16px;
      bottom:4px;
      height:2px;
      border-radius:999px;
      background:linear-gradient(90deg,var(--primary),var(--secondary));
      transform:scaleX(0);
      transform-origin:center;
      transition:transform .22s ease;
    }
    .nav-link:hover,.nav-link:focus{
      color:#fff;
      background:rgba(255,255,255,.05);
    }
    .nav-link.active{
      color:#fff;
      background:rgba(10,242,178,.08);
    }
    .nav-link.active::after,.nav-link:hover::after{transform:scaleX(1)}
    .header-action{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:10px 16px;
      border:1px solid rgba(255,255,255,.14);
      border-radius:999px;
      color:#f5f7f8;
      font-size:14px;
      font-weight:700;
      background:rgba(255,255,255,.035);
    }
    .header-action:hover,.header-action:focus{
      border-color:var(--line-strong);
      color:#07110e;
      background:var(--primary);
      transform:translateY(-1px);
    }
    .navbar-toggler{
      border:1px solid var(--line);
      border-radius:12px;
      padding:9px 11px;
      background:rgba(255,255,255,.04);
    }
    .navbar-toggler:focus{box-shadow:0 0 0 3px rgba(10,242,178,.22)}
    .navbar-toggler-icon{
      filter:invert(1) grayscale(1);
      opacity:.9;
    }

    main{overflow:hidden}
    .section{
      padding:78px 0;
      position:relative;
    }
    .section-tight{padding:54px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border:1px solid rgba(10,242,178,.28);
      border-radius:999px;
      color:#c8fff0;
      background:rgba(10,242,178,.08);
      font-size:13px;
      font-weight:700;
      letter-spacing:.04em;
    }
    .dot{
      width:7px;
      height:7px;
      border-radius:50%;
      background:var(--primary);
      box-shadow:0 0 0 5px rgba(10,242,178,.12);
    }
    h1,h2,h3,h4{margin:0;line-height:1.15;letter-spacing:-.035em}
    h1{
      margin-top:20px;
      font-size:clamp(38px,6vw,72px);
      font-weight:900;
      max-width:860px;
    }
    h2{
      font-size:clamp(28px,4vw,48px);
      font-weight:850;
    }
    h3{
      font-size:22px;
      font-weight:800;
    }
    p{margin:0;color:var(--muted)}
    .lead{
      margin-top:22px;
      max-width:760px;
      color:#c8d2d8;
      font-size:18px;
      line-height:1.9;
    }
    .text-gradient{
      background:linear-gradient(90deg,var(--primary),#fff 45%,var(--secondary));
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
    }
    .btn-main,.btn-ghost,.btn-soft{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      min-height:46px;
      padding:12px 20px;
      border-radius:999px;
      border:1px solid transparent;
      font-size:15px;
      font-weight:800;
      transition:transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
    }
    .btn-main{
      color:#06110e;
      background:linear-gradient(135deg,var(--primary),#88ffe0);
      box-shadow:0 16px 40px rgba(10,242,178,.22);
    }
    .btn-main:hover,.btn-main:focus{
      color:#06110e;
      transform:translateY(-2px);
      box-shadow:0 20px 54px rgba(10,242,178,.32);
    }
    .btn-ghost{
      color:#fff;
      border-color:rgba(255,255,255,.15);
      background:rgba(255,255,255,.035);
    }
    .btn-ghost:hover,.btn-ghost:focus{
      border-color:rgba(255,79,134,.58);
      color:#fff;
      background:rgba(255,79,134,.12);
      transform:translateY(-2px);
    }
    .btn-soft{
      color:#e8fff8;
      border-color:rgba(10,242,178,.22);
      background:rgba(10,242,178,.08);
    }
    .btn-soft:hover,.btn-soft:focus{
      color:#06110e;
      background:var(--primary);
      transform:translateY(-2px);
    }
    .hero-category{
      padding:70px 0 54px;
    }
    .breadcrumb-line{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      align-items:center;
      color:var(--subtle);
      font-size:14px;
      margin-bottom:26px;
    }
    .breadcrumb-line a:hover{color:var(--primary)}
    .hero-card{
      border:1px solid var(--line);
      border-radius:var(--radius-lg);
      background:
        linear-gradient(145deg,rgba(255,255,255,.07),rgba(255,255,255,.025)),
        var(--panel);
      box-shadow:var(--shadow);
      padding:28px;
      height:100%;
      position:relative;
      overflow:hidden;
    }
    .hero-card::before{
      content:"";
      position:absolute;
      right:-80px;
      top:-80px;
      width:220px;
      height:220px;
      border-radius:50%;
      background:radial-gradient(circle,rgba(255,79,134,.22),transparent 68%);
    }
    .benefit-badges{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:28px;
    }
    .badge-chip{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:9px 13px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.12);
      color:#eef7f5;
      background:rgba(255,255,255,.055);
      font-size:13px;
      font-weight:700;
      white-space:nowrap;
    }
    .badge-chip.hot{
      color:#0b1210;
      background:linear-gradient(135deg,var(--primary),#b7ffe8);
      border-color:transparent;
    }
    .qualify-box{
      margin-top:24px;
      padding:18px;
      border:1px solid rgba(10,242,178,.18);
      border-radius:20px;
      background:rgba(10,242,178,.055);
    }
    .qualify-box strong{
      display:block;
      margin-bottom:8px;
      color:#fff;
      font-size:16px;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:28px;
    }
    .status-stack{
      display:grid;
      gap:14px;
    }
    .status-card{
      padding:18px;
      border:1px solid var(--line);
      border-radius:22px;
      background:rgba(12,16,20,.72);
      transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease;
    }
    .status-card:hover{
      transform:translateY(-3px);
      border-color:rgba(10,242,178,.36);
      box-shadow:var(--shadow-glow);
    }
    .status-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      margin-bottom:10px;
    }
    .status-label{
      color:#fff;
      font-weight:800;
      font-size:16px;
    }
    .status-pill{
      padding:5px 10px;
      border-radius:999px;
      background:rgba(255,79,134,.14);
      color:#ffd7e3;
      font-size:12px;
      font-weight:800;
    }
    .progress-line{
      height:7px;
      border-radius:999px;
      background:rgba(255,255,255,.08);
      overflow:hidden;
      margin-top:14px;
    }
    .progress-line span{
      display:block;
      height:100%;
      border-radius:999px;
      background:linear-gradient(90deg,var(--primary),var(--secondary));
    }

    .filter-panel{
      margin-top:28px;
      border:1px solid var(--line);
      border-radius:24px;
      background:rgba(17,22,27,.82);
      padding:16px;
      box-shadow:0 18px 48px rgba(0,0,0,.22);
    }
    .filter-row{
      display:flex;
      align-items:center;
      gap:12px;
      overflow:auto;
      scrollbar-width:none;
      padding-bottom:2px;
    }
    .filter-row::-webkit-scrollbar{display:none}
    .filter-chip{
      flex:0 0 auto;
      border:1px solid rgba(255,255,255,.12);
      background:rgba(255,255,255,.045);
      color:#d8e2e6;
      border-radius:999px;
      padding:9px 14px;
      font-size:14px;
      font-weight:700;
      cursor:pointer;
      transition:all .22s ease;
    }
    .filter-chip:hover,.filter-chip:focus,.filter-chip.active{
      color:#06110e;
      border-color:transparent;
      background:var(--primary);
      outline:none;
    }
    .pain-strip{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:22px;
      align-items:stretch;
    }
    .pain-list{
      display:grid;
      gap:14px;
    }
    .pain-item{
      display:grid;
      grid-template-columns:44px 1fr;
      gap:14px;
      padding:18px;
      border-radius:22px;
      border:1px solid var(--line);
      background:linear-gradient(135deg,rgba(255,255,255,.06),rgba(255,255,255,.02));
      transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease;
    }
    .pain-item:hover{
      transform:translateY(-3px);
      border-color:rgba(255,79,134,.34);
      box-shadow:0 16px 42px rgba(255,79,134,.08);
    }
    .icon-box{
      width:44px;
      height:44px;
      border-radius:16px;
      display:grid;
      place-items:center;
      color:#07110e;
      font-weight:900;
      background:var(--primary);
    }
    .icon-box.alt{background:var(--secondary);color:#fff}
    .icon-box.warn{background:var(--orange);color:#130903}
    .pain-item h3{font-size:18px;margin-bottom:6px}
    .pain-feature{
      border-radius:28px;
      border:1px solid rgba(10,242,178,.2);
      background:
        radial-gradient(circle at 80% 20%, rgba(10,242,178,.22), transparent 34%),
        radial-gradient(circle at 20% 90%, rgba(255,79,134,.12), transparent 32%),
        var(--panel);
      padding:26px;
      min-height:100%;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .big-number{
      display:block;
      font-size:clamp(54px,9vw,96px);
      line-height:1;
      font-weight:950;
      letter-spacing:-.08em;
      color:var(--primary);
      text-shadow:0 16px 48px rgba(10,242,178,.22);
    }
    .solution-layout{
      display:grid;
      grid-template-columns:.72fr 1.28fr;
      gap:24px;
      align-items:start;
    }
    .sticky-note{
      position:sticky;
      top:104px;
      padding:26px;
      border:1px solid var(--line);
      border-radius:26px;
      background:linear-gradient(180deg,rgba(255,255,255,.065),rgba(255,255,255,.025));
    }
    .vertical-flow{
      display:grid;
      gap:16px;
    }
    .flow-card{
      display:grid;
      grid-template-columns:76px 1fr auto;
      gap:18px;
      align-items:center;
      padding:20px;
      border-radius:24px;
      border:1px solid var(--line);
      background:rgba(17,22,27,.76);
      transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease;
    }
    .flow-card:hover{
      transform:translateY(-3px);
      border-color:rgba(10,242,178,.34);
      box-shadow:var(--shadow-glow);
    }
    .step-no{
      width:58px;
      height:58px;
      border-radius:20px;
      display:grid;
      place-items:center;
      color:#06110e;
      background:linear-gradient(135deg,var(--primary),#d8fff4);
      font-size:20px;
      font-weight:950;
    }
    .flow-card h3{font-size:20px;margin-bottom:7px}
    .flow-tag{
      padding:7px 11px;
      border-radius:999px;
      color:#ffdbe6;
      background:rgba(255,79,134,.13);
      font-size:12px;
      font-weight:800;
      white-space:nowrap;
    }
    .content-layout{
      display:grid;
      grid-template-columns:1fr 330px;
      gap:24px;
      align-items:start;
    }
    .entry-feed{
      display:grid;
      gap:18px;
    }
    .entry-card{
      display:grid;
      grid-template-columns:170px 1fr;
      gap:20px;
      padding:18px;
      border:1px solid var(--line);
      border-radius:26px;
      background:linear-gradient(135deg,rgba(255,255,255,.06),rgba(255,255,255,.022));
      box-shadow:0 16px 42px rgba(0,0,0,.18);
      transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease;
    }
    .entry-card:hover{
      transform:translateY(-4px);
      border-color:rgba(10,242,178,.38);
      box-shadow:0 24px 70px rgba(10,242,178,.11);
    }
    .thumb{
      min-height:220px;
      border-radius:22px;
      position:relative;
      overflow:hidden;
      background:
        linear-gradient(155deg,rgba(10,242,178,.85),rgba(255,79,134,.72)),
        linear-gradient(180deg,#202832,#0d1116);
    }
    .thumb::before{
      content:"";
      position:absolute;
      inset:14px;
      border:1px solid rgba(255,255,255,.26);
      border-radius:18px;
    }
    .thumb::after{
      content:attr(data-label);
      position:absolute;
      left:16px;
      bottom:16px;
      right:16px;
      color:#fff;
      font-weight:900;
      letter-spacing:.08em;
      font-size:22px;
      line-height:1.2;
      text-shadow:0 8px 22px rgba(0,0,0,.38);
    }
    .entry-body{
      display:flex;
      flex-direction:column;
      min-width:0;
    }
    .entry-meta{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin:12px 0 14px;
    }
    .mini-tag{
      display:inline-flex;
      align-items:center;
      padding:6px 10px;
      border-radius:999px;
      color:#c9fff1;
      border:1px solid rgba(10,242,178,.22);
      background:rgba(10,242,178,.07);
      font-size:12px;
      font-weight:800;
    }
    .mini-tag.pink{
      color:#ffd6e4;
      border-color:rgba(255,79,134,.25);
      background:rgba(255,79,134,.09);
    }
    .meta-line{
      display:flex;
      flex-wrap:wrap;
      gap:14px;
      color:var(--subtle);
      font-size:13px;
      margin-top:auto;
      padding-top:18px;
    }
    .entry-actions{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:18px;
    }
    .side-panel{
      position:sticky;
      top:104px;
      display:grid;
      gap:16px;
    }
    .side-card{
      padding:20px;
      border:1px solid var(--line);
      border-radius:24px;
      background:rgba(17,22,27,.82);
    }
    .side-card h3{
      font-size:18px;
      margin-bottom:14px;
    }
    .quick-list{
      display:grid;
      gap:10px;
      margin:0;
      padding:0;
      list-style:none;
    }
    .quick-list a,.quick-list li{
      display:flex;
      justify-content:space-between;
      gap:12px;
      padding:12px 0;
      border-bottom:1px solid rgba(255,255,255,.07);
      color:#dce6ea;
      font-size:14px;
    }
    .quick-list a:hover{color:var(--primary)}
    .quick-list span{color:var(--subtle)}
    .stats-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
      margin-top:28px;
    }
    .stat-card{
      padding:22px;
      border:1px solid var(--line);
      border-radius:24px;
      background:rgba(17,22,27,.72);
      transition:transform .22s ease,border-color .22s ease;
    }
    .stat-card:hover{
      transform:translateY(-3px);
      border-color:rgba(10,242,178,.34);
    }
    .stat-card strong{
      display:block;
      color:#fff;
      font-size:34px;
      line-height:1;
      font-weight:950;
      margin-bottom:10px;
    }
    .stat-card span{color:var(--muted);font-size:14px}
    .voices{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:18px;
      margin-top:28px;
    }
    .quote-card{
      border:1px solid var(--line);
      border-radius:26px;
      background:linear-gradient(135deg,rgba(255,255,255,.06),rgba(255,255,255,.02));
      padding:24px;
      transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease;
    }
    .quote-card:hover{
      transform:translateY(-3px);
      border-color:rgba(255,79,134,.35);
      box-shadow:0 18px 46px rgba(255,79,134,.08);
    }
    .quote-head{
      display:flex;
      align-items:center;
      gap:12px;
      margin-bottom:14px;
    }
    .avatar{
      width:42px;
      height:42px;
      border-radius:50%;
      display:grid;
      place-items:center;
      color:#07110e;
      font-weight:900;
      background:linear-gradient(135deg,var(--primary),#fff);
    }
    .quote-head strong{display:block;color:#fff}
    .quote-head span{display:block;color:var(--subtle);font-size:12px}
    .load-box{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      margin-top:18px;
      padding:18px 20px;
      border:1px dashed rgba(255,255,255,.16);
      border-radius:22px;
      background:rgba(255,255,255,.025);
    }
    .notice-grid{
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:22px;
      align-items:stretch;
    }
    .notice-card{
      padding:24px;
      border:1px solid var(--line);
      border-radius:26px;
      background:rgba(17,22,27,.74);
    }
    .notice-list{
      display:grid;
      gap:12px;
      margin:18px 0 0;
      padding:0;
      list-style:none;
    }
    .notice-list li{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:14px;
      border-radius:18px;
      background:rgba(255,255,255,.04);
      color:#d8e2e6;
    }
    .notice-list li::before{
      content:"";
      width:8px;
      height:8px;
      margin-top:9px;
      border-radius:50%;
      background:var(--primary);
      box-shadow:0 0 0 5px rgba(10,242,178,.1);
      flex:0 0 auto;
    }
    .faq-wrap{
      margin-top:28px;
      border:1px solid var(--line);
      border-radius:28px;
      overflow:hidden;
      background:rgba(17,22,27,.72);
    }
    .accordion-item{
      color:var(--text);
      background:transparent;
      border-color:rgba(255,255,255,.08);
    }
    .accordion-button{
      color:#fff;
      background:rgba(255,255,255,.025);
      font-weight:800;
      padding:20px 22px;
      box-shadow:none!important;
    }
    .accordion-button:not(.collapsed){
      color:#06110e;
      background:linear-gradient(135deg,var(--primary),#b8ffe9);
    }
    .accordion-button:focus{
      border-color:var(--line-strong);
      box-shadow:0 0 0 3px rgba(10,242,178,.18)!important;
    }
    .accordion-button::after{filter:invert(1)}
    .accordion-button:not(.collapsed)::after{filter:none}
    .accordion-body{
      color:#b7c3ca;
      padding:20px 22px 24px;
      background:rgba(0,0,0,.12);
    }
    .cta-band{
      border:1px solid rgba(10,242,178,.28);
      border-radius:34px;
      padding:32px;
      background:
        radial-gradient(circle at 15% 25%,rgba(10,242,178,.22),transparent 30%),
        radial-gradient(circle at 82% 72%,rgba(255,79,134,.18),transparent 32%),
        linear-gradient(135deg,rgba(255,255,255,.08),rgba(255,255,255,.025));
      box-shadow:var(--shadow);
    }
    .cta-band-inner{
      display:grid;
      grid-template-columns:1fr auto;
      gap:24px;
      align-items:center;
    }
    .cta-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }

    .site-footer{
      padding:54px 0 28px;
      border-top:1px solid var(--line);
      background:#07090b;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.4fr .7fr .7fr;
      gap:38px;
      align-items:start;
    }
    .site-footer p{
      max-width:460px;
      margin-top:18px;
      color:#9ca8b1;
      font-size:14px;
    }
    .footer-title{
      color:#fff;
      font-weight:850;
      margin-bottom:14px;
    }
    .footer-links{
      display:grid;
      gap:10px;
    }
    .footer-links a{
      color:#9faab3;
      font-size:14px;
    }
    .footer-links a:hover{
      color:var(--primary);
      transform:translateX(2px);
    }
    .copyright{
      display:flex;
      justify-content:space-between;
      gap:18px;
      flex-wrap:wrap;
      margin-top:38px;
      padding-top:22px;
      border-top:1px solid rgba(255,255,255,.08);
      color:#73808a;
      font-size:13px;
    }

    @media (max-width:1024px){
      :root{--container:920px}
      .content-layout,.solution-layout,.pain-strip,.notice-grid{grid-template-columns:1fr}
      .sticky-note,.side-panel{position:static}
      .stats-grid{grid-template-columns:repeat(2,1fr)}
      .voices{grid-template-columns:1fr}
    }
    @media (max-width:767.98px){
      .site-container{width:min(100% - 28px,var(--container))}
      .navbar{min-height:72px}
      .navbar-collapse{
        margin-top:12px;
        border-top:1px solid var(--line);
        padding:12px 0 18px;
      }
      .nav-menu{align-items:stretch;gap:4px}
      .nav-link,.header-action{
        width:100%;
        justify-content:flex-start;
        border-radius:14px;
      }
      .brand-text strong{font-size:16px}
      .brand-text span{font-size:11px}
      .hero-category{padding:46px 0 36px}
      .section{padding:58px 0}
      .lead{font-size:16px}
      .hero-card{padding:22px}
      .entry-card{grid-template-columns:1fr}
      .thumb{min-height:190px}
      .flow-card{grid-template-columns:58px 1fr;align-items:start}
      .flow-tag{grid-column:2}
      .stats-grid{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr;gap:28px}
      .cta-band{padding:24px}
      .cta-band-inner{grid-template-columns:1fr}
      .cta-actions{justify-content:flex-start}
      .load-box{align-items:flex-start;flex-direction:column}
    }
    @media (max-width:520px){
      h1{font-size:36px}
      h2{font-size:28px}
      .benefit-badges{gap:8px}
      .badge-chip,.filter-chip{font-size:12px}
      .hero-actions,.entry-actions,.cta-actions{flex-direction:column}
      .btn-main,.btn-ghost,.btn-soft{width:100%}
      .pain-item{grid-template-columns:1fr}
      .icon-box{width:42px;height:42px}
      .status-top{align-items:flex-start;flex-direction:column}
      .copyright{flex-direction:column}
    }
