/* roulang page: index */
:root{
      --bg:#0B0D0B;
      --bg-2:#10130f;
      --panel:#151812;
      --panel-2:#1B1E17;
      --panel-3:#20241b;
      --text:#F4F1E8;
      --muted:#B8B4A8;
      --soft:#8d8879;
      --line:rgba(178,191,144,.22);
      --line-strong:rgba(178,191,144,.38);
      --olive:#8EA56A;
      --olive-2:#B2BF90;
      --amber:#D9A441;
      --amber-2:#E9B957;
      --danger:#d66b4e;
      --shadow:0 24px 70px rgba(0,0,0,.38);
      --shadow-soft:0 18px 45px rgba(0,0,0,.22);
      --radius:24px;
      --radius-sm:16px;
      --container:1220px;
      --nav-h:78px;
      --ease:cubic-bezier(.2,.8,.2,1);
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei",sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 20% 0%, rgba(142,165,106,.12), transparent 30%),
        radial-gradient(circle at 78% 12%, rgba(217,164,65,.13), transparent 28%),
        linear-gradient(180deg,#0B0D0B 0%,#0e110d 46%,#0B0D0B 100%);
      line-height:1.75;
      overflow-x:hidden;
    }
    body::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      z-index:-1;
      background-image:
        linear-gradient(rgba(178,191,144,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(178,191,144,.055) 1px, transparent 1px);
      background-size:44px 44px;
      mask-image:linear-gradient(to bottom,rgba(0,0,0,.8),rgba(0,0,0,.2),transparent);
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input{font:inherit}
    button{cursor:pointer;border:0}
    ::selection{background:rgba(217,164,65,.35);color:var(--text)}
    .container{width:min(var(--container),calc(100% - 40px));margin-inline:auto}
    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      height:var(--nav-h);
      background:rgba(11,13,11,.78);
      border-bottom:1px solid transparent;
      transition:background .25s var(--ease),border-color .25s var(--ease),box-shadow .25s var(--ease);
      backdrop-filter:blur(10px);
    }
    .site-header.is-scrolled{
      background:rgba(11,13,11,.95);
      border-color:var(--line);
      box-shadow:0 12px 40px rgba(0,0,0,.34);
    }
    .nav-wrap{height:100%;display:flex;align-items:center;justify-content:space-between;gap:22px}
    .brand{
      display:flex;align-items:center;gap:12px;min-width:max-content;font-weight:900;letter-spacing:-.03em;
    }
    .brand-mark{
      width:38px;height:38px;border:1px solid var(--line-strong);border-radius:12px;
      display:grid;place-items:center;position:relative;background:linear-gradient(135deg,rgba(142,165,106,.16),rgba(217,164,65,.12));
      box-shadow:inset 0 0 0 1px rgba(244,241,232,.04);
    }
    .brand-mark::before,.brand-mark::after{content:"";position:absolute;background:var(--olive-2);opacity:.8}
    .brand-mark::before{width:18px;height:1px}
    .brand-mark::after{width:1px;height:18px}
    .brand-mark span{width:6px;height:6px;border-radius:999px;background:var(--amber);box-shadow:0 0 0 5px rgba(217,164,65,.11)}
    .brand-text{font-size:18px}
    .nav-links{display:flex;align-items:center;gap:6px;margin-left:auto}
    .nav-links a{
      color:var(--muted);font-size:14px;font-weight:700;padding:10px 13px;border-radius:999px;
      transition:color .2s var(--ease),background .2s var(--ease),border-color .2s var(--ease);
      border:1px solid transparent;
      white-space:nowrap;
    }
    .nav-links a:hover,.nav-links a.active{
      color:var(--text);
      background:rgba(142,165,106,.10);
      border-color:rgba(142,165,106,.24);
    }
    .nav-actions{display:flex;align-items:center;gap:12px}
    .status-pill{
      display:inline-flex;align-items:center;gap:8px;color:var(--olive-2);font-size:12px;font-weight:800;letter-spacing:.04em;
      border:1px solid var(--line);border-radius:999px;padding:8px 11px;background:rgba(21,24,18,.72);
      white-space:nowrap;
    }
    .dot{width:7px;height:7px;border-radius:50%;background:var(--olive);box-shadow:0 0 0 5px rgba(142,165,106,.12)}
    .btn{
      display:inline-flex;align-items:center;justify-content:center;gap:8px;min-height:46px;padding:12px 18px;border-radius:999px;
      font-weight:900;font-size:14px;transition:transform .22s var(--ease),filter .22s var(--ease),background .22s var(--ease),border-color .22s var(--ease),box-shadow .22s var(--ease);
      outline:none;position:relative;overflow:hidden;
    }
    .btn:focus-visible{box-shadow:0 0 0 3px rgba(217,164,65,.28)}
    .btn-primary{background:var(--amber);color:#15120a;border:1px solid rgba(255,255,255,.12);box-shadow:0 14px 34px rgba(217,164,65,.18)}
    .btn-primary:hover{transform:translateY(-2px);filter:brightness(1.08);box-shadow:0 18px 42px rgba(217,164,65,.24)}
    .btn-primary:active{transform:translateY(0)}
    .btn-secondary{background:transparent;color:var(--text);border:1px solid rgba(142,165,106,.42)}
    .btn-secondary:hover{background:rgba(142,165,106,.12);border-color:rgba(178,191,144,.62);transform:translateY(-2px)}
    .menu-toggle{display:none;width:46px;height:46px;border-radius:14px;background:var(--panel);border:1px solid var(--line);color:var(--text)}
    .menu-toggle span{display:block;width:18px;height:2px;background:var(--text);margin:4px auto;border-radius:5px;transition:.2s}
    .mobile-drawer{
      display:none;position:fixed;inset:var(--nav-h) 0 auto 0;background:rgba(11,13,11,.98);
      border-bottom:1px solid var(--line);padding:20px;z-index:49;box-shadow:var(--shadow);
    }
    .mobile-drawer.open{display:block}
    .mobile-drawer a{display:flex;justify-content:space-between;padding:15px 4px;border-bottom:1px solid rgba(178,191,144,.14);color:var(--muted);font-weight:800}
    main{overflow:hidden}
    section{padding:96px 0}
    .section-head{display:flex;align-items:end;justify-content:space-between;gap:24px;margin-bottom:34px}
    .section-kicker{
      display:inline-flex;align-items:center;gap:8px;color:var(--amber);font-size:12px;font-weight:900;letter-spacing:.12em;
      text-transform:uppercase;margin-bottom:10px;
    }
    .section-title{font-size:clamp(28px,4vw,42px);line-height:1.14;font-weight:950;letter-spacing:-.05em;margin:0}
    .section-desc{max-width:650px;color:var(--muted);font-size:16px;margin:10px 0 0}
    .hero{
      min-height:calc(100vh - var(--nav-h));
      padding:80px 0 48px;
      position:relative;
      display:flex;
      align-items:center;
    }
    .hero::before{
      content:"";
      position:absolute;
      inset:24px 24px auto;
      height:58%;
      pointer-events:none;
      background:
        linear-gradient(90deg,rgba(11,13,11,.18),rgba(11,13,11,.02),rgba(11,13,11,.18)),
        radial-gradient(circle at 50% 18%,rgba(217,164,65,.21),transparent 32%),
        radial-gradient(circle at 72% 55%,rgba(142,165,106,.18),transparent 34%);
      border:1px solid rgba(178,191,144,.12);
      border-radius:34px;
      mask-image:linear-gradient(to bottom,#000,rgba(0,0,0,.76),transparent);
    }
    .hero-stage{
      position:relative;
      border:1px solid var(--line);
      border-radius:34px;
      padding:46px;
      background:
        linear-gradient(180deg,rgba(21,24,18,.62),rgba(11,13,11,.82)),
        repeating-linear-gradient(90deg,rgba(178,191,144,.045) 0 1px,transparent 1px 42px);
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .hero-stage::after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(105deg,transparent 0 36%,rgba(217,164,65,.08) 45%,transparent 56% 100%);
      transform:translateX(-45%);
      animation:scan 7s linear infinite;
      pointer-events:none;
    }
    @keyframes scan{to{transform:translateX(55%)}}
    .hero-inner{position:relative;z-index:1;display:grid;grid-template-columns:1.05fr .95fr;gap:42px;align-items:center}
    .hero-copy{text-align:left}
    .hero-badges{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:22px}
    .badge{
      display:inline-flex;align-items:center;gap:8px;border:1px solid var(--line);border-radius:999px;padding:8px 11px;
      background:rgba(21,24,18,.76);color:var(--muted);font-size:12px;font-weight:850;letter-spacing:.05em;
    }
    .badge.amber{color:var(--amber);border-color:rgba(217,164,65,.35);background:rgba(217,164,65,.08)}
    .badge.green{color:var(--olive-2);border-color:rgba(142,165,106,.35);background:rgba(142,165,106,.08)}
    h1{
      margin:0;
      font-size:clamp(36px,6.3vw,64px);
      line-height:1.08;
      letter-spacing:-.075em;
      font-weight:1000;
      max-width:850px;
    }
    .hero-lead{
      margin:22px 0 0;
      max-width:720px;
      color:var(--muted);
      font-size:17px;
      line-height:1.85;
    }
    .hero-cta{display:flex;flex-wrap:wrap;gap:13px;margin-top:28px}
    .hero-data{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:30px;max-width:670px}
    .data-mini{
      padding:15px 14px;border:1px solid var(--line);border-radius:18px;background:rgba(11,13,11,.36);
      min-width:0;
    }
    .data-mini strong{display:block;font-size:22px;line-height:1;color:var(--text);font-weight:950}
    .data-mini span{display:block;margin-top:8px;color:var(--soft);font-size:12px;font-weight:750}
    .vertical-matrix{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:14px;
      align-items:stretch;
    }
    .vertical-card{
      min-height:230px;
      border:1px solid var(--line);
      border-radius:24px;
      padding:20px;
      background:linear-gradient(180deg,rgba(32,36,27,.86),rgba(15,18,14,.86));
      position:relative;
      overflow:hidden;
      transition:transform .25s var(--ease),border-color .25s var(--ease),background .25s var(--ease);
    }
    .vertical-card:nth-child(2),.vertical-card:nth-child(3){transform:translateY(26px)}
    .vertical-card:hover{transform:translateY(-4px);border-color:rgba(217,164,65,.5)}
    .vertical-card:nth-child(2):hover,.vertical-card:nth-child(3):hover{transform:translateY(20px)}
    .vertical-card::before{
      content:"";position:absolute;top:0;left:18px;right:18px;height:3px;background:linear-gradient(90deg,transparent,var(--amber),transparent);opacity:.76;
    }
    .card-no{font:900 12px/1 ui-monospace,SFMono-Regular,Menlo,monospace;color:var(--amber);letter-spacing:.12em}
    .vertical-card h3{margin:22px 0 10px;font-size:20px;line-height:1.25;letter-spacing:-.04em}
    .vertical-card p{margin:0;color:var(--muted);font-size:14px;line-height:1.7}
    .matrix-foot{position:absolute;bottom:18px;left:20px;right:20px;display:flex;justify-content:space-between;align-items:center;color:var(--soft);font-size:12px}
    .trust-strip{
      margin-top:18px;display:flex;gap:10px;overflow:auto;padding:10px 2px 2px;scrollbar-width:none;
    }
    .trust-strip::-webkit-scrollbar{display:none}
    .trust-chip{min-width:max-content;border:1px solid rgba(178,191,144,.18);border-radius:999px;padding:9px 13px;background:rgba(21,24,18,.56);color:var(--muted);font-size:13px}
    .cards-row{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}
    .seed-card{
      min-height:310px;border:1px solid var(--line);border-radius:26px;padding:22px;background:linear-gradient(180deg,var(--panel-2),var(--panel));
      position:relative;overflow:hidden;box-shadow:var(--shadow-soft);
      transition:transform .25s var(--ease),border-color .25s var(--ease),box-shadow .25s var(--ease);
    }
    .seed-card:hover{transform:translateY(-7px);border-color:rgba(217,164,65,.48);box-shadow:0 24px 58px rgba(0,0,0,.36)}
    .seed-card::after{
      content:"";position:absolute;inset:auto 18px 18px;height:1px;background:linear-gradient(90deg,var(--olive),transparent);opacity:.7;
    }
    .heat{height:7px;background:rgba(178,191,144,.12);border-radius:999px;overflow:hidden;margin:26px 0 20px}
    .heat span{display:block;height:100%;background:linear-gradient(90deg,var(--olive),var(--amber));border-radius:999px}
    .seed-card h3{font-size:21px;line-height:1.25;margin:14px 0 10px;letter-spacing:-.04em}
    .seed-card p{font-size:14px;color:var(--muted);margin:0 0 22px}
    .text-link{display:inline-flex;align-items:center;gap:6px;color:var(--amber);font-weight:900;font-size:13px}
    .split-panel{
      display:grid;grid-template-columns:.82fr 1.18fr;gap:22px;align-items:stretch;
    }
    .panel{
      border:1px solid var(--line);border-radius:var(--radius);background:linear-gradient(180deg,rgba(27,30,23,.92),rgba(16,19,15,.92));
      padding:28px;box-shadow:var(--shadow-soft);position:relative;overflow:hidden;
    }
    .panel::before{
      content:"";position:absolute;inset:0 0 auto;height:1px;background:linear-gradient(90deg,transparent,rgba(217,164,65,.75),transparent);
    }
    .check-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
    .check-item{
      display:flex;gap:12px;padding:16px;border:1px solid rgba(178,191,144,.16);border-radius:18px;background:rgba(11,13,11,.25);
      transition:border-color .2s var(--ease),background .2s var(--ease);
    }
    .check-item:hover{border-color:rgba(142,165,106,.42);background:rgba(142,165,106,.08)}
    .check-icon{
      flex:0 0 24px;width:24px;height:24px;border-radius:999px;background:rgba(142,165,106,.14);color:var(--olive-2);
      display:grid;place-items:center;font-weight:950;font-size:13px;
    }
    .check-item h3{margin:0 0 4px;font-size:16px;line-height:1.3}
    .check-item p{margin:0;color:var(--muted);font-size:13px;line-height:1.65}
    .progress-wrap{display:grid;grid-template-columns:1fr 1fr;gap:22px}
    .progress-list{display:grid;gap:14px}
    .progress-item{
      border:1px solid var(--line);border-radius:20px;padding:18px;background:rgba(21,24,18,.68);
      position:relative;overflow:hidden;
    }
    .progress-top{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:10px}
    .progress-top strong{font-size:16px}
    .bar{height:9px;border-radius:999px;background:rgba(178,191,144,.13);overflow:hidden}
    .bar span{height:100%;display:block;border-radius:999px;background:linear-gradient(90deg,var(--olive),var(--amber))}
    .timeline-mini{padding-left:10px;border-left:1px solid var(--line)}
    .timeline-mini li{list-style:none;position:relative;padding:0 0 20px 22px;color:var(--muted)}
    .timeline-mini li::before{
      content:"";position:absolute;left:-16px;top:7px;width:9px;height:9px;border-radius:999px;background:var(--amber);box-shadow:0 0 0 5px rgba(217,164,65,.12);
    }
    .news-layout{display:grid;grid-template-columns:1.2fr .8fr;gap:22px}
    .news-list{display:grid;gap:12px}
    .news-item{
      display:grid;grid-template-columns:auto 1fr auto;gap:15px;align-items:center;
      border:1px solid rgba(178,191,144,.16);border-radius:18px;padding:16px 18px;background:rgba(21,24,18,.55);
      transition:transform .2s var(--ease),border-color .2s var(--ease),background .2s var(--ease);
    }
    .news-item:hover{transform:translateX(4px);border-color:rgba(217,164,65,.38);background:rgba(217,164,65,.06)}
    .news-num{font:900 13px/1 ui-monospace,SFMono-Regular,Menlo,monospace;color:var(--amber)}
    .news-item h3{margin:0;font-size:16px;line-height:1.35}
    .news-item p{margin:4px 0 0;color:var(--muted);font-size:13px;line-height:1.6}
    .news-date{color:var(--soft);font-size:12px;white-space:nowrap}
    .rank-list{display:grid;gap:12px;margin-top:18px}
    .rank-row{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:13px 0;border-bottom:1px solid rgba(178,191,144,.13)}
    .rank-row:last-child{border-bottom:0}
    .rank-row span{color:var(--muted);font-size:14px}
    .rank-row strong{color:var(--amber);font-size:13px}
    .voice-section{padding-top:28px}
    .voice-track{
      display:flex;gap:14px;overflow:auto;padding:6px 2px 12px;scrollbar-width:none;
      mask-image:linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent);
    }
    .voice-track::-webkit-scrollbar{display:none}
    .voice-chip{
      min-width:340px;display:flex;align-items:center;gap:14px;border:1px solid var(--line);border-radius:999px;
      padding:13px 16px;background:rgba(21,24,18,.82);box-shadow:var(--shadow-soft);
    }
    .avatar{
      width:34px;height:34px;border-radius:50%;display:grid;place-items:center;background:linear-gradient(135deg,rgba(142,165,106,.32),rgba(217,164,65,.22));
      border:1px solid rgba(178,191,144,.24);color:var(--text);font-weight:950;
    }
    .voice-chip p{margin:0;color:var(--muted);font-size:14px;line-height:1.55}
    .cta-panel{
      border:1px solid rgba(217,164,65,.28);border-radius:34px;padding:42px;
      background:
        radial-gradient(circle at 80% 20%,rgba(217,164,65,.18),transparent 34%),
        linear-gradient(135deg,rgba(27,30,23,.95),rgba(11,13,11,.95));
      box-shadow:var(--shadow);position:relative;overflow:hidden;
    }
    .cta-panel::before{
      content:"";position:absolute;inset:18px;border:1px solid rgba(178,191,144,.12);border-radius:26px;pointer-events:none;
    }
    .cta-grid{position:relative;display:grid;grid-template-columns:1fr auto;gap:28px;align-items:center}
    .cta-panel h2{font-size:clamp(28px,4vw,44px);line-height:1.13;letter-spacing:-.055em;margin:0 0 12px}
    .cta-panel p{margin:0;color:var(--muted);max-width:720px}
    .cta-points{display:flex;flex-wrap:wrap;gap:10px;margin-top:22px}
    .faq-grid{display:grid;grid-template-columns:.72fr 1.28fr;gap:24px;align-items:start}
    .faq-list{display:grid;gap:12px}
    .faq-item{
      border:1px solid var(--line);border-radius:20px;background:rgba(21,24,18,.72);overflow:hidden;
      transition:border-color .2s var(--ease),background .2s var(--ease);
    }
    .faq-item:hover{border-color:rgba(142,165,106,.42)}
    .faq-q{
      width:100%;display:flex;align-items:center;justify-content:space-between;gap:16px;padding:18px 20px;color:var(--text);background:transparent;text-align:left;font-weight:900;
    }
    .faq-icon{width:24px;height:24px;border-radius:50%;display:grid;place-items:center;color:var(--olive-2);border:1px solid rgba(142,165,106,.28);transition:transform .2s var(--ease)}
    .faq-a{max-height:0;overflow:hidden;transition:max-height .25s var(--ease)}
    .faq-a p{margin:0;padding:0 20px 18px;color:var(--muted);font-size:14px;line-height:1.8}
    .faq-item.open{border-color:rgba(217,164,65,.34);background:rgba(217,164,65,.055)}
    .faq-item.open .faq-icon{transform:rotate(45deg);color:var(--amber)}
    .site-footer{
      padding:48px 0 30px;border-top:1px solid var(--line);background:linear-gradient(180deg,rgba(11,13,11,.2),rgba(7,8,7,.86));
      position:relative;
    }
    .site-footer::before{content:"";position:absolute;left:0;right:0;top:0;height:1px;background:linear-gradient(90deg,transparent,var(--olive),var(--amber),transparent);opacity:.45}
    .footer-grid{display:grid;grid-template-columns:1.2fr .8fr .8fr;gap:28px}
    .footer-grid p{color:var(--muted);margin:14px 0 0;font-size:14px}
    .footer-title{font-weight:950;margin-bottom:12px}
    .footer-links{display:grid;gap:10px}
    .footer-links a{color:var(--muted);font-size:14px;transition:color .2s var(--ease)}
    .footer-links a:hover{color:var(--amber)}
    .copyright{margin-top:32px;padding-top:20px;border-top:1px solid rgba(178,191,144,.13);display:flex;justify-content:space-between;gap:16px;color:var(--soft);font-size:13px;flex-wrap:wrap}
    @media (max-width:1100px){
      .nav-links,.nav-actions .status-pill{display:none}
      .menu-toggle{display:block}
      .hero-inner,.split-panel,.progress-wrap,.news-layout,.faq-grid,.cta-grid{grid-template-columns:1fr}
      .vertical-card:nth-child(2),.vertical-card:nth-child(3){transform:none}
      .vertical-card:nth-child(2):hover,.vertical-card:nth-child(3):hover{transform:translateY(-4px)}
      .cards-row{grid-template-columns:repeat(2,minmax(0,1fr))}
      .footer-grid{grid-template-columns:1fr 1fr}
    }
    @media (max-width:768px){
      :root{--nav-h:70px}
      .container{width:min(100% - 28px,var(--container))}
      section{padding:66px 0}
      .hero{padding:34px 0 34px;min-height:auto}
      .hero-stage{padding:26px;border-radius:26px}
      .hero-copy{text-align:left}
      .hero-data{grid-template-columns:1fr;gap:10px}
      .vertical-matrix{display:flex;overflow:auto;padding-bottom:8px;scrollbar-width:none}
      .vertical-matrix::-webkit-scrollbar{display:none}
      .vertical-card{min-width:235px;min-height:250px}
      .section-head{display:block;margin-bottom:24px}
      .cards-row{display:flex;overflow:auto;padding-bottom:12px;scrollbar-width:none}
      .cards-row::-webkit-scrollbar{display:none}
      .seed-card{min-width:265px}
      .check-grid{grid-template-columns:1fr}
      .news-item{grid-template-columns:auto 1fr}
      .news-date{grid-column:2;color:var(--amber)}
      .voice-chip{min-width:290px;border-radius:24px}
      .footer-grid{grid-template-columns:1fr}
      .copyright{display:block}
      .brand-text{font-size:16px}
      .nav-actions .btn{display:none}
    }
    @media (max-width:520px){
      h1{font-size:36px}
      .hero-stage,.cta-panel{padding:22px}
      .hero-cta .btn,.cta-grid .btn{width:100%}
      .hero-badges{gap:8px}
      .badge{font-size:11px}
      .panel{padding:20px}
    }

/* roulang page: category1 */
:root{
      --bg:#0B0D0B;
      --bg-soft:#11140F;
      --panel:#151812;
      --panel-2:#1B1E17;
      --panel-3:#20241C;
      --text:#F4F1E8;
      --muted:#B8B4A8;
      --line:rgba(178,191,144,.22);
      --line-strong:rgba(178,191,144,.34);
      --olive:#8EA56A;
      --olive-2:#A9BE88;
      --amber:#D9A441;
      --amber-2:#E0A33A;
      --danger:#D36D4B;
      --shadow:0 22px 60px rgba(0,0,0,.36);
      --radius:24px;
      --radius-sm:16px;
      --container:1240px;
    }
    *,*::before,*::after{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei",sans-serif;
      background:
        radial-gradient(circle at 20% 0%, rgba(142,165,106,.09), transparent 28%),
        radial-gradient(circle at 80% 10%, rgba(217,164,65,.08), transparent 24%),
        linear-gradient(180deg, #0B0D0B 0%, #0B0D0B 100%);
      color:var(--text);
      line-height:1.75;
      overflow-x:hidden;
    }
    body::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      background-image:
        linear-gradient(rgba(178,191,144,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(178,191,144,.05) 1px, transparent 1px);
      background-size:100% 100%, 72px 72px;
      mask-image:linear-gradient(180deg, rgba(0,0,0,.45), transparent 85%);
      opacity:.45;
      z-index:0;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input{font:inherit}
    ::selection{background:rgba(217,164,65,.28);color:var(--text)}
    .site-wrap{position:relative;z-index:1}
    .container{width:min(var(--container), calc(100% - 32px)); margin:0 auto}
    .section{padding:92px 0}
    .section-tight{padding:64px 0}
    .panel{
      background:linear-gradient(180deg, rgba(27,30,23,.97) 0%, rgba(17,20,15,.98) 100%);
      border:1px solid var(--line);
      border-radius:var(--radius);
      box-shadow:var(--shadow);
      position:relative;
      overflow:hidden;
    }
    .panel::after{
      content:"";
      position:absolute;
      inset:auto 0 0 0;
      height:1px;
      background:linear-gradient(90deg, transparent, rgba(217,164,65,.35), transparent);
      opacity:.7;
    }
    .panel-accent::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at 18% 0%, rgba(142,165,106,.09), transparent 22%),
        radial-gradient(circle at 100% 0%, rgba(217,164,65,.08), transparent 18%);
      pointer-events:none;
    }
    .topline{
      height:1px;
      background:linear-gradient(90deg, transparent, rgba(178,191,144,.28), transparent);
    }
    .brand{
      display:inline-flex;
      align-items:center;
      gap:12px;
      font-weight:800;
      letter-spacing:.02em;
      color:var(--text);
    }
    .brand-mark{
      width:30px;height:30px;
      border:1px solid rgba(217,164,65,.42);
      border-radius:10px;
      position:relative;
      background:linear-gradient(180deg, rgba(27,30,23,.98), rgba(17,20,15,.98));
      box-shadow:inset 0 0 0 1px rgba(142,165,106,.12);
      flex:none;
    }
    .brand-mark::before,
    .brand-mark::after{
      content:"";
      position:absolute;
      left:50%;top:50%;
      transform:translate(-50%,-50%);
      background:rgba(142,165,106,.9);
      border-radius:999px;
    }
    .brand-mark::before{width:12px;height:2px}
    .brand-mark::after{width:2px;height:12px}
    .brand-mark span{
      position:absolute;
      inset:7px;
      border:1px solid rgba(217,164,65,.35);
      border-radius:8px;
    }
    .brand-text{font-size:15px}
    .site-header{
      position:sticky;
      top:0;
      z-index:60;
      background:rgba(11,13,11,.86);
      backdrop-filter:saturate(105%);
      border-bottom:1px solid rgba(178,191,144,.14);
    }
    .header-inner{
      min-height:80px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }
    .nav-links{
      display:flex;
      align-items:center;
      gap:8px;
      flex-wrap:wrap;
      justify-content:center;
    }
    .nav-links a{
      position:relative;
      padding:10px 14px;
      border-radius:999px;
      color:var(--muted);
      font-size:14px;
      line-height:1;
      transition:all .24s ease;
      border:1px solid transparent;
    }
    .nav-links a:hover,
    .nav-links a:focus-visible{
      color:var(--text);
      background:rgba(142,165,106,.08);
      border-color:rgba(142,165,106,.25);
      outline:none;
    }
    .nav-links a.active{
      color:var(--text);
      background:rgba(217,164,65,.11);
      border-color:rgba(217,164,65,.28);
      box-shadow:inset 0 0 0 1px rgba(217,164,65,.06);
    }
    .header-meta{
      display:flex;
      align-items:center;
      gap:10px;
      flex:none;
    }
    .status-pill,
    .mini-badge,
    .tag{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(142,165,106,.09);
      border:1px solid rgba(142,165,106,.22);
      color:var(--text);
      font-size:12px;
      line-height:1;
      white-space:nowrap;
    }
    .status-pill .dot,
    .mini-badge .dot,
    .tag .dot{
      width:8px;height:8px;border-radius:999px;background:var(--olive);
      box-shadow:0 0 0 3px rgba(142,165,106,.14);
      flex:none;
    }
    .badge-amber{
      background:rgba(217,164,65,.12);
      border-color:rgba(217,164,65,.24);
    }
    .badge-amber .dot{background:var(--amber)}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      min-height:46px;
      padding:0 18px;
      border-radius:14px;
      border:1px solid transparent;
      font-weight:700;
      font-size:14px;
      transition:transform .22s ease, background-color .22s ease, border-color .22s ease, box-shadow .22s ease, color .22s ease, opacity .22s ease;
      cursor:pointer;
      user-select:none;
    }
    .btn:hover{transform:translateY(-1px)}
    .btn:active{transform:translateY(0)}
    .btn:focus-visible{outline:2px solid rgba(217,164,65,.45); outline-offset:2px}
    .btn-primary{
      background:linear-gradient(180deg, #E4B24E, #D9A441);
      color:#141713;
      box-shadow:0 10px 24px rgba(217,164,65,.18);
    }
    .btn-primary:hover{box-shadow:0 14px 26px rgba(217,164,65,.24)}
    .btn-secondary{
      background:rgba(142,165,106,.08);
      color:var(--text);
      border-color:rgba(142,165,106,.28);
    }
    .btn-secondary:hover{
      background:rgba(142,165,106,.12);
      border-color:rgba(142,165,106,.4);
    }
    .btn-ghost{
      background:transparent;
      color:var(--muted);
      border-color:rgba(178,191,144,.18);
    }
    .btn-ghost:hover{
      color:var(--text);
      border-color:rgba(217,164,65,.25);
      background:rgba(217,164,65,.06);
    }
    .hero{
      padding:42px 0 30px;
    }
    .crumbs{
      display:flex;
      align-items:center;
      flex-wrap:wrap;
      gap:8px;
      color:var(--muted);
      font-size:13px;
    }
    .crumbs a{color:var(--muted)}
    .crumbs a:hover{color:var(--text)}
    .crumbs span.sep{opacity:.55}
    .hero-grid{
      margin-top:18px;
      display:grid;
      grid-template-columns:1.25fr .95fr;
      gap:22px;
      align-items:stretch;
    }
    .hero-main{
      padding:34px;
      min-height:420px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .hero-main .eyebrow{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-bottom:14px;
    }
    .hero-main h1{
      margin:0;
      font-size:clamp(34px, 4.7vw, 58px);
      line-height:1.1;
      letter-spacing:-.02em;
    }
    .hero-main p{
      margin:18px 0 0;
      max-width:36rem;
      color:var(--muted);
      font-size:16px;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:26px;
    }
    .hero-note-row{
      margin-top:26px;
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .hero-note-row .mini-badge{
      background:rgba(27,30,23,.82);
      border-color:rgba(178,191,144,.18);
    }
    .hero-side{
      display:grid;
      grid-template-rows:auto auto;
      gap:18px;
    }
    .hero-side-top{
      padding:22px;
    }
    .hero-side-top h2{
      margin:10px 0 10px;
      font-size:22px;
      line-height:1.2;
    }
    .hero-side-top p{
      margin:0;
      color:var(--muted);
      font-size:14px;
    }
    .hero-stats{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:12px;
      margin-top:18px;
    }
    .hero-stat{
      padding:14px;
      border-radius:18px;
      background:rgba(17,20,15,.72);
      border:1px solid rgba(178,191,144,.14);
      min-height:100px;
    }
    .hero-stat .label{
      color:var(--muted);
      font-size:12px;
      margin-bottom:8px;
    }
    .hero-stat strong{
      display:block;
      font-size:18px;
      line-height:1.2;
      margin-bottom:6px;
    }
    .hero-stat span{
      color:var(--muted);
      font-size:13px;
    }
    .hero-side-bottom{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:14px;
    }
    .score-card{
      padding:18px;
      min-height:144px;
    }
    .score-card .num{
      font-size:28px;
      font-weight:900;
      line-height:1;
      color:var(--amber);
      margin:0 0 10px;
    }
    .score-card h3{
      margin:0 0 8px;
      font-size:16px;
    }
    .score-card p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.7;
    }
    .status-strip{
      margin-top:16px;
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .status-strip .mini-badge{
      background:rgba(27,30,23,.94);
      border-color:rgba(178,191,144,.16);
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:18px;
      margin-bottom:22px;
    }
    .section-head h2{
      margin:0;
      font-size:clamp(26px, 3vw, 38px);
      line-height:1.15;
      letter-spacing:-.02em;
    }
    .section-head p{
      margin:8px 0 0;
      color:var(--muted);
      max-width:52rem;
      font-size:15px;
    }
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--olive-2);
      font-size:12px;
      letter-spacing:.12em;
      text-transform:uppercase;
      margin-bottom:12px;
    }
    .section-kicker::before{
      content:"";
      width:28px;height:1px;background:rgba(142,165,106,.55);
    }
    .quick-cards{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:16px;
    }
    .quick-card{
      padding:22px;
      min-height:214px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      transition:transform .22s ease, border-color .22s ease, box-shadow .22s ease;
      border:1px solid var(--line);
    }
    .quick-card:hover{
      transform:translateY(-3px);
      border-color:rgba(217,164,65,.28);
      box-shadow:0 18px 36px rgba(0,0,0,.28);
    }
    .card-topline{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      margin-bottom:16px;
    }
    .card-index{
      font-weight:900;
      color:rgba(217,164,65,.8);
      letter-spacing:.08em;
      font-size:12px;
    }
    .quick-card h3{
      margin:0 0 10px;
      font-size:19px;
      line-height:1.25;
    }
    .quick-card p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.75;
    }
    .card-foot{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      margin-top:18px;
    }
    .card-foot .mini{
      color:var(--muted);
      font-size:12px;
    }
    .small-link{
      color:var(--text);
      font-size:13px;
      font-weight:700;
      transition:color .2s ease;
    }
    .small-link:hover{color:var(--amber)}
    .content-grid{
      display:grid;
      grid-template-columns:280px minmax(0,1fr);
      gap:22px;
      align-items:start;
    }
    .sidebar{
      position:sticky;
      top:102px;
    }
    .sidebar-card{
      padding:22px;
      margin-bottom:18px;
    }
    .sidebar-title{
      font-size:16px;
      font-weight:800;
      margin:0 0 14px;
      color:var(--text);
    }
    .anchor-list{
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .anchor-list a{
      padding:12px 14px;
      border-radius:14px;
      border:1px solid rgba(178,191,144,.14);
      color:var(--muted);
      background:rgba(17,20,15,.6);
      transition:all .2s ease;
      font-size:14px;
    }
    .anchor-list a:hover,
    .anchor-list a:focus-visible{
      color:var(--text);
      border-color:rgba(142,165,106,.34);
      background:rgba(142,165,106,.08);
      outline:none;
    }
    .anchor-list a.active{
      color:var(--text);
      border-color:rgba(217,164,65,.28);
      background:rgba(217,164,65,.08);
    }
    .side-list{
      margin:0;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .side-list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:var(--muted);
      font-size:14px;
      line-height:1.7;
    }
    .side-list .dot{
      width:8px;height:8px;border-radius:999px;background:var(--olive);
      margin-top:8px; flex:none;
      box-shadow:0 0 0 3px rgba(142,165,106,.12);
    }
    .search-box{
      display:flex;
      gap:10px;
      margin-top:14px;
    }
    .search-box input{
      width:100%;
      min-height:46px;
      background:#0F120D;
      border:1px solid rgba(178,191,144,.18);
      color:var(--text);
      border-radius:14px;
      padding:0 14px;
      outline:none;
      transition:border-color .2s ease, box-shadow .2s ease;
    }
    .search-box input::placeholder{color:#8B897F}
    .search-box input:focus{
      border-color:rgba(217,164,65,.34);
      box-shadow:0 0 0 3px rgba(217,164,65,.12);
    }
    .main-stack{
      display:grid;
      gap:22px;
    }
    .grid-cards{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:16px;
    }
    .entry-card{
      padding:22px;
      transition:transform .22s ease, border-color .22s ease, box-shadow .22s ease;
      border:1px solid var(--line);
      position:relative;
    }
    .entry-card::before{
      content:"";
      position:absolute;
      left:0;top:18px;bottom:18px;
      width:3px;
      background:linear-gradient(180deg, rgba(217,164,65,.85), rgba(142,165,106,.45));
      opacity:0;
      transition:opacity .22s ease;
      border-radius:999px;
    }
    .entry-card:hover{
      transform:translateY(-2px);
      border-color:rgba(217,164,65,.28);
    }
    .entry-card:hover::before{opacity:1}
    .entry-card h3{
      margin:10px 0 10px;
      font-size:18px;
      line-height:1.3;
    }
    .entry-card p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.75;
    }
    .entry-meta{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-top:18px;
      flex-wrap:wrap;
    }
    .entry-tags{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .tag{
      background:rgba(17,20,15,.72);
      border-color:rgba(178,191,144,.16);
      color:var(--muted);
    }
    .check-panel{
      padding:26px;
    }
    .check-panel .grid{
      display:grid;
      grid-template-columns:1.02fr .98fr;
      gap:22px;
      align-items:start;
    }
    .check-list{
      display:grid;
      gap:12px;
      margin:0;
      padding:0;
      list-style:none;
    }
    .check-list li{
      display:flex;
      gap:12px;
      padding:14px 14px 14px 16px;
      border-radius:16px;
      background:rgba(17,20,15,.72);
      border:1px solid rgba(178,191,144,.14);
    }
    .check-icon{
      width:22px;height:22px;border-radius:999px;
      flex:none;
      display:grid;place-items:center;
      background:rgba(142,165,106,.14);
      border:1px solid rgba(142,165,106,.32);
      color:var(--olive-2);
      margin-top:1px;
    }
    .check-list strong{
      display:block;
      margin-bottom:4px;
      font-size:15px;
    }
    .check-list span{
      color:var(--muted);
      font-size:13px;
      line-height:1.7;
    }
    .compare-row{
      display:grid;
      gap:12px;
    }
    .compare-item{
      display:grid;
      grid-template-columns:112px 1fr;
      gap:14px;
      padding:15px 16px;
      border-radius:16px;
      background:rgba(17,20,15,.72);
      border:1px solid rgba(178,191,144,.14);
    }
    .compare-item .name{
      font-weight:800;
      color:var(--text);
    }
    .compare-item .desc{
      color:var(--muted);
      font-size:13px;
      line-height:1.7;
    }
    .faq-list{
      display:grid;
      gap:12px;
    }
    .faq-item{
      border-radius:18px;
      overflow:hidden;
      border:1px solid rgba(178,191,144,.14);
      background:rgba(17,20,15,.75);
    }
    .faq-trigger{
      width:100%;
      background:transparent;
      color:var(--text);
      border:0;
      padding:18px 18px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      text-align:left;
      cursor:pointer;
    }
    .faq-trigger span{
      font-size:15px;
      font-weight:700;
      line-height:1.5;
    }
    .faq-icon{
      width:28px;height:28px;border-radius:999px;
      border:1px solid rgba(142,165,106,.24);
      display:grid;place-items:center;
      color:var(--olive-2);
      flex:none;
      transition:transform .22s ease, background-color .22s ease;
      background:rgba(142,165,106,.06);
    }
    .faq-item.open .faq-icon{transform:rotate(45deg); background:rgba(217,164,65,.08); border-color:rgba(217,164,65,.24)}
    .faq-content{
      display:none;
      padding:0 18px 18px;
      color:var(--muted);
      font-size:14px;
      line-height:1.8;
    }
    .faq-item.open .faq-content{display:block}
    .cta-panel{
      padding:28px;
      display:grid;
      grid-template-columns:1.08fr .92fr;
      gap:20px;
      align-items:center;
    }
    .cta-panel h2{
      margin:0 0 10px;
      font-size:clamp(26px, 3vw, 38px);
      line-height:1.12;
    }
    .cta-panel p{
      margin:0;
      color:var(--muted);
      max-width:42rem;
    }
    .cta-points{
      display:grid;
      gap:10px;
      margin-top:18px;
    }
    .cta-points li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:var(--text);
      font-size:14px;
      line-height:1.7;
    }
    .cta-points li svg{
      width:18px;height:18px; flex:none; margin-top:3px;
      color:var(--amber);
    }
    .cta-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      justify-content:flex-end;
      align-items:center;
    }
    .cta-mini{
      width:100%;
      max-width:340px;
      justify-self:end;
      padding:18px;
      border-radius:20px;
      border:1px solid rgba(178,191,144,.16);
      background:rgba(17,20,15,.72);
    }
    .cta-mini .line{
      display:flex;
      justify-content:space-between;
      gap:12px;
      color:var(--muted);
      font-size:13px;
      margin-bottom:10px;
    }
    .cta-mini .line strong{
      color:var(--text);
      font-size:15px;
    }
    .progress{
      height:8px;
      border-radius:999px;
      background:rgba(255,255,255,.06);
      overflow:hidden;
      border:1px solid rgba(178,191,144,.12);
    }
    .progress span{
      display:block;
      height:100%;
      width:82%;
      background:linear-gradient(90deg, rgba(142,165,106,.85), rgba(217,164,65,.9));
      border-radius:inherit;
    }
    .site-footer{
      padding:34px 0 24px;
      margin-top:34px;
      background:linear-gradient(180deg, rgba(11,13,11,.96), rgba(8,10,8,.98));
      border-top:1px solid rgba(178,191,144,.14);
      position:relative;
      z-index:1;
    }
    .site-footer::before{
      content:"";
      position:absolute;
      top:0;left:0;right:0;
      height:1px;
      background:linear-gradient(90deg, transparent, rgba(217,164,65,.36), transparent);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr .9fr;
      gap:26px;
      align-items:start;
    }
    .footer-title{
      font-size:15px;
      font-weight:800;
      margin-bottom:14px;
      color:var(--text);
    }
    .footer-links{
      display:grid;
      gap:10px;
    }
    .footer-links a{
      color:var(--muted);
      transition:color .2s ease;
    }
    .footer-links a:hover{color:var(--text)}
    .site-footer p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.8;
    }
    .copyright{
      margin-top:24px;
      padding-top:18px;
      border-top:1px solid rgba(178,191,144,.12);
      display:flex;
      flex-wrap:wrap;
      gap:10px 18px;
      justify-content:space-between;
      color:rgba(184,180,168,.88);
      font-size:13px;
    }
    .menu-toggle{
      display:none;
      width:44px;height:44px;
      border-radius:14px;
      border:1px solid rgba(178,191,144,.18);
      background:rgba(17,20,15,.72);
      color:var(--text);
      align-items:center;
      justify-content:center;
      cursor:pointer;
    }
    .menu-toggle svg{width:20px;height:20px}
    .mobile-drawer{
      display:none;
      position:fixed;
      inset:80px 0 auto 0;
      background:rgba(11,13,11,.98);
      border-bottom:1px solid rgba(178,191,144,.14);
      z-index:55;
      padding:16px 0 18px;
    }
    .mobile-drawer.open{display:block}
    .mobile-drawer .drawer-inner{
      width:min(var(--container), calc(100% - 32px));
      margin:0 auto;
      display:grid;
      gap:14px;
    }
    .mobile-drawer .nav-links{
      justify-content:flex-start;
      overflow-x:auto;
      padding-bottom:4px;
    }
    .mobile-drawer .header-meta{justify-content:flex-start; flex-wrap:wrap}
    .hover-lift{transition:transform .22s ease, border-color .22s ease, box-shadow .22s ease}
    .hover-lift:hover{transform:translateY(-2px)}
    .scanline{
      position:relative;
      overflow:hidden;
    }
    .scanline::after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(120deg, transparent 10%, rgba(255,255,255,.05) 25%, transparent 40%);
      transform:translateX(-120%);
      transition:transform .85s ease;
      pointer-events:none;
    }
    .scanline:hover::after{transform:translateX(120%)}
    .divider{
      height:1px;
      background:linear-gradient(90deg, transparent, rgba(178,191,144,.16), transparent);
    }
    @media (max-width: 1100px){
      .hero-grid,
      .content-grid,
      .check-panel .grid,
      .cta-panel,
      .footer-grid{
        grid-template-columns:1fr;
      }
      .sidebar{
        position:relative;
        top:auto;
      }
      .cta-actions,
      .cta-mini{
        justify-self:start;
        max-width:none;
        width:100%;
      }
      .quick-cards{grid-template-columns:repeat(2,minmax(0,1fr))}
    }
    @media (max-width: 780px){
      .header-inner{min-height:72px}
      .nav-links{display:none}
      .header-meta .status-pill{display:none}
      .menu-toggle{display:inline-flex}
      .hero{padding-top:20px}
      .hero-main{padding:24px; min-height:auto}
      .hero-side-bottom,
      .hero-stats,
      .grid-cards,
      .quick-cards{grid-template-columns:1fr}
      .hero-main h1{font-size:clamp(32px, 8vw, 42px)}
      .hero-main p{font-size:15px}
      .section{padding:64px 0}
      .section-head{
        align-items:flex-start;
        flex-direction:column;
      }
      .entry-card,
      .check-panel,
      .cta-panel,
      .sidebar-card{padding:20px}
      .compare-item{
        grid-template-columns:1fr;
      }
      .copyright{
        flex-direction:column;
        gap:8px;
      }
      .mobile-drawer .nav-links{
        display:flex;
      }
    }
    @media (max-width: 520px){
      .container{width:min(var(--container), calc(100% - 22px))}
      .hero-main h1{font-size:34px}
      .hero-actions .btn{width:100%}
      .quick-card h3{font-size:17px}
      .hero-main, .hero-side-top, .score-card, .entry-card, .check-panel, .cta-panel, .sidebar-card{border-radius:20px}
      .search-box{flex-direction:column}
      .search-box .btn{width:100%}
      .cta-actions{width:100%}
      .cta-actions .btn{width:100%}
      .nav-links a{font-size:13px}
    }

