/* roulang page: index */
:root{
      --bg:#0b0d0f;
      --bg-2:#111518;
      --panel:#171c20;
      --panel-2:#1d2429;
      --panel-3:#222a30;
      --text:#f4f7f6;
      --muted:#a7b2b0;
      --soft:#dce5e2;
      --line:rgba(220,229,226,.12);
      --line-strong:rgba(73,243,214,.28);
      --brand:#35f2d0;
      --brand-2:#80ffbc;
      --amber:#f6b75d;
      --silver:#b9c3c7;
      --danger:#ff746d;
      --shadow:0 18px 50px rgba(0,0,0,.34);
      --shadow-soft:0 12px 30px rgba(0,0,0,.22);
      --radius:22px;
      --radius-sm:14px;
      --radius-lg:34px;
      --container:1240px;
      --ease:all .22s ease;
    }

    *{box-sizing:border-box;margin:0;padding:0}
    html{scroll-behavior:smooth}
    body{
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei",Arial,sans-serif;
      line-height:1.65;
      color:var(--text);
      background:
        radial-gradient(circle at 12% 8%, rgba(53,242,208,.13), transparent 32%),
        radial-gradient(circle at 90% 18%, rgba(246,183,93,.09), transparent 28%),
        linear-gradient(180deg,#080a0c 0%, var(--bg) 42%, #0e1114 100%);
      overflow-x:hidden;
    }
    body::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
      background-size:42px 42px;
      mask-image:linear-gradient(to bottom, rgba(0,0,0,.7), transparent 78%);
      z-index:-2;
    }
    a{color:inherit;text-decoration:none}
    img{display:block;max-width:100%;height:auto}
    button,input{font:inherit}
    button{border:0;cursor:pointer}
    ::selection{background:rgba(53,242,208,.24);color:#fff}

    .container{
      width:min(calc(100% - 40px), var(--container));
      margin:0 auto;
    }
    .skip-link{
      position:absolute;
      left:-999px;
      top:12px;
      background:var(--brand);
      color:#06201c;
      padding:10px 14px;
      border-radius:10px;
      z-index:999;
    }
    .skip-link:focus{left:12px;outline:3px solid rgba(255,255,255,.35)}

    .site-header{
      position:sticky;
      top:0;
      z-index:100;
      backdrop-filter:blur(18px);
      background:rgba(8,10,12,.82);
      border-bottom:1px solid var(--line);
    }
    .nav-wrap{
      height:76px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:24px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:max-content;
    }
    .brand-mark{
      width:42px;
      height:42px;
      border-radius:14px;
      display:grid;
      place-items:center;
      color:#061d19;
      font-weight:900;
      letter-spacing:-1px;
      background:linear-gradient(135deg,var(--brand),var(--brand-2));
      box-shadow:0 0 0 6px rgba(53,242,208,.08), 0 12px 28px rgba(53,242,208,.22);
    }
    .brand-text{
      display:flex;
      flex-direction:column;
      line-height:1.12;
    }
    .brand-text strong{
      font-size:17px;
      letter-spacing:.2px;
      color:#fff;
    }
    .brand-text span{
      font-size:12px;
      color:var(--muted);
      margin-top:4px;
    }
    .main-nav{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      padding:6px;
      border:1px solid var(--line);
      border-radius:999px;
      background:rgba(255,255,255,.035);
    }
    .main-nav a{
      padding:10px 18px;
      border-radius:999px;
      color:var(--muted);
      font-size:14px;
      transition:var(--ease);
    }
    .main-nav a:hover,
    .main-nav a:focus{
      color:#fff;
      background:rgba(255,255,255,.07);
      outline:none;
    }
    .main-nav a.active{
      color:#061d19;
      background:linear-gradient(135deg,var(--brand),var(--brand-2));
      font-weight:700;
    }
    .nav-action{
      display:flex;
      align-items:center;
      gap:12px;
    }
    .nav-note{
      color:var(--muted);
      font-size:13px;
      border-left:1px solid var(--line);
      padding-left:14px;
      white-space:nowrap;
    }
    .menu-toggle{
      display:none;
      width:44px;
      height:44px;
      border-radius:14px;
      background:var(--panel);
      border:1px solid var(--line);
      color:#fff;
      transition:var(--ease);
    }
    .menu-toggle:hover{border-color:var(--line-strong);box-shadow:0 0 0 4px rgba(53,242,208,.08)}

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      min-height:46px;
      padding:12px 20px;
      border-radius:999px;
      font-weight:750;
      letter-spacing:.2px;
      transition:var(--ease);
      border:1px solid transparent;
      user-select:none;
      white-space:nowrap;
    }
    .btn-primary{
      color:#06201c;
      background:linear-gradient(135deg,var(--brand),var(--brand-2));
      box-shadow:0 14px 34px rgba(53,242,208,.18);
    }
    .btn-primary:hover{
      transform:translateY(-2px);
      box-shadow:0 18px 46px rgba(53,242,208,.27);
    }
    .btn-secondary{
      color:#fff;
      background:rgba(255,255,255,.055);
      border-color:var(--line);
    }
    .btn-secondary:hover{
      border-color:var(--line-strong);
      background:rgba(53,242,208,.08);
      transform:translateY(-2px);
    }
    .btn-ghost{
      min-height:40px;
      padding:9px 14px;
      color:var(--brand);
      background:rgba(53,242,208,.08);
      border-color:rgba(53,242,208,.16);
    }
    .btn-ghost:hover{
      background:rgba(53,242,208,.14);
      border-color:rgba(53,242,208,.34);
    }
    .btn:focus-visible,
    .filter-input:focus-visible,
    .faq-question:focus-visible{
      outline:3px solid rgba(53,242,208,.28);
      outline-offset:3px;
    }

    .section{
      padding:86px 0;
      position:relative;
    }
    .section-tight{padding:54px 0}
    .section-head{
      display:flex;
      align-items:end;
      justify-content:space-between;
      gap:26px;
      margin-bottom:34px;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--brand);
      font-size:13px;
      font-weight:800;
      letter-spacing:.08em;
      text-transform:uppercase;
      margin-bottom:12px;
    }
    .eyebrow::before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--brand);
      box-shadow:0 0 18px rgba(53,242,208,.8);
    }
    h1,h2,h3{line-height:1.16;letter-spacing:-.03em}
    h1{
      font-size:clamp(38px,6vw,76px);
      max-width:980px;
    }
    h2{
      font-size:clamp(28px,3.6vw,46px);
      max-width:760px;
    }
    h3{font-size:22px}
    .lead{
      color:var(--soft);
      font-size:18px;
      max-width:760px;
    }
    .muted{color:var(--muted)}
    .badge-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.055);
      border:1px solid var(--line);
      color:var(--soft);
      font-size:13px;
    }
    .badge strong{color:#fff}
    .badge.hot{
      color:#241403;
      border-color:rgba(246,183,93,.42);
      background:linear-gradient(135deg,rgba(246,183,93,.95),rgba(255,220,154,.85));
    }

    .hero{
      min-height:760px;
      display:flex;
      align-items:center;
      padding:96px 0 70px;
      background:
        linear-gradient(90deg, rgba(8,10,12,.96) 0%, rgba(8,10,12,.72) 52%, rgba(8,10,12,.88) 100%),
        url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
      border-bottom:1px solid var(--line);
      position:relative;
      overflow:hidden;
    }
    .hero::after{
      content:"";
      position:absolute;
      right:-160px;
      bottom:-220px;
      width:520px;
      height:520px;
      border-radius:50%;
      background:radial-gradient(circle,rgba(53,242,208,.18),transparent 66%);
      pointer-events:none;
    }
    .hero-grid{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:1.06fr .94fr;
      gap:48px;
      align-items:center;
    }
    .hero-copy .lead{
      margin-top:22px;
      font-size:19px;
      color:#d7e2df;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:14px;
      margin-top:34px;
    }
    .trust-strip{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:12px;
      margin-top:38px;
      max-width:840px;
    }
    .trust-item{
      padding:14px 15px;
      border:1px solid var(--line);
      border-radius:18px;
      background:rgba(17,21,24,.76);
      box-shadow:var(--shadow-soft);
    }
    .trust-item span{
      display:block;
      color:var(--brand);
      font-size:12px;
      font-weight:800;
      margin-bottom:4px;
    }
    .trust-item b{
      display:block;
      font-size:15px;
      color:#fff;
    }
    .hero-visual{
      position:relative;
    }
    .showcase{
      border-radius:var(--radius-lg);
      overflow:hidden;
      background:var(--panel);
      border:1px solid rgba(255,255,255,.12);
      box-shadow:var(--shadow);
      transform:rotate(1.2deg);
    }
    .showcase img{
      width:100%;
      height:420px;
      object-fit:cover;
      filter:saturate(.96) contrast(1.05);
    }
    .showcase-info{
      padding:22px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      background:linear-gradient(180deg,var(--panel-2),var(--panel));
    }
    .showcase-info strong{font-size:20px}
    .showcase-info p{color:var(--muted);font-size:14px;margin-top:4px}
    .floating-panel{
      position:absolute;
      left:-24px;
      bottom:62px;
      max-width:292px;
      padding:18px;
      border-radius:22px;
      background:#111619;
      border:1px solid var(--line-strong);
      box-shadow:0 20px 48px rgba(0,0,0,.42);
    }
    .floating-panel .status{
      display:flex;
      align-items:center;
      gap:10px;
      margin-bottom:10px;
      color:#fff;
      font-weight:800;
    }
    .status-dot{
      width:10px;height:10px;border-radius:50%;
      background:var(--brand);
      box-shadow:0 0 18px rgba(53,242,208,.9);
    }
    .floating-panel p{color:var(--muted);font-size:14px}

    .entry-band{
      margin-top:-42px;
      position:relative;
      z-index:3;
    }
    .entry-card{
      display:grid;
      grid-template-columns:1.2fr .8fr;
      gap:22px;
      padding:24px;
      border-radius:28px;
      background:linear-gradient(135deg,#171c20,#111518);
      border:1px solid var(--line);
      box-shadow:var(--shadow);
    }
    .entry-search{
      display:flex;
      align-items:center;
      gap:12px;
      padding:8px;
      border-radius:999px;
      background:#0c0f11;
      border:1px solid var(--line);
    }
    .filter-input{
      flex:1;
      min-width:0;
      border:0;
      outline:0;
      color:#fff;
      background:transparent;
      padding:0 10px;
    }
    .filter-input::placeholder{color:#7f8b89}
    .entry-tags{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      align-items:center;
      justify-content:flex-end;
    }

    .feature-layout{
      display:grid;
      grid-template-columns:.86fr 1.14fr;
      gap:24px;
      align-items:stretch;
    }
    .feature-intro{
      padding:34px;
      border-radius:var(--radius-lg);
      background:
        linear-gradient(180deg,rgba(53,242,208,.09),rgba(255,255,255,.035)),
        var(--panel);
      border:1px solid var(--line);
      min-height:420px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .feature-intro p{margin-top:16px;color:var(--muted)}
    .feature-stack{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:18px;
    }
    .feature-card{
      padding:24px;
      border-radius:var(--radius);
      background:var(--panel);
      border:1px solid var(--line);
      transition:var(--ease);
      min-height:198px;
    }
    .feature-card:nth-child(2),
    .feature-card:nth-child(3){background:var(--panel-2)}
    .feature-card:hover{
      transform:translateY(-4px);
      border-color:var(--line-strong);
      box-shadow:0 16px 36px rgba(0,0,0,.25);
    }
    .icon{
      width:46px;
      height:46px;
      border-radius:16px;
      display:grid;
      place-items:center;
      margin-bottom:18px;
      color:#06201c;
      background:linear-gradient(135deg,var(--brand),var(--brand-2));
      font-weight:900;
    }
    .feature-card p{color:var(--muted);margin-top:10px}
    .arrow-text{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--brand);
      font-weight:800;
      margin-top:18px;
    }

    .content-mosaic{
      display:grid;
      grid-template-columns:1.22fr .78fr;
      gap:22px;
    }
    .cover-card{
      position:relative;
      min-height:430px;
      overflow:hidden;
      border-radius:var(--radius-lg);
      border:1px solid var(--line);
      background:var(--panel);
      box-shadow:var(--shadow-soft);
    }
    .cover-card img{
      width:100%;
      height:100%;
      object-fit:cover;
      position:absolute;
      inset:0;
    }
    .cover-card::after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg,rgba(0,0,0,.08),rgba(0,0,0,.82));
    }
    .cover-content{
      position:absolute;
      left:0;
      right:0;
      bottom:0;
      z-index:1;
      padding:30px;
    }
    .cover-content h3{font-size:30px;max-width:620px}
    .cover-content p{color:#d5dfdc;margin-top:12px;max-width:700px}
    .side-list{
      display:grid;
      gap:16px;
    }
    .mini-card{
      display:grid;
      grid-template-columns:132px 1fr;
      gap:16px;
      padding:14px;
      border-radius:24px;
      background:var(--panel);
      border:1px solid var(--line);
      transition:var(--ease);
    }
    .mini-card:hover{
      transform:translateX(4px);
      border-color:var(--line-strong);
      background:var(--panel-2);
    }
    .mini-card img{
      width:132px;
      height:118px;
      object-fit:cover;
      border-radius:18px;
    }
    .mini-card h3{font-size:18px;margin-top:8px}
    .mini-card p{font-size:14px;color:var(--muted);margin-top:6px}
    .meta{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:14px;
      color:var(--muted);
      font-size:12px;
    }
    .meta span{
      padding:5px 8px;
      border-radius:999px;
      background:rgba(255,255,255,.06);
      border:1px solid var(--line);
    }

    .process{
      background:
        linear-gradient(180deg,rgba(255,255,255,.025),rgba(255,255,255,.01)),
        #0c0f11;
      border-top:1px solid var(--line);
      border-bottom:1px solid var(--line);
    }
    .steps{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:16px;
      counter-reset:step;
    }
    .step{
      position:relative;
      padding:26px;
      border-radius:var(--radius);
      background:var(--panel);
      border:1px solid var(--line);
      min-height:210px;
      transition:var(--ease);
      counter-increment:step;
    }
    .step:hover{
      transform:translateY(-3px);
      border-color:rgba(246,183,93,.32);
    }
    .step::before{
      content:"0" counter(step);
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:42px;
      height:42px;
      border-radius:14px;
      background:rgba(246,183,93,.14);
      color:var(--amber);
      font-weight:900;
      margin-bottom:18px;
    }
    .step p{color:var(--muted);margin-top:10px}

    .proof-grid{
      display:grid;
      grid-template-columns:1fr 1fr 1fr;
      gap:18px;
    }
    .proof{
      padding:26px;
      border-radius:var(--radius);
      background:linear-gradient(180deg,var(--panel-2),var(--panel));
      border:1px solid var(--line);
    }
    .proof strong{
      display:block;
      font-size:34px;
      line-height:1;
      color:#fff;
      margin-bottom:12px;
      letter-spacing:-.04em;
    }
    .proof span{color:var(--brand)}
    .proof p{color:var(--muted)}

    .split-panel{
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:24px;
      align-items:center;
      padding:28px;
      border-radius:var(--radius-lg);
      background:
        linear-gradient(135deg,rgba(53,242,208,.08),rgba(246,183,93,.05)),
        var(--panel);
      border:1px solid var(--line);
      overflow:hidden;
    }
    .split-panel img{
      width:100%;
      height:390px;
      object-fit:cover;
      border-radius:26px;
      border:1px solid var(--line);
    }
    .check-list{
      list-style:none;
      margin-top:24px;
      display:grid;
      gap:14px;
    }
    .check-list li{
      display:flex;
      gap:12px;
      color:var(--soft);
    }
    .check-list li::before{
      content:"✓";
      flex:0 0 24px;
      width:24px;
      height:24px;
      border-radius:50%;
      display:grid;
      place-items:center;
      color:#05231e;
      background:var(--brand);
      font-weight:900;
      margin-top:2px;
    }

    .faq-wrap{
      display:grid;
      grid-template-columns:.78fr 1.22fr;
      gap:28px;
      align-items:start;
    }
    .faq-list{
      display:grid;
      gap:12px;
    }
    .faq-item{
      border-radius:20px;
      background:var(--panel);
      border:1px solid var(--line);
      overflow:hidden;
      transition:var(--ease);
    }
    .faq-item.open{border-color:var(--line-strong);background:var(--panel-2)}
    .faq-question{
      width:100%;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      padding:20px 22px;
      color:#fff;
      background:transparent;
      text-align:left;
      font-weight:800;
    }
    .faq-question .plus{
      width:30px;
      height:30px;
      border-radius:50%;
      display:grid;
      place-items:center;
      background:rgba(255,255,255,.06);
      color:var(--brand);
      transition:var(--ease);
      flex:0 0 auto;
    }
    .faq-item.open .plus{transform:rotate(45deg);background:rgba(53,242,208,.14)}
    .faq-answer{
      max-height:0;
      overflow:hidden;
      transition:max-height .25s ease;
    }
    .faq-answer p{
      padding:0 22px 20px;
      color:var(--muted);
    }

    .cta{
      padding:0 0 88px;
    }
    .cta-card{
      position:relative;
      overflow:hidden;
      padding:44px;
      border-radius:34px;
      background:
        linear-gradient(90deg,rgba(8,10,12,.94),rgba(8,10,12,.78)),
        url('/assets/images/backpic/back-2.webp') center/cover no-repeat;
      border:1px solid var(--line-strong);
      box-shadow:var(--shadow);
      display:grid;
      grid-template-columns:1fr auto;
      align-items:center;
      gap:28px;
    }
    .cta-card h2{max-width:780px}
    .cta-card p{margin-top:14px;color:var(--soft);max-width:760px}

    .site-footer{
      border-top:1px solid var(--line);
      background:#080a0c;
      padding:46px 0 26px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.15fr .85fr .8fr;
      gap:30px;
      align-items:start;
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:12px;
      margin-bottom:16px;
    }
    .footer-brand strong{font-size:18px}
    .footer-text{
      color:var(--muted);
      max-width:520px;
      font-size:14px;
    }
    .footer-col h3{
      font-size:15px;
      margin-bottom:14px;
      color:#fff;
      letter-spacing:0;
    }
    .footer-links{
      list-style:none;
      display:grid;
      gap:10px;
    }
    .footer-links a{
      color:var(--muted);
      font-size:14px;
      transition:var(--ease);
    }
    .footer-links a:hover{color:var(--brand)}
    .copyright{
      margin-top:34px;
      padding-top:20px;
      border-top:1px solid var(--line);
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      color:#7e8987;
      font-size:13px;
    }

    @media (max-width:1024px){
      .nav-note{display:none}
      .hero-grid,
      .feature-layout,
      .content-mosaic,
      .split-panel,
      .faq-wrap{
        grid-template-columns:1fr;
      }
      .hero{min-height:auto}
      .hero-visual{max-width:720px}
      .floating-panel{left:18px}
      .trust-strip,.steps{grid-template-columns:repeat(2,1fr)}
      .entry-card{grid-template-columns:1fr}
      .entry-tags{justify-content:flex-start}
      .proof-grid{grid-template-columns:1fr 1fr}
      .cta-card{grid-template-columns:1fr}
    }

    @media (max-width:768px){
      .container{width:min(calc(100% - 28px), var(--container))}
      .nav-wrap{height:68px}
      .brand-text span{display:none}
      .main-nav{
        position:fixed;
        top:78px;
        left:14px;
        right:14px;
        display:none;
        flex-direction:column;
        align-items:stretch;
        border-radius:22px;
        padding:10px;
        background:#101417;
        box-shadow:var(--shadow);
      }
      .main-nav.open{display:flex}
      .main-nav a{text-align:center;border-radius:16px}
      .menu-toggle{display:grid;place-items:center}
      .nav-action .btn{display:none}
      .section{padding:62px 0}
      .section-head{align-items:flex-start;flex-direction:column}
      .hero{
        padding:74px 0 52px;
        background:
          linear-gradient(180deg,rgba(8,10,12,.94),rgba(8,10,12,.78)),
          url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
      }
      .hero-copy .lead{font-size:16px}
      .hero-actions{width:100%}
      .hero-actions .btn{flex:1;min-width:180px}
      .trust-strip{grid-template-columns:1fr 1fr}
      .showcase{transform:none}
      .showcase img{height:300px}
      .floating-panel{position:relative;left:auto;bottom:auto;margin-top:14px;max-width:none}
      .entry-search{border-radius:20px;align-items:stretch;flex-direction:column;padding:12px}
      .entry-search .btn{width:100%}
      .feature-stack{grid-template-columns:1fr}
      .mini-card{grid-template-columns:112px 1fr}
      .mini-card img{width:112px;height:112px}
      .steps,.proof-grid{grid-template-columns:1fr}
      .split-panel img{height:280px}
      .cta-card{padding:30px}
      .footer-grid{grid-template-columns:1fr}
    }

    @media (max-width:520px){
      h1{font-size:36px}
      h2{font-size:28px}
      .brand-text strong{font-size:15px}
      .hero-actions{flex-direction:column}
      .hero-actions .btn{width:100%}
      .trust-strip{grid-template-columns:1fr}
      .entry-card{padding:18px;border-radius:24px}
      .cover-card{min-height:390px}
      .cover-content{padding:22px}
      .cover-content h3{font-size:24px}
      .mini-card{grid-template-columns:1fr}
      .mini-card img{width:100%;height:180px}
      .badge-row{gap:8px}
      .badge{font-size:12px}
      .footer-brand .brand-mark{width:38px;height:38px}
      .copyright{flex-direction:column}
    }

/* roulang page: category1 */
:root{
      --bg:#0b1017;
      --bg-2:#101725;
      --panel:#111824;
      --panel-2:#151f2d;
      --line:rgba(255,255,255,.09);
      --line-2:rgba(255,255,255,.14);
      --text:#ecf2ff;
      --muted:#a6b0c3;
      --soft:#7f8aa3;
      --primary:#2ee6d3;
      --primary-2:#1fbcae;
      --accent:#f1b45b;
      --danger:#ff7d6b;
      --shadow:0 18px 44px rgba(0,0,0,.34);
      --shadow-soft:0 10px 28px rgba(0,0,0,.22);
      --radius:20px;
      --radius-sm:14px;
      --radius-lg:28px;
      --container:1240px;
      --gap:clamp(16px,2vw,28px);
      --section:clamp(46px,6vw,88px);
      --header-h:78px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      min-height:100vh;
      background:
        radial-gradient(1200px 700px at 20% 0%, rgba(46,230,211,.12), transparent 50%),
        radial-gradient(800px 500px at 92% 16%, rgba(241,180,91,.08), transparent 48%),
        linear-gradient(180deg, #0a0e14 0%, #0b1017 100%);
      color:var(--text);
      font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","Noto Sans CJK SC",sans-serif;
      line-height:1.7;
      overflow-x:hidden;
    }
    body::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      background:
        linear-gradient(120deg, rgba(255,255,255,.018) 0 1px, transparent 1px 100%),
        linear-gradient(20deg, rgba(255,255,255,.014) 0 1px, transparent 1px 100%);
      background-size:34px 34px, 46px 46px;
      opacity:.26;
      mask-image:linear-gradient(180deg, rgba(0,0,0,.38), rgba(0,0,0,0) 70%);
    }
    img{max-width:100%;display:block}
    a{color:inherit;text-decoration:none}
    button,input{font:inherit}
    button{
      border:0;
      background:none;
      color:inherit;
      cursor:pointer;
    }
    input{
      appearance:none;
      border:0;
      outline:none;
    }
    ::selection{background:rgba(46,230,211,.26);color:#fff}
    .container{
      width:min(var(--container), calc(100% - 32px));
      margin:0 auto;
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:60;
      background:rgba(10,14,21,.94);
      border-bottom:1px solid rgba(255,255,255,.08);
    }
    .header-inner{
      height:var(--header-h);
      display:flex;
      align-items:center;
      gap:18px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:0;
      flex:0 0 auto;
    }
    .brand-mark{
      width:44px;
      height:44px;
      border-radius:16px;
      display:grid;
      place-items:center;
      color:#081018;
      background:linear-gradient(135deg, var(--primary) 0%, #9af3b2 100%);
      box-shadow:0 10px 28px rgba(46,230,211,.24);
      font-weight:900;
      letter-spacing:.08em;
    }
    .brand-text{
      display:flex;
      flex-direction:column;
      gap:1px;
      min-width:0;
    }
    .brand-text strong{
      font-size:15px;
      letter-spacing:.02em;
      white-space:nowrap;
    }
    .brand-text span{
      font-size:12px;
      color:var(--muted);
      white-space:nowrap;
    }
    .nav-toggle{
      display:none;
      align-items:center;
      justify-content:center;
      width:46px;
      height:46px;
      margin-left:auto;
      border:1px solid var(--line);
      border-radius:14px;
      background:rgba(255,255,255,.03);
      color:var(--text);
    }
    .nav-wrap{
      margin-left:auto;
      display:flex;
      align-items:center;
      gap:18px;
    }
    .main-nav{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .main-nav a{
      position:relative;
      padding:11px 15px;
      border-radius:999px;
      color:var(--muted);
      border:1px solid transparent;
      transition:transform .2s ease, color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
      white-space:nowrap;
      font-weight:600;
      letter-spacing:.01em;
    }
    .main-nav a:hover,
    .main-nav a:focus-visible{
      color:var(--text);
      background:rgba(255,255,255,.04);
      border-color:var(--line);
      transform:translateY(-1px);
      outline:none;
    }
    .main-nav a.active{
      color:#061016;
      background:linear-gradient(135deg, var(--primary), #9df0b2);
      box-shadow:0 10px 26px rgba(46,230,211,.2);
    }
    .main-nav a.active::after{
      content:"";
      position:absolute;
      inset:-1px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.22);
      pointer-events:none;
    }

    main{position:relative}
    .hero{
      position:relative;
      padding:30px 0 26px;
      overflow:hidden;
    }
    .hero::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(180deg, rgba(10,14,21,.36), rgba(10,14,21,.92)),
        url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
      opacity:.98;
      filter:saturate(1.02);
    }
    .hero::after{
      content:"";
      position:absolute;
      inset:auto 0 0;
      height:1px;
      background:linear-gradient(90deg, transparent, rgba(46,230,211,.42), transparent);
    }
    .hero-grid{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:clamp(18px,3vw,34px);
      align-items:center;
      min-height:clamp(460px, 72vh, 620px);
      padding:20px 0 8px;
    }
    .crumb{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.12);
      color:#d7e2f7;
      background:rgba(8,12,17,.54);
      font-size:13px;
      letter-spacing:.02em;
      margin-bottom:16px;
    }
    .crumb .dot{
      width:6px;
      height:6px;
      border-radius:50%;
      background:var(--primary);
      box-shadow:0 0 0 6px rgba(46,230,211,.12);
    }
    .hero-copy h1{
      margin:0;
      font-size:clamp(34px, 4.3vw, 58px);
      line-height:1.08;
      letter-spacing:-.03em;
      max-width:11em;
    }
    .hero-copy .lead{
      margin:18px 0 0;
      max-width:660px;
      color:#d4dceb;
      font-size:clamp(15px, 1.65vw, 18px);
    }
    .hero-tags{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin:22px 0 0;
    }
    .pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      min-height:38px;
      padding:0 14px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.1);
      background:rgba(255,255,255,.04);
      color:#eaf0fb;
      font-size:13px;
      white-space:nowrap;
    }
    .pill::before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--primary);
      box-shadow:0 0 0 5px rgba(46,230,211,.12);
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:28px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      min-height:48px;
      padding:0 18px;
      border-radius:15px;
      border:1px solid transparent;
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease, background-color .2s ease, color .2s ease;
      font-weight:700;
      letter-spacing:.01em;
    }
    .btn:hover,
    .btn:focus-visible{
      transform:translateY(-1px);
      outline:none;
    }
    .btn-primary{
      color:#081016;
      background:linear-gradient(135deg, var(--primary) 0%, #93f1b2 100%);
      box-shadow:0 12px 30px rgba(46,230,211,.24);
    }
    .btn-primary:hover,
    .btn-primary:focus-visible{
      box-shadow:0 16px 36px rgba(46,230,211,.3);
    }
    .btn-secondary{
      color:var(--text);
      border-color:var(--line);
      background:rgba(255,255,255,.03);
    }
    .btn-secondary:hover,
    .btn-secondary:focus-visible{
      border-color:rgba(46,230,211,.4);
      box-shadow:0 12px 28px rgba(0,0,0,.18);
    }

    .hero-visual{
      display:grid;
      gap:16px;
      justify-items:stretch;
    }
    .visual-card{
      position:relative;
      border-radius:var(--radius-lg);
      overflow:hidden;
      background:var(--panel);
      border:1px solid rgba(255,255,255,.09);
      box-shadow:var(--shadow);
    }
    .visual-card.large{
      min-height:420px;
      isolation:isolate;
    }
    .visual-card.large img{
      width:100%;
      height:100%;
      object-fit:cover;
      min-height:420px;
      filter:saturate(1.04) contrast(1.02);
    }
    .visual-card.large::after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg, rgba(10,14,21,.08), rgba(10,14,21,.68));
    }
    .visual-badge{
      position:absolute;
      top:18px;
      left:18px;
      z-index:2;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(8,14,19,.72);
      border:1px solid rgba(255,255,255,.12);
      color:#edf5ff;
      font-size:12px;
      letter-spacing:.02em;
    }
    .visual-note{
      position:absolute;
      z-index:2;
      right:18px;
      bottom:18px;
      left:18px;
      display:grid;
      grid-template-columns:1fr auto;
      gap:12px;
      align-items:end;
      padding:14px 16px;
      border-radius:18px;
      background:linear-gradient(180deg, rgba(8,12,17,.52), rgba(8,12,17,.84));
      border:1px solid rgba(255,255,255,.11);
    }
    .visual-note strong{
      display:block;
      font-size:16px;
      margin-bottom:4px;
    }
    .visual-note p{
      margin:0;
      color:var(--muted);
      font-size:13px;
    }
    .visual-chip{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(46,230,211,.12);
      color:#dffff8;
      border:1px solid rgba(46,230,211,.22);
      font-size:12px;
      white-space:nowrap;
    }
    .visual-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
    }
    .mini-stat{
      padding:14px 14px 13px;
      border-radius:18px;
      background:rgba(255,255,255,.04);
      border:1px solid rgba(255,255,255,.09);
      box-shadow:var(--shadow-soft);
    }
    .mini-stat strong{
      display:block;
      font-size:15px;
      margin-bottom:4px;
    }
    .mini-stat span{
      color:var(--muted);
      font-size:12px;
      line-height:1.55;
    }

    .trust-strip{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:12px;
      margin-top:8px;
      padding:0 0 16px;
    }
    .trust-item{
      display:flex;
      align-items:center;
      gap:10px;
      padding:13px 16px;
      border-radius:18px;
      border:1px solid rgba(255,255,255,.08);
      background:rgba(9,13,19,.68);
      color:#dfe8f5;
      box-shadow:var(--shadow-soft);
      font-size:14px;
    }
    .trust-item::before{
      content:"";
      width:10px;
      height:10px;
      border-radius:50%;
      background:var(--primary);
      box-shadow:0 0 0 6px rgba(46,230,211,.12);
      flex:0 0 auto;
    }

    .section{
      padding:var(--section) 0;
      position:relative;
    }
    .panel{
      background:
        linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01)),
        radial-gradient(900px 380px at 14% 0%, rgba(46,230,211,.05), transparent 65%);
      border-top:1px solid rgba(255,255,255,.04);
      border-bottom:1px solid rgba(255,255,255,.04);
    }
    .section-head{
      display:flex;
      justify-content:space-between;
      gap:18px;
      align-items:end;
      margin-bottom:24px;
    }
    .eyebrow{
      margin:0 0 10px;
      color:var(--primary);
      font-size:13px;
      letter-spacing:.14em;
      text-transform:uppercase;
      font-weight:800;
    }
    .section-head h2,
    .cta-copy h2{
      margin:0;
      font-size:clamp(26px, 3vw, 40px);
      line-height:1.16;
      letter-spacing:-.02em;
    }
    .section-desc{
      margin:0;
      max-width:480px;
      color:var(--muted);
      font-size:15px;
      line-height:1.75;
    }

    .feature-layout{
      display:grid;
      grid-template-columns:320px 1fr;
      gap:20px;
      align-items:start;
    }
    .filter-panel,
    .signal-panel,
    .step-card,
    .faq-item,
    .cta-box{
      background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
      border:1px solid rgba(255,255,255,.08);
      border-radius:var(--radius);
      box-shadow:var(--shadow-soft);
    }
    .filter-panel{
      padding:18px;
      position:sticky;
      top:96px;
    }
    .filter-title{
      margin:0 0 10px;
      font-size:16px;
    }
    .filter-sub{
      margin:0 0 16px;
      color:var(--muted);
      font-size:13px;
      line-height:1.7;
    }
    .chip-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .chip{
      min-height:40px;
      padding:0 14px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.1);
      background:rgba(255,255,255,.03);
      color:var(--text);
      font-size:13px;
      font-weight:600;
      transition:background-color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease, color .2s ease;
    }
    .chip:hover,
    .chip:focus-visible{
      transform:translateY(-1px);
      border-color:rgba(46,230,211,.3);
      outline:none;
    }
    .chip.active{
      background:linear-gradient(135deg, rgba(46,230,211,.18), rgba(46,230,211,.08));
      border-color:rgba(46,230,211,.38);
      color:#eafffb;
      box-shadow:0 12px 24px rgba(46,230,211,.08);
    }
    .search-box{
      margin-top:14px;
      position:relative;
    }
    .search-box input{
      width:100%;
      min-height:46px;
      padding:0 16px;
      border-radius:15px;
      border:1px solid rgba(255,255,255,.1);
      background:#0d1420;
      color:var(--text);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.04);
    }
    .search-box input::placeholder{color:#77839a}
    .search-box input:focus{
      border-color:rgba(46,230,211,.42);
      box-shadow:0 0 0 3px rgba(46,230,211,.12);
    }
    .search-note{
      margin:10px 0 0;
      font-size:12px;
      color:var(--soft);
    }

    .signal-panel{
      padding:18px;
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:14px;
      min-height:100%;
    }
    .signal-card{
      padding:16px;
      border-radius:18px;
      background:rgba(7,11,16,.5);
      border:1px solid rgba(255,255,255,.08);
    }
    .signal-card .icon{
      width:42px;
      height:42px;
      border-radius:14px;
      display:grid;
      place-items:center;
      margin-bottom:12px;
      background:rgba(46,230,211,.12);
      color:var(--primary);
    }
    .signal-card strong{
      display:block;
      margin-bottom:6px;
      font-size:15px;
    }
    .signal-card p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.7;
    }

    .section-grid{
      display:grid;
      grid-template-columns:1.3fr 1fr 1fr;
      gap:16px;
      align-items:stretch;
    }
    .entry-card{
      display:flex;
      flex-direction:column;
      overflow:hidden;
      border-radius:var(--radius);
      background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
      border:1px solid rgba(255,255,255,.08);
      box-shadow:var(--shadow-soft);
      transition:transform .22s ease, border-color .22s ease, box-shadow .22s ease;
      min-height:100%;
    }
    .entry-card:hover{
      transform:translateY(-2px);
      border-color:rgba(46,230,211,.24);
      box-shadow:0 16px 36px rgba(0,0,0,.28);
    }
    .entry-card.featured{
      grid-column:span 2;
      grid-row:span 2;
    }
    .entry-thumb{
      position:relative;
      aspect-ratio:16/9;
      overflow:hidden;
      background:#0e1520;
    }
    .entry-card.featured .entry-thumb{
      aspect-ratio:16/10;
    }
    .entry-thumb img{
      width:100%;
      height:100%;
      object-fit:cover;
      transition:transform .5s ease;
    }
    .entry-card:hover .entry-thumb img{
      transform:scale(1.03);
    }
    .entry-thumb::after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg, rgba(9,13,19,.1), rgba(9,13,19,.62));
      pointer-events:none;
    }
    .entry-labels{
      position:absolute;
      left:14px;
      top:14px;
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      z-index:2;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:28px;
      padding:0 10px;
      border-radius:999px;
      background:rgba(8,12,17,.7);
      border:1px solid rgba(255,255,255,.12);
      color:#edf4ff;
      font-size:12px;
      white-space:nowrap;
    }
    .tag.hot{
      background:rgba(241,180,91,.14);
      border-color:rgba(241,180,91,.22);
      color:#ffe7bf;
    }
    .entry-body{
      padding:18px;
      display:grid;
      gap:12px;
      flex:1;
    }
    .entry-meta{
      display:flex;
      flex-wrap:wrap;
      gap:10px 12px;
      color:var(--muted);
      font-size:12px;
    }
    .entry-title{
      margin:0;
      font-size:20px;
      line-height:1.24;
      letter-spacing:-.01em;
    }
    .entry-desc{
      margin:0;
      color:#c6d0e2;
      font-size:14px;
      line-height:1.75;
    }
    .entry-list{
      margin:0;
      padding:0;
      list-style:none;
      display:grid;
      gap:8px;
    }
    .entry-list li{
      position:relative;
      padding-left:18px;
      color:#d8e2f1;
      font-size:13px;
      line-height:1.65;
    }
    .entry-list li::before{
      content:"";
      position:absolute;
      left:0;
      top:.62em;
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--primary);
      box-shadow:0 0 0 4px rgba(46,230,211,.12);
    }
    .entry-actions{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      margin-top:auto;
    }
    .btn-sm{
      min-height:40px;
      padding:0 14px;
      border-radius:13px;
      font-size:13px;
    }
    .btn-light{
      color:#edf4ff;
      border:1px solid rgba(255,255,255,.11);
      background:rgba(255,255,255,.03);
    }
    .btn-light:hover,
    .btn-light:focus-visible{
      border-color:rgba(46,230,211,.35);
      background:rgba(46,230,211,.08);
    }

    .empty-state{
      display:none;
      padding:28px;
      border-radius:var(--radius);
      border:1px dashed rgba(255,255,255,.14);
      background:rgba(255,255,255,.02);
      color:var(--muted);
      text-align:center;
    }
    .empty-state.show{display:block}

    .flow-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:16px;
    }
    .step-card{
      padding:18px;
      position:relative;
      overflow:hidden;
    }
    .step-index{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:42px;
      height:42px;
      border-radius:14px;
      background:linear-gradient(135deg, rgba(46,230,211,.2), rgba(46,230,211,.08));
      border:1px solid rgba(46,230,211,.2);
      color:#e7fffb;
      font-weight:800;
      margin-bottom:14px;
    }
    .step-card h3{
      margin:0 0 8px;
      font-size:17px;
      line-height:1.28;
    }
    .step-card p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.72;
    }

    .faq-list{
      display:grid;
      gap:12px;
    }
    .faq-item{
      overflow:hidden;
    }
    .faq-item summary{
      list-style:none;
      cursor:pointer;
      padding:18px 20px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      font-weight:700;
      color:var(--text);
    }
    .faq-item summary::-webkit-details-marker{display:none}
    .faq-item summary::after{
      content:"+";
      width:28px;
      height:28px;
      display:grid;
      place-items:center;
      border-radius:999px;
      background:rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.08);
      color:#dfe8f5;
      flex:0 0 auto;
      transition:transform .2s ease, background-color .2s ease;
    }
    .faq-item[open] summary::after{
      content:"–";
      background:rgba(46,230,211,.12);
      transform:rotate(0deg);
      color:#eafffb;
    }
    .faq-content{
      padding:0 20px 18px;
      color:var(--muted);
      font-size:14px;
      line-height:1.8;
      max-width:780px;
    }

    .cta{
      padding:0 0 var(--section);
    }
    .cta-box{
      padding:26px;
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:20px;
      background:
        linear-gradient(135deg, rgba(46,230,211,.08), rgba(241,180,91,.05)),
        rgba(255,255,255,.04);
    }
    .cta-copy p{
      margin:14px 0 0;
      max-width:700px;
      color:var(--muted);
      line-height:1.8;
    }
    .cta-actions{
      display:flex;
      flex-wrap:wrap;
      justify-content:flex-end;
      gap:12px;
      flex:0 0 auto;
    }

    .site-footer{
      position:relative;
      padding:36px 0 22px;
      border-top:1px solid rgba(255,255,255,.06);
      background:#0a0f16;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.4fr .8fr .8fr;
      gap:24px;
      padding-bottom:24px;
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:12px;
      margin-bottom:14px;
    }
    .footer-brand .brand-mark{
      width:40px;
      height:40px;
      border-radius:14px;
      font-size:14px;
    }
    .footer-brand strong{
      font-size:18px;
    }
    .footer-text{
      margin:0;
      color:var(--muted);
      max-width:540px;
      line-height:1.8;
      font-size:14px;
    }
    .footer-col h3{
      margin:0 0 12px;
      font-size:15px;
    }
    .footer-links{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:10px;
    }
    .footer-links a{
      color:var(--muted);
      transition:color .2s ease, transform .2s ease;
    }
    .footer-links a:hover,
    .footer-links a:focus-visible{
      color:var(--text);
      transform:translateX(2px);
      outline:none;
    }
    .copyright{
      padding-top:18px;
      border-top:1px solid rgba(255,255,255,.08);
      display:flex;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
      color:#8190a6;
      font-size:13px;
    }

    .nav-open .nav-wrap{
      display:flex;
    }

    @media (max-width: 1100px){
      .hero-grid{
        grid-template-columns:1fr;
      }
      .visual-card.large{min-height:360px}
      .feature-layout{
        grid-template-columns:1fr;
      }
      .filter-panel{
        position:relative;
        top:auto;
      }
      .section-grid{
        grid-template-columns:1fr 1fr;
      }
      .entry-card.featured{
        grid-column:span 2;
      }
      .flow-grid{
        grid-template-columns:1fr 1fr;
      }
      .footer-grid{
        grid-template-columns:1fr 1fr;
      }
    }

    @media (max-width: 860px){
      .nav-toggle{display:inline-flex}
      .nav-wrap{
        display:none;
        position:absolute;
        left:16px;
        right:16px;
        top:calc(var(--header-h) - 6px);
        padding:12px;
        border-radius:18px;
        background:#0d141d;
        border:1px solid rgba(255,255,255,.1);
        box-shadow:var(--shadow);
      }
      .main-nav{
        width:100%;
        flex-direction:column;
        align-items:stretch;
      }
      .main-nav a{
        width:100%;
        text-align:center;
      }
      .header-inner{
        position:relative;
      }
      .trust-strip{
        grid-template-columns:1fr 1fr;
      }
      .signal-panel{
        grid-template-columns:1fr;
      }
      .section-head,
      .cta-box,
      .copyright{
        flex-direction:column;
        align-items:flex-start;
      }
      .section-grid{
        grid-template-columns:1fr;
      }
      .entry-card.featured{
        grid-column:auto;
        grid-row:auto;
      }
      .flow-grid{
        grid-template-columns:1fr;
      }
      .footer-grid{
        grid-template-columns:1fr;
      }
      .cta-actions{
        justify-content:flex-start;
      }
    }

    @media (max-width: 560px){
      :root{
        --header-h:72px;
      }
      .container{width:min(calc(100% - 24px), var(--container))}
      .brand-text span{display:none}
      .hero{
        padding-top:18px;
      }
      .hero-grid{
        min-height:auto;
        padding-top:8px;
      }
      .hero-copy h1{
        max-width:none;
        font-size:clamp(30px, 10vw, 42px);
      }
      .hero-actions,
      .tag-row{
        gap:10px;
      }
      .pill{
        min-height:34px;
        padding:0 12px;
        font-size:12px;
      }
      .trust-strip{
        grid-template-columns:1fr;
      }
      .visual-card.large{
        min-height:280px;
      }
      .visual-card.large img{
        min-height:280px;
      }
      .visual-note{
        grid-template-columns:1fr;
      }
      .signal-panel{
        padding:14px;
      }
      .filter-panel,
      .entry-body,
      .step-card,
      .faq-item summary,
      .faq-content,
      .cta-box{
        padding-left:16px;
        padding-right:16px;
      }
      .section{
        padding:42px 0;
      }
      .btn{
        width:100%;
      }
      .btn-sm{
        width:auto;
      }
      .entry-title{
        font-size:18px;
      }
    }
