/* roulang page: index */
:root{
      --red:#D71920;
      --red-dark:#A90F16;
      --orange:#FF7A00;
      --gold:#FFC247;
      --charcoal:#1A1614;
      --brown:#4C3328;
      --muted:#75665E;
      --cream:#FFF7EC;
      --cream-2:#FFF1DC;
      --paper:#FFFFFF;
      --line:rgba(215,25,32,.16);
      --line-strong:rgba(255,122,0,.32);
      --shadow:0 18px 46px rgba(169,15,22,.16);
      --shadow-soft:0 10px 30px rgba(100,55,30,.10);
      --radius:22px;
      --radius-sm:14px;
      --container:1200px;
      --ease:all .24s ease;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",sans-serif;
      color:var(--charcoal);
      background:
        radial-gradient(circle at 8% 4%, rgba(255,194,71,.35), transparent 28%),
        radial-gradient(circle at 90% 10%, rgba(215,25,32,.13), transparent 30%),
        linear-gradient(180deg,var(--cream),#fff 42%,var(--cream-2));
      line-height:1.78;
      font-size:16px;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    a:hover,a:focus{color:var(--red)}
    img{max-width:100%;height:auto}
    button,input,textarea,select{font-family:inherit}
    button,.button{transition:var(--ease)}
    :focus-visible{outline:3px solid rgba(255,122,0,.38);outline-offset:3px}

    .site-container{
      width:min(calc(100% - 32px),var(--container));
      margin:0 auto;
    }
    .section{
      padding:76px 0;
      position:relative;
    }
    .section.tight{padding:54px 0}
    .section-head{
      display:flex;
      justify-content:space-between;
      align-items:flex-end;
      gap:24px;
      margin-bottom:28px;
    }
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--red);
      font-weight:800;
      font-size:14px;
      letter-spacing:.03em;
      background:rgba(255,122,0,.10);
      border:1px solid var(--line-strong);
      padding:7px 12px;
      border-radius:999px;
      margin-bottom:12px;
    }
    .section h2{
      margin:0;
      font-size:clamp(28px,3.2vw,38px);
      line-height:1.22;
      letter-spacing:-.02em;
      color:var(--charcoal);
    }
    .section-desc{
      max-width:620px;
      margin:12px 0 0;
      color:var(--muted);
      font-size:17px;
    }

    .top-shell{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(255,247,236,.92);
      backdrop-filter:blur(14px);
      border-bottom:1px solid rgba(215,25,32,.12);
      box-shadow:0 8px 22px rgba(105,38,20,.06);
    }
    .title-bar{
      background:var(--charcoal);
      padding:10px 16px;
    }
    .title-bar-title{font-weight:800}
    .menu-icon:after{background:#fff;box-shadow:0 7px 0 #fff,0 14px 0 #fff}
    .top-bar{
      max-width:var(--container);
      margin:0 auto;
      padding:14px 16px;
      background:transparent;
    }
    .top-bar ul{background:transparent}
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      font-weight:900;
      letter-spacing:-.02em;
      color:var(--charcoal);
      min-width:max-content;
    }
    .brand-mark{
      width:42px;
      height:42px;
      display:grid;
      place-items:center;
      border-radius:15px;
      color:#fff;
      background:linear-gradient(135deg,var(--red),var(--orange));
      box-shadow:0 10px 26px rgba(215,25,32,.24);
      position:relative;
      overflow:hidden;
    }
    .brand-mark:before{
      content:"";
      position:absolute;
      inset:-12px;
      background:repeating-linear-gradient(135deg,rgba(255,255,255,.22) 0 2px,transparent 2px 9px);
      transform:rotate(8deg);
    }
    .brand-mark span{position:relative;font-size:16px}
    .brand-text{font-size:18px}
    .nav-menu a{
      border-radius:999px;
      padding:10px 14px!important;
      font-weight:700;
      color:#3b2a24;
    }
    .nav-menu a:hover,
    .nav-menu a.active{
      color:var(--red);
      background:rgba(215,25,32,.08);
    }
    .nav-cta{
      display:inline-flex!important;
      align-items:center;
      justify-content:center;
      gap:8px;
      color:#fff!important;
      font-weight:900!important;
      background:linear-gradient(135deg,var(--red),var(--orange))!important;
      box-shadow:0 12px 24px rgba(215,25,32,.22);
    }
    .nav-cta:hover{transform:translateY(-1px);box-shadow:0 16px 30px rgba(215,25,32,.28)}
    .mega-wrap{position:relative}
    .mega-trigger{cursor:pointer}
    .mega-panel{
      position:absolute;
      right:0;
      top:calc(100% + 14px);
      width:min(720px,calc(100vw - 32px));
      background:#fffaf1;
      border:1px solid var(--line);
      border-top:4px solid var(--orange);
      border-radius:22px;
      box-shadow:var(--shadow);
      padding:18px;
      opacity:0;
      transform:translateY(10px);
      pointer-events:none;
      transition:var(--ease);
    }
    .mega-wrap:hover .mega-panel,
    .mega-wrap.open .mega-panel{
      opacity:1;
      transform:translateY(0);
      pointer-events:auto;
    }
    .mega-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
    }
    .mega-card{
      display:block;
      padding:15px;
      border-radius:16px;
      border:1px solid rgba(215,25,32,.12);
      background:#fff;
    }
    .mega-card strong{display:block;color:var(--charcoal);font-size:15px;margin-bottom:6px}
    .mega-card span{display:block;color:var(--muted);font-size:13px;line-height:1.55}
    .mega-card:hover{
      background:#fff2df;
      border-color:rgba(215,25,32,.32);
      transform:translateY(-2px);
    }
    .mega-card:hover strong{color:var(--red)}

    .hero{
      padding:34px 0 42px;
      min-height:520px;
      display:flex;
      align-items:center;
      position:relative;
      overflow:hidden;
      background:
        linear-gradient(112deg,rgba(215,25,32,.95),rgba(255,122,0,.88) 56%,rgba(255,194,71,.76)),
        radial-gradient(circle at 72% 14%,rgba(255,255,255,.32),transparent 32%);
      color:#fff;
    }
    .hero:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(120deg,transparent 0 40%,rgba(255,255,255,.14) 40% 45%,transparent 45% 100%),
        repeating-linear-gradient(145deg,rgba(255,255,255,.10) 0 1px,transparent 1px 16px);
      opacity:.58;
    }
    .hero:after{
      content:"";
      position:absolute;
      width:760px;
      height:220px;
      border:2px solid rgba(255,255,255,.22);
      border-radius:50%;
      left:50%;
      bottom:-135px;
      transform:translateX(-50%);
    }
    .hero-inner{
      position:relative;
      z-index:1;
      width:min(calc(100% - 32px),var(--container));
      margin:0 auto;
    }
    .hero-stage{
      border:1px solid rgba(255,255,255,.22);
      border-radius:30px;
      background:rgba(26,22,20,.24);
      box-shadow:0 22px 70px rgba(80,18,12,.26);
      overflow:hidden;
    }
    .hero-topline{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:18px;
      padding:14px 18px;
      border-bottom:1px solid rgba(255,255,255,.18);
      background:rgba(26,22,20,.22);
    }
    .hero-live-badge{
      display:inline-flex;
      align-items:center;
      gap:9px;
      font-weight:900;
      background:#fff;
      color:var(--red);
      border-radius:999px;
      padding:8px 13px;
    }
    .pulse{
      width:9px;height:9px;border-radius:50%;
      background:var(--orange);
      box-shadow:0 0 0 0 rgba(255,122,0,.72);
      animation:pulse 1.8s infinite;
    }
    @keyframes pulse{
      70%{box-shadow:0 0 0 12px rgba(255,122,0,0)}
      100%{box-shadow:0 0 0 0 rgba(255,122,0,0)}
    }
    .countdown{
      display:flex;
      gap:8px;
      align-items:center;
      flex-wrap:wrap;
    }
    .countdown span{
      display:inline-grid;
      place-items:center;
      min-width:48px;
      padding:8px 10px;
      border-radius:12px;
      background:rgba(255,255,255,.16);
      border:1px solid rgba(255,255,255,.2);
      font-weight:900;
    }
    .hero-content{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:26px;
      align-items:stretch;
      padding:30px;
    }
    .hero-copy{
      min-height:350px;
      display:flex;
      flex-direction:column;
      justify-content:center;
      padding:22px 6px;
    }
    .hero h1{
      margin:0 0 16px;
      font-size:clamp(30px,4.6vw,52px);
      line-height:1.12;
      letter-spacing:-.04em;
      max-width:820px;
    }
    .hero-intro{
      margin:0 0 22px;
      max-width:740px;
      font-size:18px;
      line-height:1.86;
      color:rgba(255,255,255,.92);
    }
    .hero-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin:8px 0 20px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      min-height:46px;
      padding:13px 20px;
      border-radius:999px;
      border:1px solid transparent;
      font-weight:900;
      cursor:pointer;
      line-height:1.2;
    }
    .btn-primary{
      color:#fff;
      background:linear-gradient(135deg,var(--red),var(--orange));
      box-shadow:0 16px 30px rgba(215,25,32,.26);
    }
    .hero .btn-primary{
      color:var(--red);
      background:#fff;
      box-shadow:0 16px 34px rgba(82,18,12,.22);
    }
    .btn-secondary{
      color:var(--red);
      background:#fff8ed;
      border-color:rgba(215,25,32,.24);
    }
    .hero .btn-secondary{
      color:#fff;
      background:rgba(255,255,255,.13);
      border-color:rgba(255,255,255,.35);
    }
    .btn:hover{
      transform:translateY(-2px);
      box-shadow:0 18px 34px rgba(215,25,32,.30);
    }
    .btn:active{transform:translateY(0)}
    .hero-points{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:10px;
      max-width:760px;
    }
    .hero-point{
      padding:12px 13px;
      border-radius:16px;
      background:rgba(255,255,255,.14);
      border:1px solid rgba(255,255,255,.2);
      font-weight:800;
    }
    .hero-point small{
      display:block;
      color:rgba(255,255,255,.78);
      font-weight:700;
      margin-top:3px;
    }
    .hero-board{
      background:#fffaf1;
      color:var(--charcoal);
      border-radius:24px;
      padding:18px;
      box-shadow:inset 0 0 0 1px rgba(215,25,32,.12);
    }
    .board-title{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:14px;
      padding-bottom:12px;
      border-bottom:1px dashed rgba(215,25,32,.22);
      margin-bottom:12px;
    }
    .board-title strong{font-size:18px}
    .tag{
      display:inline-flex;
      align-items:center;
      gap:6px;
      border-radius:999px;
      padding:6px 10px;
      font-weight:800;
      font-size:13px;
      color:var(--red);
      background:rgba(215,25,32,.08);
      border:1px solid rgba(215,25,32,.14);
      white-space:nowrap;
    }
    .entry-matrix{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:12px;
    }
    .entry-card{
      padding:15px;
      border-radius:18px;
      background:#fff;
      border:1px solid rgba(215,25,32,.13);
      box-shadow:var(--shadow-soft);
    }
    .entry-card b{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      font-size:16px;
      margin-bottom:8px;
    }
    .entry-card p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.6;
    }
    .entry-card:hover{
      transform:translateY(-3px);
      border-color:rgba(215,25,32,.34);
      box-shadow:var(--shadow);
    }
    .notice-strip{
      margin-top:14px;
      padding:12px 14px;
      border-radius:16px;
      background:linear-gradient(90deg,rgba(255,194,71,.24),rgba(215,25,32,.08));
      color:#5c3322;
      font-weight:800;
      font-size:14px;
    }

    .promo-steps{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:18px;
      align-items:stretch;
    }
    .step-wide,
    .step-feature{
      position:relative;
      padding:24px;
      border-radius:var(--radius);
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow-soft);
      overflow:hidden;
      transition:var(--ease);
    }
    .step-wide:before,
    .step-feature:before,
    .deal-card:before{
      content:"";
      position:absolute;
      top:0;left:0;right:0;height:5px;
      background:linear-gradient(90deg,var(--red),var(--orange),var(--gold));
    }
    .step-wide:hover,
    .step-feature:hover,
    .deal-card:hover,
    .info-row:hover{
      transform:translateY(-4px);
      border-color:rgba(215,25,32,.32);
      box-shadow:var(--shadow);
    }
    .step-num{
      display:inline-flex;
      align-items:baseline;
      gap:6px;
      margin-bottom:14px;
      color:var(--orange);
      font-weight:950;
      font-size:34px;
      line-height:1;
    }
    .step-num small{font-size:13px;color:var(--red);letter-spacing:.06em}
    .step-wide h3,.step-feature h3,.deal-card h3{
      margin:0 0 10px;
      font-size:22px;
      line-height:1.3;
    }
    .check-list{
      margin:14px 0 0;
      padding:0;
      list-style:none;
    }
    .check-list li{
      position:relative;
      padding-left:26px;
      margin:8px 0;
      color:#5e4d45;
    }
    .check-list li:before{
      content:"✓";
      position:absolute;
      left:0;top:0;
      width:18px;height:18px;
      display:grid;place-items:center;
      border-radius:50%;
      background:rgba(255,122,0,.14);
      color:var(--red);
      font-size:12px;
      font-weight:900;
    }
    .step-feature{
      background:linear-gradient(145deg,#1A1614,#3a1712);
      color:#fff;
      grid-row:span 2;
    }
    .step-feature p,.step-feature li{color:rgba(255,255,255,.78)}
    .price-like{
      display:flex;
      align-items:flex-end;
      gap:8px;
      margin:12px 0 14px;
      color:var(--gold);
    }
    .price-like strong{
      font-size:52px;
      line-height:.95;
      letter-spacing:-.04em;
    }
    .price-like span{font-weight:800;color:#fff2d3}
    .light-link{
      display:inline-flex;
      align-items:center;
      gap:6px;
      color:var(--red);
      font-weight:900;
      margin-top:14px;
    }
    .step-feature .light-link{color:var(--gold)}
    .light-link:hover{gap:12px}

    .deals-wrap{
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:20px;
    }
    .deal-list{
      display:grid;
      gap:14px;
    }
    .deal-card{
      position:relative;
      display:grid;
      grid-template-columns:auto 1fr auto;
      gap:16px;
      align-items:center;
      padding:20px;
      border-radius:20px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow-soft);
      overflow:hidden;
      transition:var(--ease);
    }
    .deal-badge{
      width:54px;height:54px;
      border-radius:18px;
      display:grid;place-items:center;
      color:#fff;
      font-weight:950;
      background:linear-gradient(135deg,var(--red),var(--orange));
      box-shadow:0 12px 20px rgba(215,25,32,.20);
    }
    .deal-card h3{margin-bottom:5px}
    .deal-card p{margin:0;color:var(--muted);font-size:15px}
    .deal-meta{
      display:flex;
      flex-direction:column;
      align-items:flex-end;
      gap:8px;
      min-width:140px;
    }
    .deal-time{
      color:var(--orange);
      font-weight:950;
      font-size:22px;
    }
    .mini-btn{
      display:inline-flex;
      align-items:center;
      gap:6px;
      border-radius:999px;
      padding:9px 12px;
      background:rgba(215,25,32,.08);
      color:var(--red);
      font-weight:900;
      border:1px solid rgba(215,25,32,.14);
    }
    .mini-btn:hover{
      background:var(--red);
      color:#fff;
    }
    .side-recommend{
      border-radius:24px;
      background:#fff8ed;
      border:1px solid var(--line);
      padding:22px;
      box-shadow:var(--shadow-soft);
    }
    .side-recommend h3{margin:0 0 12px;font-size:23px}
    .progress-item{margin:16px 0}
    .progress-title{
      display:flex;
      justify-content:space-between;
      font-weight:900;
      margin-bottom:8px;
      color:#4b332a;
    }
    .progress{
      height:12px;
      border-radius:999px;
      background:#f2d9c0;
      overflow:hidden;
      margin:0;
    }
    .progress-meter{
      height:100%;
      border-radius:999px;
      background:linear-gradient(90deg,var(--red),var(--orange));
    }

    .scoreboard{
      background:
        linear-gradient(135deg,#1A1614,#2a1712 70%,#3b1712);
      border-radius:28px;
      padding:26px;
      color:#fff;
      box-shadow:0 24px 60px rgba(26,22,20,.24);
      border:1px solid rgba(255,122,0,.28);
      position:relative;
      overflow:hidden;
    }
    .scoreboard:before{
      content:"";
      position:absolute;
      inset:0;
      background:repeating-linear-gradient(90deg,rgba(255,255,255,.05) 0 1px,transparent 1px 12px);
      opacity:.45;
    }
    .score-grid{
      position:relative;
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
    }
    .score-item{
      padding:20px;
      border-radius:18px;
      background:rgba(255,255,255,.07);
      border:1px solid rgba(255,255,255,.12);
    }
    .score-num{
      font-size:38px;
      line-height:1;
      font-weight:950;
      background:linear-gradient(135deg,var(--gold),var(--orange));
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
      margin-bottom:8px;
    }
    .score-item p{margin:0;color:rgba(255,255,255,.75);font-size:14px}

    .news-layout{
      display:grid;
      grid-template-columns:1fr 360px;
      gap:22px;
      align-items:start;
    }
    .news-list{
      border-radius:24px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow-soft);
      overflow:hidden;
    }
    .news-row{
      display:grid;
      grid-template-columns:auto 1fr auto;
      gap:14px;
      align-items:center;
      padding:18px 20px;
      border-bottom:1px solid rgba(215,25,32,.10);
    }
    .news-row:last-child{border-bottom:0}
    .news-index{
      width:36px;height:36px;
      display:grid;place-items:center;
      border-radius:12px;
      background:rgba(255,122,0,.12);
      color:var(--red);
      font-weight:950;
    }
    .news-row h3{font-size:18px;margin:0 0 4px}
    .news-row p{margin:0;color:var(--muted);font-size:14px}
    .news-date{
      color:var(--orange);
      font-weight:900;
      white-space:nowrap;
    }
    .news-row:hover{
      background:#fff6e8;
    }
    .guide-panel{
      padding:22px;
      border-radius:24px;
      background:linear-gradient(160deg,#fff,#fff2df);
      border:1px solid var(--line);
      box-shadow:var(--shadow-soft);
    }
    .guide-panel h3{margin:0 0 12px;font-size:22px}
    .guide-list{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:12px;
    }
    .guide-list li{
      padding:13px 14px;
      border-radius:15px;
      background:#fff;
      border:1px solid rgba(215,25,32,.10);
      color:#604a42;
    }
    .guide-list strong{color:var(--red)}

    .modal-zone{
      border-radius:28px;
      background:
        linear-gradient(135deg,rgba(255,122,0,.12),rgba(215,25,32,.08)),
        #fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow-soft);
      padding:28px;
      display:grid;
      grid-template-columns:1fr auto;
      align-items:center;
      gap:24px;
    }
    .modal-zone h2{margin:0 0 10px}
    .modal-zone p{margin:0;color:var(--muted);max-width:760px}
    .reveal{
      border:0;
      border-radius:24px;
      padding:0;
      overflow:hidden;
      box-shadow:0 26px 80px rgba(26,22,20,.34);
    }
    .modal-head{
      padding:22px 24px;
      color:#fff;
      background:linear-gradient(135deg,var(--red),var(--orange));
    }
    .modal-head h3{margin:0;font-size:24px}
    .modal-body{padding:24px;background:#fffaf1}
    .close-button{color:#fff;font-size:34px}
    .lead-form label{
      color:#4b332a;
      font-weight:900;
      margin-bottom:10px;
    }
    .lead-form input,
    .lead-form textarea,
    .lead-form select{
      border-radius:14px;
      border:1px solid rgba(215,25,32,.18);
      box-shadow:none;
      min-height:46px;
      background:#fff;
    }
    .lead-form input:focus,
    .lead-form textarea:focus,
    .lead-form select:focus{
      border-color:var(--orange);
      box-shadow:0 0 0 4px rgba(255,122,0,.12);
    }
    .form-note{
      padding:12px 14px;
      border-radius:14px;
      background:#fff3df;
      color:#6a4b3d;
      font-size:14px;
      margin-top:12px;
    }

    .privacy-grid{
      display:grid;
      grid-template-columns:.95fr 1.05fr;
      gap:20px;
      align-items:stretch;
    }
    .protect-bar{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:12px;
    }
    .protect-badge{
      padding:18px;
      border-radius:18px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow-soft);
    }
    .protect-icon{
      width:42px;height:42px;
      display:grid;place-items:center;
      border-radius:15px;
      color:#fff;
      background:linear-gradient(135deg,var(--red),var(--orange));
      margin-bottom:10px;
      font-weight:950;
    }
    .protect-badge strong{display:block;margin-bottom:4px}
    .protect-badge span{color:var(--muted);font-size:14px}
    .privacy-card{
      padding:26px;
      border-radius:24px;
      background:#fff8ed;
      border:1px solid var(--line);
      box-shadow:var(--shadow-soft);
    }
    .privacy-card h3{margin:0 0 12px;font-size:24px}
    .privacy-card p{color:var(--muted);margin-bottom:14px}

    .faq-wrap{
      max-width:920px;
      margin:0 auto;
    }
    .accordion{
      background:transparent;
    }
    .accordion-item{
      margin-bottom:12px;
      border-radius:18px;
      overflow:hidden;
      border:1px solid var(--line);
      background:#fff;
      box-shadow:var(--shadow-soft);
    }
    .accordion-title{
      border:0!important;
      color:var(--charcoal);
      font-weight:900;
      font-size:17px;
      padding:18px 22px 18px 52px;
      position:relative;
    }
    .accordion-title:before{
      right:18px;
      margin-top:-9px;
      color:var(--red);
    }
    .accordion-title:after{
      content:"";
      position:absolute;
      left:22px;
      top:18px;
      width:6px;
      height:28px;
      border-radius:999px;
      background:var(--orange);
    }
    .is-active>.accordion-title,
    .accordion-title:hover{
      color:var(--red);
      background:#fff4e5;
    }
    .accordion-content{
      border:0!important;
      color:var(--muted);
      padding:0 22px 20px 52px;
      background:#fff;
      line-height:1.82;
    }

    .final-cta{
      padding:34px;
      border-radius:30px;
      color:#fff;
      background:
        linear-gradient(135deg,rgba(215,25,32,.96),rgba(255,122,0,.92)),
        radial-gradient(circle at 82% 20%,rgba(255,255,255,.28),transparent 24%);
      box-shadow:0 24px 54px rgba(215,25,32,.22);
      overflow:hidden;
      position:relative;
    }
    .final-cta:before{
      content:"";
      position:absolute;
      inset:0;
      background:repeating-linear-gradient(135deg,rgba(255,255,255,.12) 0 1px,transparent 1px 13px);
    }
    .final-cta-inner{
      position:relative;
      display:grid;
      grid-template-columns:1fr auto;
      gap:24px;
      align-items:center;
    }
    .final-cta h2{color:#fff;margin:0 0 10px}
    .final-cta p{margin:0;color:rgba(255,255,255,.86);max-width:720px}
    .final-cta .btn-secondary{
      background:#fff;
      color:var(--red);
      border-color:#fff;
    }

    .site-footer{
      margin-top:64px;
      background:linear-gradient(180deg,#1A1614,#130f0d);
      color:#fff;
      border-top:4px solid var(--orange);
      padding:44px 0 26px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr .8fr;
      gap:28px;
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:12px;
      font-weight:950;
      font-size:20px;
      margin-bottom:12px;
    }
    .footer-text{color:rgba(255,255,255,.68);margin:0;max-width:560px}
    .footer-links{
      display:grid;
      gap:9px;
    }
    .footer-links a{
      color:rgba(255,255,255,.72);
      font-weight:700;
    }
    .footer-links a:hover{color:var(--gold);padding-left:4px}
    .footer-title{
      color:#fff;
      font-weight:950;
      margin-bottom:12px;
    }
    .copyright{
      margin-top:28px;
      padding-top:20px;
      border-top:1px solid rgba(255,255,255,.10);
      color:rgba(255,255,255,.58);
      font-size:14px;
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
    }

    @media (max-width:1024px){
      .hero-content,
      .promo-steps,
      .deals-wrap,
      .news-layout,
      .privacy-grid{
        grid-template-columns:1fr;
      }
      .step-feature{grid-row:auto}
      .score-grid{grid-template-columns:repeat(2,1fr)}
      .modal-zone,
      .final-cta-inner{
        grid-template-columns:1fr;
      }
      .mega-panel{
        position:static;
        width:100%;
        margin-top:10px;
        opacity:1;
        transform:none;
        pointer-events:auto;
        display:none;
      }
      .mega-wrap.open .mega-panel{display:block}
      .mega-grid{grid-template-columns:1fr}
    }
    @media (max-width:768px){
      .top-bar{padding:10px 16px}
      .top-bar-left,.top-bar-right{width:100%}
      .nav-menu{
        padding-top:10px;
        display:grid!important;
        gap:8px;
      }
      .nav-menu a{border-radius:14px}
      .hero{
        padding:22px 0 34px;
        min-height:auto;
      }
      .hero-content{padding:20px;gap:18px}
      .hero-topline{align-items:flex-start;flex-direction:column}
      .hero-copy{min-height:auto;padding:8px 0}
      .hero-points,
      .entry-matrix,
      .protect-bar,
      .score-grid{
        grid-template-columns:1fr;
      }
      .deal-card,
      .news-row{
        grid-template-columns:1fr;
        align-items:start;
      }
      .deal-meta{
        align-items:flex-start;
        min-width:0;
      }
      .section{padding:54px 0}
      .section-head{
        display:block;
      }
      .footer-grid{grid-template-columns:1fr}
      .btn{width:100%}
      .hero-actions .btn{width:100%}
    }
    @media (max-width:520px){
      .site-container{width:min(calc(100% - 24px),var(--container))}
      .hero-stage{border-radius:22px}
      .hero-content{padding:16px}
      .countdown span{min-width:42px;padding:7px 8px}
      .section h2{font-size:27px}
      .scoreboard,.final-cta,.modal-zone{padding:20px;border-radius:22px}
      .news-date{white-space:normal}
      .brand-text{font-size:16px}
    }

/* roulang page: category2 */
:root{
      --red:#D71920;
      --red-dark:#A91518;
      --orange:#FF7A00;
      --gold:#FFC247;
      --ink:#1A1614;
      --muted:#6F625A;
      --bg:#FFF7EC;
      --bg-soft:#FFF3E0;
      --card:#FFFFFF;
      --line:rgba(215,25,32,.16);
      --line-strong:rgba(215,25,32,.34);
      --shadow:0 18px 46px rgba(151,47,21,.14);
      --shadow-hover:0 24px 64px rgba(215,25,32,.20);
      --radius:22px;
      --radius-sm:14px;
      --container:1200px;
      --focus:0 0 0 4px rgba(255,122,0,.25);
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",sans-serif;
      color:var(--ink);
      background:
        radial-gradient(circle at 10% 4%, rgba(255,194,71,.34), transparent 28%),
        radial-gradient(circle at 92% 12%, rgba(215,25,32,.16), transparent 30%),
        linear-gradient(180deg,var(--bg) 0%,#fff 42%,var(--bg-soft) 100%);
      line-height:1.8;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:.22s ease}
    a:hover{color:var(--red)}
    img{max-width:100%;height:auto;display:block}
    button,input,textarea,select{font:inherit}
    button,a,input,textarea,select{outline:none}
    button:focus-visible,a:focus-visible,input:focus-visible,textarea:focus-visible,select:focus-visible{box-shadow:var(--focus)}
    .site-container{
      width:min(calc(100% - 36px),var(--container));
      margin:0 auto;
    }
    .section{padding:82px 0}
    .section-tight{padding:58px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 13px;
      border:1px solid rgba(255,122,0,.28);
      border-radius:999px;
      background:rgba(255,247,236,.86);
      color:var(--red-dark);
      font-weight:800;
      font-size:14px;
      letter-spacing:.02em;
    }
    .eyebrow:before{
      content:"";
      width:8px;height:8px;border-radius:50%;
      background:linear-gradient(135deg,var(--red),var(--orange));
      box-shadow:0 0 0 5px rgba(255,122,0,.12);
    }
    h1,h2,h3,h4,p{margin-top:0}
    h1{
      font-size:clamp(30px,4.1vw,48px);
      line-height:1.18;
      letter-spacing:-.03em;
      margin:18px 0 18px;
      font-weight:900;
    }
    h2{
      font-size:clamp(26px,3vw,34px);
      line-height:1.25;
      letter-spacing:-.02em;
      margin:0 0 14px;
      font-weight:900;
    }
    h3{font-size:22px;line-height:1.35;font-weight:900;margin:0 0 10px}
    p{color:var(--muted)}
    .lead{font-size:17px;line-height:1.9;color:#5E514B;max-width:760px}
    .top-shell{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(255,247,236,.92);
      backdrop-filter:blur(14px);
      border-bottom:1px solid rgba(215,25,32,.14);
      box-shadow:0 10px 26px rgba(78,36,18,.06);
    }
    .title-bar{
      background:linear-gradient(135deg,var(--red),var(--orange));
      color:#fff;
      padding:12px 18px;
    }
    .title-bar-title{font-weight:900}
    .top-bar{
      width:min(calc(100% - 36px),var(--container));
      margin:0 auto;
      padding:12px 0;
      background:transparent;
    }
    .top-bar ul{background:transparent}
    .top-bar-right{display:flex;align-items:center}
    .top-bar-right .menu{align-items:center;gap:6px}
    .brand{
      display:inline-flex;
      align-items:center;
      gap:12px;
      font-weight:900;
      color:var(--ink);
      white-space:nowrap;
    }
    .brand-mark{
      width:46px;height:46px;
      display:grid;
      place-items:center;
      border-radius:15px;
      color:#fff;
      background:
        linear-gradient(135deg,var(--red),var(--orange));
      box-shadow:0 12px 24px rgba(215,25,32,.22);
      position:relative;
      overflow:hidden;
    }
    .brand-mark:after{
      content:"";
      position:absolute;
      inset:auto -12px -14px -12px;
      height:26px;
      border:2px solid rgba(255,255,255,.34);
      border-radius:50%;
    }
    .brand-mark span{position:relative;z-index:1;font-size:13px;font-weight:950}
    .brand-text{font-size:18px;letter-spacing:-.02em}
    .top-bar-right li{list-style:none}
    .top-bar-right a:not(.mega-card){
      display:inline-flex;
      align-items:center;
      min-height:42px;
      padding:10px 14px;
      border-radius:999px;
      font-weight:800;
      color:#3B302B;
    }
    .top-bar-right a:hover,
    .top-bar-right a.active{
      color:var(--red);
      background:rgba(255,122,0,.10);
    }
    .nav-cta{
      margin-left:4px;
      color:#fff !important;
      background:linear-gradient(135deg,var(--red),var(--orange)) !important;
      box-shadow:0 12px 24px rgba(215,25,32,.22);
    }
    .nav-cta:hover{transform:translateY(-1px);box-shadow:0 16px 30px rgba(215,25,32,.28)}
    .mega-wrap{position:relative}
    .mega-panel{
      position:absolute;
      right:0;
      top:calc(100% + 10px);
      width:min(620px,calc(100vw - 36px));
      background:#fff;
      border:1px solid var(--line);
      border-radius:20px;
      box-shadow:var(--shadow);
      padding:16px;
      opacity:0;
      visibility:hidden;
      transform:translateY(10px);
      transition:.22s ease;
    }
    .mega-panel:before{
      content:"";
      position:absolute;
      left:16px;right:16px;top:0;
      height:4px;
      border-radius:0 0 999px 999px;
      background:linear-gradient(90deg,var(--red),var(--orange),var(--gold));
    }
    .mega-wrap:hover .mega-panel,
    .mega-wrap.is-open .mega-panel{
      opacity:1;
      visibility:visible;
      transform:translateY(0);
    }
    .mega-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
      padding-top:8px;
    }
    .mega-card{
      display:block;
      padding:16px;
      border:1px solid rgba(215,25,32,.12);
      border-radius:16px;
      background:linear-gradient(180deg,#fff,#fff7ec);
      min-height:126px;
    }
    .mega-card strong{display:block;color:var(--ink);font-size:16px;margin-bottom:6px}
    .mega-card span{display:block;color:var(--muted);font-size:13px;line-height:1.65}
    .mega-card:hover{
      transform:translateY(-2px);
      border-color:rgba(215,25,32,.38);
      background:#fff3e0;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      min-height:48px;
      padding:13px 22px;
      border-radius:999px;
      font-weight:900;
      border:1px solid transparent;
      cursor:pointer;
      transition:.22s ease;
      line-height:1.2;
    }
    .btn-primary{
      color:#fff;
      background:linear-gradient(135deg,var(--red),var(--orange));
      box-shadow:0 16px 32px rgba(215,25,32,.24);
    }
    .btn-primary:hover{color:#fff;transform:translateY(-2px);box-shadow:0 20px 40px rgba(215,25,32,.32)}
    .btn-secondary{
      color:var(--red);
      background:rgba(255,255,255,.86);
      border-color:rgba(215,25,32,.30);
    }
    .btn-secondary:hover{background:#fff3e0;border-color:var(--red);transform:translateY(-1px)}
    .btn-light{
      background:#fff;
      color:var(--red);
      border-color:rgba(255,255,255,.55);
    }
    .btn-light:hover{background:#fff7ec;color:var(--red-dark);transform:translateY(-1px)}
    .page-hero{
      position:relative;
      overflow:hidden;
      padding:84px 0 64px;
      color:#fff;
      background:
        radial-gradient(circle at 12% 12%, rgba(255,194,71,.45), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(255,122,0,.36), transparent 30%),
        linear-gradient(135deg,#8E1013 0%,#D71920 48%,#FF7A00 100%);
    }
    .page-hero:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(120deg, transparent 0 18%, rgba(255,255,255,.13) 18% 26%, transparent 26% 48%, rgba(255,255,255,.10) 48% 56%, transparent 56%),
        repeating-linear-gradient(160deg, rgba(255,255,255,.08) 0 1px, transparent 1px 34px);
      opacity:.75;
    }
    .page-hero:after{
      content:"";
      position:absolute;
      right:-90px;
      bottom:-130px;
      width:520px;height:300px;
      border:2px solid rgba(255,255,255,.20);
      border-radius:50%;
      box-shadow:0 0 0 34px rgba(255,255,255,.05),0 0 0 78px rgba(255,255,255,.04);
    }
    .hero-inner{position:relative;z-index:1}
    .breadcrumb-bar{
      display:inline-flex;
      gap:8px;
      flex-wrap:wrap;
      align-items:center;
      padding:8px 12px;
      border:1px solid rgba(255,255,255,.22);
      border-radius:999px;
      background:rgba(26,22,20,.28);
      color:#fff7ec;
      font-size:14px;
      font-weight:800;
    }
    .breadcrumb-bar a{color:#fff}
    .breadcrumb-bar span{opacity:.72}
    .page-hero .lead{color:rgba(255,255,255,.88)}
    .hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:26px}
    .alert-strip{
      margin-top:28px;
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      align-items:center;
      padding:13px;
      border-radius:18px;
      background:rgba(26,22,20,.28);
      border:1px solid rgba(255,255,255,.18);
    }
    .alert-pill{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.14);
      color:#fff;
      font-weight:850;
      font-size:14px;
    }
    .group-panel{
      background:rgba(255,247,236,.96);
      color:var(--ink);
      border:1px solid rgba(255,255,255,.48);
      border-radius:var(--radius);
      padding:22px;
      box-shadow:0 26px 70px rgba(71,16,9,.24);
    }
    .group-panel-title{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      padding-bottom:14px;
      margin-bottom:14px;
      border-bottom:1px dashed rgba(215,25,32,.24);
      font-weight:950;
    }
    .price-mark{
      display:inline-flex;
      align-items:baseline;
      gap:3px;
      color:var(--orange);
      font-weight:950;
    }
    .price-mark b{font-size:30px;line-height:1}
    .hint-list{display:grid;gap:12px;margin:0;padding:0;list-style:none}
    .hint-list li{
      display:grid;
      grid-template-columns:42px 1fr;
      gap:12px;
      align-items:start;
      padding:13px;
      border-radius:16px;
      background:#fff;
      border:1px solid rgba(215,25,32,.12);
    }
    .hint-icon{
      width:42px;height:42px;border-radius:14px;
      display:grid;place-items:center;
      color:#fff;font-weight:950;
      background:linear-gradient(135deg,var(--red),var(--orange));
    }
    .hint-list strong{display:block;margin-bottom:3px;color:var(--ink)}
    .hint-list span{display:block;color:var(--muted);font-size:14px;line-height:1.6}
    .overview-card,.guide-card,.notice-card,.compare-card,.privacy-card{
      background:rgba(255,255,255,.92);
      border:1px solid var(--line);
      border-radius:var(--radius);
      box-shadow:var(--shadow);
    }
    .overview-card{padding:28px;position:relative;overflow:hidden}
    .overview-card:before{
      content:"";
      position:absolute;left:0;right:0;top:0;height:5px;
      background:linear-gradient(90deg,var(--red),var(--orange),var(--gold));
    }
    .tag-row{display:flex;gap:10px;flex-wrap:wrap;margin:18px 0 0}
    .tag{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:8px 11px;
      border-radius:999px;
      background:#fff3e0;
      color:var(--red-dark);
      border:1px solid rgba(255,122,0,.22);
      font-weight:850;
      font-size:14px;
    }
    .support-box{
      display:grid;
      gap:12px;
    }
    .support-item{
      display:flex;
      gap:12px;
      padding:16px;
      border-radius:18px;
      background:#fff;
      border:1px solid rgba(215,25,32,.12);
      transition:.22s ease;
    }
    .support-item:hover{transform:translateY(-2px);border-color:var(--line-strong);box-shadow:0 14px 28px rgba(215,25,32,.10)}
    .support-item .mini{
      flex:0 0 38px;
      width:38px;height:38px;border-radius:13px;
      display:grid;place-items:center;
      background:linear-gradient(135deg,rgba(215,25,32,.12),rgba(255,122,0,.18));
      color:var(--red);
      font-weight:950;
    }
    .support-item strong{display:block;line-height:1.35}
    .support-item span{display:block;color:var(--muted);font-size:14px;line-height:1.6;margin-top:3px}
    .section-head{
      display:flex;
      align-items:end;
      justify-content:space-between;
      gap:24px;
      margin-bottom:28px;
    }
    .section-head p{margin-bottom:0;max-width:620px}
    .masonry-grid{
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:18px;
      align-items:start;
    }
    .guide-card{
      padding:24px;
      min-height:260px;
      position:relative;
      overflow:hidden;
      transition:.22s ease;
    }
    .guide-card:hover{transform:translateY(-3px);border-color:var(--line-strong);box-shadow:var(--shadow-hover)}
    .guide-card.tall{min-height:340px}
    .guide-card.compact{min-height:220px}
    .guide-card:after{
      content:"";
      position:absolute;
      right:-48px;top:-48px;
      width:130px;height:130px;border-radius:38px;
      background:linear-gradient(135deg,rgba(215,25,32,.10),rgba(255,122,0,.16));
      transform:rotate(18deg);
    }
    .card-number{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-width:72px;
      height:34px;
      padding:0 12px;
      border-radius:999px;
      background:linear-gradient(135deg,var(--red),var(--orange));
      color:#fff;
      font-weight:950;
      margin-bottom:18px;
      box-shadow:0 12px 24px rgba(215,25,32,.18);
    }
    .guide-card ul{margin:14px 0 0;padding:0;list-style:none;display:grid;gap:9px}
    .guide-card li{
      position:relative;
      padding-left:22px;
      color:#5E514B;
      line-height:1.65;
    }
    .guide-card li:before{
      content:"✓";
      position:absolute;left:0;top:0;color:var(--orange);font-weight:950;
    }
    .assurance-strip{
      display:grid;
      grid-template-columns:repeat(5,1fr);
      gap:12px;
      margin-top:26px;
    }
    .assurance-badge{
      padding:16px 12px;
      text-align:center;
      border-radius:18px;
      background:#fff;
      border:1px solid rgba(215,25,32,.14);
      box-shadow:0 12px 26px rgba(151,47,21,.07);
    }
    .assurance-badge b{display:block;color:var(--red);font-size:24px;line-height:1;margin-bottom:8px}
    .assurance-badge span{display:block;color:#5E514B;font-size:14px;font-weight:800}
    .compare-wrap{
      overflow:hidden;
      border-radius:var(--radius);
      border:1px solid var(--line);
      box-shadow:var(--shadow);
      background:#fff;
    }
    .compare-row{
      display:grid;
      grid-template-columns:1.1fr 1fr 1fr 1fr;
      border-bottom:1px solid rgba(215,25,32,.10);
    }
    .compare-row:last-child{border-bottom:0}
    .compare-row.header{
      background:linear-gradient(135deg,var(--ink),#331C18);
      color:#fff;
      font-weight:950;
    }
    .compare-row > div{
      padding:18px;
      border-right:1px solid rgba(215,25,32,.10);
    }
    .compare-row.header > div{border-right-color:rgba(255,255,255,.12)}
    .compare-row > div:last-child{border-right:0}
    .compare-row strong{color:var(--red-dark)}
    .compare-row.header strong{color:#fff}
    .compare-row span{color:var(--muted);font-size:14px}
    .consult-panel{
      position:relative;
      overflow:hidden;
      border-radius:var(--radius);
      background:
        linear-gradient(135deg,rgba(26,22,20,.96),rgba(102,26,18,.96)),
        radial-gradient(circle at 90% 10%,rgba(255,122,0,.36),transparent 30%);
      color:#fff;
      padding:30px;
      box-shadow:0 24px 60px rgba(26,22,20,.20);
    }
    .consult-panel p{color:rgba(255,255,255,.78)}
    .consult-panel .tag{background:rgba(255,255,255,.10);color:#fff;border-color:rgba(255,255,255,.20)}
    .privacy-card{
      padding:28px;
      background:linear-gradient(180deg,#fff,#fff7ec);
    }
    .privacy-list{
      margin:18px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:14px;
    }
    .privacy-list li{
      padding:16px;
      border-radius:18px;
      border:1px solid rgba(215,25,32,.12);
      background:#fff;
    }
    .privacy-list strong{display:block;color:var(--ink);margin-bottom:4px}
    .privacy-list span{display:block;color:var(--muted);font-size:14px;line-height:1.65}
    .accordion{
      background:transparent;
      border:0;
    }
    .accordion-item{
      margin-bottom:12px;
      border:1px solid var(--line);
      border-radius:18px;
      overflow:hidden;
      background:#fff;
      box-shadow:0 10px 22px rgba(151,47,21,.06);
    }
    .accordion-title{
      border:0 !important;
      color:var(--ink);
      font-weight:900;
      font-size:17px;
      padding:18px 54px 18px 22px;
      position:relative;
    }
    .accordion-title:before{
      right:20px;
      color:var(--orange);
      font-weight:950;
    }
    .accordion-title:after{
      content:"";
      position:absolute;left:0;top:16px;bottom:16px;width:4px;
      border-radius:999px;
      background:linear-gradient(180deg,var(--red),var(--orange));
      opacity:.85;
    }
    .is-active>.accordion-title,
    .accordion-title:hover{color:var(--red);background:#fff7ec}
    .accordion-content{
      border:0 !important;
      color:var(--muted);
      line-height:1.8;
      padding:0 22px 20px 22px;
      background:#fff;
    }
    .cta-band{
      position:relative;
      overflow:hidden;
      border-radius:30px;
      padding:36px;
      color:#fff;
      background:
        radial-gradient(circle at 15% 25%,rgba(255,194,71,.42),transparent 26%),
        linear-gradient(135deg,var(--red),var(--orange));
      box-shadow:0 24px 60px rgba(215,25,32,.24);
    }
    .cta-band:after{
      content:"";
      position:absolute;
      right:-80px;bottom:-120px;width:360px;height:230px;
      border-radius:50%;
      border:2px solid rgba(255,255,255,.24);
      box-shadow:0 0 0 34px rgba(255,255,255,.07);
    }
    .cta-band h2,.cta-band p,.cta-band .cta-actions{position:relative;z-index:1}
    .cta-band p{color:rgba(255,255,255,.86);max-width:760px}
    .cta-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:22px}
    .site-footer{
      background:linear-gradient(180deg,#211714,#130F0E);
      color:#fff;
      padding:54px 0 22px;
      border-top:5px solid var(--orange);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.4fr .8fr .8fr;
      gap:34px;
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:12px;
      font-weight:950;
      font-size:18px;
      margin-bottom:14px;
    }
    .footer-text{color:rgba(255,255,255,.70);max-width:520px}
    .footer-title{font-weight:950;margin-bottom:12px;color:#fff3e0}
    .footer-links{display:grid;gap:9px}
    .footer-links a{color:rgba(255,255,255,.72)}
    .footer-links a:hover{color:#fff;transform:translateX(3px)}
    .copyright{
      margin-top:34px;
      padding-top:18px;
      border-top:1px solid rgba(255,255,255,.12);
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      color:rgba(255,255,255,.56);
      font-size:14px;
    }
    .reveal{
      border:0;
      border-radius:24px;
      overflow:hidden;
      padding:0;
      box-shadow:0 30px 80px rgba(26,22,20,.26);
    }
    .modal-head{
      padding:22px 26px;
      color:#fff;
      background:linear-gradient(135deg,var(--red),var(--orange));
    }
    .modal-head h3{color:#fff;margin-bottom:4px}
    .modal-head p{color:rgba(255,255,255,.84);margin-bottom:0}
    .modal-body{padding:26px;background:#fff7ec}
    .form-field label{font-weight:900;color:var(--ink);margin-bottom:6px}
    .form-field input,.form-field textarea,.form-field select{
      border:1px solid rgba(215,25,32,.18);
      border-radius:14px;
      box-shadow:none;
      min-height:48px;
      background:#fff;
    }
    .form-field textarea{min-height:104px;resize:vertical}
    .form-field input:focus,.form-field textarea:focus,.form-field select:focus{
      border-color:var(--orange);
      box-shadow:var(--focus);
    }
    .static-tip{
      padding:12px 14px;
      border-radius:14px;
      background:#fff;
      color:var(--muted);
      border:1px dashed rgba(215,25,32,.25);
      font-size:14px;
      margin:8px 0 18px;
    }
    .close-button{color:#fff}
    .close-button:hover{color:#fff3e0}
    @media (max-width:1024px){
      .assurance-strip{grid-template-columns:repeat(3,1fr)}
      .compare-row{grid-template-columns:1fr 1fr}
      .compare-row.header{display:none}
      .compare-row > div{border-bottom:1px solid rgba(215,25,32,.10)}
    }
    @media (max-width:768px){
      .top-bar{
        width:100%;
        padding:8px 18px 16px;
      }
      .top-bar,.top-bar-left,.top-bar-right{display:block}
      .top-bar-right .menu{display:grid;gap:8px;margin-top:12px}
      .top-bar-right a:not(.mega-card){width:100%;justify-content:flex-start}
      .nav-cta{margin-left:0;justify-content:center !important}
      .mega-panel{
        position:static;
        opacity:1;
        visibility:visible;
        transform:none;
        width:100%;
        margin-top:8px;
        display:none;
      }
      .mega-wrap.is-open .mega-panel{display:block}
      .mega-grid{grid-template-columns:1fr}
      .section{padding:56px 0}
      .page-hero{padding:58px 0 48px}
      .hero-actions,.cta-actions{flex-direction:column}
      .btn{width:100%}
      .section-head{display:block}
      .masonry-grid{grid-template-columns:1fr}
      .assurance-strip{grid-template-columns:repeat(2,1fr)}
      .privacy-list{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr}
    }
    @media (max-width:520px){
      .site-container{width:min(calc(100% - 24px),var(--container))}
      .brand-text{font-size:16px}
      .brand-mark{width:42px;height:42px}
      .group-panel,.overview-card,.guide-card,.privacy-card,.consult-panel,.cta-band{border-radius:18px;padding:20px}
      .alert-strip{display:grid}
      .hint-list li{grid-template-columns:1fr}
      .assurance-strip{grid-template-columns:1fr}
      .compare-row{grid-template-columns:1fr}
      .compare-row > div{border-right:0}
      .copyright{display:grid}
    }

/* roulang page: category1 */
:root{
      --red:#D71920;
      --red-dark:#A90F16;
      --orange:#FF7A00;
      --gold:#FFC247;
      --ink:#1A1614;
      --text:#3A302B;
      --muted:#766960;
      --line:rgba(215,25,32,.16);
      --line-strong:rgba(215,25,32,.28);
      --bg:#FFF7EC;
      --bg-soft:#FFF3E0;
      --white:#FFFFFF;
      --dark:#1A1614;
      --radius-sm:12px;
      --radius:18px;
      --radius-lg:26px;
      --shadow:0 18px 48px rgba(215,25,32,.14);
      --shadow-strong:0 24px 70px rgba(215,25,32,.22);
      --focus:0 0 0 4px rgba(255,122,0,.24);
      --container:1200px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 12% 8%, rgba(255,194,71,.28), transparent 30%),
        radial-gradient(circle at 88% 4%, rgba(215,25,32,.16), transparent 34%),
        linear-gradient(180deg,var(--bg) 0%,#fff 42%,var(--bg-soft) 100%);
      line-height:1.78;
      font-size:16px;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:.22s ease}
    a:hover,a:focus{color:var(--red)}
    img{max-width:100%;height:auto;display:block}
    button,input,textarea,select{font:inherit}
    button{cursor:pointer}
    :focus-visible{outline:none;box-shadow:var(--focus)}
    .site-container{
      width:min(calc(100% - 32px),var(--container));
      margin-inline:auto;
    }
    .section{padding:76px 0}
    .section-tight{padding:54px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border:1px solid var(--line-strong);
      border-radius:999px;
      background:rgba(255,255,255,.72);
      color:var(--red-dark);
      font-weight:800;
      font-size:14px;
      letter-spacing:.02em;
    }
    .eyebrow::before{
      content:"";
      width:8px;
      height:8px;
      border-radius:99px;
      background:linear-gradient(135deg,var(--red),var(--orange));
      box-shadow:0 0 0 5px rgba(255,122,0,.13);
    }
    h1,h2,h3,h4,p{margin-top:0}
    h1,h2,h3{color:var(--ink);font-weight:900;letter-spacing:-.02em;line-height:1.18}
    h1{font-size:clamp(30px,4.6vw,48px);margin-bottom:18px}
    h2{font-size:clamp(26px,3.2vw,34px);margin-bottom:14px}
    h3{font-size:clamp(20px,2.2vw,24px);margin-bottom:10px}
    p{margin-bottom:0}
    .lead{font-size:17px;color:var(--muted);line-height:1.9}
    .muted{color:var(--muted)}
    .accent{color:var(--orange)}

    .top-shell{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(255,247,236,.92);
      backdrop-filter:blur(14px);
      border-bottom:1px solid rgba(215,25,32,.13);
      box-shadow:0 10px 30px rgba(26,22,20,.04);
    }
    .title-bar{
      background:linear-gradient(135deg,var(--red-dark),var(--red));
      color:#fff;
      padding:12px 16px;
    }
    .title-bar-title{font-weight:900}
    .menu-icon::after{background:#fff;box-shadow:0 7px 0 #fff,0 14px 0 #fff}
    .top-bar{
      width:min(calc(100% - 32px),var(--container));
      margin:0 auto;
      padding:14px 0;
      background:transparent;
    }
    .top-bar ul{background:transparent}
    .brand{
      display:inline-flex;
      align-items:center;
      gap:11px;
      font-weight:950;
      color:var(--ink);
      min-height:44px;
    }
    .brand:hover{color:var(--red)}
    .brand-mark{
      width:46px;
      height:46px;
      border-radius:16px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background:
        linear-gradient(135deg,var(--red) 0%,var(--orange) 72%,var(--gold) 100%);
      color:#fff;
      box-shadow:0 12px 28px rgba(215,25,32,.25);
      position:relative;
      overflow:hidden;
      flex:0 0 auto;
    }
    .brand-mark::after{
      content:"";
      position:absolute;
      inset:7px;
      border:1px solid rgba(255,255,255,.42);
      border-radius:12px;
    }
    .brand-mark span{font-size:13px;font-weight:950;position:relative;z-index:1}
    .brand-text{font-size:18px;white-space:nowrap}
    .menu{
      align-items:center;
      gap:4px;
    }
    .menu>li{list-style:none;position:relative}
    .menu>li>a{
      border-radius:999px;
      padding:11px 15px;
      color:#3d332e;
      font-weight:800;
      line-height:1.2;
    }
    .menu>li>a:hover,
    .menu>li>a.active{
      background:#fff0de;
      color:var(--red);
      box-shadow:inset 0 0 0 1px rgba(215,25,32,.12);
    }
    .nav-cta{
      color:#fff!important;
      background:linear-gradient(135deg,var(--red),var(--orange))!important;
      box-shadow:0 12px 28px rgba(215,25,32,.22);
    }
    .nav-cta:hover{transform:translateY(-1px);box-shadow:0 16px 34px rgba(215,25,32,.28)!important}
    .mega-wrap{position:relative}
    .mega-panel{
      position:absolute;
      right:0;
      top:calc(100% + 14px);
      width:min(640px,calc(100vw - 32px));
      background:rgba(255,255,255,.98);
      border:1px solid var(--line);
      border-top:4px solid var(--orange);
      border-radius:22px;
      box-shadow:var(--shadow-strong);
      padding:18px;
      opacity:0;
      visibility:hidden;
      transform:translateY(10px);
      transition:.22s ease;
    }
    .mega-wrap:hover .mega-panel,
    .mega-wrap.is-open .mega-panel{
      opacity:1;
      visibility:visible;
      transform:translateY(0);
    }
    .mega-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
    }
    .mega-card{
      display:block;
      min-height:118px;
      padding:16px;
      border-radius:16px;
      border:1px solid rgba(215,25,32,.12);
      background:linear-gradient(180deg,#fff,#fff7ea);
      color:var(--text);
    }
    .mega-card strong{display:block;color:var(--ink);font-size:16px;margin-bottom:7px}
    .mega-card span{display:block;color:var(--muted);font-size:13px;line-height:1.65}
    .mega-card:hover{
      border-color:rgba(215,25,32,.34);
      background:#fff2df;
      transform:translateY(-2px);
    }

    .hero-category{
      position:relative;
      padding:74px 0 48px;
      overflow:hidden;
      background:
        linear-gradient(115deg,rgba(215,25,32,.10),rgba(255,122,0,.16) 55%,rgba(255,194,71,.20)),
        radial-gradient(circle at 78% 18%,rgba(255,122,0,.30),transparent 24%);
      border-bottom:1px solid rgba(215,25,32,.10);
    }
    .hero-category::before{
      content:"";
      position:absolute;
      inset:-80px -90px auto auto;
      width:430px;
      height:430px;
      border-radius:50%;
      border:34px solid rgba(215,25,32,.07);
      transform:rotate(-18deg);
    }
    .hero-category::after{
      content:"";
      position:absolute;
      left:-120px;
      bottom:-170px;
      width:520px;
      height:330px;
      border-radius:50%;
      border:24px solid rgba(255,122,0,.09);
    }
    .hero-inner{position:relative;z-index:1}
    .crumb{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      align-items:center;
      margin-bottom:18px;
      color:var(--muted);
      font-size:14px;
      font-weight:700;
    }
    .crumb a{color:var(--red-dark)}
    .crumb span{
      padding:4px 9px;
      border-radius:999px;
      background:rgba(255,255,255,.65);
      border:1px solid rgba(215,25,32,.11);
    }
    .hero-card{
      border-radius:var(--radius-lg);
      background:rgba(255,255,255,.88);
      border:1px solid rgba(215,25,32,.16);
      box-shadow:var(--shadow);
      padding:24px;
    }
    .prompt-strip{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:10px;
      margin-top:24px;
    }
    .prompt-item{
      padding:14px 13px;
      border-radius:16px;
      background:#fff;
      border:1px solid rgba(215,25,32,.12);
      font-weight:850;
      color:var(--ink);
      box-shadow:0 10px 26px rgba(215,25,32,.07);
    }
    .prompt-item small{display:block;color:var(--muted);font-weight:700;margin-top:4px;line-height:1.5}

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:46px;
      padding:12px 19px;
      border-radius:999px;
      border:1px solid transparent;
      font-weight:900;
      line-height:1.2;
      transition:.22s ease;
      user-select:none;
    }
    .btn-primary{
      color:#fff;
      background:linear-gradient(135deg,var(--red),var(--orange));
      box-shadow:0 16px 36px rgba(215,25,32,.25);
    }
    .btn-primary:hover,.btn-primary:focus{
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 22px 48px rgba(215,25,32,.32);
      filter:saturate(1.08);
    }
    .btn-secondary{
      color:var(--red-dark);
      background:#fff8ed;
      border-color:rgba(215,25,32,.24);
    }
    .btn-secondary:hover,.btn-secondary:focus{
      background:#fff0da;
      color:var(--red);
      transform:translateY(-1px);
    }
    .btn-dark{
      color:#fff;
      background:var(--ink);
      box-shadow:0 12px 28px rgba(26,22,20,.18);
    }
    .btn-dark:hover{color:#fff;background:#2a211d;transform:translateY(-1px)}
    .action-row{display:flex;flex-wrap:wrap;gap:12px;margin-top:24px}
    .tag-row{display:flex;flex-wrap:wrap;gap:10px}
    .tag{
      display:inline-flex;
      align-items:center;
      gap:6px;
      border-radius:999px;
      padding:8px 12px;
      border:1px solid rgba(215,25,32,.14);
      background:#fff7ea;
      color:var(--red-dark);
      font-size:14px;
      font-weight:850;
    }
    .tag::before{
      content:"✓";
      color:var(--orange);
      font-weight:950;
    }

    .info-card,.guide-card,.side-card,.list-card,.privacy-box{
      background:rgba(255,255,255,.92);
      border:1px solid var(--line);
      border-radius:var(--radius);
      box-shadow:var(--shadow);
    }
    .info-card{
      padding:28px;
      position:relative;
      overflow:hidden;
    }
    .info-card::before{
      content:"";
      position:absolute;
      inset:0 0 auto;
      height:5px;
      background:linear-gradient(90deg,var(--red),var(--orange),var(--gold));
    }
    .check-list{
      list-style:none;
      padding:0;
      margin:20px 0 0;
      display:grid;
      gap:12px;
    }
    .check-list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:var(--text);
    }
    .check-list li::before{
      content:"";
      width:18px;
      height:18px;
      margin-top:5px;
      border-radius:6px;
      background:linear-gradient(135deg,var(--red),var(--orange));
      box-shadow:0 7px 16px rgba(215,25,32,.18);
      flex:0 0 auto;
    }

    .filter-panel{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      padding:18px;
      background:linear-gradient(135deg,#fff,#fff1dc);
      border:1px solid rgba(215,25,32,.15);
      border-radius:22px;
      box-shadow:0 14px 42px rgba(215,25,32,.10);
    }
    .filter-title{
      color:var(--ink);
      font-weight:950;
      display:flex;
      gap:10px;
      align-items:center;
    }
    .filter-title span{
      width:34px;
      height:34px;
      border-radius:12px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      background:linear-gradient(135deg,var(--red),var(--orange));
    }

    .content-layout{
      display:grid;
      grid-template-columns:minmax(0,1fr) 330px;
      gap:22px;
      align-items:start;
    }
    .list-stack{display:grid;gap:16px}
    .list-card{
      display:grid;
      grid-template-columns:auto minmax(0,1fr) auto;
      gap:18px;
      align-items:center;
      padding:20px;
      transition:.22s ease;
      position:relative;
      overflow:hidden;
    }
    .list-card::after{
      content:"";
      position:absolute;
      inset:0 auto 0 0;
      width:4px;
      background:linear-gradient(180deg,var(--red),var(--orange));
      opacity:.82;
    }
    .list-card:hover{
      transform:translateY(-3px);
      border-color:rgba(215,25,32,.34);
      box-shadow:var(--shadow-strong);
    }
    .number-badge{
      width:58px;
      height:58px;
      border-radius:18px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background:#1A1614;
      color:var(--gold);
      font-weight:950;
      font-size:20px;
      border:1px solid rgba(255,194,71,.32);
      box-shadow:0 16px 34px rgba(26,22,20,.14);
    }
    .list-card h3{font-size:21px;margin-bottom:7px}
    .list-meta{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:12px;
    }
    .mini-tag{
      display:inline-flex;
      align-items:center;
      padding:5px 9px;
      border-radius:999px;
      background:#fff1df;
      color:var(--red-dark);
      border:1px solid rgba(215,25,32,.12);
      font-size:12px;
      font-weight:850;
    }
    .time-pill{
      background:#1A1614;
      color:#fff;
      border-color:rgba(26,22,20,.18);
    }
    .card-action{
      white-space:nowrap;
      color:var(--red-dark);
      font-weight:950;
      padding:10px 14px;
      border-radius:999px;
      background:#fff7eb;
      border:1px solid rgba(215,25,32,.18);
    }
    .list-card:hover .card-action{
      color:#fff;
      background:linear-gradient(135deg,var(--red),var(--orange));
      transform:translateX(3px);
    }

    .side-stack{display:grid;gap:16px;position:sticky;top:96px}
    .side-card{
      padding:20px;
      overflow:hidden;
      position:relative;
    }
    .side-card.dark{
      background:
        radial-gradient(circle at 90% 10%,rgba(255,122,0,.20),transparent 28%),
        linear-gradient(135deg,#1A1614,#2a1714);
      color:#fff;
      border-color:rgba(255,194,71,.22);
    }
    .side-card.dark h3,.side-card.dark p{color:#fff}
    .side-card.dark .muted{color:rgba(255,255,255,.72)}
    .side-link{
      display:flex;
      justify-content:space-between;
      gap:12px;
      padding:13px 0;
      border-bottom:1px dashed rgba(215,25,32,.17);
      font-weight:850;
    }
    .side-link:last-child{border-bottom:0}
    .side-link:hover{color:var(--red);padding-left:4px}
    .data-board{
      background:
        linear-gradient(135deg,#1A1614,#2b1715),
        radial-gradient(circle at 24% 20%,rgba(255,122,0,.22),transparent 35%);
      border-radius:26px;
      padding:24px;
      color:#fff;
      border:1px solid rgba(255,194,71,.23);
      box-shadow:0 24px 65px rgba(26,22,20,.22);
    }
    .data-board h2{color:#fff}
    .data-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
      margin-top:20px;
    }
    .data-item{
      border-radius:18px;
      padding:18px;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.13);
    }
    .data-num{
      display:block;
      font-size:34px;
      font-weight:950;
      line-height:1;
      color:var(--gold);
      margin-bottom:8px;
    }
    .data-item span:last-child{color:rgba(255,255,255,.78);font-size:14px}

    .privacy-strip{
      display:grid;
      grid-template-columns:repeat(5,1fr);
      gap:12px;
      margin-bottom:18px;
    }
    .privacy-badge{
      padding:14px 12px;
      border-radius:16px;
      background:#fff;
      border:1px solid rgba(215,25,32,.14);
      text-align:center;
      font-weight:900;
      color:var(--ink);
      box-shadow:0 10px 26px rgba(215,25,32,.07);
    }
    .privacy-badge strong{
      display:block;
      color:var(--red);
      font-size:20px;
      margin-bottom:2px;
    }
    .privacy-box{padding:26px}
    .privacy-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:16px;
      margin-top:20px;
    }
    .guide-card{
      padding:20px;
      transition:.22s ease;
    }
    .guide-card:hover{
      transform:translateY(-2px);
      border-color:rgba(215,25,32,.30);
    }
    .guide-card h3{display:flex;align-items:center;gap:10px}
    .guide-card h3 span{
      width:34px;
      height:34px;
      border-radius:12px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      background:linear-gradient(135deg,var(--red),var(--orange));
      font-size:15px;
    }

    .accordion{
      background:transparent;
      margin-top:22px;
    }
    .accordion-item{
      margin-bottom:12px;
      border:1px solid var(--line);
      border-radius:18px;
      background:#fff;
      overflow:hidden;
      box-shadow:0 12px 32px rgba(215,25,32,.08);
    }
    .accordion-title{
      border:0!important;
      color:var(--ink)!important;
      font-size:17px;
      font-weight:950;
      padding:18px 54px 18px 22px;
      background:#fff;
      position:relative;
    }
    .accordion-title::before{
      right:20px;
      color:var(--orange);
      font-size:24px;
      margin-top:-12px;
    }
    .is-active>.accordion-title{
      background:#fff1df;
      color:var(--red)!important;
      box-shadow:inset 5px 0 0 var(--orange);
    }
    .accordion-content{
      border:0!important;
      color:var(--muted);
      line-height:1.85;
      padding:0 22px 20px 27px;
      background:#fffdf9;
    }

    .cta-band{
      position:relative;
      overflow:hidden;
      border-radius:30px;
      padding:34px;
      background:
        radial-gradient(circle at 88% 15%,rgba(255,194,71,.38),transparent 26%),
        linear-gradient(135deg,var(--red-dark),var(--red) 46%,var(--orange));
      color:#fff;
      box-shadow:0 24px 70px rgba(215,25,32,.26);
    }
    .cta-band::before{
      content:"";
      position:absolute;
      width:260px;
      height:260px;
      right:-80px;
      bottom:-130px;
      border-radius:50%;
      border:24px solid rgba(255,255,255,.13);
    }
    .cta-band h2,.cta-band p{color:#fff}
    .cta-content{position:relative;z-index:1;display:flex;align-items:center;justify-content:space-between;gap:24px}
    .cta-actions{display:flex;gap:12px;flex-wrap:wrap;flex:0 0 auto}
    .cta-band .btn-secondary{
      background:#fff;
      color:var(--red-dark);
      border-color:#fff;
    }

    .reveal{
      border:0;
      border-radius:24px;
      padding:0;
      overflow:hidden;
      box-shadow:0 28px 90px rgba(26,22,20,.30);
    }
    .modal-head{
      padding:22px 26px;
      background:linear-gradient(135deg,var(--red),var(--orange));
      color:#fff;
    }
    .modal-head h2{color:#fff;font-size:25px;margin-bottom:5px}
    .modal-body{padding:24px 26px 28px;background:#fffaf2}
    label{font-weight:850;color:var(--ink);margin-bottom:12px}
    input[type="text"],input[type="tel"],textarea,select{
      border:1px solid rgba(215,25,32,.18);
      border-radius:14px;
      box-shadow:none;
      min-height:48px;
      background:#fff;
      margin-top:7px;
    }
    textarea{min-height:104px;resize:vertical}
    input:focus,textarea:focus,select:focus{
      border-color:var(--orange);
      box-shadow:var(--focus);
    }
    .form-note{
      padding:12px 14px;
      border-radius:14px;
      background:#fff0dc;
      color:var(--muted);
      border:1px solid rgba(215,25,32,.12);
      font-size:14px;
      margin:12px 0 18px;
    }
    .close-button{color:#fff;font-size:34px}
    .close-button:hover{color:#fff3d0}

    .site-footer{
      background:
        radial-gradient(circle at 18% 0%,rgba(255,122,0,.18),transparent 30%),
        linear-gradient(180deg,#231713,#140f0d);
      color:#fff;
      padding:52px 0 24px;
      border-top:4px solid var(--orange);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.3fr .7fr .7fr;
      gap:34px;
      padding-bottom:28px;
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:12px;
      font-weight:950;
      font-size:18px;
      margin-bottom:12px;
    }
    .footer-text{color:rgba(255,255,255,.72);max-width:520px}
    .footer-title{font-weight:950;margin-bottom:12px;color:var(--gold)}
    .footer-links{display:grid;gap:9px}
    .footer-links a{color:rgba(255,255,255,.76);font-weight:750}
    .footer-links a:hover{color:#fff;padding-left:4px}
    .copyright{
      border-top:1px solid rgba(255,255,255,.12);
      padding-top:18px;
      display:flex;
      flex-wrap:wrap;
      justify-content:space-between;
      gap:12px;
      color:rgba(255,255,255,.62);
      font-size:14px;
    }

    @media (max-width:1024px){
      .content-layout{grid-template-columns:1fr}
      .side-stack{position:static;grid-template-columns:1fr 1fr}
      .data-grid{grid-template-columns:repeat(2,1fr)}
      .privacy-strip{grid-template-columns:repeat(3,1fr)}
      .prompt-strip{grid-template-columns:repeat(2,1fr)}
      .cta-content{align-items:flex-start;flex-direction:column}
    }
    @media (max-width:767px){
      body{font-size:15px}
      .section{padding:52px 0}
      .section-tight{padding:40px 0}
      .top-bar{
        width:100%;
        padding:12px 16px 16px;
        display:block;
      }
      .top-bar-left,.top-bar-right{width:100%}
      .brand{margin-bottom:10px}
      .brand-text{font-size:16px}
      .menu{display:grid;width:100%;gap:8px;margin:8px 0 0}
      .menu>li>a{display:block;padding:12px 14px}
      .mega-panel{
        position:static;
        width:100%;
        opacity:1;
        visibility:visible;
        transform:none;
        display:none;
        margin-top:8px;
      }
      .mega-wrap.is-open .mega-panel{display:block}
      .mega-grid{grid-template-columns:1fr}
      .hero-category{padding:50px 0 34px}
      .hero-card{padding:20px}
      .filter-panel{align-items:flex-start}
      .list-card{
        grid-template-columns:1fr;
        gap:13px;
        padding:20px 18px;
      }
      .number-badge{width:50px;height:50px;border-radius:16px}
      .card-action{justify-self:start}
      .side-stack{grid-template-columns:1fr}
      .privacy-grid{grid-template-columns:1fr}
      .privacy-strip{grid-template-columns:1fr 1fr}
      .footer-grid{grid-template-columns:1fr}
      .cta-band{padding:26px 20px}
      .cta-actions,.action-row{width:100%}
      .btn{width:100%}
    }
    @media (max-width:520px){
      .site-container{width:min(calc(100% - 24px),var(--container))}
      h1{font-size:30px}
      .prompt-strip,.data-grid,.privacy-strip{grid-template-columns:1fr}
      .tag{width:100%;justify-content:flex-start}
      .filter-title{width:100%}
      .copyright{display:grid}
    }
