/* roulang page: index */
:root{
            --bg:#070708;
            --bg2:#0c0c10;
            --panel:#101116;
            --panel2:#15161c;
            --line:rgba(255,255,255,.08);
            --line-strong:rgba(255,255,255,.14);
            --text:#f5f7fb;
            --muted:#a2a8b8;
            --muted2:#7f8697;
            --accent:#ff4fa3;
            --accent2:#ffb84d;
            --accent3:#78f2ff;
            --success:#78f28f;
            --radius:22px;
            --radius-lg:28px;
            --shadow:0 24px 80px rgba(0,0,0,.42);
            --shadow-soft:0 18px 42px rgba(0,0,0,.25);
        }
        *{box-sizing:border-box}
        html{scroll-behavior:smooth}
        body{
            margin:0;
            min-height:100vh;
            color:var(--text);
            background:
                radial-gradient(circle at 12% 10%, rgba(255,79,163,.16), transparent 28%),
                radial-gradient(circle at 82% 16%, rgba(255,184,77,.12), transparent 24%),
                radial-gradient(circle at 50% 90%, rgba(120,242,255,.08), transparent 22%),
                linear-gradient(180deg, #050506 0%, #0a0a0d 42%, #070708 100%);
            font-family:'Inter', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
            line-height:1.75;
            overflow-x:hidden;
        }
        body::before{
            content:"";
            position:fixed;
            inset:0;
            pointer-events:none;
            background-image:
                linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
            background-size:72px 72px;
            opacity:.12;
            mix-blend-mode:screen;
        }
        ::selection{background:rgba(255,79,163,.35); color:#fff}
        a{color:inherit; text-decoration:none}
        img{max-width:100%; display:block}
        button,input,select,textarea{font:inherit}
        .site-header{
            position:sticky;
            top:0;
            z-index:60;
            backdrop-filter: blur(16px);
            background:rgba(6,6,8,.72);
            border-bottom:1px solid rgba(255,255,255,.08);
        }
        .header-inner{
            max-width:1280px;
            margin:0 auto;
            padding:14px 16px;
        }
        .nav-wrap{
            border:1px solid rgba(255,255,255,.06);
            background:linear-gradient(180deg, rgba(18,18,24,.86), rgba(11,11,15,.82));
            box-shadow:0 10px 40px rgba(0,0,0,.22);
        }
        .brand-mark{
            display:flex;
            align-items:center;
            gap:12px;
            min-width:0;
        }
        .brand-icon{
            width:44px;
            height:44px;
            border-radius:16px;
            background:
                radial-gradient(circle at 30% 25%, rgba(255,255,255,.95), rgba(255,255,255,.18) 18%, transparent 20%),
                linear-gradient(135deg, rgba(255,79,163,.95), rgba(255,184,77,.88));
            box-shadow:
                0 0 0 1px rgba(255,255,255,.09),
                0 0 36px rgba(255,79,163,.35),
                inset 0 1px 0 rgba(255,255,255,.35);
            position:relative;
            flex:0 0 auto;
        }
        .brand-icon::after{
            content:"";
            position:absolute;
            inset:11px;
            border-radius:12px;
            border:1px solid rgba(255,255,255,.65);
            opacity:.88;
        }
        .brand-text{
            min-width:0;
        }
        .brand-name{
            font-weight:800;
            letter-spacing:.02em;
            line-height:1.15;
        }
        .brand-tag{
            display:inline-flex;
            align-items:center;
            gap:6px;
            font-size:12px;
            color:rgba(245,247,251,.82);
            padding:3px 10px;
            border-radius:999px;
            background:rgba(255,255,255,.05);
            border:1px solid rgba(255,255,255,.08);
        }
        .nav-link{
            display:inline-flex;
            align-items:center;
            justify-content:center;
            padding:10px 14px;
            border-radius:999px;
            color:rgba(245,247,251,.78);
            font-size:14px;
            font-weight:600;
            letter-spacing:.01em;
            border:1px solid transparent;
            transition:all .22s ease;
        }
        .nav-link:hover,
        .nav-link:focus-visible{
            color:#fff;
            background:rgba(255,255,255,.06);
            border-color:rgba(255,255,255,.08);
            box-shadow:0 0 0 1px rgba(255,79,163,.12), 0 0 20px rgba(255,79,163,.12);
            transform:translateY(-1px);
            outline:none;
        }
        .nav-link.active{
            color:#fff;
            background:linear-gradient(135deg, rgba(255,79,163,.22), rgba(255,184,77,.18));
            border-color:rgba(255,255,255,.10);
            box-shadow:0 0 0 1px rgba(255,79,163,.18), 0 10px 30px rgba(255,79,163,.10);
        }
        .menu-panel{
            max-height:0;
            overflow:hidden;
            transition:max-height .32s ease, opacity .25s ease, transform .25s ease;
            opacity:0;
            transform:translateY(-4px);
        }
        .menu-panel.open{
            max-height:300px;
            opacity:1;
            transform:translateY(0);
        }
        .section-shell{
            max-width:1280px;
            margin:0 auto;
            padding-left:16px;
            padding-right:16px;
        }
        .panel{
            background:linear-gradient(180deg, rgba(17,18,24,.92), rgba(12,12,16,.9));
            border:1px solid rgba(255,255,255,.08);
            box-shadow:var(--shadow-soft);
            border-radius:var(--radius-lg);
        }
        .card{
            background:linear-gradient(180deg, rgba(21,22,28,.9), rgba(15,16,21,.88));
            border:1px solid rgba(255,255,255,.08);
            border-radius:var(--radius);
            box-shadow:0 16px 50px rgba(0,0,0,.2);
            transition:transform .22s ease, border-color .22s ease, box-shadow .22s ease;
        }
        .card:hover{
            transform:translateY(-3px);
            border-color:rgba(255,255,255,.14);
            box-shadow:0 20px 56px rgba(0,0,0,.32), 0 0 0 1px rgba(255,79,163,.08);
        }
        .section-kicker{
            display:inline-flex;
            align-items:center;
            gap:8px;
            padding:6px 12px;
            border-radius:999px;
            color:rgba(255,255,255,.92);
            font-size:12px;
            font-weight:700;
            letter-spacing:.08em;
            text-transform:uppercase;
            background:rgba(255,255,255,.06);
            border:1px solid rgba(255,255,255,.08);
        }
        .section-title{
            font-weight:800;
            line-height:1.15;
            letter-spacing:-.02em;
        }
        .section-copy{
            color:var(--muted);
            max-width:70ch;
        }
        .badge{
            display:inline-flex;
            align-items:center;
            gap:6px;
            padding:6px 10px;
            border-radius:999px;
            font-size:12px;
            font-weight:700;
            border:1px solid rgba(255,255,255,.08);
            background:rgba(255,255,255,.06);
            color:#fff;
        }
        .badge-rose{
            background:rgba(255,79,163,.18);
            border-color:rgba(255,79,163,.22);
            box-shadow:0 0 0 1px rgba(255,79,163,.1) inset;
        }
        .badge-amber{
            background:rgba(255,184,77,.16);
            border-color:rgba(255,184,77,.22);
        }
        .badge-cyan{
            background:rgba(120,242,255,.12);
            border-color:rgba(120,242,255,.22);
            color:#dffcff;
        }
        .btn-primary,
        .btn-secondary{
            display:inline-flex;
            align-items:center;
            justify-content:center;
            gap:8px;
            min-height:48px;
            padding:0 18px;
            border-radius:16px;
            font-weight:700;
            transition:transform .22s ease, box-shadow .22s ease, filter .22s ease, background .22s ease;
            border:1px solid transparent;
            cursor:pointer;
            white-space:nowrap;
        }
        .btn-primary{
            color:#fff;
            background:linear-gradient(135deg, #ff4fa3, #ff7a59 45%, #ffb84d);
            box-shadow:0 16px 34px rgba(255,79,163,.25), 0 0 0 1px rgba(255,255,255,.08) inset;
        }
        .btn-primary:hover,
        .btn-primary:focus-visible{
            transform:translateY(-2px);
            filter:brightness(1.06);
            box-shadow:0 22px 38px rgba(255,79,163,.32), 0 0 30px rgba(255,184,77,.16);
            outline:none;
        }
        .btn-secondary{
            color:#fff;
            background:rgba(255,255,255,.05);
            border-color:rgba(255,255,255,.10);
        }
        .btn-secondary:hover,
        .btn-secondary:focus-visible{
            transform:translateY(-2px);
            background:rgba(255,255,255,.08);
            border-color:rgba(255,255,255,.18);
            box-shadow:0 12px 28px rgba(0,0,0,.24), 0 0 24px rgba(120,242,255,.10);
            outline:none;
        }
        .glow-line{
            position:relative;
        }
        .glow-line::after{
            content:"";
            position:absolute;
            left:0;
            right:0;
            bottom:-1px;
            height:2px;
            border-radius:999px;
            background:linear-gradient(90deg, transparent, rgba(255,79,163,.95), rgba(255,184,77,.95), transparent);
            box-shadow:0 0 16px rgba(255,79,163,.42);
        }
        .hero-grid{
            display:grid;
            grid-template-columns:1.08fr .92fr;
            gap:28px;
            align-items:stretch;
        }
        .hero-card{
            position:relative;
            overflow:hidden;
        }
        .hero-card::before{
            content:"";
            position:absolute;
            inset:-2px;
            background:
                radial-gradient(circle at 20% 15%, rgba(255,79,163,.18), transparent 28%),
                radial-gradient(circle at 85% 10%, rgba(255,184,77,.16), transparent 22%),
                radial-gradient(circle at 50% 100%, rgba(120,242,255,.10), transparent 30%);
            pointer-events:none;
        }
        .hero-card > *{position:relative; z-index:1}
        .stat{
            padding:14px 15px;
            border-radius:18px;
            background:rgba(255,255,255,.04);
            border:1px solid rgba(255,255,255,.08);
        }
        .stat strong{
            display:block;
            font-size:18px;
            line-height:1.1;
            margin-bottom:4px;
            color:#fff;
        }
        .stat span{color:var(--muted2); font-size:13px}
        .entry-chip{
            display:flex;
            flex-direction:column;
            gap:8px;
            padding:18px;
            border-radius:20px;
            background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.025));
            border:1px solid rgba(255,255,255,.08);
        }
        .entry-chip .mini{
            display:inline-flex;
            align-items:center;
            gap:6px;
            font-size:12px;
            color:#fff;
        }
        .progress-track{
            height:10px;
            border-radius:999px;
            background:rgba(255,255,255,.08);
            overflow:hidden;
        }
        .progress-bar{
            height:100%;
            width:86%;
            border-radius:999px;
            background:linear-gradient(90deg, rgba(255,79,163,.95), rgba(255,184,77,.95));
            box-shadow:0 0 18px rgba(255,79,163,.45);
        }
        .tier-label{
            font-size:13px;
            color:rgba(255,255,255,.8);
            letter-spacing:.02em;
        }
        .price-pill{
            display:inline-flex;
            align-items:center;
            gap:6px;
            padding:6px 10px;
            border-radius:999px;
            background:rgba(255,255,255,.06);
            border:1px solid rgba(255,255,255,.08);
            font-size:12px;
            color:rgba(255,255,255,.88);
        }
        .compare-table{
            width:100%;
            border-collapse:separate;
            border-spacing:0;
            overflow:hidden;
            border-radius:24px;
        }
        .compare-table th,
        .compare-table td{
            padding:16px 18px;
            border-bottom:1px solid rgba(255,255,255,.08);
            vertical-align:top;
        }
        .compare-table th{
            font-size:14px;
            text-align:left;
            color:#fff;
            background:rgba(255,255,255,.04);
        }
        .compare-table td{
            color:rgba(245,247,251,.86);
            background:rgba(255,255,255,.02);
        }
        .compare-table tr:last-child th,
        .compare-table tr:last-child td{
            border-bottom:none;
        }
        .compare-table .col-hot{
            background:rgba(255,79,163,.08);
        }
        .compare-table .mark{
            display:inline-flex;
            align-items:center;
            padding:5px 9px;
            border-radius:999px;
            font-size:12px;
            font-weight:700;
            background:rgba(255,79,163,.16);
            border:1px solid rgba(255,79,163,.22);
            color:#fff;
        }
        .compare-table .mark.hot{
            background:rgba(255,184,77,.16);
            border-color:rgba(255,184,77,.22);
        }
        .form-input,
        .form-textarea,
        .form-select{
            width:100%;
            border-radius:16px;
            background:rgba(255,255,255,.04);
            border:1px solid rgba(255,255,255,.09);
            color:#fff;
            padding:14px 16px;
            outline:none;
            transition:border-color .2s ease, box-shadow .2s ease, background .2s ease;
        }
        .form-input::placeholder,
        .form-textarea::placeholder{color:rgba(255,255,255,.35)}
        .form-input:focus,
        .form-textarea:focus,
        .form-select:focus{
            border-color:rgba(255,79,163,.45);
            box-shadow:0 0 0 4px rgba(255,79,163,.12);
            background:rgba(255,255,255,.06);
        }
        .faq details{
            border-radius:20px;
            background:rgba(255,255,255,.04);
            border:1px solid rgba(255,255,255,.08);
            overflow:hidden;
            transition:border-color .2s ease, box-shadow .2s ease;
        }
        .faq details[open]{
            border-color:rgba(255,79,163,.22);
            box-shadow:0 0 0 1px rgba(255,79,163,.08), 0 18px 44px rgba(0,0,0,.24);
        }
        .faq summary{
            list-style:none;
            cursor:pointer;
            padding:18px 20px;
            display:flex;
            align-items:flex-start;
            justify-content:space-between;
            gap:16px;
            font-weight:700;
            color:#fff;
        }
        .faq summary::-webkit-details-marker{display:none}
        .faq-body{
            padding:0 20px 18px 20px;
            color:var(--muted);
        }
        .faq-icon{
            width:28px;
            height:28px;
            flex:0 0 auto;
            border-radius:999px;
            background:rgba(255,255,255,.06);
            border:1px solid rgba(255,255,255,.08);
            display:grid;
            place-items:center;
            transition:transform .2s ease, background .2s ease;
        }
        details[open] .faq-icon{transform:rotate(45deg); background:rgba(255,79,163,.14)}
        .timeline{
            display:grid;
            gap:16px;
        }
        .timeline-item{
            display:grid;
            grid-template-columns:120px 1fr;
            gap:16px;
            align-items:stretch;
        }
        .timeline-time{
            display:flex;
            align-items:center;
            justify-content:center;
            padding:16px;
            border-radius:20px;
            background:rgba(255,255,255,.05);
            border:1px solid rgba(255,255,255,.08);
            color:#fff;
            font-weight:800;
            letter-spacing:.03em;
        }
        .timeline-body{
            padding:16px 18px;
            border-radius:20px;
            background:rgba(255,255,255,.035);
            border:1px solid rgba(255,255,255,.08);
        }
        .timeline-body strong{
            display:block;
            color:#fff;
            margin-bottom:4px;
        }
        .footer{
            border-top:1px solid rgba(255,255,255,.08);
            background:linear-gradient(180deg, rgba(10,10,12,.5), rgba(6,6,8,.95));
        }
        .footer a{
            color:rgba(245,247,251,.78);
            transition:color .2s ease;
        }
        .footer a:hover,
        .footer a:focus-visible{color:#fff}
        .reveal{
            animation:fadeUp .6s ease both;
        }
        @keyframes fadeUp{
            from{opacity:0; transform:translateY(16px)}
            to{opacity:1; transform:translateY(0)}
        }
        @media (max-width: 1024px){
            .hero-grid{grid-template-columns:1fr}
        }
        @media (max-width: 768px){
            .header-inner{padding:12px 12px}
            .timeline-item{grid-template-columns:1fr}
            .nav-link{width:100%; justify-content:flex-start}
        }

/* roulang page: category2 */
:root{
      --bg:#08070b;
      --bg-2:#111018;
      --panel:#17131f;
      --panel-2:#211827;
      --text:#fff8f1;
      --muted:rgba(255,248,241,.68);
      --soft:rgba(255,248,241,.46);
      --line:rgba(255,255,255,.12);
      --line-strong:rgba(255,111,177,.42);
      --primary:#ff2f87;
      --primary-2:#ff68ad;
      --amber:#ffb33b;
      --cyan:#83f7ff;
      --violet:#b68cff;
      --green:#56f0a7;
      --radius:22px;
      --radius-sm:14px;
      --shadow:0 24px 70px rgba(0,0,0,.42);
      --glow:0 0 34px rgba(255,47,135,.35);
      --container:1180px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei",Arial,sans-serif;
      line-height:1.7;
      color:var(--text);
      background:
        radial-gradient(circle at 16% 10%, rgba(255,47,135,.28), transparent 32%),
        radial-gradient(circle at 83% 18%, rgba(131,247,255,.16), transparent 28%),
        radial-gradient(circle at 54% 72%, rgba(255,179,59,.10), transparent 35%),
        linear-gradient(180deg,#08070b 0%,#100913 42%,#08070b 100%);
      min-height:100vh;
      overflow-x:hidden;
    }
    body:before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      opacity:.36;
      background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
      background-size:42px 42px;
      mask-image:radial-gradient(circle at center, black 0%, transparent 74%);
      z-index:-2;
    }
    body:after{
      content:"";
      position:fixed;
      inset:-20%;
      pointer-events:none;
      background:
        conic-gradient(from 180deg at 50% 0%, transparent 0 20%, rgba(255,47,135,.14) 25%, transparent 32%, rgba(255,179,59,.09) 38%, transparent 45%, rgba(131,247,255,.10) 54%, transparent 64%),
        radial-gradient(circle at 50% 0%, rgba(255,255,255,.09), transparent 36%);
      filter:blur(2px);
      z-index:-3;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input,textarea,select{font:inherit}
    button{cursor:pointer}
    input,textarea,select{outline:none}
    ::selection{background:rgba(255,47,135,.45);color:white}
    .section-shell{
      width:min(var(--container), calc(100% - 40px));
      margin:0 auto;
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter:blur(18px);
      background:linear-gradient(180deg, rgba(8,7,11,.88), rgba(8,7,11,.62));
      border-bottom:1px solid rgba(255,255,255,.10);
      box-shadow:0 8px 36px rgba(0,0,0,.25);
    }
    .brand-icon{
      width:42px;
      height:42px;
      flex:0 0 auto;
      border-radius:50%;
      display:inline-block;
      background:
        radial-gradient(circle at 30% 25%, #fff 0 8%, transparent 10%),
        radial-gradient(circle at 65% 72%, rgba(131,247,255,.95), transparent 18%),
        linear-gradient(135deg, var(--primary), #8d36ff 58%, #151019);
      box-shadow:0 0 0 3px rgba(255,255,255,.08), 0 0 28px rgba(255,47,135,.42);
      position:relative;
    }
    .brand-icon:after{
      content:"";
      position:absolute;
      inset:8px;
      border-radius:50%;
      border:1px solid rgba(255,255,255,.38);
    }
    .nav-link{
      position:relative;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:10px 14px;
      border-radius:999px;
      color:rgba(255,248,241,.72);
      font-size:14px;
      font-weight:700;
      transition:.25s ease;
    }
    .nav-link:hover{
      color:#fff;
      background:rgba(255,255,255,.07);
      box-shadow:0 0 0 1px rgba(255,255,255,.08) inset;
      transform:translateY(-1px);
    }
    .nav-link.active{
      color:#fff;
      background:linear-gradient(135deg, rgba(255,47,135,.24), rgba(255,179,59,.12));
      box-shadow:0 0 0 1px rgba(255,47,135,.45) inset, 0 0 24px rgba(255,47,135,.22);
    }
    .glow-line:after{
      content:"";
      position:absolute;
      left:18px;
      right:18px;
      bottom:5px;
      height:2px;
      border-radius:999px;
      background:linear-gradient(90deg, transparent, var(--primary), var(--amber), transparent);
      opacity:.95;
    }
    .menu-btn{
      width:44px;
      height:44px;
      border:1px solid rgba(255,255,255,.12);
      border-radius:14px;
      background:rgba(255,255,255,.06);
      color:white;
      transition:.25s ease;
    }
    .menu-btn:hover,.menu-btn:focus{
      border-color:rgba(255,47,135,.55);
      box-shadow:var(--glow);
    }
    .mobile-panel{
      display:none;
      border-top:1px solid rgba(255,255,255,.10);
      background:rgba(12,10,16,.94);
    }
    .mobile-panel.open{display:block}
    .hero{
      position:relative;
      padding:76px 0 48px;
    }
    .hero:before{
      content:"";
      position:absolute;
      inset:0;
      pointer-events:none;
      background:
        linear-gradient(100deg, rgba(255,47,135,.12), transparent 38%),
        radial-gradient(circle at 76% 30%, rgba(255,179,59,.14), transparent 30%);
    }
    .eyebrow,.status-badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      border-radius:999px;
      padding:7px 11px;
      border:1px solid rgba(255,255,255,.14);
      background:rgba(255,255,255,.07);
      color:rgba(255,248,241,.86);
      font-size:13px;
      font-weight:800;
      letter-spacing:.02em;
    }
    .eyebrow:before,.status-badge.hot:before{
      content:"";
      width:8px;
      height:8px;
      border-radius:999px;
      background:var(--primary);
      box-shadow:0 0 14px var(--primary);
    }
    .status-badge.amber{
      color:#fff2d6;
      border-color:rgba(255,179,59,.34);
      background:rgba(255,179,59,.12);
    }
    .status-badge.cyan{
      color:#dffcff;
      border-color:rgba(131,247,255,.34);
      background:rgba(131,247,255,.10);
    }
    .status-badge.pink{
      color:#ffe3ef;
      border-color:rgba(255,47,135,.38);
      background:rgba(255,47,135,.12);
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      min-height:48px;
      padding:12px 18px;
      border-radius:16px;
      border:1px solid transparent;
      font-weight:900;
      transition:.25s ease;
      user-select:none;
    }
    .btn-primary{
      color:white;
      background:linear-gradient(135deg, var(--primary), #ff6c38);
      box-shadow:0 16px 34px rgba(255,47,135,.30), 0 0 0 1px rgba(255,255,255,.13) inset;
    }
    .btn-primary:hover,.btn-primary:focus{
      transform:translateY(-2px);
      filter:brightness(1.08);
      box-shadow:0 20px 46px rgba(255,47,135,.42), 0 0 0 5px rgba(255,47,135,.12);
    }
    .btn-secondary{
      color:#fff;
      background:rgba(255,255,255,.07);
      border-color:rgba(255,255,255,.14);
    }
    .btn-secondary:hover,.btn-secondary:focus{
      transform:translateY(-2px);
      border-color:rgba(131,247,255,.42);
      background:rgba(131,247,255,.10);
      box-shadow:0 0 28px rgba(131,247,255,.16);
    }
    .stage-card{
      border:1px solid rgba(255,255,255,.12);
      background:
        linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035)),
        radial-gradient(circle at 16% 0%, rgba(255,47,135,.16), transparent 38%);
      border-radius:var(--radius);
      box-shadow:var(--shadow);
      position:relative;
      overflow:hidden;
    }
    .stage-card:before{
      content:"";
      position:absolute;
      inset:0;
      pointer-events:none;
      background:linear-gradient(120deg, transparent, rgba(255,255,255,.08), transparent);
      transform:translateX(-70%);
      transition:.6s ease;
    }
    .stage-card:hover{
      border-color:rgba(255,47,135,.36);
      box-shadow:0 26px 76px rgba(0,0,0,.48), 0 0 32px rgba(255,47,135,.16);
      transform:translateY(-2px);
    }
    .stage-card:hover:before{transform:translateX(70%)}
    .section{
      padding:54px 0;
      position:relative;
    }
    .section-title{
      font-size:clamp(26px,3.6vw,42px);
      line-height:1.18;
      font-weight:950;
      letter-spacing:-.02em;
    }
    .section-desc{
      color:var(--muted);
      max-width:760px;
      margin-top:14px;
      font-size:16px;
    }
    .filter-card{
      position:sticky;
      top:92px;
      padding:22px;
    }
    .filter-pill{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:10px;
      padding:12px 13px;
      border-radius:15px;
      color:rgba(255,248,241,.74);
      background:rgba(255,255,255,.045);
      border:1px solid rgba(255,255,255,.09);
      transition:.24s ease;
      margin-top:10px;
    }
    .filter-pill:hover,.filter-pill.active{
      color:white;
      border-color:rgba(255,47,135,.42);
      background:linear-gradient(135deg, rgba(255,47,135,.16), rgba(255,179,59,.08));
      box-shadow:0 0 22px rgba(255,47,135,.12);
      transform:translateX(3px);
    }
    .compare-list{
      display:grid;
      gap:16px;
    }
    .compare-item{
      display:grid;
      grid-template-columns:1fr auto;
      gap:18px;
      padding:22px;
      border-radius:22px;
      border:1px solid rgba(255,255,255,.11);
      background:linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.035));
      transition:.25s ease;
      overflow:hidden;
      position:relative;
    }
    .compare-item:after{
      content:"";
      position:absolute;
      top:-60px;
      right:-70px;
      width:160px;
      height:160px;
      border-radius:50%;
      background:rgba(255,47,135,.16);
      filter:blur(18px);
      opacity:.8;
    }
    .compare-item:hover{
      transform:translateY(-3px);
      border-color:rgba(255,47,135,.34);
      box-shadow:0 22px 54px rgba(0,0,0,.34);
    }
    .metric-grid{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:12px;
    }
    .metric{
      padding:14px;
      border-radius:18px;
      border:1px solid rgba(255,255,255,.10);
      background:rgba(0,0,0,.18);
    }
    .metric b{
      display:block;
      font-size:22px;
      line-height:1.1;
      color:#fff;
    }
    .metric span{
      display:block;
      margin-top:6px;
      font-size:12px;
      color:var(--soft);
    }
    .step-line{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:14px;
    }
    .step{
      padding:18px;
      border-radius:20px;
      border:1px solid rgba(255,255,255,.11);
      background:rgba(255,255,255,.045);
    }
    .step-num{
      width:32px;height:32px;border-radius:12px;
      display:grid;place-items:center;
      color:#09070b;
      background:linear-gradient(135deg,var(--amber),#fff1a6);
      font-weight:950;
      margin-bottom:12px;
    }
    .notice-strip{
      border:1px solid rgba(255,179,59,.32);
      background:
        linear-gradient(90deg, rgba(255,179,59,.16), rgba(255,47,135,.11), rgba(131,247,255,.08));
      border-radius:24px;
      box-shadow:0 0 34px rgba(255,179,59,.12);
    }
    .form-control{
      width:100%;
      min-height:50px;
      border-radius:16px;
      border:1px solid rgba(255,255,255,.13);
      background:rgba(255,255,255,.06);
      color:white;
      padding:12px 14px;
      transition:.22s ease;
    }
    .form-control::placeholder{color:rgba(255,248,241,.38)}
    .form-control:focus{
      border-color:rgba(255,47,135,.58);
      box-shadow:0 0 0 4px rgba(255,47,135,.12);
      background:rgba(255,255,255,.08);
    }
    textarea.form-control{min-height:118px;resize:vertical}
    .faq details{
      border:1px solid rgba(255,255,255,.11);
      background:rgba(255,255,255,.045);
      border-radius:18px;
      padding:0;
      overflow:hidden;
      transition:.24s ease;
    }
    .faq details:hover{
      border-color:rgba(255,47,135,.30);
      background:rgba(255,255,255,.06);
    }
    .faq summary{
      list-style:none;
      cursor:pointer;
      padding:18px 20px;
      font-weight:900;
      display:flex;
      justify-content:space-between;
      gap:14px;
      align-items:center;
    }
    .faq summary::-webkit-details-marker{display:none}
    .faq summary:after{
      content:"+";
      width:26px;height:26px;
      border-radius:50%;
      display:grid;place-items:center;
      background:rgba(255,255,255,.08);
      color:var(--amber);
      flex:0 0 auto;
    }
    .faq details[open] summary:after{content:"−";background:rgba(255,47,135,.18);color:#fff}
    .faq .answer{
      padding:0 20px 18px;
      color:var(--muted);
      font-size:15px;
    }
    .footer{
      border-top:1px solid rgba(255,255,255,.10);
      background:
        radial-gradient(circle at 16% 0%, rgba(255,47,135,.14), transparent 34%),
        linear-gradient(180deg, rgba(12,10,16,.72), rgba(5,5,8,.95));
    }
    .footer a{
      color:rgba(255,248,241,.66);
      transition:.22s ease;
    }
    .footer a:hover{
      color:#fff;
      transform:translateX(2px);
    }
    .divider{
      height:1px;
      background:linear-gradient(90deg, transparent, rgba(255,47,135,.40), rgba(255,179,59,.28), transparent);
    }
    .pulse-ring{
      position:relative;
    }
    .pulse-ring:before{
      content:"";
      position:absolute;
      inset:-5px;
      border-radius:inherit;
      border:1px solid rgba(255,47,135,.42);
      animation:pulse 1.9s infinite;
    }
    @keyframes pulse{
      0%{opacity:.72;transform:scale(1)}
      100%{opacity:0;transform:scale(1.08)}
    }
    @media (max-width:1024px){
      .filter-card{position:relative;top:auto}
      .metric-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
      .hero{padding-top:54px}
    }
    @media (max-width:768px){
      .section-shell{width:min(100% - 28px, var(--container))}
      .compare-item{grid-template-columns:1fr}
      .step-line{grid-template-columns:1fr}
      .section{padding:42px 0}
      .hero{padding:42px 0 34px}
    }
    @media (max-width:520px){
      .brand-icon{width:36px;height:36px}
      .btn{width:100%;min-height:50px}
      .metric-grid{grid-template-columns:1fr}
      .filter-pill{padding:11px}
      .compare-item{padding:18px}
      .stage-card{border-radius:18px}
      .section-title{font-size:27px}
    }

/* roulang page: category1 */
:root{
      --bg:#07050a;
      --bg-2:#110a14;
      --panel:rgba(255,255,255,.075);
      --panel-2:rgba(255,255,255,.105);
      --text:#fff8f5;
      --muted:rgba(255,248,245,.66);
      --weak:rgba(255,248,245,.42);
      --line:rgba(255,255,255,.14);
      --line-strong:rgba(255,70,145,.52);
      --primary:#ff2f86;
      --primary-2:#d91cff;
      --amber:#ffb13d;
      --cyan:#69f5ff;
      --violet:#b99cff;
      --success:#6dffb4;
      --danger:#ff5370;
      --radius:22px;
      --radius-sm:15px;
      --shadow:0 24px 80px rgba(255,47,134,.17);
      --shadow-soft:0 14px 48px rgba(0,0,0,.34);
      --container:1180px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      min-height:100vh;
      font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei",Arial,sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 14% 0%, rgba(255,47,134,.28), transparent 34%),
        radial-gradient(circle at 82% 12%, rgba(217,28,255,.22), transparent 33%),
        radial-gradient(circle at 62% 68%, rgba(255,177,61,.11), transparent 38%),
        linear-gradient(180deg,#07050a 0%,#100812 46%,#060407 100%);
      line-height:1.65;
      overflow-x:hidden;
    }
    body:before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      z-index:-1;
      background:
        linear-gradient(115deg, transparent 0 25%, rgba(255,255,255,.035) 25.2%, transparent 26.6% 58%, rgba(105,245,255,.03) 58.2%, transparent 60%),
        repeating-linear-gradient(0deg,rgba(255,255,255,.018) 0 1px,transparent 1px 4px);
      mix-blend-mode:screen;
      opacity:.58;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input,textarea,select{font:inherit}
    button{cursor:pointer}
    input,textarea{outline:none}
    ::selection{background:rgba(255,47,134,.42);color:#fff}

    .section-shell{
      width:min(var(--container), calc(100% - 40px));
      margin-inline:auto;
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter:blur(18px);
      background:linear-gradient(180deg,rgba(7,5,10,.88),rgba(7,5,10,.62));
      border-bottom:1px solid rgba(255,255,255,.11);
      box-shadow:0 12px 44px rgba(0,0,0,.34);
    }
    .nav-wrap{
      min-height:74px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
    }
    .brand-icon{
      width:42px;
      height:42px;
      display:inline-flex;
      flex:0 0 auto;
      border-radius:50%;
      background:
        radial-gradient(circle at 35% 24%,#fff 0 9%,transparent 10%),
        radial-gradient(circle at 50% 74%,rgba(255,177,61,.9),transparent 28%),
        linear-gradient(135deg,var(--primary),var(--primary-2));
      box-shadow:0 0 0 5px rgba(255,47,134,.09),0 0 32px rgba(255,47,134,.48);
      position:relative;
    }
    .brand-icon:after{
      content:"";
      position:absolute;
      inset:8px;
      border-radius:50%;
      border:1px solid rgba(255,255,255,.42);
    }
    .nav-link{
      position:relative;
      display:inline-flex;
      align-items:center;
      min-height:42px;
      padding:0 14px;
      border-radius:999px;
      color:rgba(255,255,255,.72);
      font-size:14px;
      font-weight:800;
      letter-spacing:.01em;
      transition:transform .22s ease,color .22s ease,background .22s ease,box-shadow .22s ease;
    }
    .nav-link:hover,.nav-link:focus-visible{
      color:#fff;
      background:rgba(255,255,255,.085);
      box-shadow:0 0 0 1px rgba(255,255,255,.13),0 0 22px rgba(255,47,134,.18);
      transform:translateY(-1px);
    }
    .nav-link.active{
      color:#fff;
      background:linear-gradient(135deg,rgba(255,47,134,.26),rgba(255,177,61,.14));
      box-shadow:inset 0 0 0 1px rgba(255,47,134,.38),0 0 26px rgba(255,47,134,.2);
    }
    .glow-line:after{
      content:"";
      position:absolute;
      left:16px;
      right:16px;
      bottom:4px;
      height:2px;
      border-radius:99px;
      background:linear-gradient(90deg,var(--primary),var(--amber));
      box-shadow:0 0 14px rgba(255,47,134,.7);
    }
    .menu-btn{
      width:44px;
      height:44px;
      display:none;
      border:1px solid rgba(255,255,255,.14);
      border-radius:14px;
      background:rgba(255,255,255,.07);
      color:#fff;
      transition:.22s ease;
    }
    .menu-btn:hover,.menu-btn:focus-visible{
      border-color:rgba(255,47,134,.55);
      box-shadow:0 0 24px rgba(255,47,134,.22);
    }
    .mobile-panel{
      display:none;
      padding:0 0 18px;
    }
    .mobile-panel.open{display:block}
    .mobile-panel a{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:14px 16px;
      border-radius:16px;
      background:rgba(255,255,255,.055);
      border:1px solid rgba(255,255,255,.1);
      color:rgba(255,255,255,.8);
      font-weight:800;
      margin-top:10px;
    }
    .mobile-panel a.active{
      color:#fff;
      border-color:rgba(255,47,134,.5);
      background:rgba(255,47,134,.16);
    }

    main{position:relative}
    .stage-section{padding:70px 0}
    .page-hero{
      padding:54px 0 34px;
      position:relative;
    }
    .page-hero:before{
      content:"";
      position:absolute;
      left:50%;
      top:0;
      width:min(980px,92vw);
      height:360px;
      transform:translateX(-50%);
      background:radial-gradient(ellipse at center,rgba(255,47,134,.24),transparent 68%);
      filter:blur(10px);
      pointer-events:none;
      z-index:-1;
    }
    .bento-hero{
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:18px;
      align-items:stretch;
    }
    .hero-main,.bento-card,.cta-strip,.content-card,.filter-panel,.entry-card,.recommend-box,.faq-item,.form-card{
      border:1px solid var(--line);
      background:linear-gradient(180deg,rgba(255,255,255,.095),rgba(255,255,255,.045));
      box-shadow:var(--shadow-soft);
      backdrop-filter:blur(18px);
      border-radius:var(--radius);
    }
    .hero-main{
      min-height:430px;
      padding:34px;
      position:relative;
      overflow:hidden;
    }
    .hero-main:before{
      content:"";
      position:absolute;
      right:-120px;
      top:-120px;
      width:310px;
      height:310px;
      border-radius:50%;
      background:radial-gradient(circle,rgba(255,47,134,.48),transparent 68%);
      filter:blur(3px);
    }
    .hero-main:after{
      content:"";
      position:absolute;
      inset:auto 24px 24px auto;
      width:170px;
      height:170px;
      border:1px solid rgba(255,177,61,.24);
      border-radius:34px;
      transform:rotate(12deg);
      opacity:.55;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(255,47,134,.15);
      border:1px solid rgba(255,47,134,.36);
      color:#ffe8f2;
      font-size:13px;
      font-weight:900;
      box-shadow:0 0 24px rgba(255,47,134,.18);
    }
    .pulse-dot{
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--success);
      box-shadow:0 0 0 6px rgba(109,255,180,.12),0 0 18px rgba(109,255,180,.8);
      animation:pulse 1.6s infinite;
    }
    @keyframes pulse{
      0%,100%{transform:scale(1);opacity:1}
      50%{transform:scale(.76);opacity:.68}
    }
    h1{
      margin:22px 0 16px;
      font-size:clamp(34px,5.1vw,66px);
      line-height:1.06;
      letter-spacing:-.06em;
      font-weight:1000;
      max-width:880px;
    }
    .lead{
      color:var(--muted);
      font-size:clamp(16px,1.6vw,19px);
      max-width:760px;
    }
    .hero-actions,.cta-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:26px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      min-height:48px;
      padding:0 18px;
      border-radius:16px;
      border:1px solid transparent;
      font-weight:950;
      letter-spacing:.01em;
      transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease,background .22s ease,filter .22s ease;
    }
    .btn-primary{
      color:#fff;
      background:linear-gradient(135deg,var(--primary),#ff5b3d 54%,var(--amber));
      box-shadow:0 14px 34px rgba(255,47,134,.32),0 0 0 1px rgba(255,255,255,.1) inset;
    }
    .btn-primary:hover,.btn-primary:focus-visible{
      transform:translateY(-2px);
      filter:brightness(1.08);
      box-shadow:0 18px 44px rgba(255,47,134,.44),0 0 0 5px rgba(255,47,134,.14);
    }
    .btn-ghost{
      color:#fff;
      background:rgba(255,255,255,.07);
      border-color:rgba(255,255,255,.16);
    }
    .btn-ghost:hover,.btn-ghost:focus-visible{
      transform:translateY(-2px);
      border-color:rgba(105,245,255,.5);
      box-shadow:0 0 28px rgba(105,245,255,.15);
      background:rgba(255,255,255,.105);
    }
    .hero-side{
      display:grid;
      grid-template-rows:1fr 1fr auto;
      gap:18px;
    }
    .bento-card{
      padding:22px;
      overflow:hidden;
      position:relative;
    }
    .bento-card:hover,.entry-card:hover,.content-card:hover,.recommend-box:hover{
      transform:translateY(-3px);
      border-color:rgba(255,47,134,.42);
      box-shadow:0 22px 60px rgba(255,47,134,.16),var(--shadow-soft);
    }
    .bento-card,.entry-card,.content-card,.recommend-box{transition:.24s ease}
    .status-badge,.tag{
      display:inline-flex;
      align-items:center;
      gap:6px;
      border-radius:999px;
      padding:6px 10px;
      font-size:12px;
      font-weight:950;
      white-space:nowrap;
    }
    .status-hot{background:rgba(255,177,61,.16);color:#ffdca2;border:1px solid rgba(255,177,61,.36)}
    .status-live{background:rgba(255,47,134,.16);color:#ffd7e8;border:1px solid rgba(255,47,134,.42)}
    .status-cool{background:rgba(105,245,255,.12);color:#c9fbff;border:1px solid rgba(105,245,255,.34)}
    .tag{background:rgba(255,255,255,.075);color:rgba(255,255,255,.78);border:1px solid rgba(255,255,255,.12)}
    .tag.active,.tag:hover{
      color:#fff;
      border-color:rgba(255,47,134,.52);
      background:rgba(255,47,134,.16);
    }
    .meter{
      height:10px;
      border-radius:999px;
      background:rgba(255,255,255,.09);
      overflow:hidden;
    }
    .meter span{
      display:block;
      height:100%;
      border-radius:999px;
      background:linear-gradient(90deg,var(--primary),var(--amber));
      box-shadow:0 0 18px rgba(255,47,134,.5);
    }
    .cta-strip{
      padding:16px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      background:linear-gradient(135deg,rgba(255,47,134,.18),rgba(255,177,61,.1));
    }

    .section-head{
      display:grid;
      grid-template-columns:minmax(0,1fr) auto;
      gap:24px;
      align-items:end;
      margin-bottom:24px;
    }
    .section-kicker{
      color:var(--amber);
      font-size:13px;
      font-weight:950;
      letter-spacing:.12em;
    }
    .section-title{
      margin-top:7px;
      font-size:clamp(25px,3vw,42px);
      line-height:1.16;
      font-weight:1000;
      letter-spacing:-.04em;
    }
    .section-desc{
      color:var(--muted);
      margin-top:10px;
      max-width:760px;
    }

    .filter-bar{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-bottom:18px;
    }
    .entry-grid{
      display:grid;
      grid-template-columns:repeat(12,1fr);
      gap:16px;
    }
    .entry-card{
      grid-column:span 4;
      padding:22px;
      min-height:270px;
      position:relative;
      overflow:hidden;
    }
    .entry-card.featured{
      grid-column:span 8;
      display:grid;
      grid-template-columns:1fr .78fr;
      gap:20px;
      background:
        radial-gradient(circle at 88% 18%,rgba(255,47,134,.24),transparent 34%),
        linear-gradient(180deg,rgba(255,255,255,.115),rgba(255,255,255,.05));
      border-color:rgba(255,47,134,.32);
    }
    .entry-card:before{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(135deg,rgba(255,255,255,.07),transparent 36%);
      pointer-events:none;
      opacity:.7;
    }
    .entry-card > *{position:relative}
    .entry-title{
      font-size:20px;
      line-height:1.28;
      font-weight:1000;
      margin-top:16px;
    }
    .entry-desc{
      color:var(--muted);
      font-size:14px;
      margin-top:10px;
    }
    .mini-list{
      display:grid;
      gap:10px;
      margin-top:18px;
      color:rgba(255,255,255,.76);
      font-size:14px;
    }
    .mini-list li{
      display:flex;
      gap:9px;
      align-items:flex-start;
    }
    .mini-list li:before{
      content:"";
      width:7px;
      height:7px;
      border-radius:50%;
      background:var(--cyan);
      box-shadow:0 0 14px rgba(105,245,255,.75);
      flex:0 0 auto;
      margin-top:9px;
    }
    .data-tile{
      border:1px solid rgba(255,255,255,.12);
      border-radius:18px;
      padding:15px;
      background:rgba(0,0,0,.18);
    }
    .data-num{
      font-size:30px;
      line-height:1;
      font-weight:1000;
      background:linear-gradient(135deg,#fff,var(--amber));
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
    }

    .route-wrap{
      display:grid;
      grid-template-columns:.82fr 1.18fr;
      gap:18px;
      align-items:start;
    }
    .filter-panel{
      padding:24px;
      position:sticky;
      top:96px;
    }
    .route-list{
      display:grid;
      gap:14px;
    }
    .route-item{
      display:grid;
      grid-template-columns:auto 1fr auto;
      gap:16px;
      align-items:center;
      padding:18px;
      border-radius:20px;
      border:1px solid rgba(255,255,255,.12);
      background:rgba(255,255,255,.06);
      transition:.22s ease;
    }
    .route-item:hover{
      border-color:rgba(255,177,61,.42);
      background:rgba(255,255,255,.085);
      transform:translateX(3px);
      box-shadow:0 16px 38px rgba(255,177,61,.1);
    }
    .route-no{
      width:44px;
      height:44px;
      border-radius:15px;
      display:grid;
      place-items:center;
      font-weight:1000;
      color:#fff;
      background:linear-gradient(135deg,var(--primary),var(--primary-2));
      box-shadow:0 0 24px rgba(255,47,134,.25);
    }

    .recommend-box{
      padding:28px;
      overflow:hidden;
      position:relative;
      background:
        linear-gradient(90deg,rgba(255,47,134,.16),rgba(255,177,61,.09)),
        rgba(255,255,255,.06);
    }
    .recommend-box:after{
      content:"";
      position:absolute;
      right:-70px;
      bottom:-80px;
      width:230px;
      height:230px;
      border-radius:50%;
      background:radial-gradient(circle,rgba(255,177,61,.26),transparent 70%);
      pointer-events:none;
    }

    .form-grid{
      display:grid;
      grid-template-columns:1fr .9fr;
      gap:18px;
      align-items:stretch;
    }
    .form-card{
      padding:26px;
    }
    .field-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:14px;
      margin-top:18px;
    }
    .field{
      display:grid;
      gap:8px;
    }
    .field.full{grid-column:1 / -1}
    .field label{
      color:rgba(255,255,255,.78);
      font-size:13px;
      font-weight:900;
    }
    .field input,.field textarea{
      width:100%;
      border-radius:15px;
      border:1px solid rgba(255,255,255,.14);
      background:rgba(0,0,0,.22);
      color:#fff;
      padding:14px 14px;
      transition:.22s ease;
    }
    .field textarea{min-height:118px;resize:vertical}
    .field input::placeholder,.field textarea::placeholder{color:rgba(255,255,255,.36)}
    .field input:focus,.field textarea:focus{
      border-color:rgba(255,47,134,.62);
      box-shadow:0 0 0 4px rgba(255,47,134,.12),0 0 24px rgba(255,47,134,.13);
      background:rgba(0,0,0,.32);
    }

    .faq-list{
      display:grid;
      gap:12px;
    }
    .faq-item{
      padding:0;
      overflow:hidden;
    }
    .faq-q{
      width:100%;
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:16px;
      padding:18px 20px;
      color:#fff;
      background:transparent;
      border:0;
      text-align:left;
      font-weight:950;
    }
    .faq-q span:first-child{display:flex;align-items:center;gap:10px}
    .faq-index{
      width:28px;
      height:28px;
      border-radius:10px;
      display:grid;
      place-items:center;
      background:rgba(255,47,134,.16);
      border:1px solid rgba(255,47,134,.36);
      color:#ffd7e8;
      font-size:12px;
    }
    .faq-a{
      display:none;
      padding:0 20px 18px 58px;
      color:var(--muted);
      font-size:14px;
    }
    .faq-item.open{
      border-color:rgba(255,47,134,.36);
      box-shadow:0 18px 44px rgba(255,47,134,.12);
    }
    .faq-item.open .faq-a{display:block}
    .faq-toggle{
      color:var(--amber);
      transition:.22s ease;
    }
    .faq-item.open .faq-toggle{transform:rotate(45deg)}

    .footer{
      border-top:1px solid rgba(255,255,255,.11);
      background:
        radial-gradient(circle at 18% 0%,rgba(255,47,134,.12),transparent 30%),
        rgba(0,0,0,.24);
    }
    .footer a{
      color:rgba(255,255,255,.66);
      transition:.22s ease;
    }
    .footer a:hover,.footer a:focus-visible{
      color:#fff;
      text-shadow:0 0 18px rgba(255,47,134,.45);
    }

    .sr-focus:focus-visible{
      outline:3px solid rgba(105,245,255,.7);
      outline-offset:3px;
    }

    @media (max-width:1024px){
      .bento-hero,.route-wrap,.form-grid{grid-template-columns:1fr}
      .hero-side{grid-template-columns:1fr 1fr;grid-template-rows:auto}
      .cta-strip{grid-column:1 / -1}
      .entry-card,.entry-card.featured{grid-column:span 6}
      .entry-card.featured{grid-template-columns:1fr}
      .filter-panel{position:relative;top:auto}
    }
    @media (max-width:768px){
      .menu-btn{display:grid;place-items:center}
      .section-shell{width:min(100% - 28px,var(--container))}
      .nav-wrap{min-height:66px}
      .page-hero{padding-top:34px}
      .hero-main{min-height:auto;padding:25px}
      .hero-side{grid-template-columns:1fr}
      .stage-section{padding:46px 0}
      .section-head{grid-template-columns:1fr}
      .entry-grid{grid-template-columns:1fr}
      .entry-card,.entry-card.featured{grid-column:1}
      .route-item{grid-template-columns:auto 1fr}
      .route-item .btn{grid-column:1 / -1;width:100%}
      .field-grid{grid-template-columns:1fr}
      .cta-strip{align-items:flex-start;flex-direction:column}
      .cta-strip .btn{width:100%}
    }
    @media (max-width:520px){
      h1{font-size:34px;letter-spacing:-.045em}
      .lead{font-size:15px}
      .hero-actions,.cta-actions{flex-direction:column}
      .btn{width:100%;min-height:50px}
      .bento-card,.content-card,.filter-panel,.form-card,.recommend-box{padding:20px}
      .route-item{padding:15px}
      .faq-q{padding:16px}
      .faq-a{padding-left:16px}
      .brand-text{max-width:230px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
    }
