/* roulang page: index */
:root{
      --brand:#ff3d26;
      --brand-dark:#d92513;
      --orange:#ff8a00;
      --amber:#ffc247;
      --cream:#fff8ef;
      --paper:#ffffff;
      --bg:#fff4e8;
      --soft:#fff0dc;
      --text:#241713;
      --muted:#78645c;
      --line:#f2d8c3;
      --line-strong:#efb98e;
      --green:#17a46b;
      --radius-sm:10px;
      --radius:18px;
      --radius-lg:28px;
      --shadow:0 18px 50px rgba(171,61,19,.14);
      --shadow-hover:0 26px 70px rgba(171,61,19,.22);
      --container:1180px;
      --ease:all .22s ease;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei",Arial,sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 8% 6%, rgba(255,194,71,.35), transparent 28%),
        radial-gradient(circle at 92% 8%, rgba(255,61,38,.16), transparent 30%),
        linear-gradient(180deg,#fffaf3 0%,#fff4e8 42%,#fffaf4 100%);
      line-height:1.72;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    a:hover,a:focus{color:var(--brand)}
    img{max-width:100%;display:block}
    button,input{font:inherit}
    button{cursor:pointer}
    .site-container{width:min(var(--container), calc(100% - 32px));margin:0 auto}
    .skip-link{
      position:absolute;left:-999px;top:12px;background:var(--brand);color:#fff;
      padding:10px 14px;border-radius:10px;z-index:99
    }
    .skip-link:focus{left:12px}
    .top-ribbon{
      background:linear-gradient(90deg,var(--brand),var(--orange));
      color:#fff;
      font-size:14px;
      letter-spacing:.2px;
      padding:8px 0;
    }
    .ribbon-inner{display:flex;align-items:center;justify-content:center;gap:12px;white-space:nowrap;overflow:hidden}
    .ribbon-inner i{color:#fff3c4}
    .site-header{
      position:sticky;top:0;z-index:50;
      background:rgba(255,250,243,.9);
      backdrop-filter:blur(16px);
      border-bottom:1px solid rgba(239,185,142,.55);
      transition:var(--ease);
    }
    .nav-wrap{height:76px;display:flex;align-items:center;justify-content:space-between;gap:18px}
    .brand-logo{display:flex;align-items:center;gap:10px;font-weight:900;letter-spacing:-.5px;color:var(--text)}
    .logo-mark{
      width:42px;height:42px;border-radius:14px;
      display:grid;place-items:center;
      background:linear-gradient(135deg,var(--brand),var(--orange));
      color:#fff;box-shadow:0 12px 28px rgba(255,61,38,.26)
    }
    .brand-text{font-size:20px;line-height:1.1}
    .nav-links{display:flex;align-items:center;gap:10px;margin:0}
    .nav-links li{list-style:none}
    .nav-link{
      display:inline-flex;align-items:center;gap:8px;
      padding:10px 16px;border-radius:999px;
      color:#4f352c;font-weight:700;
      border:1px solid transparent;
      background:rgba(255,255,255,.56)
    }
    .nav-link:hover,.nav-link.active{
      color:var(--brand-dark);
      background:#fff;
      border-color:var(--line-strong);
      box-shadow:0 10px 24px rgba(255,138,0,.12)
    }
    .nav-actions{display:flex;align-items:center;gap:10px}
    .icon-search{
      width:42px;height:42px;border-radius:50%;
      border:1px solid var(--line);
      background:#fff;
      display:grid;place-items:center;
      color:var(--brand-dark)
    }
    .icon-search:hover{transform:translateY(-2px);box-shadow:0 12px 24px rgba(255,61,38,.14)}
    .menu-toggle{display:none;border:0;background:var(--text);color:#fff;width:44px;height:44px;border-radius:14px}
    .btn{
      display:inline-flex;align-items:center;justify-content:center;gap:9px;
      min-height:44px;padding:12px 18px;
      border-radius:999px;font-weight:900;
      border:1px solid transparent;
      transition:var(--ease);
      line-height:1;
    }
    .btn-primary{
      color:#fff;
      background:linear-gradient(135deg,var(--brand),var(--orange));
      box-shadow:0 14px 30px rgba(255,61,38,.25)
    }
    .btn-primary:hover,.btn-primary:focus{color:#fff;transform:translateY(-2px);box-shadow:0 20px 42px rgba(255,61,38,.35)}
    .btn-outline{background:#fff;color:var(--brand-dark);border-color:var(--line-strong)}
    .btn-outline:hover{transform:translateY(-2px);background:#fff7eb;border-color:var(--brand);color:var(--brand-dark)}
    .btn-ghost{background:rgba(255,255,255,.72);color:var(--text);border-color:rgba(255,255,255,.85)}
    .btn-ghost:hover{background:#fff;color:var(--brand-dark);transform:translateY(-2px)}
    .badge,.tag{
      display:inline-flex;align-items:center;gap:6px;
      border-radius:999px;font-size:13px;font-weight:900;
      padding:7px 11px;line-height:1;
    }
    .badge{background:#23140f;color:#fff}
    .badge.hot{background:linear-gradient(135deg,var(--brand),var(--orange));color:#fff}
    .tag{background:#fff3df;color:#9a3b13;border:1px solid #ffd7ad}
    .section{padding:72px 0}
    .section-head{display:flex;align-items:flex-end;justify-content:space-between;gap:24px;margin-bottom:28px}
    .section-title{margin:0;font-size:clamp(26px,3.2vw,42px);font-weight:950;line-height:1.16;letter-spacing:-1px}
    .section-desc{margin:10px 0 0;color:var(--muted);max-width:680px;font-size:16px}
    .hero{
      padding:38px 0 34px;
      position:relative;
    }
    .promo-stage{
      border-radius:var(--radius-lg);
      overflow:hidden;
      background:
        linear-gradient(120deg, rgba(255,61,38,.98) 0%, rgba(255,138,0,.95) 52%, rgba(255,194,71,.92) 100%);
      min-height:520px;
      position:relative;
      box-shadow:var(--shadow);
      border:1px solid rgba(255,255,255,.7);
    }
    .promo-stage:before{
      content:"";
      position:absolute;inset:0;
      background:
        radial-gradient(circle at 18% 20%, rgba(255,255,255,.26), transparent 24%),
        radial-gradient(circle at 82% 70%, rgba(36,23,19,.16), transparent 30%),
        repeating-linear-gradient(135deg, rgba(255,255,255,.11) 0 1px, transparent 1px 16px);
      pointer-events:none;
    }
    .hero-inner{
      position:relative;z-index:2;
      min-height:520px;
      display:grid;grid-template-columns:1.05fr .95fr;
      align-items:stretch;
    }
    .hero-copy{padding:58px 54px;display:flex;flex-direction:column;justify-content:center;color:#fff}
    .hero-kicker{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:18px}
    .hero-kicker .tag{background:rgba(255,255,255,.18);border-color:rgba(255,255,255,.32);color:#fff}
    h1{
      margin:0;
      font-size:clamp(38px,6.2vw,76px);
      line-height:.98;
      font-weight:1000;
      letter-spacing:-2.4px;
      text-shadow:0 10px 28px rgba(83,22,9,.22);
    }
    .hero-intro{
      margin:24px 0 0;
      max-width:650px;
      font-size:18px;
      color:rgba(255,255,255,.92);
      line-height:1.9;
    }
    .hero-cta{display:flex;flex-wrap:wrap;gap:13px;margin-top:30px}
    .hero-cta .btn-primary{background:#241713;color:#fff;box-shadow:0 16px 34px rgba(36,23,19,.28)}
    .hero-cta .btn-outline{background:rgba(255,255,255,.95);border-color:rgba(255,255,255,.9)}
    .hero-points{display:flex;flex-wrap:wrap;gap:12px;margin-top:28px}
    .point{
      min-width:128px;
      padding:12px 14px;
      border-radius:16px;
      background:rgba(255,255,255,.15);
      border:1px solid rgba(255,255,255,.25);
    }
    .point strong{display:block;font-size:26px;line-height:1;color:#fff}
    .point span{font-size:13px;color:rgba(255,255,255,.82)}
    .hero-board{
      padding:42px 42px 42px 0;
      display:grid;align-content:center;gap:16px;
    }
    .cover-card{
      background:rgba(255,255,255,.94);
      border-radius:28px;
      padding:22px;
      color:var(--text);
      box-shadow:0 24px 70px rgba(74,25,8,.22);
      transform:rotate(1deg);
    }
    .burst{
      width:118px;height:118px;border-radius:50%;
      background:#241713;color:#fff;
      display:grid;place-items:center;text-align:center;
      font-weight:1000;line-height:1.12;
      border:6px solid #ffe6b3;
      box-shadow:0 18px 40px rgba(36,23,19,.22);
      position:absolute;right:28px;top:28px;
      transform:rotate(12deg);
    }
    .price-row{display:flex;align-items:flex-end;justify-content:space-between;gap:16px;border-bottom:1px dashed #efc19d;padding-bottom:18px}
    .price{
      font-size:56px;
      font-weight:1000;
      letter-spacing:-2px;
      color:var(--brand);
      line-height:.9;
    }
    .price small{font-size:18px;color:var(--muted);letter-spacing:0}
    .cover-title{font-size:28px;font-weight:950;margin:18px 0 8px;line-height:1.18}
    .cover-desc{color:var(--muted);margin:0 0 18px}
    .mini-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px}
    .mini-box{padding:14px;border-radius:16px;background:#fff7eb;border:1px solid #ffe0bd}
    .mini-box b{display:block;color:var(--brand-dark);font-size:19px}
    .mini-box span{font-size:13px;color:var(--muted)}
    .guarantee-strip{
      margin-top:18px;
      display:grid;grid-template-columns:repeat(4,1fr);
      gap:10px;
    }
    .guarantee-item{
      display:flex;align-items:center;justify-content:center;gap:7px;
      background:#fff;border:1px solid var(--line);
      border-radius:999px;
      padding:10px 8px;
      font-size:13px;font-weight:800;color:#5b3d32;
    }
    .guarantee-item i{color:var(--brand)}
    .countdown{
      padding:0 0 42px;
    }
    .count-bar{
      display:grid;grid-template-columns:auto 1fr auto;
      align-items:center;gap:22px;
      background:#241713;color:#fff;
      border-radius:24px;
      padding:18px 20px;
      box-shadow:var(--shadow);
    }
    .count-title{font-weight:950;font-size:18px;display:flex;align-items:center;gap:10px}
    .timer{display:flex;align-items:center;gap:10px;justify-content:center}
    .time-box{
      min-width:72px;
      text-align:center;
      background:linear-gradient(180deg,#fff,#ffe6c7);
      color:var(--brand-dark);
      border-radius:16px;
      padding:9px 10px;
      box-shadow:inset 0 -2px 0 rgba(255,138,0,.18)
    }
    .time-box strong{display:block;font-size:28px;line-height:1;font-weight:1000}
    .time-box span{font-size:12px;color:#8b4c25;font-weight:800}
    .count-status{display:flex;align-items:center;gap:8px;color:#ffe0b4;font-weight:800}
    .play-card,.reward-card,.task-card,.entry-card,.seed-card,.update-card,.faq-item,.news-panel,.news-side{
      background:rgba(255,255,255,.88);
      border:1px solid rgba(239,185,142,.72);
      border-radius:var(--radius);
      box-shadow:0 12px 34px rgba(171,61,19,.08);
      transition:var(--ease);
    }
    .play-card:hover,.reward-card:hover,.task-card:hover,.entry-card:hover,.seed-card:hover,.update-card:hover{
      transform:translateY(-5px);
      box-shadow:var(--shadow-hover);
      border-color:var(--brand)
    }
    .play-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:20px}
    .play-feature{padding:28px;min-height:320px;background:linear-gradient(135deg,#fff,#fff0dc)}
    .play-feature .big-no{font-size:72px;font-weight:1000;color:rgba(255,61,38,.14);line-height:1}
    .play-feature h3{font-size:32px;font-weight:950;margin:6px 0 10px}
    .play-feature p{color:var(--muted);margin:0 0 22px}
    .play-stack{display:grid;gap:16px}
    .play-card:not(.play-feature){padding:22px;display:flex;gap:16px;align-items:flex-start}
    .icon-bubble{
      flex:0 0 48px;width:48px;height:48px;border-radius:16px;
      background:linear-gradient(135deg,var(--brand),var(--orange));
      color:#fff;display:grid;place-items:center;
      box-shadow:0 10px 22px rgba(255,61,38,.2)
    }
    .play-card h3{font-size:20px;font-weight:950;margin:0 0 6px}
    .play-card p{margin:0;color:var(--muted)}
    .reward-wrap{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
    .reward-card{padding:22px;position:relative;overflow:hidden}
    .reward-card:after{
      content:"";position:absolute;right:-24px;bottom:-28px;width:100px;height:100px;border-radius:50%;
      background:rgba(255,138,0,.12)
    }
    .reward-card .level{font-weight:1000;color:var(--brand-dark);font-size:30px;line-height:1}
    .reward-card h3{margin:14px 0 8px;font-size:20px;font-weight:950}
    .reward-card p{margin:0;color:var(--muted);font-size:15px}
    .progress-track{
      margin-top:22px;
      background:#fff;border:1px solid var(--line);
      border-radius:999px;padding:8px;box-shadow:inset 0 2px 8px rgba(171,61,19,.06)
    }
    .progress-fill{
      width:72%;height:18px;border-radius:999px;
      background:linear-gradient(90deg,var(--brand),var(--orange),var(--amber));
      position:relative
    }
    .progress-fill:after{
      content:"今日入口整理 72%";
      position:absolute;right:10px;top:50%;transform:translateY(-50%);
      color:#fff;font-size:12px;font-weight:900
    }
    .task-layout{display:grid;grid-template-columns:.9fr 1.1fr;gap:20px}
    .task-card{padding:24px}
    .task-card h3{font-size:24px;font-weight:950;margin:0 0 12px}
    .task-card p{color:var(--muted);margin:0}
    .steps{display:grid;gap:12px}
    .step{
      display:grid;grid-template-columns:auto 1fr auto;
      gap:14px;align-items:center;
      background:#fff;border:1px solid var(--line);
      border-radius:18px;padding:14px
    }
    .step-no{
      width:42px;height:42px;border-radius:14px;
      display:grid;place-items:center;
      background:#fff1dc;color:var(--brand-dark);font-weight:1000
    }
    .step b{display:block}
    .step span{color:var(--muted);font-size:14px}
    .step-state{font-size:13px;font-weight:900;color:var(--green);background:#e9fff5;border-radius:999px;padding:7px 10px}
    .points-wall{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
    .point-card{
      padding:26px;border-radius:24px;color:#fff;min-height:220px;position:relative;overflow:hidden;
      background:linear-gradient(135deg,#2b1710,#58311e);
      box-shadow:var(--shadow)
    }
    .point-card:nth-child(2){background:linear-gradient(135deg,var(--brand-dark),var(--orange))}
    .point-card:nth-child(3){background:linear-gradient(135deg,#8f3a0f,#ffb13d)}
    .point-card i{font-size:34px;margin-bottom:18px}
    .point-card h3{font-size:24px;font-weight:950;margin:0 0 10px}
    .point-card p{margin:0;color:rgba(255,255,255,.86)}
    .point-card:after{content:"";position:absolute;right:-34px;bottom:-34px;width:130px;height:130px;border-radius:50%;border:18px solid rgba(255,255,255,.12)}
    .seed-row{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
    .seed-card{overflow:hidden}
    .seed-cover{
      min-height:178px;
      padding:16px;
      display:flex;align-items:flex-start;justify-content:space-between;
      background:
        linear-gradient(160deg,rgba(255,61,38,.92),rgba(255,138,0,.78)),
        radial-gradient(circle at 30% 20%,#fff,transparent 35%);
      color:#fff
    }
    .seed-cover strong{font-size:38px;font-weight:1000;line-height:1}
    .seed-body{padding:18px}
    .seed-body h3{font-size:19px;font-weight:950;margin:0 0 8px}
    .seed-body p{margin:0 0 14px;color:var(--muted);font-size:15px}
    .entry-matrix{display:grid;grid-template-columns:1.2fr .8fr .8fr;gap:16px}
    .entry-card{padding:22px}
    .entry-card.feature{grid-row:span 2;background:linear-gradient(135deg,#fff,#fff0dc)}
    .entry-card h3{font-size:22px;font-weight:950;margin:14px 0 8px}
    .entry-card p{margin:0 0 18px;color:var(--muted)}
    .entry-meta{display:flex;flex-wrap:wrap;gap:8px}
    .updates-layout{display:grid;grid-template-columns:1fr 1fr;gap:20px}
    .update-list{display:grid;gap:12px}
    .update-card{padding:18px;display:grid;grid-template-columns:auto 1fr;gap:14px;align-items:start}
    .dot{
      width:14px;height:14px;border-radius:50%;
      background:var(--brand);
      box-shadow:0 0 0 6px rgba(255,61,38,.12);
      margin-top:7px
    }
    .update-card b{display:block;font-size:17px}
    .update-card span{color:var(--muted);font-size:14px}
    .news-layout{display:grid;grid-template-columns:1.35fr .65fr;gap:20px}
    .news-panel,.news-side{padding:22px}
    .news-list{margin:0;padding:0;display:grid;gap:12px}
    .news-list li{list-style:none}
    .news-link{
      display:grid;grid-template-columns:auto 1fr auto;gap:12px;align-items:center;
      padding:14px;border-radius:16px;border:1px solid var(--line);background:#fff
    }
    .news-link:hover{border-color:var(--brand);transform:translateX(3px);box-shadow:0 12px 26px rgba(255,61,38,.1)}
    .news-link .date{font-weight:1000;color:var(--brand-dark);background:#fff1dc;border-radius:12px;padding:8px 10px}
    .news-link b{font-size:16px}
    .news-link span{color:var(--muted);font-size:13px}
    .recommend-box{padding:18px;border-radius:18px;background:linear-gradient(135deg,var(--brand),var(--orange));color:#fff}
    .recommend-box h3{font-size:24px;font-weight:950;margin:0 0 10px}
    .recommend-box p{color:rgba(255,255,255,.88);margin:0 0 18px}
    .subscribe-card{
      border-radius:28px;
      padding:28px;
      background:#241713;
      color:#fff;
      display:grid;grid-template-columns:1fr auto;gap:24px;align-items:center;
      box-shadow:var(--shadow)
    }
    .subscribe-card h2{font-size:34px;font-weight:950;margin:0 0 10px}
    .subscribe-card p{margin:0;color:#ffe1be}
    .sub-form{display:flex;gap:10px;background:#fff;border-radius:999px;padding:8px;min-width:420px}
    .sub-form input{
      border:0;box-shadow:none;margin:0;
      min-height:46px;padding:0 14px;border-radius:999px;
      background:transparent;color:var(--text)
    }
    .sub-form input:focus{box-shadow:0 0 0 3px rgba(255,138,0,.22);border-radius:999px}
    .faq-list{display:grid;gap:12px}
    .faq-item{overflow:hidden}
    .faq-question{
      width:100%;border:0;background:#fff;
      display:flex;align-items:center;justify-content:space-between;gap:16px;
      padding:20px 22px;text-align:left;font-weight:950;color:var(--text)
    }
    .faq-question:hover{color:var(--brand-dark);background:#fff7ec}
    .faq-answer{display:none;padding:0 22px 20px;color:var(--muted)}
    .faq-item.open .faq-answer{display:block}
    .faq-item.open .faq-question i{transform:rotate(180deg)}
    .faq-question i{transition:var(--ease);color:var(--brand)}
    .final-cta{
      padding:76px 0;
      background:
        radial-gradient(circle at 18% 0%, rgba(255,194,71,.32), transparent 32%),
        linear-gradient(135deg,#fff,#fff1dd);
      border-top:1px solid var(--line);
      border-bottom:1px solid var(--line);
    }
    .cta-box{
      text-align:center;
      max-width:850px;margin:0 auto;
    }
    .cta-box h2{font-size:clamp(30px,4vw,52px);font-weight:1000;margin:0 0 14px;letter-spacing:-1.4px}
    .cta-box p{color:var(--muted);font-size:17px;margin:0 auto 24px;max-width:700px}
    .site-footer{
      background:#1e120e;color:#fff;
      padding:54px 0 22px;
    }
    .footer-grid{display:grid;grid-template-columns:1.2fr .8fr .8fr;gap:28px;margin-bottom:30px}
    .footer-brand{display:flex;align-items:center;gap:10px;font-weight:950;font-size:20px;margin-bottom:12px}
    .footer-brand .logo-mark{width:38px;height:38px}
    .footer-text{color:#d9bba5;margin:0;max-width:440px}
    .footer-title{font-weight:950;margin-bottom:12px;color:#fff}
    .footer-links{display:grid;gap:8px}
    .footer-links a{color:#d9bba5}
    .footer-links a:hover{color:#ffc247;transform:translateX(2px)}
    .copyright{
      border-top:1px solid rgba(255,255,255,.12);
      padding-top:18px;
      color:#b99781;
      font-size:14px;
      display:flex;justify-content:space-between;gap:16px;flex-wrap:wrap
    }
    .mobile-fixed{
      position:fixed;left:12px;right:12px;bottom:12px;z-index:45;
      display:none;
      background:#241713;color:#fff;border-radius:999px;padding:8px;
      box-shadow:0 18px 50px rgba(36,23,19,.28);
      align-items:center;justify-content:space-between;gap:10px
    }
    .mobile-fixed span{font-weight:900;padding-left:12px;font-size:14px}
    :focus-visible{outline:3px solid rgba(255,138,0,.45);outline-offset:3px}
    @media (max-width:1024px){
      .hero-inner{grid-template-columns:1fr}
      .hero-board{padding:0 28px 34px}
      .cover-card{transform:none}
      .burst{width:96px;height:96px;font-size:14px}
      .play-grid,.task-layout,.updates-layout,.news-layout{grid-template-columns:1fr}
      .reward-wrap,.seed-row{grid-template-columns:repeat(2,1fr)}
      .entry-matrix{grid-template-columns:1fr 1fr}
      .entry-card.feature{grid-row:auto;grid-column:span 2}
      .subscribe-card{grid-template-columns:1fr}
      .sub-form{min-width:0;width:100%}
    }
    @media (max-width:768px){
      .top-ribbon{font-size:13px}
      .nav-wrap{height:auto;min-height:68px;flex-wrap:wrap;padding:12px 0}
      .menu-toggle{display:grid;place-items:center}
      .nav-actions .icon-search,.nav-actions .desktop-cta{display:none}
      .nav-links{
        display:none;width:100%;
        overflow-x:auto;padding:8px 0 2px;
        gap:8px
      }
      .nav-links.open{display:flex}
      .nav-link{white-space:nowrap;padding:9px 13px}
      .brand-text{font-size:18px}
      .section{padding:52px 0}
      .section-head{display:block}
      .promo-stage,.hero-inner{min-height:auto}
      .hero-copy{padding:42px 24px 24px}
      h1{font-size:44px;letter-spacing:-1.5px}
      .hero-intro{font-size:16px}
      .hero-board{padding:0 18px 22px}
      .price{font-size:44px}
      .guarantee-strip{grid-template-columns:repeat(2,1fr)}
      .count-bar{grid-template-columns:1fr;justify-items:stretch;text-align:center}
      .timer{justify-content:space-between}
      .time-box{min-width:0;flex:1}
      .points-wall{grid-template-columns:1fr}
      .entry-matrix{grid-template-columns:1fr}
      .entry-card.feature{grid-column:auto}
      .footer-grid{grid-template-columns:1fr}
      .mobile-fixed{display:flex}
      body{padding-bottom:74px}
    }
    @media (max-width:520px){
      .site-container{width:min(100% - 24px, var(--container))}
      .hero{padding-top:22px}
      .hero-cta,.sub-form{flex-direction:column}
      .hero-cta .btn,.sub-form .btn{width:100%}
      .hero-points{display:grid;grid-template-columns:1fr 1fr}
      .mini-grid,.reward-wrap,.seed-row{grid-template-columns:1fr}
      .step{grid-template-columns:auto 1fr}
      .step-state{grid-column:2}
      .news-link{grid-template-columns:1fr}
      .subscribe-card{padding:22px;border-radius:22px}
      .subscribe-card h2{font-size:28px}
      .burst{right:14px;top:14px}
    }

/* roulang page: category1 */
:root {
      --color-primary: #f0442f;
      --color-primary-dark: #cf2e1f;
      --color-orange: #ff7a1a;
      --color-gold: #ffb72c;
      --color-ink: #25211f;
      --color-muted: #756b64;
      --color-soft: #fff7ef;
      --color-bg: #fffaf4;
      --color-panel: #ffffff;
      --color-line: #f1ded0;
      --color-green: #19a36b;
      --shadow-sm: 0 8px 22px rgba(119, 66, 38, .08);
      --shadow-md: 0 18px 48px rgba(171, 70, 25, .14);
      --shadow-lg: 0 28px 70px rgba(151, 57, 22, .18);
      --radius-sm: 10px;
      --radius-md: 16px;
      --radius-lg: 22px;
      --radius-xl: 30px;
      --container: 1180px;
      --section: 76px;
      --speed: .22s ease;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--color-ink);
      background:
        radial-gradient(circle at 12% 8%, rgba(255, 122, 26, .13), transparent 28%),
        linear-gradient(180deg, #fff4e8 0%, var(--color-bg) 32%, #ffffff 100%);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
      line-height: 1.72;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color var(--speed), background var(--speed), border-color var(--speed), transform var(--speed), box-shadow var(--speed);
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    :focus-visible {
      outline: 3px solid rgba(255, 122, 26, .38);
      outline-offset: 3px;
    }

    .site-container {
      width: min(var(--container), calc(100% - 36px));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 250, 244, .92);
      border-bottom: 1px solid rgba(241, 222, 208, .92);
      backdrop-filter: blur(18px);
      box-shadow: 0 10px 26px rgba(112, 54, 26, .06);
    }

    .nav-wrap {
      min-height: 76px;
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .brand-logo,
    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 800;
      color: var(--color-ink);
    }

    .brand-logo {
      flex: 0 0 auto;
      font-size: 18px;
      white-space: nowrap;
    }

    .logo-mark {
      width: 38px;
      height: 38px;
      display: inline-grid;
      place-items: center;
      color: #fff;
      border-radius: 13px;
      background: linear-gradient(135deg, var(--color-primary), var(--color-orange));
      box-shadow: 0 12px 26px rgba(240, 68, 47, .24);
    }

    .brand-text {
      letter-spacing: 0;
    }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      align-items: center;
      justify-content: center;
      margin-left: auto;
      color: var(--color-primary);
      border: 1px solid var(--color-line);
      border-radius: 14px;
      background: #fff;
      box-shadow: var(--shadow-sm);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 0 auto;
      padding: 0;
      list-style: none;
    }

    .nav-link {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 40px;
      padding: 0 15px;
      color: var(--color-muted);
      font-size: 14px;
      font-weight: 700;
      border: 1px solid transparent;
      border-radius: 999px;
      background: rgba(255, 255, 255, .62);
    }

    .nav-link:hover,
    .nav-link.active {
      color: var(--color-primary);
      border-color: rgba(240, 68, 47, .18);
      background: #fff0e9;
      box-shadow: 0 10px 24px rgba(240, 68, 47, .11);
      transform: translateY(-1px);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .icon-search {
      width: 42px;
      height: 42px;
      display: inline-grid;
      place-items: center;
      color: var(--color-primary);
      border: 1px solid var(--color-line);
      border-radius: 14px;
      background: #fff;
    }

    .icon-search:hover {
      color: #fff;
      border-color: var(--color-primary);
      background: var(--color-primary);
      transform: translateY(-1px);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 44px;
      padding: 0 20px;
      font-weight: 800;
      line-height: 1;
      border: 1px solid transparent;
      border-radius: 999px;
      transition: transform var(--speed), box-shadow var(--speed), background var(--speed), color var(--speed), border-color var(--speed);
    }

    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--color-primary), var(--color-orange));
      box-shadow: 0 16px 32px rgba(240, 68, 47, .22);
    }

    .btn-primary:hover,
    .btn-primary:focus {
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 20px 42px rgba(240, 68, 47, .3);
    }

    .btn-outline {
      color: var(--color-primary);
      border-color: rgba(240, 68, 47, .28);
      background: #fff;
    }

    .btn-outline:hover {
      color: #fff;
      border-color: var(--color-primary);
      background: var(--color-primary);
      transform: translateY(-2px);
    }

    .btn-soft {
      color: var(--color-primary-dark);
      background: #fff0e7;
      border-color: rgba(240, 68, 47, .15);
    }

    .btn-soft:hover {
      color: #fff;
      background: linear-gradient(135deg, var(--color-primary), var(--color-orange));
      transform: translateY(-2px);
    }

    main {
      overflow: hidden;
    }

    .hero {
      padding: 48px 0 28px;
    }

    .hero-shell {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(330px, .72fr);
      gap: 24px;
      align-items: stretch;
    }

    .hero-main {
      position: relative;
      min-height: 470px;
      overflow: hidden;
      padding: 42px;
      color: #fff;
      border-radius: var(--radius-xl);
      background:
        linear-gradient(135deg, rgba(65, 30, 20, .9), rgba(191, 44, 24, .78)),
        url("https://images.unsplash.com/photo-1607083206968-13611e3d76db?auto=format&fit=crop&w=1400&q=80") center/cover;
      box-shadow: var(--shadow-lg);
    }

    .hero-main::after {
      content: "";
      position: absolute;
      inset: auto 0 0 0;
      height: 46%;
      background: linear-gradient(180deg, transparent, rgba(45, 16, 10, .55));
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 680px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 16px;
      padding: 8px 13px;
      color: #fff9ef;
      font-size: 13px;
      font-weight: 800;
      border: 1px solid rgba(255, 255, 255, .28);
      border-radius: 999px;
      background: rgba(255, 255, 255, .12);
      backdrop-filter: blur(10px);
    }

    h1 {
      margin: 0 0 16px;
      max-width: 760px;
      font-size: clamp(34px, 5vw, 62px);
      line-height: 1.08;
      font-weight: 900;
      letter-spacing: 0;
    }

    .hero-lead {
      max-width: 700px;
      margin: 0 0 24px;
      color: rgba(255, 255, 255, .9);
      font-size: 17px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 28px;
    }

    .hero-actions .btn-outline {
      color: #fff;
      border-color: rgba(255, 255, 255, .42);
      background: rgba(255, 255, 255, .12);
      backdrop-filter: blur(10px);
    }

    .hero-actions .btn-outline:hover {
      border-color: #fff;
      background: rgba(255, 255, 255, .2);
    }

    .assurance-strip {
      position: absolute;
      z-index: 3;
      left: 34px;
      right: 34px;
      bottom: 28px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
    }

    .assurance-item {
      display: flex;
      align-items: center;
      gap: 9px;
      min-height: 56px;
      padding: 10px 12px;
      color: #fff;
      font-weight: 800;
      border: 1px solid rgba(255, 255, 255, .24);
      border-radius: 16px;
      background: rgba(255, 255, 255, .14);
      backdrop-filter: blur(14px);
    }

    .assurance-item i {
      color: var(--color-gold);
    }

    .hero-side {
      display: grid;
      gap: 16px;
    }

    .progress-card,
    .tier-card {
      padding: 24px;
      border: 1px solid var(--color-line);
      border-radius: var(--radius-xl);
      background: rgba(255, 255, 255, .88);
      box-shadow: var(--shadow-md);
      backdrop-filter: blur(14px);
    }

    .progress-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 18px;
    }

    .section-kicker,
    .card-kicker {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: var(--color-primary);
      font-size: 13px;
      font-weight: 900;
    }

    .progress-ring {
      --percent: 86;
      width: 154px;
      height: 154px;
      margin: 4px auto 18px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: conic-gradient(var(--color-primary) calc(var(--percent) * 1%), #ffe4d4 0);
      box-shadow: inset 0 0 0 12px rgba(255, 255, 255, .72), 0 20px 42px rgba(240, 68, 47, .18);
    }

    .ring-inner {
      width: 108px;
      height: 108px;
      display: grid;
      place-items: center;
      text-align: center;
      border-radius: 50%;
      background: #fff;
      box-shadow: inset 0 0 0 1px var(--color-line);
    }

    .ring-inner strong {
      display: block;
      color: var(--color-primary);
      font-size: 34px;
      line-height: 1;
      font-weight: 900;
    }

    .ring-inner span {
      color: var(--color-muted);
      font-size: 12px;
      font-weight: 800;
    }

    .price-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin: 14px 0;
      padding: 12px 14px;
      border-radius: 16px;
      background: linear-gradient(135deg, #fff1e8, #fff8df);
      border: 1px solid #ffd9bd;
    }

    .price-row span {
      color: var(--color-muted);
      font-size: 13px;
      font-weight: 800;
    }

    .price-row strong {
      color: var(--color-primary);
      font-size: 28px;
      line-height: 1;
      font-weight: 900;
    }

    .tier-list {
      display: grid;
      gap: 10px;
      margin-top: 12px;
    }

    .tier-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 13px 14px;
      border: 1px solid var(--color-line);
      border-radius: 16px;
      background: #fff;
    }

    .tier-name {
      font-weight: 900;
    }

    .tier-note {
      color: var(--color-muted);
      font-size: 13px;
    }

    .tier-badge,
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 10px;
      color: var(--color-primary-dark);
      font-size: 12px;
      font-weight: 900;
      white-space: nowrap;
      border-radius: 999px;
      background: #fff0e7;
      border: 1px solid rgba(240, 68, 47, .15);
    }

    .section {
      padding: var(--section) 0;
    }

    .section.alt {
      background: linear-gradient(180deg, rgba(255, 245, 235, .82), rgba(255, 255, 255, .72));
      border-top: 1px solid rgba(241, 222, 208, .7);
      border-bottom: 1px solid rgba(241, 222, 208, .7);
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 22px;
      align-items: end;
      margin-bottom: 26px;
    }

    .section-title {
      margin: 8px 0 0;
      font-size: clamp(26px, 3vw, 40px);
      line-height: 1.18;
      font-weight: 900;
      letter-spacing: 0;
    }

    .section-desc {
      max-width: 720px;
      margin: 10px 0 0;
      color: var(--color-muted);
      font-size: 16px;
    }

    .status-bar {
      display: grid;
      grid-template-columns: 1.2fr repeat(3, minmax(140px, .55fr));
      gap: 12px;
      padding: 16px;
      border: 1px solid #ffd9bd;
      border-radius: var(--radius-lg);
      background: linear-gradient(135deg, #fff, #fff2e8 70%, #fff8df);
      box-shadow: var(--shadow-sm);
    }

    .status-main {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 16px;
      border-radius: 18px;
      background: #fff;
      border: 1px solid var(--color-line);
    }

    .status-icon {
      width: 52px;
      height: 52px;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      color: #fff;
      border-radius: 18px;
      background: linear-gradient(135deg, var(--color-primary), var(--color-orange));
      box-shadow: 0 14px 30px rgba(240, 68, 47, .2);
    }

    .status-main strong,
    .stat-card strong {
      display: block;
      font-size: 22px;
      line-height: 1.1;
      font-weight: 900;
    }

    .status-main span,
    .stat-card span {
      color: var(--color-muted);
      font-size: 13px;
      font-weight: 700;
    }

    .stat-card {
      padding: 16px;
      border: 1px solid var(--color-line);
      border-radius: 18px;
      background: #fff;
    }

    .filters {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      padding: 14px;
      border: 1px solid var(--color-line);
      border-radius: var(--radius-lg);
      background: #fff;
      box-shadow: var(--shadow-sm);
    }

    .filter-chip {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 40px;
      padding: 0 14px;
      color: var(--color-muted);
      font-size: 14px;
      font-weight: 800;
      border: 1px solid #f0d8c7;
      border-radius: 999px;
      background: #fffaf6;
    }

    .filter-chip:hover,
    .filter-chip.active {
      color: #fff;
      border-color: var(--color-primary);
      background: linear-gradient(135deg, var(--color-primary), var(--color-orange));
      box-shadow: 0 12px 26px rgba(240, 68, 47, .18);
      transform: translateY(-1px);
    }

    .entry-layout {
      display: grid;
      grid-template-columns: minmax(0, .95fr) minmax(0, 1.25fr);
      gap: 18px;
      align-items: start;
      margin-top: 24px;
    }

    .feature-entry {
      position: sticky;
      top: 98px;
      overflow: hidden;
      border: 1px solid var(--color-line);
      border-radius: var(--radius-xl);
      background: #fff;
      box-shadow: var(--shadow-md);
    }

    .feature-cover {
      min-height: 250px;
      padding: 20px;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      background:
        linear-gradient(135deg, rgba(240, 68, 47, .9), rgba(255, 122, 26, .72)),
        url("https://images.unsplash.com/photo-1556742502-ec7c0e9f34b1?auto=format&fit=crop&w=1100&q=80") center/cover;
      color: #fff;
    }

    .cover-price {
      display: grid;
      place-items: center;
      width: 92px;
      height: 92px;
      text-align: center;
      border-radius: 50%;
      background: #fff;
      color: var(--color-primary);
      box-shadow: 0 16px 32px rgba(75, 27, 14, .2);
      transform: rotate(6deg);
    }

    .cover-price strong {
      display: block;
      font-size: 28px;
      line-height: 1;
      font-weight: 900;
    }

    .cover-price span {
      display: block;
      font-size: 12px;
      font-weight: 900;
    }

    .entry-body {
      padding: 22px;
    }

    .entry-title {
      margin: 10px 0 8px;
      font-size: 24px;
      line-height: 1.25;
      font-weight: 900;
    }

    .entry-text {
      margin: 0 0 18px;
      color: var(--color-muted);
    }

    .entry-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 18px;
    }

    .entry-list {
      display: grid;
      gap: 14px;
    }

    .entry-card {
      display: grid;
      grid-template-columns: 136px minmax(0, 1fr);
      gap: 16px;
      padding: 14px;
      border: 1px solid var(--color-line);
      border-radius: var(--radius-lg);
      background: #fff;
      box-shadow: var(--shadow-sm);
      transition: transform var(--speed), box-shadow var(--speed), border-color var(--speed);
    }

    .entry-card:hover {
      border-color: rgba(240, 68, 47, .34);
      box-shadow: var(--shadow-md);
      transform: translateY(-3px);
    }

    .entry-thumb {
      position: relative;
      min-height: 132px;
      overflow: hidden;
      border-radius: 16px;
      background: linear-gradient(135deg, #ffe0cc, #fff6df);
    }

    .entry-thumb::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, rgba(240, 68, 47, .74), rgba(255, 183, 44, .42)),
        var(--thumb, url("https://images.unsplash.com/photo-1556741533-6e6a62bd8b49?auto=format&fit=crop&w=700&q=80")) center/cover;
    }

    .entry-thumb .badge {
      position: absolute;
      left: 10px;
      top: 10px;
      color: #fff;
      border-color: rgba(255, 255, 255, .28);
      background: rgba(37, 33, 31, .42);
      backdrop-filter: blur(8px);
    }

    .entry-info {
      min-width: 0;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 12px;
    }

    .entry-info h3 {
      margin: 4px 0 6px;
      font-size: 20px;
      line-height: 1.3;
      font-weight: 900;
      letter-spacing: 0;
    }

    .entry-info p {
      margin: 0;
      color: var(--color-muted);
      font-size: 14px;
    }

    .card-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .mini-status {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--color-green);
      font-size: 13px;
      font-weight: 900;
      white-space: nowrap;
    }

    .update-timeline {
      display: grid;
      grid-template-columns: .78fr 1fr;
      gap: 20px;
      align-items: stretch;
    }

    .update-panel,
    .subscribe-panel,
    .faq-panel {
      border: 1px solid var(--color-line);
      border-radius: var(--radius-xl);
      background: #fff;
      box-shadow: var(--shadow-md);
    }

    .update-panel {
      padding: 24px;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(255, 244, 232, .94)),
        url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1100&q=80") center/cover;
    }

    .update-panel h2,
    .subscribe-panel h2,
    .faq-panel h2 {
      margin: 8px 0 10px;
      font-size: 30px;
      line-height: 1.22;
      font-weight: 900;
    }

    .update-steps {
      display: grid;
      gap: 12px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .update-steps li {
      display: grid;
      grid-template-columns: 42px 1fr;
      gap: 12px;
      padding: 14px;
      border: 1px solid var(--color-line);
      border-radius: 18px;
      background: rgba(255, 255, 255, .88);
    }

    .step-num {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      color: #fff;
      font-weight: 900;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--color-primary), var(--color-orange));
    }

    .update-steps strong {
      display: block;
      margin-bottom: 2px;
      font-weight: 900;
    }

    .update-steps span {
      color: var(--color-muted);
      font-size: 14px;
    }

    .subscribe-panel {
      padding: 24px;
    }

    .subscribe-form {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 10px;
      margin-top: 18px;
      padding: 10px;
      border: 1px solid #ffd8bd;
      border-radius: 999px;
      background: #fff6ee;
    }

    .subscribe-form input {
      width: 100%;
      min-height: 46px;
      margin: 0;
      padding: 0 16px;
      color: var(--color-ink);
      border: 0;
      border-radius: 999px;
      background: #fff;
      box-shadow: none;
    }

    .subscribe-form input:focus {
      border: 0;
      box-shadow: 0 0 0 3px rgba(255, 122, 26, .16);
    }

    .remind-options {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 16px;
    }

    .option-pill {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 9px 12px;
      color: var(--color-muted);
      font-size: 13px;
      font-weight: 800;
      border: 1px solid var(--color-line);
      border-radius: 999px;
      background: #fff;
    }

    .option-pill i {
      color: var(--color-primary);
    }

    .pager {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 28px;
    }

    .page-num,
    .load-more {
      min-width: 44px;
      height: 44px;
      display: inline-grid;
      place-items: center;
      padding: 0 15px;
      color: var(--color-muted);
      font-weight: 900;
      border: 1px solid var(--color-line);
      border-radius: 999px;
      background: #fff;
    }

    .page-num:hover,
    .page-num.active,
    .load-more:hover {
      color: #fff;
      border-color: var(--color-primary);
      background: linear-gradient(135deg, var(--color-primary), var(--color-orange));
      transform: translateY(-2px);
    }

    .faq-panel {
      padding: 8px;
    }

    .accordion {
      margin: 0;
      background: transparent;
    }

    .accordion-item {
      border-bottom: 1px solid var(--color-line);
    }

    .accordion-item:last-child {
      border-bottom: 0;
    }

    .accordion-title {
      padding: 19px 48px 19px 18px;
      color: var(--color-ink);
      font-size: 16px;
      font-weight: 900;
      border: 0;
      background: transparent;
    }

    .accordion-title:hover,
    .accordion-title:focus {
      color: var(--color-primary);
      background: #fff6ef;
    }

    .accordion-title::before {
      color: var(--color-primary);
      font-weight: 900;
    }

    .accordion-content {
      padding: 0 18px 18px;
      color: var(--color-muted);
      border: 0;
      background: transparent;
    }

    .cta-band {
      position: relative;
      overflow: hidden;
      padding: 34px;
      border-radius: var(--radius-xl);
      color: #fff;
      background:
        linear-gradient(135deg, rgba(207, 46, 31, .96), rgba(255, 122, 26, .9)),
        url("https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?auto=format&fit=crop&w=1400&q=80") center/cover;
      box-shadow: var(--shadow-lg);
    }

    .cta-band::after {
      content: "";
      position: absolute;
      right: -60px;
      top: -80px;
      width: 260px;
      height: 260px;
      border: 38px solid rgba(255, 255, 255, .14);
      border-radius: 50%;
    }

    .cta-content {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 22px;
      align-items: center;
    }

    .cta-band h2 {
      margin: 0 0 8px;
      font-size: 34px;
      line-height: 1.2;
      font-weight: 900;
    }

    .cta-band p {
      max-width: 720px;
      margin: 0;
      color: rgba(255, 255, 255, .88);
    }

    .cta-band .btn-outline {
      color: #fff;
      border-color: rgba(255, 255, 255, .5);
      background: rgba(255, 255, 255, .12);
    }

    .cta-band .btn-outline:hover {
      background: #fff;
      color: var(--color-primary);
    }

    .site-footer {
      padding: 54px 0 28px;
      color: #5f534d;
      background: #2c211d;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.35fr .8fr .8fr;
      gap: 34px;
      padding-bottom: 32px;
      border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .footer-brand {
      color: #fff;
      font-size: 18px;
    }

    .footer-text {
      max-width: 430px;
      margin: 14px 0 0;
      color: rgba(255, 255, 255, .68);
    }

    .footer-title {
      margin-bottom: 14px;
      color: #fff;
      font-weight: 900;
    }

    .footer-links {
      display: grid;
      gap: 10px;
    }

    .footer-links a {
      color: rgba(255, 255, 255, .68);
    }

    .footer-links a:hover {
      color: var(--color-gold);
      transform: translateX(3px);
    }

    .copyright {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 12px;
      padding-top: 22px;
      color: rgba(255, 255, 255, .55);
      font-size: 13px;
    }

    @media (max-width: 1024px) {
      :root {
        --section: 60px;
      }

      .hero-shell,
      .entry-layout,
      .update-timeline {
        grid-template-columns: 1fr;
      }

      .hero-main {
        min-height: 520px;
      }

      .hero-side {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .feature-entry {
        position: static;
      }

      .status-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .section-head,
      .cta-content {
        grid-template-columns: 1fr;
      }

      .nav-links {
        gap: 6px;
      }

      .nav-link {
        padding: 0 12px;
      }
    }

    @media (max-width: 768px) {
      .site-container {
        width: min(100% - 28px, var(--container));
      }

      .nav-wrap {
        min-height: 66px;
        flex-wrap: wrap;
        gap: 10px;
        padding: 10px 0;
      }

      .menu-toggle {
        display: inline-flex;
      }

      .nav-links {
        order: 5;
        width: 100%;
        display: none;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 8px 0 2px;
      }

      .nav-links.is-open {
        display: flex;
      }

      .nav-actions {
        margin-left: 0;
      }

      .desktop-cta {
        display: none;
      }

      .hero {
        padding-top: 28px;
      }

      .hero-main {
        min-height: 610px;
        padding: 28px;
      }

      .assurance-strip {
        left: 20px;
        right: 20px;
        bottom: 20px;
        grid-template-columns: repeat(2, 1fr);
      }

      .hero-side,
      .status-bar,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .entry-card {
        grid-template-columns: 112px minmax(0, 1fr);
      }

      .entry-thumb {
        min-height: 128px;
      }

      .subscribe-form {
        grid-template-columns: 1fr;
        border-radius: 24px;
      }

      .subscribe-form .btn {
        width: 100%;
      }

      .cta-band {
        padding: 26px;
      }
    }

    @media (max-width: 520px) {
      .brand-logo {
        font-size: 16px;
      }

      .logo-mark {
        width: 34px;
        height: 34px;
        border-radius: 11px;
      }

      .hero-main {
        min-height: 690px;
        padding: 24px;
        border-radius: 24px;
      }

      .hero-lead {
        font-size: 15px;
      }

      .hero-actions .btn {
        width: 100%;
      }

      .assurance-strip {
        grid-template-columns: 1fr;
      }

      .assurance-item {
        min-height: 48px;
      }

      .progress-card,
      .tier-card,
      .update-panel,
      .subscribe-panel {
        padding: 20px;
        border-radius: 22px;
      }

      .filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 12px;
      }

      .filter-chip {
        flex: 0 0 auto;
      }

      .entry-card {
        grid-template-columns: 1fr;
      }

      .entry-thumb {
        min-height: 176px;
      }

      .card-bottom {
        align-items: flex-start;
        flex-direction: column;
      }

      .card-bottom .btn {
        width: 100%;
      }

      .status-main {
        align-items: flex-start;
      }

      .section-title,
      .cta-band h2 {
        font-size: 27px;
      }

      .copyright {
        display: grid;
      }
    }