/* roulang page: category2 */
:root{
  --bg:#0B0D0B;
  --bg-soft:#101310;
  --panel:#151812;
  --panel-2:#1B1E17;
  --text:#F4F1E8;
  --muted:#B8B4A8;
  --line:rgba(178,191,144,.22);
  --line-2:rgba(178,191,144,.34);
  --accent:#D9A441;
  --accent-2:#8EA56A;
  --accent-3:#E3B85E;
  --shadow:0 24px 60px rgba(0,0,0,.42);
  --shadow-soft:0 12px 28px rgba(0,0,0,.24);
  --radius:24px;
  --radius-sm:16px;
  --radius-xs:12px;
  --container:1240px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei",sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 18% 14%, rgba(142,165,106,.09), transparent 22%),
    radial-gradient(circle at 84% 10%, rgba(217,164,65,.09), transparent 20%),
    radial-gradient(circle at 50% 72%, rgba(142,165,106,.06), transparent 26%),
    linear-gradient(180deg, #0A0C0A 0%, #0B0D0B 100%);
  line-height:1.75;
  overflow-x:hidden;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(178,191,144,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(178,191,144,.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.82), transparent 90%);
  opacity:.45;
  z-index:-1;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button,input,textarea,select{font:inherit}
::selection{background:rgba(217,164,65,.28);color:var(--text)}
:focus-visible{outline:2px solid rgba(217,164,65,.85);outline-offset:3px}
.container{
  width:min(calc(100% - 32px), var(--container));
  margin-inline:auto;
}
.section{
  padding:96px 0;
  position:relative;
}
.section.tight{padding:72px 0}
.section-title{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:26px;
}
.section-title h2{
  margin:0;
  font-size:clamp(28px, 3vw, 40px);
  line-height:1.12;
  letter-spacing:.01em;
}
.section-title p{
  margin:0;
  color:var(--muted);
  max-width:58ch;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 12px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  border-radius:999px;
  color:var(--muted);
  font-size:12px;
  letter-spacing:.04em;
}
.kicker .dot,
.status-pill .dot,
.badge .dot{
  width:8px;height:8px;border-radius:999px;
  background:var(--accent-2);
  box-shadow:0 0 0 4px rgba(142,165,106,.12);
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(142,165,106,.24);
  background:rgba(142,165,106,.08);
  color:#DDE8CA;
  font-size:12px;
  line-height:1;
}
.badge.warn{
  border-color:rgba(217,164,65,.25);
  background:rgba(217,164,65,.08);
  color:#F6E0AB;
}
.status-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:var(--muted);
  font-size:12px;
  line-height:1;
  white-space:nowrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:46px;
  padding:0 18px;
  border-radius:999px;
  border:1px solid transparent;
  transition:transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease, opacity .2s ease;
  cursor:pointer;
  user-select:none;
  white-space:nowrap;
  font-weight:700;
}
.btn:hover{transform:translateY(-1px)}
.btn:active{transform:translateY(0)}
.btn-primary{
  background:linear-gradient(180deg, #E0AA4D 0%, #D79F38 100%);
  color:#18140E;
  box-shadow:0 14px 24px rgba(217,164,65,.16);
}
.btn-primary:hover{
  box-shadow:0 18px 28px rgba(217,164,65,.22);
  filter:brightness(1.03);
}
.btn-secondary{
  background:rgba(142,165,106,.08);
  color:var(--text);
  border-color:rgba(142,165,106,.42);
}
.btn-secondary:hover{
  background:rgba(142,165,106,.12);
}
.btn-ghost{
  background:transparent;
  color:var(--muted);
  border-color:var(--line);
}
.btn-ghost:hover{
  color:var(--text);
  border-color:var(--line-2);
  background:rgba(255,255,255,.03);
}
.card{
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow-soft);
}
.card:hover{
  border-color:var(--line-2);
}
.page-shell{position:relative}
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:saturate(120%) blur(8px);
  background:rgba(11,13,11,.72);
  border-bottom:1px solid rgba(178,191,144,.12);
}
.site-header.is-scrolled{
  box-shadow:0 10px 24px rgba(0,0,0,.2);
  background:rgba(11,13,11,.9);
}
.header-inner{
  min-height:80px;
  display:flex;
  align-items:center;
  gap:18px;
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:12px;
  min-width:max-content;
}
.brand-mark{
  position:relative;
  width:38px;
  height:38px;
  border-radius:13px;
  background:
    linear-gradient(135deg, rgba(217,164,65,.18), rgba(142,165,106,.12)),
    rgba(255,255,255,.02);
  border:1px solid rgba(178,191,144,.26);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.03);
}
.brand-mark::before,
.brand-mark::after{
  content:"";
  position:absolute;
  inset:9px;
  border-radius:50%;
  border:1px solid rgba(242,241,232,.36);
}
.brand-mark::after{
  inset:14px;
  border-color:rgba(217,164,65,.66);
}
.brand-mark span{
  position:absolute;
  left:50%;
  top:50%;
  width:14px;
  height:1.5px;
  background:rgba(242,241,232,.72);
  transform:translate(-50%,-50%);
}
.brand-mark span::before,
.brand-mark span::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:1.5px;
  height:14px;
  background:rgba(242,241,232,.72);
  transform:translate(-50%,-50%);
}
.brand-text{
  font-size:15px;
  font-weight:800;
  letter-spacing:.02em;
}
.header-spacer{flex:1}
.nav-links{
  display:flex;
  align-items:center;
  gap:6px;
}
.nav-links a{
  display:inline-flex;
  align-items:center;
  min-height:42px;
  padding:0 14px;
  border-radius:999px;
  color:var(--muted);
  border:1px solid transparent;
  transition:all .2s ease;
}
.nav-links a:hover{
  color:var(--text);
  background:rgba(255,255,255,.03);
  border-color:rgba(178,191,144,.18);
}
.nav-links a.active{
  color:#EDE7D2;
  background:rgba(142,165,106,.12);
  border-color:rgba(142,165,106,.3);
}
.header-tools{
  display:flex;
  align-items:center;
  gap:10px;
}
.countdown-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 12px;
  border-radius:999px;
  border:1px solid rgba(217,164,65,.22);
  background:rgba(217,164,65,.08);
  color:#F4E7C2;
  font-size:12px;
  white-space:nowrap;
}
.countdown-pill strong{
  font-size:13px;
  letter-spacing:.04em;
}
.header-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 16px;
  border-radius:999px;
  background:linear-gradient(180deg, #E0AA4D 0%, #D79F38 100%);
  color:#18140E;
  font-weight:800;
  box-shadow:0 14px 24px rgba(217,164,65,.14);
}
.menu-toggle{
  display:none;
  align-items:center;
  justify-content:center;
  width:46px;
  height:46px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:var(--text);
}
.mobile-drawer{
  display:none;
  position:absolute;
  left:0;
  right:0;
  top:100%;
  border-top:1px solid rgba(178,191,144,.12);
  background:rgba(11,13,11,.96);
  box-shadow:var(--shadow);
}
.mobile-drawer .drawer-inner{
  padding:18px 0 20px;
}
.mobile-drawer .nav-links{
  display:grid;
  gap:8px;
}
.mobile-drawer .nav-links a{
  justify-content:flex-start;
  width:100%;
  min-height:48px;
}
.mobile-drawer .drawer-cta{
  margin-top:14px;
  display:grid;
  gap:10px;
}
.hero{
  padding:28px 0 18px;
}
.hero-shell{
  position:relative;
  overflow:hidden;
  border-bottom:1px solid rgba(178,191,144,.10);
}
.hero-shell::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(135deg, rgba(217,164,65,.07), transparent 40%),
    radial-gradient(circle at 70% 18%, rgba(142,165,106,.12), transparent 20%),
    radial-gradient(circle at 22% 35%, rgba(217,164,65,.08), transparent 18%);
  pointer-events:none;
}
.hero-grid{
  position:relative;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:30px;
  align-items:stretch;
  padding:28px 0 22px;
}
.breadcrumb{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;
  margin-bottom:18px;
  color:var(--muted);
  font-size:13px;
}
.breadcrumb a{color:#D2D7C5}
.breadcrumb span{opacity:.55}
.hero h1{
  margin:10px 0 14px;
  font-size:clamp(34px, 5vw, 62px);
  line-height:1.1;
  letter-spacing:.01em;
}
.hero p{
  margin:0;
  max-width:68ch;
  color:var(--muted);
  font-size:16px;
  line-height:1.8;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:22px;
}
.hero-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:20px;
}
.hero-meta .status-pill{background:rgba(255,255,255,.02)}
.hero-panel{
  display:grid;
  gap:16px;
}
.ring-card{
  position:relative;
  display:grid;
  grid-template-columns:170px 1fr;
  gap:18px;
  align-items:center;
  padding:22px;
  min-height:240px;
  border-radius:var(--radius);
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.progress-ring{
  position:relative;
  width:170px;
  height:170px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:
    conic-gradient(var(--accent) 0 86%, rgba(184,180,168,.14) 86% 100%);
}
.progress-ring::before{
  content:"";
  position:absolute;
  inset:16px;
  border-radius:50%;
  background:linear-gradient(180deg, #111411, #181B15);
  border:1px solid rgba(178,191,144,.16);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.02);
}
.progress-ring .ring-copy{
  position:relative;
  z-index:1;
  text-align:center;
}
.progress-ring .ring-copy strong{
  display:block;
  font-size:40px;
  line-height:1;
  color:#F7E4B7;
}
.progress-ring .ring-copy span{
  display:block;
  margin-top:8px;
  font-size:12px;
  color:var(--muted);
  letter-spacing:.08em;
}
.ring-note h3{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.2;
}
.ring-note p{
  margin:0 0 16px;
  font-size:15px;
}
.note-stack{
  display:grid;
  gap:10px;
}
.note-card{
  padding:14px 15px;
  border-radius:18px;
  border:1px solid rgba(178,191,144,.18);
  background:rgba(255,255,255,.02);
}
.note-card .label{
  display:flex;
  align-items:center;
  gap:8px;
  color:#DCE7C7;
  font-size:12px;
  margin-bottom:6px;
}
.note-card .label i{
  width:6px;height:6px;border-radius:999px;
  background:var(--accent);
  box-shadow:0 0 0 4px rgba(217,164,65,.11);
}
.note-card .value{
  font-size:15px;
  color:var(--text);
}
.state-strip{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
  margin-top:18px;
}
.state-item{
  padding:14px 16px;
  border-radius:18px;
  border:1px solid rgba(178,191,144,.16);
  background:rgba(255,255,255,.02);
}
.state-item strong{
  display:block;
  font-size:18px;
  margin-bottom:6px;
  color:#F6E7BF;
}
.state-item span{
  font-size:13px;
  color:var(--muted);
}
.update-layout{
  display:grid;
  grid-template-columns:310px 1fr;
  gap:28px;
  align-items:start;
}
.sidebar{
  position:sticky;
  top:104px;
}
.side-card{
  padding:20px;
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  box-shadow:var(--shadow-soft);
}
.side-card + .side-card{margin-top:16px}
.side-card h3{
  margin:0 0 12px;
  font-size:18px;
  line-height:1.25;
}
.side-card p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.8;
}
.search-box{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:14px;
  padding:12px 14px;
  border-radius:18px;
  border:1px solid rgba(178,191,144,.16);
  background:rgba(0,0,0,.18);
}
.search-box svg{flex:none;color:#C9D5B1}
.search-box input{
  width:100%;
  border:none;
  outline:none;
  background:transparent;
  color:var(--text);
}
.search-box input::placeholder{color:#8F8C81}
.quick-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}
.quick-tags a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:36px;
  padding:0 12px;
  border-radius:999px;
  border:1px solid rgba(178,191,144,.18);
  background:rgba(255,255,255,.02);
  color:#D7D4C8;
  font-size:12px;
}
.quick-tags a:hover{
  border-color:rgba(217,164,65,.35);
  background:rgba(217,164,65,.08);
}
.checklist{
  display:grid;
  gap:10px;
  margin-top:14px;
}
.check-item{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:12px 0;
  border-top:1px solid rgba(178,191,144,.12);
}
.check-item:first-child{border-top:none;padding-top:0}
.check-icon{
  width:20px;
  height:20px;
  flex:none;
  margin-top:2px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:rgba(142,165,106,.12);
  border:1px solid rgba(142,165,106,.28);
  color:#DCE7C7;
  font-size:12px;
  line-height:1;
}
.check-item strong{
  display:block;
  font-size:14px;
  margin-bottom:3px;
}
.check-item span{
  color:var(--muted);
  font-size:13px;
  line-height:1.7;
}
.timeline-list{
  position:relative;
  display:grid;
  gap:18px;
}
.timeline-list::before{
  content:"";
  position:absolute;
  left:18px;
  top:8px;
  bottom:8px;
  width:1px;
  background:linear-gradient(180deg, rgba(178,191,144,.35), rgba(178,191,144,.05));
}
.timeline-item{
  position:relative;
  margin-left:42px;
  padding:20px 22px 18px;
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  box-shadow:var(--shadow-soft);
  transition:transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.timeline-item:hover{
  transform:translateY(-2px);
  border-color:var(--line-2);
  box-shadow:var(--shadow);
}
.timeline-item::before{
  content:"";
  position:absolute;
  left:-31px;
  top:24px;
  width:12px;
  height:12px;
  border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 0 5px rgba(217,164,65,.12);
}
.timeline-top{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}
.timeline-top h3{
  margin:0;
  font-size:20px;
  line-height:1.2;
}
.time-tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(178,191,144,.18);
  color:#D7D4C8;
  font-size:12px;
}
.timeline-item p{
  margin:0;
  color:var(--muted);
  font-size:15px;
  line-height:1.8;
}
.timeline-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:14px;
}
.timeline-links{
  display:flex;
  gap:10px;
  margin-top:16px;
}
.timeline-links a{
  color:#F1E7C6;
  font-size:13px;
  border-bottom:1px solid rgba(217,164,65,.35);
}
.timeline-links a:hover{color:var(--accent-3)}
.compare-wrap{
  display:grid;
  gap:18px;
}
.compare-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.compare-card{
  padding:20px;
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  box-shadow:var(--shadow-soft);
}
.compare-card .topline{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-bottom:14px;
}
.compare-card h3{
  margin:0;
  font-size:18px;
}
.compare-card .score{
  color:#F6E7BF;
  font-weight:800;
  letter-spacing:.03em;
}
.meter{
  position:relative;
  height:9px;
  border-radius:999px;
  overflow:hidden;
  background:rgba(184,180,168,.12);
  margin-bottom:12px;
}
.meter span{
  position:absolute;
  inset:0 auto 0 0;
  border-radius:999px;
  background:linear-gradient(90deg, var(--accent-2), var(--accent));
}
.compare-card p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.8;
}
.quote-strip{
  overflow:hidden;
}
.quote-track{
  display:flex;
  gap:14px;
  overflow-x:auto;
  padding-bottom:6px;
  scroll-snap-type:x proximity;
}
.quote-track::-webkit-scrollbar{height:8px}
.quote-track::-webkit-scrollbar-thumb{
  background:rgba(178,191,144,.22);
  border-radius:999px;
}
.quote-chip{
  flex:0 0 290px;
  scroll-snap-align:start;
  padding:18px;
  border-radius:22px;
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
}
.quote-head{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:10px;
}
.avatar{
  width:36px;
  height:36px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:rgba(142,165,106,.12);
  border:1px solid rgba(142,165,106,.28);
  color:#E4EDD3;
  font-weight:800;
}
.quote-head strong{
  display:block;
  font-size:14px;
}
.quote-head span{
  display:block;
  color:var(--muted);
  font-size:12px;
}
.quote-chip p{
  margin:0;
  color:#E7E1D4;
  font-size:14px;
  line-height:1.85;
}
.quote-chip .mini-status{
  margin-top:12px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#D7D4C8;
  font-size:12px;
}
.cta-panel{
  position:relative;
  overflow:hidden;
  padding:32px;
  border-radius:calc(var(--radius) + 4px);
  border:1px solid rgba(217,164,65,.2);
  background:
    linear-gradient(135deg, rgba(217,164,65,.12), rgba(142,165,106,.05)),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  box-shadow:var(--shadow);
}
.cta-panel::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, transparent 0, rgba(178,191,144,.05) 50%, transparent 100%),
    linear-gradient(180deg, rgba(178,191,144,.08), transparent 20%);
  opacity:.7;
  pointer-events:none;
}
.cta-grid{
  position:relative;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:22px;
  align-items:center;
}
.cta-copy h2{
  margin:0 0 12px;
  font-size:clamp(28px, 3.2vw, 42px);
  line-height:1.12;
}
.cta-copy p{
  margin:0;
  color:#E7E1D4;
  font-size:15px;
  line-height:1.8;
  max-width:60ch;
}
.cta-points{
  display:grid;
  gap:10px;
  margin-top:18px;
}
.cta-point{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:#F0E7D0;
  font-size:14px;
}
.cta-point i{
  width:18px;
  height:18px;
  border-radius:50%;
  flex:none;
  margin-top:3px;
  background:rgba(142,165,106,.18);
  border:1px solid rgba(142,165,106,.34);
  position:relative;
}
.cta-point i::before{
  content:"";
  position:absolute;
  left:5px;
  top:3px;
  width:5px;
  height:8px;
  border-right:2px solid #E4EDD3;
  border-bottom:2px solid #E4EDD3;
  transform:rotate(40deg);
}
.cta-actions{
  display:flex;
  flex-direction:column;
  gap:12px;
  align-items:stretch;
}
.cta-actions .btn{width:100%}
.faq-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
}
.faq-list{
  display:grid;
  gap:12px;
}
.faq-item{
  border-radius:20px;
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  overflow:hidden;
}
.faq-item summary{
  list-style:none;
  cursor:pointer;
  padding:18px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  font-weight:700;
  color:#F0E8D1;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary .toggle{
  width:28px;
  height:28px;
  border-radius:50%;
  border:1px solid rgba(178,191,144,.18);
  display:grid;
  place-items:center;
  flex:none;
  color:#D9D4C4;
  transition:transform .2s ease, background-color .2s ease, border-color .2s ease;
}
.faq-item[open] summary .toggle{
  transform:rotate(45deg);
  background:rgba(142,165,106,.10);
  border-color:rgba(142,165,106,.28);
}
.faq-content{
  padding:0 20px 18px;
  color:var(--muted);
  font-size:14px;
  line-height:1.85;
}
.faq-side{
  padding:22px;
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
}
.faq-side h3{
  margin:0 0 10px;
  font-size:18px;
}
.faq-side p{
  margin:0 0 14px;
  color:var(--muted);
  font-size:14px;
}
.notice-list{
  display:grid;
  gap:10px;
  margin-top:10px;
}
.notice-list .notice{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:#DDD8CA;
  font-size:13px;
}
.notice-list .notice .mini{
  width:8px;height:8px;border-radius:50%;
  background:var(--accent-2);
  box-shadow:0 0 0 4px rgba(142,165,106,.12);
  margin-top:7px;
  flex:none;
}
.site-footer{
  margin-top:96px;
  padding:34px 0 22px;
  border-top:1px solid rgba(178,191,144,.12);
  background:linear-gradient(180deg, rgba(10,12,10,.2), rgba(8,10,8,.5));
}
.site-footer .container{position:relative}
.site-footer .container::before{
  content:"";
  display:block;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(178,191,144,.34), transparent);
  margin-bottom:24px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:24px;
}
.footer-title{
  margin:0 0 12px;
  font-size:15px;
  font-weight:800;
  color:#F4F1E8;
}
.footer-links{
  display:grid;
  gap:10px;
}
.footer-links a{
  color:var(--muted);
  transition:color .2s ease;
}
.footer-links a:hover{color:#F1E7C6}
.site-footer p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.8;
}
.copyright{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:10px;
  margin-top:24px;
  padding-top:18px;
  border-top:1px solid rgba(178,191,144,.10);
  color:#969488;
  font-size:12px;
}
.small-note{
  font-size:12px;
  color:#989488;
}
.anchor-link{
  color:#F3E6C1;
  border-bottom:1px solid rgba(217,164,65,.35);
}
.anchor-link:hover{color:var(--accent-3)}
@media (max-width: 1100px){
  .nav-links{display:none}
  .menu-toggle{display:inline-flex}
  .header-cta{display:none}
  .mobile-drawer{display:block;transform:translateY(-12px);opacity:0;pointer-events:none;transition:all .22s ease}
  .mobile-drawer.open{transform:translateY(0);opacity:1;pointer-events:auto}
  .hero-grid,
  .update-layout,
  .cta-grid,
  .footer-grid,
  .compare-grid{
    grid-template-columns:1fr;
  }
  .sidebar{position:static}
  .state-strip{grid-template-columns:repeat(2,1fr)}
  .ring-card{grid-template-columns:1fr}
  .progress-ring{margin-inline:auto}
}
@media (max-width: 760px){
  .section{padding:68px 0}
  .hero{padding-top:18px}
  .header-inner{min-height:72px}
  .brand-text{font-size:14px}
  .hero h1{font-size:clamp(32px, 10vw, 42px)}
  .hero p{font-size:15px}
  .state-strip{grid-template-columns:1fr}
  .timeline-list::before{left:10px}
  .timeline-item{margin-left:22px;padding:18px}
  .timeline-item::before{left:-20px;top:22px}
  .section-title{flex-direction:column;align-items:flex-start}
  .quote-chip{flex-basis:260px}
  .cta-panel{padding:24px}
  .copyright{flex-direction:column}
}
@media (max-width: 520px){
  .container{width:min(calc(100% - 22px), var(--container))}
  .hero-actions,.hero-meta,.timeline-links{flex-direction:column;align-items:stretch}
  .btn,.header-cta{width:100%}
  .progress-ring{
    width:152px;height:152px;
  }
  .ring-note h3{font-size:20px}
  .menu-toggle{width:44px;height:44px}
  .quote-chip{flex-basis:86%}
  .faq-item summary{padding:16px}
  .faq-content{padding:0 16px 16px}
}
