/* roulang page: index */
:root{
      --bg:#F5F2EA;
      --card:#FFFDF8;
      --card-2:#F8F4EA;
      --line:rgba(18,59,52,.14);
      --line-strong:rgba(18,59,52,.22);
      --text:#202522;
      --muted:#66736D;
      --brand:#123B34;
      --brand-2:#1DAA9A;
      --accent:#D8A441;
      --warn:#E36B2C;
      --shadow:0 16px 40px rgba(18,59,52,.08);
      --shadow-2:0 20px 54px rgba(18,59,52,.12);
      --radius-xl:26px;
      --radius-lg:20px;
      --radius-md:16px;
      --radius-sm:12px;
      --container:1220px;
      --ease:cubic-bezier(.2,.8,.2,1);
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:PingFang SC, Microsoft YaHei, Noto Sans SC, Arial, sans-serif;
      background:
        radial-gradient(circle at top left, rgba(29,170,154,.09), transparent 26%),
        radial-gradient(circle at top right, rgba(216,164,65,.08), transparent 24%),
        var(--bg);
      color:var(--text);
      line-height:1.78;
      -webkit-font-smoothing:antialiased;
      text-rendering:optimizeLegibility;
    }
    img{max-width:100%;display:block}
    a{color:inherit;text-decoration:none}
    button,input,textarea{font:inherit}
    ::selection{background:rgba(29,170,154,.18);color:var(--brand)}
    .container{
      width:min(calc(100% - 32px), var(--container));
      margin:0 auto;
    }
    .skip-link{
      position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden;
    }
    .skip-link:focus{
      left:16px;top:16px;width:auto;height:auto;padding:10px 14px;
      background:var(--card);border:1px solid var(--line);border-radius:999px;z-index:1000;
    }
    .site-header{
      position:sticky;top:0;z-index:100;
      backdrop-filter:saturate(160%) blur(14px);
      background:rgba(245,242,234,.75);
      border-bottom:1px solid rgba(18,59,52,.08);
      transition:background .22s var(--ease), box-shadow .22s var(--ease), transform .22s var(--ease);
    }
    .site-header.is-scrolled{
      background:rgba(255,253,248,.9);
      box-shadow:0 10px 34px rgba(18,59,52,.08);
    }
    .header-inner{
      min-height:80px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }
    .brand{
      display:flex;align-items:center;gap:12px;min-width:0;
      font-weight:800;color:var(--brand);
      letter-spacing:.2px;
    }
    .brand-mark{
      width:40px;height:40px;border-radius:14px;
      background:
        linear-gradient(145deg, rgba(29,170,154,.95), rgba(18,59,52,.95));
      position:relative;
      box-shadow:0 10px 22px rgba(18,59,52,.16);
      flex:0 0 auto;
    }
    .brand-mark::before,
    .brand-mark::after{
      content:"";position:absolute;border-radius:999px;background:rgba(255,253,248,.92);
    }
    .brand-mark::before{inset:10px 8px auto 8px;height:3px;top:12px}
    .brand-mark::after{inset:auto 8px 10px 8px;height:3px;bottom:12px}
    .brand-text{
      display:flex;flex-direction:column;line-height:1.15;min-width:0;
    }
    .brand-text strong{
      font-size:1.02rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
    }
    .brand-text span{
      font-size:.78rem;color:var(--muted);font-weight:600;
    }
    .nav-wrap{
      display:flex;align-items:center;gap:18px;flex:1;justify-content:flex-end;
    }
    .nav-links{
      display:flex;align-items:center;gap:4px;flex-wrap:wrap;
    }
    .nav-links a{
      position:relative;
      padding:11px 14px;
      color:rgba(32,37,34,.84);
      border-radius:999px;
      font-weight:650;
      transition:all .2s var(--ease);
      outline:none;
    }
    .nav-links a:hover,
    .nav-links a:focus-visible{
      color:var(--brand-2);
      background:rgba(29,170,154,.08);
    }
    .nav-links a.active{
      color:var(--brand);
      background:rgba(18,59,52,.08);
      box-shadow:inset 0 0 0 1px rgba(18,59,52,.12);
    }
    .nav-links a.active::after{
      content:"";position:absolute;left:16px;right:16px;bottom:7px;height:2px;border-radius:999px;background:var(--accent);
      opacity:.9;
    }
    .header-actions{
      display:flex;align-items:center;gap:10px;
    }
    .btn{
      display:inline-flex;align-items:center;justify-content:center;gap:10px;
      padding:12px 18px;
      border-radius:14px;
      border:1px solid transparent;
      font-weight:700;
      cursor:pointer;
      transition:transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
      user-select:none;
      white-space:nowrap;
    }
    .btn:hover{transform:translateY(-1px)}
    .btn:active{transform:translateY(0)}
    .btn:focus-visible{outline:3px solid rgba(29,170,154,.22);outline-offset:2px}
    .btn-primary{
      background:var(--brand);
      color:#fff;
      box-shadow:0 12px 26px rgba(18,59,52,.16);
    }
    .btn-primary:hover{background:#0f312c}
    .btn-secondary{
      background:rgba(255,253,248,.8);
      color:var(--brand);
      border-color:rgba(18,59,52,.16);
    }
    .btn-secondary:hover{
      background:rgba(29,170,154,.09);
      border-color:rgba(29,170,154,.32);
    }
    .btn-ghost{
      background:transparent;
      color:var(--brand);
      border-color:rgba(18,59,52,.16);
    }
    .btn-ghost:hover{
      background:rgba(18,59,52,.05);
      border-color:rgba(18,59,52,.24);
    }
    .btn-warning{
      background:rgba(227,107,44,.08);
      color:#b24c18;
      border-color:rgba(227,107,44,.22);
    }
    .btn-warning:hover{
      background:rgba(227,107,44,.13);
      border-color:rgba(227,107,44,.34);
    }
    .mobile-toggle{
      display:none;
      width:46px;height:46px;border-radius:14px;border:1px solid rgba(18,59,52,.16);
      background:rgba(255,253,248,.9);
      align-items:center;justify-content:center;cursor:pointer;
    }
    .mobile-toggle span{
      width:18px;height:2px;background:var(--brand);position:relative;border-radius:999px;display:block;
    }
    .mobile-toggle span::before,
    .mobile-toggle span::after{
      content:"";position:absolute;left:0;width:18px;height:2px;background:var(--brand);border-radius:999px;
    }
    .mobile-toggle span::before{top:-6px}
    .mobile-toggle span::after{top:6px}
    .mobile-drawer{
      display:none;
      position:fixed;left:0;right:0;top:80px;z-index:99;
      background:rgba(245,242,234,.98);
      border-bottom:1px solid rgba(18,59,52,.12);
      box-shadow:0 20px 40px rgba(18,59,52,.08);
    }
    .mobile-drawer.open{display:block}
    .mobile-drawer .nav-links{
      flex-direction:column;align-items:stretch;padding:14px 16px 18px;gap:8px;
    }
    .mobile-drawer .nav-links a{
      display:flex;align-items:center;justify-content:space-between;
      background:rgba(255,253,248,.88);
      border:1px solid rgba(18,59,52,.08);
      min-height:46px;
    }
    .hero{
      position:relative;
      padding:26px 0 22px;
    }
    .hero-shell{
      position:relative;
      overflow:hidden;
      border-radius:28px;
      background:
        linear-gradient(115deg, rgba(10,35,31,.92), rgba(18,59,52,.84) 55%, rgba(17,55,49,.9)),
        url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
      color:#f4f2eb;
      box-shadow:var(--shadow-2);
      border:1px solid rgba(255,255,255,.08);
    }
    .hero-shell::before{
      content:"";
      position:absolute;inset:0;
      background:
        radial-gradient(circle at 18% 18%, rgba(216,164,65,.18), transparent 22%),
        radial-gradient(circle at 82% 20%, rgba(29,170,154,.18), transparent 24%),
        linear-gradient(180deg, rgba(18,59,52,.16), rgba(18,59,52,.38));
      pointer-events:none;
    }
    .hero-inner{
      position:relative;
      display:grid;
      grid-template-columns:1.08fr .92fr;
      gap:28px;
      padding:44px;
      align-items:stretch;
    }
    .eyebrow{
      display:inline-flex;align-items:center;gap:8px;
      color:#d8f2ef;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.1);
      padding:8px 14px;
      border-radius:999px;
      font-size:.92rem;
      font-weight:650;
      letter-spacing:.15px;
      width:fit-content;
      margin-bottom:18px;
    }
    .eyebrow-dot{
      width:8px;height:8px;border-radius:999px;background:var(--accent);box-shadow:0 0 0 5px rgba(216,164,65,.12);
    }
    h1{
      margin:0;
      font-size:clamp(2rem, 4vw, 3.2rem);
      line-height:1.18;
      letter-spacing:-.02em;
      max-width:12.5ch;
    }
    .hero p{
      margin:18px 0 0;
      color:rgba(244,242,235,.86);
      font-size:1.02rem;
      max-width:62ch;
    }
    .hero-actions{
      display:flex;flex-wrap:wrap;gap:12px;margin-top:24px;
    }
    .hero-tags{
      display:flex;flex-wrap:wrap;gap:10px;margin-top:24px;
    }
    .tag{
      display:inline-flex;align-items:center;gap:8px;
      padding:9px 14px;
      border-radius:999px;
      font-size:.92rem;
      font-weight:650;
      border:1px solid rgba(255,255,255,.12);
      background:rgba(255,255,255,.08);
      color:#f7f5ef;
      backdrop-filter:blur(8px);
    }
    .tag.alt{
      background:rgba(29,170,154,.12);
      color:#e9fffb;
      border-color:rgba(29,170,154,.22);
    }
    .tag.gold{
      background:rgba(216,164,65,.14);
      color:#fff5de;
      border-color:rgba(216,164,65,.24);
    }
    .hero-metrics{
      display:grid;
      grid-template-columns:repeat(4, minmax(0,1fr));
      gap:12px;
      margin-top:28px;
    }
    .metric{
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.1);
      border-radius:18px;
      padding:16px 14px;
      backdrop-filter:blur(10px);
    }
    .metric strong{
      display:block;
      font-size:1.28rem;
      color:#fff;
      line-height:1.1;
      margin-bottom:6px;
    }
    .metric span{
      color:rgba(244,242,235,.78);
      font-size:.88rem;
      display:block;
    }
    .hero-panel{
      display:grid;
      gap:14px;
      align-content:space-between;
    }
    .panel-card{
      background:rgba(255,253,248,.95);
      color:var(--text);
      border-radius:22px;
      border:1px solid rgba(255,255,255,.22);
      box-shadow:0 16px 36px rgba(0,0,0,.12);
      overflow:hidden;
    }
    .panel-head{
      display:flex;align-items:center;justify-content:space-between;
      padding:16px 18px;
      border-bottom:1px solid rgba(18,59,52,.08);
      background:linear-gradient(180deg, rgba(245,242,234,.8), rgba(255,253,248,.95));
    }
    .panel-head strong{
      font-size:1rem;color:var(--brand);
    }
    .panel-head small{
      color:var(--muted);font-weight:600;
    }
    .panel-body{padding:18px}
    .match-board{
      display:grid;gap:12px;
    }
    .match-row{
      display:grid;
      grid-template-columns:auto 1fr auto;
      gap:12px;
      align-items:center;
      padding:14px 15px;
      background:var(--card-2);
      border:1px solid rgba(18,59,52,.08);
      border-radius:16px;
    }
    .match-row .stage{
      display:flex;flex-direction:column;gap:4px;
      min-width:0;
    }
    .match-row .stage b{font-size:.96rem;color:var(--brand)}
    .match-row .stage span{color:var(--muted);font-size:.86rem}
    .score-pill{
      display:inline-flex;align-items:center;justify-content:center;
      min-width:84px;
      padding:10px 12px;
      border-radius:14px;
      background:rgba(216,164,65,.14);
      color:#9f6f17;
      font-weight:800;
      letter-spacing:.04em;
    }
    .mini-note{
      margin-top:14px;
      padding:14px 16px;
      border-radius:16px;
      background:rgba(29,170,154,.08);
      border:1px solid rgba(29,170,154,.14);
      color:#145f57;
      font-size:.94rem;
    }
    .ticker{
      margin-top:16px;
      overflow:hidden;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.12);
      background:rgba(255,255,255,.06);
    }
    .ticker-track{
      display:flex;
      gap:12px;
      align-items:center;
      padding:12px 18px;
      white-space:nowrap;
      color:#f5f3ec;
      animation:ticker 26s linear infinite;
    }
    .ticker-track span{
      display:inline-flex;align-items:center;gap:8px;
      padding-right:12px;
    }
    .ticker-dot{width:7px;height:7px;border-radius:999px;background:var(--accent)}
    @keyframes ticker{
      from{transform:translateX(0)}
      to{transform:translateX(-50%)}
    }
    .section{
      padding:82px 0 0;
    }
    .section:first-of-type{padding-top:28px}
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:20px;
      margin-bottom:24px;
    }
    .section-title{
      margin:0;
      font-size:clamp(1.6rem, 2.8vw, 2.35rem);
      line-height:1.18;
      color:var(--brand);
      letter-spacing:-.02em;
    }
    .section-lead{
      margin:10px 0 0;
      color:var(--muted);
      max-width:72ch;
      font-size:1rem;
    }
    .section-link{
      color:var(--brand-2);
      font-weight:700;
      display:inline-flex;
      align-items:center;
      gap:8px;
      white-space:nowrap;
    }
    .section-link::after{content:"→";transition:transform .2s var(--ease)}
    .section-link:hover::after{transform:translateX(2px)}
    .quick-grid{
      display:grid;
      grid-template-columns:repeat(6,minmax(0,1fr));
      gap:14px;
    }
    .quick-card{
      background:var(--card);
      border:1px solid rgba(18,59,52,.08);
      border-radius:20px;
      box-shadow:var(--shadow);
      padding:18px 16px;
      transition:transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
      min-height:136px;
    }
    .quick-card:hover{
      transform:translateY(-2px);
      border-color:rgba(29,170,154,.38);
      box-shadow:var(--shadow-2);
    }
    .quick-ic{
      width:42px;height:42px;border-radius:14px;
      display:inline-flex;align-items:center;justify-content:center;
      background:linear-gradient(180deg, rgba(29,170,154,.14), rgba(216,164,65,.08));
      color:var(--brand);
      font-weight:900;
      margin-bottom:12px;
      border:1px solid rgba(18,59,52,.08);
    }
    .quick-card h3{
      margin:0 0 8px;
      font-size:1.02rem;
      color:var(--brand);
      line-height:1.3;
    }
    .quick-card p{
      margin:0;
      color:var(--muted);
      font-size:.94rem;
      line-height:1.72;
    }
    .two-col{
      display:grid;
      grid-template-columns:1.04fr .96fr;
      gap:24px;
      align-items:start;
    }
    .panel{
      background:var(--card);
      border:1px solid rgba(18,59,52,.08);
      border-radius:var(--radius-xl);
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .panel-pad{padding:26px}
    .timeline{
      display:grid;
      gap:18px;
      position:relative;
      padding-left:4px;
    }
    .timeline::before{
      content:"";
      position:absolute;
      left:14px;
      top:6px;
      bottom:6px;
      width:2px;
      background:linear-gradient(180deg, rgba(18,59,52,.2), rgba(18,59,52,.08));
    }
    .timeline-item{
      position:relative;
      display:grid;
      grid-template-columns:24px 1fr;
      gap:14px;
      align-items:flex-start;
    }
    .timeline-dot{
      width:18px;height:18px;border-radius:999px;
      background:var(--accent);
      border:4px solid rgba(216,164,65,.16);
      box-shadow:0 0 0 1px rgba(18,59,52,.08);
      margin-top:4px;
      position:relative;
      z-index:1;
    }
    .timeline-content{
      background:linear-gradient(180deg, rgba(248,244,234,.92), rgba(255,253,248,.98));
      border:1px solid rgba(18,59,52,.08);
      border-radius:18px;
      padding:18px 18px 16px;
    }
    .timeline-content strong{
      display:block;
      color:var(--brand);
      font-size:1.04rem;
      margin-bottom:8px;
    }
    .timeline-content p{
      margin:0 0 10px;
      color:var(--muted);
      font-size:.96rem;
    }
    .meta-tags{
      display:flex;flex-wrap:wrap;gap:8px;
    }
    .meta-tags .tag{
      color:var(--brand);
      background:rgba(29,170,154,.08);
      border-color:rgba(29,170,154,.16);
      padding:7px 12px;
      font-size:.84rem;
    }
    .summary-card{
      background:
        linear-gradient(180deg, rgba(18,59,52,.96), rgba(19,56,50,.92)),
        url('/assets/images/backpic/back-2.webp') center/cover no-repeat;
      color:#f7f3ea;
      border-radius:var(--radius-xl);
      padding:26px;
      border:1px solid rgba(255,255,255,.08);
      box-shadow:var(--shadow-2);
      position:relative;
      overflow:hidden;
    }
    .summary-card::before{
      content:"";position:absolute;inset:0;
      background:radial-gradient(circle at 85% 18%, rgba(216,164,65,.16), transparent 26%);
      pointer-events:none;
    }
    .summary-card h3{
      margin:0 0 12px;
      font-size:1.25rem;
      color:#fff;
    }
    .summary-card p{margin:0 0 18px;color:rgba(247,243,234,.84)}
    .summary-list{
      display:grid;
      gap:12px;
      margin:0;padding:0;list-style:none;
    }
    .summary-list li{
      display:flex;gap:10px;align-items:flex-start;
      padding:13px 14px;
      border-radius:16px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.08);
    }
    .summary-list .bul{
      width:22px;height:22px;border-radius:999px;
      display:inline-flex;align-items:center;justify-content:center;
      background:rgba(216,164,65,.16);
      color:#fff4dc;
      font-size:.82rem;
      font-weight:800;
      flex:0 0 auto;
      margin-top:1px;
    }
    .summary-list strong{display:block;color:#fff;margin-bottom:2px}
    .summary-list span{display:block;color:rgba(247,243,234,.78);font-size:.92rem}
    .score-table-wrap{
      overflow:auto;
      border-radius:22px;
      border:1px solid rgba(18,59,52,.08);
      background:var(--card);
      box-shadow:var(--shadow);
    }
    table{
      width:100%;
      border-collapse:collapse;
      min-width:840px;
    }
    thead th{
      text-align:left;
      padding:16px 18px;
      background:rgba(18,59,52,.06);
      color:var(--brand);
      font-size:.95rem;
      border-bottom:1px solid rgba(18,59,52,.08);
    }
    tbody td{
      padding:18px;
      border-bottom:1px solid rgba(18,59,52,.07);
      vertical-align:top;
      background:rgba(255,253,248,.92);
    }
    tbody tr:hover td{background:rgba(29,170,154,.03)}
    .table-stage{
      font-weight:800;color:var(--brand);
      display:block;margin-bottom:5px;
    }
    .table-sub{
      color:var(--muted);font-size:.93rem;
    }
    .result{
      font-size:1.3rem;
      font-weight:900;
      color:#a96e13;
      letter-spacing:.03em;
    }
    .result.alt{color:var(--brand)}
    .table-action{
      display:inline-flex;
      margin-top:8px;
      color:var(--brand-2);
      font-weight:700;
    }
    .rules-grid{
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:24px;
      align-items:start;
    }
    .rule-list{
      display:grid;
      gap:12px;
      margin:0;
      padding:0;
      list-style:none;
    }
    .rule-item{
      display:grid;
      grid-template-columns:32px 1fr;
      gap:12px;
      align-items:flex-start;
      padding:16px 0;
      border-bottom:1px dashed rgba(18,59,52,.12);
    }
    .rule-item:last-child{border-bottom:0}
    .rule-num{
      width:32px;height:32px;border-radius:12px;
      display:inline-flex;align-items:center;justify-content:center;
      background:rgba(29,170,154,.12);
      color:var(--brand);
      font-weight:800;
      flex:0 0 auto;
    }
    .rule-item strong{
      display:block;color:var(--brand);margin-bottom:6px;font-size:1.02rem;
    }
    .rule-item p{
      margin:0;color:var(--muted);font-size:.95rem;
    }
    .risk-box{
      background:linear-gradient(180deg, rgba(227,107,44,.09), rgba(255,253,248,.96));
      border:1px solid rgba(227,107,44,.22);
      border-radius:24px;
      padding:24px;
      box-shadow:var(--shadow);
      position:sticky;
      top:96px;
    }
    .risk-box h3{
      margin:0 0 12px;
      color:#9b4513;
      font-size:1.18rem;
    }
    .risk-box p{
      margin:0 0 14px;
      color:#84513c;
    }
    .risk-list{
      margin:0;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .risk-list li{
      display:flex;gap:10px;align-items:flex-start;
      padding:12px 13px;
      border-radius:16px;
      background:rgba(255,255,255,.78);
      border:1px solid rgba(227,107,44,.12);
      color:#7d4b34;
      font-size:.95rem;
    }
    .risk-ic{
      width:20px;height:20px;border-radius:999px;
      flex:0 0 auto;
      background:rgba(227,107,44,.12);
      color:#b24c18;
      display:inline-flex;align-items:center;justify-content:center;
      font-weight:900;
      margin-top:2px;
      font-size:.8rem;
    }
    .check-grid{
      display:grid;
      grid-template-columns:1fr .92fr;
      gap:24px;
      align-items:start;
    }
    .check-card{
      background:var(--card);
      border:1px solid rgba(18,59,52,.08);
      border-radius:var(--radius-xl);
      box-shadow:var(--shadow);
      padding:26px;
    }
    .check-card h3{
      margin:0 0 14px;
      color:var(--brand);
      font-size:1.2rem;
    }
    .check-list{
      display:grid;
      gap:12px;
      margin:0;
      padding:0;
      list-style:none;
    }
    .check-list li{
      display:flex;gap:12px;align-items:flex-start;
      padding:14px 14px;
      border-radius:16px;
      background:rgba(248,244,234,.82);
      border:1px solid rgba(18,59,52,.08);
    }
    .checkmark{
      width:22px;height:22px;border-radius:999px;
      background:rgba(29,170,154,.14);
      color:var(--brand);
      display:inline-flex;align-items:center;justify-content:center;
      flex:0 0 auto;
      font-weight:900;
      margin-top:1px;
    }
    .check-list strong{
      display:block;color:var(--brand);margin-bottom:3px;
    }
    .check-list span{
      display:block;color:var(--muted);font-size:.94rem;
    }
    .signal-box{
      background:linear-gradient(180deg, rgba(245,242,234,.8), rgba(255,253,248,.98));
      border:1px solid rgba(18,59,52,.08);
      border-radius:var(--radius-xl);
      box-shadow:var(--shadow);
      padding:26px;
    }
    .signal-box h3{
      margin:0 0 12px;
      color:var(--brand);
      font-size:1.2rem;
    }
    .signal-grid{
      display:grid;
      gap:12px;
    }
    .signal{
      padding:14px 15px;
      border-radius:16px;
      background:#fff;
      border:1px solid rgba(18,59,52,.08);
      display:flex;
      gap:12px;
      align-items:flex-start;
    }
    .signal .badge{
      min-width:54px;
      text-align:center;
      border-radius:12px;
      padding:6px 8px;
      background:rgba(227,107,44,.1);
      color:#b24c18;
      font-weight:800;
      font-size:.85rem;
    }
    .signal strong{
      display:block;
      color:var(--brand);
      margin-bottom:3px;
    }
    .signal span{display:block;color:var(--muted);font-size:.94rem}
    .content-grid{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:18px;
    }
    .content-card{
      background:var(--card);
      border:1px solid rgba(18,59,52,.08);
      border-radius:24px;
      overflow:hidden;
      box-shadow:var(--shadow);
      transition:transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
      display:flex;flex-direction:column;
      min-height:100%;
    }
    .content-card:hover{
      transform:translateY(-3px);
      border-color:rgba(29,170,154,.34);
      box-shadow:var(--shadow-2);
    }
    .content-card img{
      aspect-ratio:16/10;
      object-fit:cover;
      width:100%;
    }
    .content-body{
      padding:18px;
      display:flex;
      flex-direction:column;
      gap:10px;
      flex:1;
    }
    .content-body h3{
      margin:0;
      font-size:1.08rem;
      line-height:1.45;
      color:var(--brand);
    }
    .content-body p{
      margin:0;
      color:var(--muted);
      font-size:.94rem;
      line-height:1.72;
      flex:1;
    }
    .content-meta{
      display:flex;align-items:center;justify-content:space-between;gap:12px;
      color:var(--muted);
      font-size:.86rem;
      padding-top:2px;
    }
    .content-meta .read{
      color:var(--brand-2);
      font-weight:700;
    }
    .faq{
      display:grid;
      gap:14px;
    }
    .faq-item{
      background:var(--card);
      border:1px solid rgba(18,59,52,.08);
      border-radius:20px;
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .faq-q{
      width:100%;
      background:transparent;
      border:0;
      padding:18px 20px;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      text-align:left;
      color:var(--brand);
      font-weight:750;
      font-size:1rem;
    }
    .faq-q span{
      display:block;
      line-height:1.45;
    }
    .faq-icon{
      width:28px;height:28px;border-radius:999px;
      background:rgba(29,170,154,.1);
      color:var(--brand);
      flex:0 0 auto;
      display:inline-flex;align-items:center;justify-content:center;
      transition:transform .2s var(--ease), background .2s var(--ease);
      font-size:1.02rem;
      font-weight:900;
    }
    .faq-item.open .faq-icon{transform:rotate(45deg);background:rgba(216,164,65,.14)}
    .faq-a{
      max-height:0;
      overflow:hidden;
      transition:max-height .3s var(--ease);
      border-top:1px solid rgba(18,59,52,.08);
      background:linear-gradient(180deg, rgba(248,244,234,.5), rgba(255,253,248,.9));
    }
    .faq-a p{
      margin:0;
      padding:18px 20px 20px;
      color:var(--muted);
      font-size:.96rem;
      line-height:1.82;
    }
    .cta-band{
      padding:84px 0;
    }
    .cta-box{
      background:
        linear-gradient(135deg, rgba(18,59,52,.96), rgba(18,59,52,.88)),
        url('/assets/images/backpic/back-3.webp') center/cover no-repeat;
      border-radius:30px;
      color:#f8f5ee;
      padding:34px;
      box-shadow:var(--shadow-2);
      position:relative;
      overflow:hidden;
      border:1px solid rgba(255,255,255,.08);
    }
    .cta-box::before{
      content:"";
      position:absolute;inset:0;
      background:
        radial-gradient(circle at 20% 20%, rgba(216,164,65,.16), transparent 24%),
        radial-gradient(circle at 86% 16%, rgba(29,170,154,.16), transparent 22%);
      pointer-events:none;
    }
    .cta-inner{
      position:relative;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:24px;
    }
    .cta-copy{
      max-width:68ch;
    }
    .cta-copy h2{
      margin:0 0 12px;
      font-size:clamp(1.7rem, 3vw, 2.4rem);
      line-height:1.2;
      color:#fff;
    }
    .cta-copy p{
      margin:0;
      color:rgba(248,245,238,.84);
      font-size:1rem;
    }
    .cta-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      justify-content:flex-end;
    }
    .cta-note{
      margin-top:14px;
      color:rgba(248,245,238,.72);
      font-size:.92rem;
    }
    .site-footer{
      background:var(--brand);
      color:#eef4f1;
      margin-top:0;
      padding:42px 0 26px;
    }
    .footer-top{
      display:grid;
      grid-template-columns:1.2fr .8fr 1fr;
      gap:26px;
      align-items:start;
      padding-bottom:24px;
      border-bottom:1px solid rgba(255,255,255,.08);
    }
    .footer-brand{
      display:flex;
      align-items:flex-start;
      gap:12px;
    }
    .footer-brand .brand-mark{
      box-shadow:none;
      background:linear-gradient(145deg, rgba(29,170,154,.9), rgba(216,164,65,.72));
    }
    .footer-brand strong{
      display:block;
      font-size:1.08rem;
      margin-bottom:6px;
    }
    .footer-brand p{
      margin:0;
      color:rgba(238,244,241,.8);
      max-width:42ch;
      font-size:.94rem;
      line-height:1.75;
    }
    .footer-links h3,
    .footer-risk h3{
      margin:0 0 12px;
      font-size:1rem;
      color:#fff;
    }
    .footer-links nav{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .footer-links a{
      padding:9px 12px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.1);
      background:rgba(255,255,255,.05);
      color:#f3f6f4;
      font-size:.92rem;
      transition:all .2s var(--ease);
    }
    .footer-links a:hover{background:rgba(29,170,154,.12);border-color:rgba(29,170,154,.24)}
    .footer-risk p{
      margin:0;
      color:rgba(238,244,241,.82);
      line-height:1.8;
      font-size:.94rem;
    }
    .footer-bottom{
      display:flex;
      justify-content:space-between;
      gap:18px;
      align-items:center;
      padding-top:20px;
      color:rgba(238,244,241,.72);
      font-size:.9rem;
      flex-wrap:wrap;
    }
    .footer-bottom a{color:#fff;text-decoration:underline;text-underline-offset:3px}
    .section-divider{
      height:1px;
      background:linear-gradient(90deg, transparent, rgba(18,59,52,.14), transparent);
      margin:82px 0 0;
    }
    .search-bar{
      display:flex;
      gap:10px;
      align-items:center;
      padding:14px;
      background:rgba(255,253,248,.92);
      border:1px solid rgba(18,59,52,.08);
      border-radius:18px;
      box-shadow:var(--shadow);
    }
    .search-bar input{
      flex:1;
      border:0;
      background:transparent;
      outline:none;
      color:var(--text);
      min-width:0;
    }
    .search-bar input::placeholder{color:#7a8680}
    .search-bar .btn{padding-inline:16px}
    .subtle-note{
      font-size:.9rem;
      color:var(--muted);
      margin-top:10px;
    }
    .inline-badges{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
      margin-top:14px;
    }
    .inline-badges .tag{
      color:var(--brand);
      background:rgba(255,253,248,.85);
      border-color:rgba(18,59,52,.1);
    }
    .featured-head{
      display:flex;
      justify-content:space-between;
      align-items:end;
      gap:18px;
      margin-bottom:22px;
    }
    .list-panel{
      display:grid;
      gap:12px;
      background:var(--card);
      border:1px solid rgba(18,59,52,.08);
      border-radius:var(--radius-xl);
      box-shadow:var(--shadow);
      padding:18px;
    }
    .list-item{
      padding:14px 14px 13px;
      border-radius:16px;
      background:rgba(248,244,234,.8);
      border:1px solid rgba(18,59,52,.07);
    }
    .list-item strong{
      display:block;
      color:var(--brand);
      margin-bottom:5px;
      font-size:1rem;
    }
    .list-item p{
      margin:0;color:var(--muted);font-size:.94rem;line-height:1.7;
    }
    .list-item .content-meta{
      padding-top:8px;
    }
    .kicker{
      display:flex;align-items:center;gap:8px;
      color:var(--brand-2);
      font-weight:800;
      font-size:.9rem;
      margin-bottom:10px;
    }
    .kicker::before{
      content:"";
      width:10px;height:10px;border-radius:999px;background:var(--accent);
      box-shadow:0 0 0 5px rgba(216,164,65,.12);
    }
    .mini-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:16px;
      margin-top:18px;
    }
    .mini-card{
      border-radius:18px;
      overflow:hidden;
      border:1px solid rgba(18,59,52,.08);
      background:var(--card);
      box-shadow:var(--shadow);
    }
    .mini-card img{
      aspect-ratio:4/3;
      width:100%;
      object-fit:cover;
    }
    .mini-card .mini-copy{
      padding:16px;
    }
    .mini-card h3{
      margin:0 0 8px;
      font-size:1rem;
      color:var(--brand);
    }
    .mini-card p{
      margin:0;
      color:var(--muted);
      font-size:.92rem;
      line-height:1.7;
    }
    .mobile-only{display:none}
    .desktop-only{display:block}
    @media (max-width: 1199px){
      .hero-inner{grid-template-columns:1fr;gap:20px}
      .hero-metrics{grid-template-columns:repeat(2,minmax(0,1fr))}
      .quick-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
      .content-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
      .footer-top{grid-template-columns:1fr 1fr}
      .check-grid,.rules-grid,.two-col{grid-template-columns:1fr}
      .risk-box{position:relative;top:auto}
      .content-grid .content-card:nth-child(1){grid-column:span 2}
    }
    @media (max-width: 991px){
      .nav-links,.header-actions .btn-secondary{display:none}
      .mobile-toggle{display:inline-flex}
      .header-inner{min-height:72px}
      .hero-inner{padding:30px}
      .panel-pad{padding:22px}
      .quick-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
      .content-grid{grid-template-columns:1fr 1fr}
      .mini-grid{grid-template-columns:1fr}
      .cta-inner{flex-direction:column;align-items:flex-start}
      .cta-actions{justify-content:flex-start}
      .section{padding-top:68px}
    }
    @media (max-width: 767px){
      .container{width:min(calc(100% - 24px), var(--container))}
      .hero{padding-top:14px}
      .hero-shell{border-radius:24px}
      .hero-inner{padding:22px}
      h1{max-width:100%;font-size:clamp(1.85rem, 8vw, 2.55rem)}
      .hero p{font-size:.98rem}
      .hero-metrics{grid-template-columns:1fr 1fr;gap:10px}
      .metric{padding:14px 12px}
      .metric strong{font-size:1.1rem}
      .section-head,.featured-head{
        flex-direction:column;
        align-items:flex-start;
      }
      .section-title{font-size:clamp(1.45rem, 6vw, 2rem)}
      .quick-grid{grid-template-columns:1fr;gap:12px}
      .content-grid{grid-template-columns:1fr}
      .content-grid .content-card:nth-child(1){grid-column:auto}
      .footer-top{grid-template-columns:1fr}
      .panel-pad{padding:18px}
      .cta-box{padding:24px;border-radius:24px}
      .cta-band{padding:72px 0}
      .footer-bottom{flex-direction:column;align-items:flex-start}
      .mobile-drawer{top:72px}
      .mobile-only{display:block}
      .desktop-only{display:none}
    }
    @media (max-width: 520px){
      .hero-actions,.cta-actions{flex-direction:column;align-items:stretch}
      .btn{width:100%}
      .hero-metrics{grid-template-columns:1fr}
      .match-row{
        grid-template-columns:1fr;
      }
      .score-pill{justify-content:flex-start;width:100%}
      .tag{padding:8px 12px}
      .panel-head,.panel-body,.check-card,.signal-box,.summary-card,.risk-box{padding:18px}
      .faq-q{padding:16px 16px}
      .faq-a p{padding:0 16px 16px}
      .hero p,.section-lead,.cta-copy p,.footer-brand p{font-size:.95rem}
    }
    @media (prefers-reduced-motion: reduce){
      html{scroll-behavior:auto}
      *,*::before,*::after{
        animation-duration:.01ms !important;
        animation-iteration-count:1 !important;
        transition-duration:.01ms !important;
        scroll-behavior:auto !important;
      }
    }

/* roulang page: category1 */
:root{
      --bg:#F5F2EA;
      --bg-soft:#EEE9DD;
      --card:#FFFDF8;
      --text:#202522;
      --muted:#66736D;
      --line:rgba(18,59,52,.14);
      --green:#123B34;
      --teal:#1DAA9A;
      --amber:#D8A441;
      --orange:#E36B2C;
      --shadow:0 16px 40px rgba(18,59,52,.08);
      --shadow-strong:0 24px 60px rgba(18,59,52,.14);
      --radius-xl:26px;
      --radius-lg:22px;
      --radius-md:16px;
      --radius-sm:12px;
      --container:1232px;
      --space-1:8px;
      --space-2:12px;
      --space-3:16px;
      --space-4:20px;
      --space-5:24px;
      --space-6:32px;
      --space-7:40px;
      --space-8:56px;
      --space-9:72px;
      --space-10:96px;
      --header-h:82px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      color:var(--text);
      background:
        radial-gradient(circle at top left, rgba(29,170,154,.08), transparent 28%),
        radial-gradient(circle at top right, rgba(216,164,65,.10), transparent 26%),
        linear-gradient(180deg, #f8f5ee 0%, var(--bg) 100%);
      font-family:PingFang SC, Microsoft YaHei, Noto Sans SC, Arial, sans-serif;
      line-height:1.8;
      text-rendering:optimizeLegibility;
      -webkit-font-smoothing:antialiased;
    }
    body.menu-open{overflow:hidden}
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input{font:inherit}
    ::selection{background:rgba(29,170,154,.18);color:var(--green)}
    :focus-visible{outline:3px solid rgba(29,170,154,.35);outline-offset:2px}
    .container{
      width:min(var(--container), calc(100% - 32px));
      margin:0 auto;
    }
    .section{
      padding:var(--space-10) 0;
      scroll-margin-top:calc(var(--header-h) + 18px);
    }
    .section.soft{
      background:linear-gradient(180deg, rgba(255,253,248,.5), rgba(238,233,221,.38));
      border-top:1px solid rgba(18,59,52,.06);
      border-bottom:1px solid rgba(18,59,52,.06);
    }
    .section.compact{
      padding:var(--space-8) 0;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 14px;
      border-radius:999px;
      background:rgba(29,170,154,.10);
      color:var(--green);
      font-size:13px;
      font-weight:700;
      letter-spacing:.02em;
    }
    .eyebrow::before{
      content:"";
      width:8px;height:8px;border-radius:50%;
      background:var(--amber);
      box-shadow:0 0 0 4px rgba(216,164,65,.18);
      flex:none;
    }
    .section-title{
      margin:14px 0 0;
      font-size:clamp(24px, 2.6vw, 34px);
      line-height:1.22;
      letter-spacing:-.02em;
      color:var(--green);
    }
    .section-desc{
      max-width:820px;
      margin:14px 0 0;
      color:var(--muted);
      font-size:17px;
      line-height:1.85;
    }
    .muted{
      color:var(--muted);
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      transition:background .22s ease, box-shadow .22s ease, backdrop-filter .22s ease;
      background:rgba(245,242,234,.76);
      backdrop-filter:saturate(1.1) blur(16px);
      border-bottom:1px solid rgba(18,59,52,.08);
    }
    .site-header.is-scrolled{
      background:rgba(255,253,248,.92);
      box-shadow:0 10px 34px rgba(18,59,52,.08);
    }
    .header-inner{
      min-height:var(--header-h);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:14px;
      min-width:0;
    }
    .brand-mark{
      width:44px;height:44px;
      border-radius:14px;
      background:
        linear-gradient(135deg, var(--green), #0f564a 60%, var(--teal));
      position:relative;
      box-shadow:inset 0 0 0 1px rgba(255,255,255,.12);
      flex:none;
    }
    .brand-mark::before,
    .brand-mark::after{
      content:"";
      position:absolute;
      background:rgba(255,255,255,.92);
      border-radius:999px;
    }
    .brand-mark::before{
      width:18px;height:3px;left:12px;top:15px;
      box-shadow:0 7px 0 rgba(255,255,255,.92), 0 14px 0 rgba(255,255,255,.92);
    }
    .brand-mark::after{
      width:7px;height:7px;border-radius:50%;
      right:10px;bottom:11px;
      background:var(--amber);
      box-shadow:0 0 0 4px rgba(216,164,65,.14);
    }
    .brand-text{
      display:flex;
      flex-direction:column;
      gap:2px;
      min-width:0;
    }
    .brand-text strong{
      font-size:17px;
      line-height:1.2;
      color:var(--green);
      letter-spacing:.02em;
    }
    .brand-text span{
      display:block;
      color:var(--muted);
      font-size:12px;
      line-height:1.35;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .nav-wrap{
      display:flex;
      align-items:center;
      gap:16px;
    }
    .nav-links{
      display:flex;
      align-items:center;
      gap:8px;
      flex-wrap:wrap;
    }
    .nav-links a{
      display:inline-flex;
      align-items:center;
      min-height:42px;
      padding:0 14px;
      border-radius:999px;
      color:var(--green);
      font-size:14px;
      font-weight:600;
      transition:background .2s ease,color .2s ease,transform .2s ease,box-shadow .2s ease;
      position:relative;
    }
    .nav-links a:hover{
      color:var(--teal);
      background:rgba(29,170,154,.08);
      transform:translateY(-1px);
    }
    .nav-links a.active{
      background:var(--green);
      color:#fff;
      box-shadow:0 10px 24px rgba(18,59,52,.12);
    }
    .header-actions{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:44px;
      padding:0 18px;
      border-radius:14px;
      border:1px solid transparent;
      cursor:pointer;
      transition:transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
      font-weight:700;
      font-size:14px;
      white-space:nowrap;
    }
    .btn:hover{
      transform:translateY(-1px);
      box-shadow:0 12px 22px rgba(18,59,52,.12);
    }
    .btn-primary{
      background:var(--green);
      color:#fff;
    }
    .btn-primary:hover{
      background:#0f4b42;
    }
    .btn-secondary{
      background:rgba(255,253,248,.9);
      color:var(--green);
      border-color:rgba(18,59,52,.18);
    }
    .btn-secondary:hover{
      background:rgba(29,170,154,.08);
      border-color:rgba(29,170,154,.35);
      color:var(--teal);
    }
    .btn-alert{
      background:rgba(227,107,44,.10);
      color:#9f4312;
      border-color:rgba(227,107,44,.26);
    }
    .btn-alert:hover{
      background:rgba(227,107,44,.14);
    }
    .mobile-toggle{
      display:none;
      width:46px;height:46px;
      border:none;
      border-radius:14px;
      background:rgba(18,59,52,.08);
      position:relative;
    }
    .mobile-toggle span,
    .mobile-toggle::before,
    .mobile-toggle::after{
      content:"";
      position:absolute;
      left:13px;
      right:13px;
      height:2px;
      border-radius:999px;
      background:var(--green);
      transition:transform .2s ease, top .2s ease, opacity .2s ease;
    }
    .mobile-toggle span{top:22px}
    .mobile-toggle::before{top:15px}
    .mobile-toggle::after{top:29px}
    .mobile-toggle[aria-expanded="true"] span{opacity:0}
    .mobile-toggle[aria-expanded="true"]::before{top:22px;transform:rotate(45deg)}
    .mobile-toggle[aria-expanded="true"]::after{top:22px;transform:rotate(-45deg)}
    .mobile-drawer{
      display:none;
      border-top:1px solid rgba(18,59,52,.08);
      background:rgba(255,253,248,.98);
      box-shadow:0 18px 40px rgba(18,59,52,.08);
    }
    .mobile-drawer .nav-links{
      display:grid;
      grid-template-columns:repeat(2, minmax(0,1fr));
      gap:10px;
      padding:16px 16px 18px;
    }
    .mobile-drawer .nav-links a{
      justify-content:center;
      background:rgba(245,242,234,.9);
      border:1px solid rgba(18,59,52,.08);
    }
    .mobile-drawer .nav-links a.active{
      background:var(--green);
      color:#fff;
    }
    .mobile-drawer.open{display:block}
    .hero{
      position:relative;
      overflow:hidden;
      padding:40px 0 34px;
      background:
        linear-gradient(135deg, rgba(18,59,52,.95), rgba(14,81,72,.86)),
        url('/assets/images/backpic/back-2.webp') center/cover no-repeat;
      color:#f7f5ee;
    }
    .hero::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(180deg, rgba(18,59,52,.18), rgba(18,59,52,.66)),
        radial-gradient(circle at 20% 20%, rgba(255,255,255,.11), transparent 32%);
      pointer-events:none;
    }
    .hero .container{
      position:relative;
      z-index:1;
    }
    .breadcrumbs{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      align-items:center;
      color:rgba(247,245,238,.84);
      font-size:13px;
    }
    .breadcrumbs a{
      color:rgba(247,245,238,.9);
    }
    .breadcrumbs span.sep{opacity:.5}
    .hero-grid{
      margin-top:18px;
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:24px;
      align-items:stretch;
    }
    .hero-copy{
      padding:18px 0 0;
    }
    .hero h1{
      margin:18px 0 0;
      max-width:12ch;
      font-size:clamp(30px, 4.2vw, 52px);
      line-height:1.18;
      letter-spacing:-.03em;
      color:#fffdf8;
    }
    .hero-lead{
      max-width:760px;
      margin:18px 0 0;
      color:rgba(247,245,238,.88);
      font-size:17px;
      line-height:1.85;
    }
    .hero-chips{
      margin-top:22px;
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .chip{
      display:inline-flex;
      align-items:center;
      gap:8px;
      min-height:36px;
      padding:0 14px;
      border-radius:999px;
      background:rgba(255,253,248,.10);
      color:#fffdf8;
      border:1px solid rgba(255,255,255,.12);
      font-size:13px;
      font-weight:700;
      backdrop-filter:blur(8px);
    }
    .hero-actions{
      margin-top:26px;
      display:flex;
      flex-wrap:wrap;
      gap:12px;
    }
    .hero-actions .btn{
      min-width:150px;
    }
    .hero-actions .btn-secondary{
      background:rgba(255,253,248,.92);
    }
    .hero-meta{
      margin-top:24px;
      display:grid;
      grid-template-columns:repeat(4, minmax(0,1fr));
      gap:12px;
    }
    .meta-card{
      background:rgba(255,253,248,.11);
      border:1px solid rgba(255,255,255,.14);
      border-radius:18px;
      padding:16px 14px;
      backdrop-filter:blur(12px);
      box-shadow:0 16px 34px rgba(0,0,0,.08);
    }
    .meta-card b{
      display:block;
      color:#fff;
      font-size:22px;
      line-height:1.1;
      margin-bottom:4px;
    }
    .meta-card span{
      color:rgba(247,245,238,.84);
      font-size:12px;
    }
    .hero-panel{
      background:rgba(255,253,248,.95);
      color:var(--text);
      border-radius:var(--radius-xl);
      padding:24px;
      box-shadow:var(--shadow-strong);
      border:1px solid rgba(255,255,255,.5);
      position:relative;
      overflow:hidden;
    }
    .hero-panel::before{
      content:"";
      position:absolute;
      inset:auto -40px -44px auto;
      width:160px;height:160px;border-radius:50%;
      background:rgba(29,170,154,.10);
      pointer-events:none;
    }
    .panel-head{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:18px;
      margin-bottom:16px;
    }
    .panel-head h2{
      margin:0;
      font-size:18px;
      line-height:1.35;
      color:var(--green);
    }
    .panel-head small{
      display:block;
      margin-top:6px;
      color:var(--muted);
      font-size:13px;
      line-height:1.5;
    }
    .status-pill{
      flex:none;
      display:inline-flex;
      align-items:center;
      gap:8px;
      min-height:34px;
      padding:0 12px;
      border-radius:999px;
      background:rgba(216,164,65,.14);
      color:#8f6306;
      font-size:12px;
      font-weight:700;
      white-space:nowrap;
    }
    .status-pill::before{
      content:"";
      width:8px;height:8px;border-radius:50%;
      background:var(--amber);
      box-shadow:0 0 0 4px rgba(216,164,65,.14);
    }
    .panel-list{
      display:grid;
      gap:12px;
    }
    .panel-item{
      display:flex;
      gap:14px;
      align-items:flex-start;
      padding:14px 0;
      border-top:1px solid rgba(18,59,52,.10);
    }
    .panel-item:first-child{
      padding-top:0;
      border-top:none;
    }
    .panel-icon{
      width:42px;height:42px;border-radius:14px;
      background:linear-gradient(135deg, rgba(18,59,52,.08), rgba(29,170,154,.12));
      display:grid;place-items:center;
      color:var(--green);
      font-weight:800;
      flex:none;
    }
    .panel-item h3{
      margin:0 0 4px;
      font-size:16px;
      line-height:1.45;
      color:var(--green);
    }
    .panel-item p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.8;
    }
    .strip{
      margin-top:18px;
      overflow:hidden;
      border-radius:18px;
      background:rgba(255,253,248,.12);
      border:1px solid rgba(255,255,255,.14);
      backdrop-filter:blur(8px);
    }
    .strip-track{
      display:flex;
      gap:10px;
      padding:12px 16px;
      flex-wrap:wrap;
    }
    .strip-tag{
      display:inline-flex;
      align-items:center;
      gap:8px;
      min-height:32px;
      padding:0 12px;
      border-radius:999px;
      background:rgba(255,253,248,.92);
      color:var(--green);
      font-size:13px;
      font-weight:700;
    }
    .toolbar{
      margin-top:-32px;
    }
    .toolbar-inner{
      background:rgba(255,253,248,.96);
      border:1px solid rgba(18,59,52,.08);
      border-radius:24px;
      padding:18px;
      box-shadow:var(--shadow);
      display:grid;
      gap:16px;
    }
    .filter-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      align-items:center;
    }
    .filter-chip{
      display:inline-flex;
      align-items:center;
      min-height:38px;
      padding:0 14px;
      border-radius:999px;
      background:rgba(245,242,234,.95);
      border:1px solid rgba(18,59,52,.10);
      color:var(--green);
      font-size:13px;
      font-weight:700;
      transition:background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
      cursor:pointer;
    }
    .filter-chip:hover{
      transform:translateY(-1px);
      background:rgba(29,170,154,.08);
      border-color:rgba(29,170,154,.26);
      color:var(--teal);
    }
    .filter-chip.active{
      background:var(--green);
      color:#fff;
      border-color:var(--green);
    }
    .search-box{
      display:flex;
      align-items:center;
      gap:10px;
      margin-left:auto;
      min-width:min(380px,100%);
      padding:0 14px;
      border:1px solid rgba(18,59,52,.12);
      border-radius:16px;
      background:#fff;
      box-shadow:inset 0 1px 0 rgba(255,255,255,.7);
    }
    .search-box input{
      width:100%;
      border:none;
      background:transparent;
      min-height:46px;
      color:var(--text);
      outline:none;
    }
    .search-box span{
      color:var(--teal);
      font-size:18px;
      font-weight:700;
      flex:none;
    }
    .info-grid{
      display:grid;
      grid-template-columns:repeat(3, minmax(0,1fr));
      gap:18px;
      margin-top:26px;
    }
    .info-card{
      background:var(--card);
      border-radius:var(--radius-lg);
      border:1px solid rgba(18,59,52,.08);
      box-shadow:var(--shadow);
      padding:24px;
      position:relative;
      overflow:hidden;
      transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }
    .info-card:hover{
      transform:translateY(-3px);
      box-shadow:var(--shadow-strong);
      border-color:rgba(29,170,154,.30);
    }
    .info-card::before{
      content:"";
      position:absolute;
      left:0;top:0;bottom:0;
      width:4px;
      background:linear-gradient(180deg, var(--amber), var(--teal));
      opacity:.9;
    }
    .info-card h3{
      margin:0 0 10px;
      font-size:19px;
      line-height:1.45;
      color:var(--green);
    }
    .info-card p{
      margin:0;
      color:var(--muted);
      font-size:15px;
      line-height:1.82;
    }
    .tag-list{
      margin-top:16px;
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      min-height:30px;
      padding:0 12px;
      border-radius:999px;
      background:rgba(29,170,154,.08);
      color:var(--green);
      font-size:12px;
      font-weight:700;
    }
    .tag.soft{
      background:rgba(216,164,65,.12);
      color:#8f6306;
    }
    .tag.gray{
      background:rgba(18,59,52,.06);
      color:#51615b;
    }
    .timeline-wrap{
      display:grid;
      grid-template-columns:.95fr 1.05fr;
      gap:26px;
      align-items:start;
      margin-top:28px;
    }
    .timeline{
      position:relative;
      padding-left:26px;
      display:grid;
      gap:18px;
    }
    .timeline::before{
      content:"";
      position:absolute;
      left:9px;top:10px;bottom:10px;
      width:2px;
      background:rgba(18,59,52,.14);
    }
    .timeline-item{
      position:relative;
      background:var(--card);
      border:1px solid rgba(18,59,52,.08);
      border-radius:20px;
      padding:20px 20px 20px 22px;
      box-shadow:var(--shadow);
    }
    .timeline-item::before{
      content:"";
      position:absolute;
      left:-27px;top:24px;
      width:14px;height:14px;border-radius:50%;
      background:var(--amber);
      box-shadow:0 0 0 5px rgba(216,164,65,.18);
    }
    .timeline-item h3{
      margin:0 0 8px;
      color:var(--green);
      font-size:18px;
      line-height:1.45;
    }
    .timeline-item p{
      margin:0;
      color:var(--muted);
      font-size:15px;
      line-height:1.82;
    }
    .timeline-item .tag-list{
      margin-top:12px;
    }
    .media-card{
      background:var(--card);
      border:1px solid rgba(18,59,52,.08);
      border-radius:var(--radius-xl);
      overflow:hidden;
      box-shadow:var(--shadow);
      position:sticky;
      top:104px;
    }
    .media-thumb{
      position:relative;
      aspect-ratio:16/10;
      overflow:hidden;
    }
    .media-thumb img{
      width:100%;
      height:100%;
      object-fit:cover;
      transform:scale(1.01);
    }
    .media-thumb::after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg, rgba(18,59,52,.08), rgba(18,59,52,.54));
    }
    .media-badge{
      position:absolute;
      left:18px;top:18px;
      z-index:1;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(255,253,248,.90);
      color:var(--green);
      font-size:12px;
      font-weight:800;
    }
    .media-body{
      padding:22px;
    }
    .media-body h3{
      margin:0 0 8px;
      color:var(--green);
      font-size:20px;
      line-height:1.4;
    }
    .media-body p{
      margin:0;
      color:var(--muted);
      font-size:15px;
      line-height:1.82;
    }
    .checklist{
      margin-top:18px;
      display:grid;
      gap:12px;
    }
    .check-item{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:13px 14px;
      border-radius:16px;
      background:rgba(245,242,234,.9);
      border:1px solid rgba(18,59,52,.08);
    }
    .check-dot{
      width:26px;height:26px;
      border-radius:50%;
      flex:none;
      display:grid;place-items:center;
      background:rgba(29,170,154,.12);
      color:var(--teal);
      font-weight:800;
      font-size:14px;
      margin-top:1px;
    }
    .check-item strong{
      display:block;
      color:var(--green);
      font-size:15px;
      line-height:1.5;
      margin-bottom:2px;
    }
    .check-item span{
      display:block;
      color:var(--muted);
      font-size:14px;
      line-height:1.75;
    }
    .score-wrap{
      margin-top:26px;
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:22px;
      align-items:start;
    }
    .score-board{
      background:var(--card);
      border-radius:var(--radius-xl);
      overflow:hidden;
      border:1px solid rgba(18,59,52,.08);
      box-shadow:var(--shadow);
    }
    .score-head,
    .score-row{
      display:grid;
      grid-template-columns:1.15fr 1fr .7fr 1.2fr auto;
      gap:12px;
      align-items:center;
    }
    .score-head{
      background:linear-gradient(180deg, rgba(18,59,52,.96), rgba(18,59,52,.90));
      color:#fff;
      font-size:13px;
      font-weight:700;
      letter-spacing:.02em;
      padding:16px 18px;
    }
    .score-row{
      padding:16px 18px;
      border-top:1px solid rgba(18,59,52,.08);
      transition:background .2s ease, transform .2s ease;
    }
    .score-row:hover{
      background:rgba(29,170,154,.05);
    }
    .score-row .cell-title{
      color:var(--green);
      font-weight:700;
      line-height:1.45;
    }
    .score-row .cell-desc{
      color:var(--muted);
      line-height:1.75;
      font-size:14px;
    }
    .score-state{
      display:inline-flex;
      justify-content:center;
      align-items:center;
      min-height:34px;
      padding:0 12px;
      border-radius:999px;
      background:rgba(216,164,65,.14);
      color:#8f6306;
      font-weight:800;
      font-size:13px;
      width:max-content;
    }
    .score-state.done{background:rgba(29,170,154,.12);color:var(--green)}
    .score-state.pending{background:rgba(227,107,44,.12);color:#a84c13}
    .score-action{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:36px;
      padding:0 13px;
      border-radius:12px;
      border:1px solid rgba(18,59,52,.16);
      color:var(--green);
      background:#fff;
      font-size:13px;
      font-weight:700;
      transition:background .2s ease,border-color .2s ease,color .2s ease;
    }
    .score-action:hover{
      background:rgba(29,170,154,.08);
      border-color:rgba(29,170,154,.28);
      color:var(--teal);
    }
    .score-note{
      background:linear-gradient(180deg, rgba(255,253,248,.98), rgba(245,242,234,.96));
      border:1px solid rgba(18,59,52,.08);
      border-radius:var(--radius-xl);
      box-shadow:var(--shadow);
      padding:24px;
      position:sticky;
      top:104px;
    }
    .score-note h3{
      margin:0 0 10px;
      color:var(--green);
      font-size:20px;
      line-height:1.4;
    }
    .score-note p{
      margin:0;
      color:var(--muted);
      font-size:15px;
      line-height:1.85;
    }
    .score-note .mini-list{
      margin:16px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .mini-list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:var(--text);
      font-size:14px;
      line-height:1.75;
      padding:11px 12px;
      border-radius:14px;
      background:rgba(245,242,234,.92);
      border:1px solid rgba(18,59,52,.08);
    }
    .mini-list li::before{
      content:"•";
      color:var(--amber);
      font-weight:900;
      line-height:1;
      margin-top:2px;
    }
    .rules-wrap{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:22px;
      align-items:start;
      margin-top:24px;
    }
    .rules-card,
    .alert-card{
      background:var(--card);
      border-radius:var(--radius-xl);
      border:1px solid rgba(18,59,52,.08);
      box-shadow:var(--shadow);
      padding:26px;
    }
    .rules-card h3,
    .alert-card h3{
      margin:0 0 10px;
      color:var(--green);
      font-size:20px;
      line-height:1.4;
    }
    .rules-card p,
    .alert-card p{
      margin:0;
      color:var(--muted);
      font-size:15px;
      line-height:1.86;
    }
    .rules-list{
      margin:18px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:14px;
    }
    .rules-list li{
      display:flex;
      gap:14px;
      align-items:flex-start;
      padding:14px 16px;
      border-radius:16px;
      background:rgba(245,242,234,.9);
      border:1px solid rgba(18,59,52,.08);
    }
    .rules-list .num{
      width:28px;height:28px;border-radius:50%;
      display:grid;place-items:center;
      background:rgba(29,170,154,.12);
      color:var(--green);
      font-weight:800;
      font-size:13px;
      flex:none;
    }
    .rules-list strong{
      display:block;
      margin-bottom:3px;
      color:var(--green);
      font-size:15px;
      line-height:1.5;
    }
    .rules-list span{
      display:block;
      color:var(--muted);
      font-size:14px;
      line-height:1.78;
    }
    .alert-card{
      background:linear-gradient(180deg, rgba(255,248,240,.96), rgba(255,253,248,.96));
      border-color:rgba(227,107,44,.18);
      position:relative;
      overflow:hidden;
    }
    .alert-card::before{
      content:"";
      position:absolute;
      left:0;top:0;bottom:0;
      width:4px;
      background:var(--orange);
    }
    .alert-box{
      display:grid;
      gap:12px;
      margin-top:16px;
    }
    .alert-box .alert-line{
      padding:14px 15px;
      border-radius:16px;
      background:rgba(227,107,44,.08);
      color:#9f4312;
      border:1px solid rgba(227,107,44,.14);
      font-size:14px;
      line-height:1.78;
    }
    .alert-note{
      margin-top:18px;
      padding:14px 15px;
      border-radius:16px;
      background:rgba(18,59,52,.06);
      color:var(--green);
      font-size:14px;
      line-height:1.8;
    }
    .platform-wrap{
      display:grid;
      grid-template-columns:1fr .92fr;
      gap:22px;
      align-items:start;
      margin-top:24px;
    }
    .platform-card,
    .warning-card{
      background:var(--card);
      border:1px solid rgba(18,59,52,.08);
      box-shadow:var(--shadow);
      border-radius:var(--radius-xl);
      padding:26px;
    }
    .platform-card h3,
    .warning-card h3{
      margin:0 0 10px;
      color:var(--green);
      font-size:20px;
      line-height:1.4;
    }
    .platform-list{
      margin:18px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:12px;
    }
    .platform-list li{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:13px 14px;
      border-radius:16px;
      background:rgba(245,242,234,.88);
      border:1px solid rgba(18,59,52,.08);
    }
    .platform-list i{
      font-style:normal;
      width:28px;height:28px;border-radius:8px;
      flex:none;
      display:grid;place-items:center;
      background:rgba(29,170,154,.12);
      color:var(--green);
      font-weight:800;
      font-size:13px;
    }
    .platform-list strong{
      display:block;
      color:var(--green);
      font-size:15px;
      line-height:1.5;
      margin-bottom:2px;
    }
    .platform-list span{
      display:block;
      color:var(--muted);
      font-size:14px;
      line-height:1.75;
    }
    .warning-card{
      background:linear-gradient(180deg, rgba(255,249,242,.98), rgba(255,253,248,.96));
      border-color:rgba(227,107,44,.18);
      position:relative;
      overflow:hidden;
    }
    .warning-card::before{
      content:"";
      position:absolute;
      left:0;top:0;bottom:0;
      width:4px;
      background:var(--orange);
    }
    .warning-list{
      margin:18px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .warning-list li{
      padding:12px 14px;
      border-radius:14px;
      background:rgba(227,107,44,.08);
      border:1px solid rgba(227,107,44,.12);
      color:#9f4312;
      font-size:14px;
      line-height:1.78;
    }
    .articles-grid{
      display:grid;
      grid-template-columns:1.08fr .92fr;
      gap:22px;
      align-items:start;
      margin-top:26px;
    }
    .featured-article{
      background:var(--card);
      border:1px solid rgba(18,59,52,.08);
      border-radius:var(--radius-xl);
      overflow:hidden;
      box-shadow:var(--shadow);
    }
    .featured-article .cover{
      aspect-ratio:16/9;
      overflow:hidden;
      position:relative;
    }
    .featured-article .cover img{
      width:100%;
      height:100%;
      object-fit:cover;
    }
    .featured-article .cover::after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg, rgba(18,59,52,.08), rgba(18,59,52,.30));
    }
    .featured-body{
      padding:24px;
    }
    .meta-line{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      align-items:center;
      margin-bottom:12px;
      color:var(--muted);
      font-size:13px;
    }
    .meta-line .dot{
      width:4px;height:4px;border-radius:50%;
      background:rgba(18,59,52,.34);
    }
    .featured-body h3{
      margin:0;
      color:var(--green);
      font-size:24px;
      line-height:1.35;
    }
    .featured-body p{
      margin:14px 0 0;
      color:var(--muted);
      font-size:15px;
      line-height:1.86;
    }
    .feature-links{
      margin-top:18px;
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .feature-links .btn{
      min-height:40px;
      padding:0 14px;
      border-radius:12px;
    }
    .compact-list{
      display:grid;
      gap:14px;
    }
    .compact-item{
      display:grid;
      grid-template-columns:108px 1fr;
      gap:14px;
      align-items:stretch;
      background:var(--card);
      border:1px solid rgba(18,59,52,.08);
      border-radius:20px;
      overflow:hidden;
      box-shadow:var(--shadow);
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .compact-item:hover{
      transform:translateY(-2px);
      box-shadow:var(--shadow-strong);
      border-color:rgba(29,170,154,.26);
    }
    .compact-item img{
      width:100%;
      height:100%;
      object-fit:cover;
      min-height:130px;
    }
    .compact-content{
      padding:18px 18px 18px 0;
    }
    .compact-content .tag{
      margin-bottom:8px;
    }
    .compact-content h4{
      margin:0;
      color:var(--green);
      font-size:17px;
      line-height:1.48;
    }
    .compact-content p{
      margin:8px 0 0;
      color:var(--muted);
      font-size:14px;
      line-height:1.75;
    }
    .compact-content .read-more{
      display:inline-flex;
      margin-top:12px;
      color:var(--teal);
      font-size:13px;
      font-weight:700;
    }
    .card-row{
      margin-top:18px;
      display:grid;
      grid-template-columns:repeat(2, minmax(0,1fr));
      gap:18px;
    }
    .article-card{
      background:var(--card);
      border:1px solid rgba(18,59,52,.08);
      border-radius:22px;
      overflow:hidden;
      box-shadow:var(--shadow);
      transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }
    .article-card:hover{
      transform:translateY(-3px);
      box-shadow:var(--shadow-strong);
      border-color:rgba(29,170,154,.28);
    }
    .article-card .thumb{
      aspect-ratio:4/3;
      position:relative;
      overflow:hidden;
    }
    .article-card .thumb img{
      width:100%;
      height:100%;
      object-fit:cover;
    }
    .article-card .thumb::after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg, rgba(18,59,52,.06), rgba(18,59,52,.24));
    }
    .article-card .content{
      padding:20px;
    }
    .article-card h4{
      margin:10px 0 0;
      font-size:18px;
      line-height:1.45;
      color:var(--green);
    }
    .article-card p{
      margin:10px 0 0;
      color:var(--muted);
      font-size:14px;
      line-height:1.8;
    }
    .article-card .footer{
      margin-top:16px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
    }
    .article-card .footer .time{
      color:var(--muted);
      font-size:12px;
    }
    .article-card .footer .btn{
      min-height:36px;
      padding:0 12px;
      border-radius:12px;
      font-size:13px;
    }
    .index-grid{
      margin-top:24px;
      display:grid;
      grid-template-columns:repeat(3, minmax(0,1fr));
      gap:16px;
    }
    .index-card{
      background:var(--card);
      border:1px solid rgba(18,59,52,.08);
      border-radius:20px;
      padding:20px;
      box-shadow:var(--shadow);
      transition:transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .index-card:hover{
      transform:translateY(-2px);
      border-color:rgba(29,170,154,.28);
      box-shadow:var(--shadow-strong);
    }
    .index-card .num{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:32px;height:32px;
      border-radius:10px;
      background:rgba(29,170,154,.12);
      color:var(--green);
      font-weight:800;
      font-size:14px;
    }
    .index-card h4{
      margin:14px 0 8px;
      color:var(--green);
      font-size:17px;
      line-height:1.45;
    }
    .index-card p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.8;
    }
    .faq-grid{
      margin-top:24px;
      display:grid;
      gap:14px;
    }
    .faq-item{
      background:var(--card);
      border:1px solid rgba(18,59,52,.08);
      border-radius:18px;
      overflow:hidden;
      box-shadow:var(--shadow);
    }
    .faq-question{
      width:100%;
      border:none;
      background:transparent;
      color:var(--green);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      padding:18px 20px;
      cursor:pointer;
      text-align:left;
      font-weight:800;
      font-size:16px;
      line-height:1.5;
    }
    .faq-question span.icon{
      width:28px;height:28px;border-radius:50%;
      display:grid;place-items:center;
      background:rgba(29,170,154,.10);
      color:var(--teal);
      flex:none;
      transition:transform .2s ease, background .2s ease;
    }
    .faq-item.open .faq-question span.icon{
      transform:rotate(45deg);
      background:rgba(216,164,65,.14);
      color:#8f6306;
    }
    .faq-answer{
      max-height:0;
      overflow:hidden;
      transition:max-height .26s ease;
      border-top:1px solid transparent;
      background:rgba(245,242,234,.55);
    }
    .faq-item.open .faq-answer{
      border-top-color:rgba(18,59,52,.08);
    }
    .faq-answer .inner{
      padding:0 20px 18px;
      color:var(--muted);
      font-size:15px;
      line-height:1.86;
    }
    .cta-band{
      background:linear-gradient(135deg, rgba(18,59,52,.96), rgba(15,81,72,.90));
      color:#fffdf8;
      border-radius:28px;
      padding:34px 28px;
      position:relative;
      overflow:hidden;
      box-shadow:var(--shadow-strong);
    }
    .cta-band::before{
      content:"";
      position:absolute;
      inset:auto -60px -70px auto;
      width:240px;height:240px;border-radius:50%;
      background:rgba(216,164,65,.12);
      pointer-events:none;
    }
    .cta-band .cta-inner{
      position:relative;
      z-index:1;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
    }
    .cta-band h2{
      margin:0;
      font-size:clamp(24px, 3vw, 34px);
      line-height:1.25;
      letter-spacing:-.02em;
    }
    .cta-band p{
      margin:12px 0 0;
      color:rgba(247,245,238,.88);
      font-size:15px;
      line-height:1.85;
      max-width:760px;
    }
    .cta-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      justify-content:flex-end;
    }
    .cta-actions .btn{
      min-width:150px;
    }
    .site-footer{
      margin-top:0;
      background:linear-gradient(180deg, #123B34 0%, #0f322d 100%);
      color:rgba(247,245,238,.90);
      padding:58px 0 28px;
    }
    .footer-top{
      display:grid;
      grid-template-columns:1.25fr .75fr .9fr;
      gap:28px;
      align-items:start;
    }
    .footer-brand{
      display:flex;
      gap:14px;
      align-items:flex-start;
    }
    .footer-brand .brand-mark{
      width:42px;height:42px;border-radius:14px;
      box-shadow:none;
      background:linear-gradient(135deg, rgba(255,255,255,.16), rgba(29,170,154,.88));
    }
    .footer-brand strong{
      display:block;
      color:#fffdf8;
      font-size:18px;
      line-height:1.3;
    }
    .footer-brand p{
      margin:10px 0 0;
      color:rgba(247,245,238,.82);
      font-size:14px;
      line-height:1.9;
    }
    .footer-links h3,
    .footer-risk h3{
      margin:0 0 12px;
      color:#fffdf8;
      font-size:16px;
      line-height:1.4;
    }
    .footer-links nav{
      display:grid;
      gap:8px;
    }
    .footer-links a,
    .footer-bottom a{
      color:rgba(247,245,238,.90);
    }
    .footer-links a:hover,
    .footer-bottom a:hover{
      color:#fff;
      text-decoration:underline;
    }
    .footer-risk p{
      margin:0;
      color:rgba(247,245,238,.82);
      font-size:14px;
      line-height:1.9;
    }
    .footer-bottom{
      margin-top:30px;
      padding-top:18px;
      border-top:1px solid rgba(255,255,255,.10);
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      color:rgba(247,245,238,.76);
      font-size:13px;
      line-height:1.7;
    }
    @media (max-width:1199px){
      .hero-grid,
      .timeline-wrap,
      .score-wrap,
      .rules-wrap,
      .platform-wrap,
      .articles-grid,
      .footer-top{
        grid-template-columns:1fr;
      }
      .media-card,
      .score-note{
        position:relative;
        top:auto;
      }
      .hero h1{
        max-width:14ch;
      }
      .hero-meta{
        grid-template-columns:repeat(2, minmax(0,1fr));
      }
      .info-grid,
      .index-grid{
        grid-template-columns:repeat(2, minmax(0,1fr));
      }
      .card-row{
        grid-template-columns:1fr;
      }
      .cta-band .cta-inner{
        flex-direction:column;
        align-items:flex-start;
      }
      .cta-actions{
        justify-content:flex-start;
      }
    }
    @media (max-width:991px){
      .desktop-only{display:none !important}
      .mobile-toggle{display:inline-flex;align-items:center;justify-content:center}
      .toolbar-inner{
        gap:14px;
      }
      .search-box{
        min-width:100%;
      }
      .filter-row{
        gap:8px;
      }
      .score-head{
        display:none;
      }
      .score-row{
        grid-template-columns:1fr;
        gap:10px;
        padding:16px;
      }
      .score-row .cell-title,
      .score-row .cell-desc,
      .score-row .score-state,
      .score-row .score-action{
        width:100%;
        justify-content:flex-start;
      }
      .score-row > div{
        padding-left:12px;
        position:relative;
      }
      .score-row > div::before{
        content:attr(data-label);
        display:block;
        color:var(--muted);
        font-size:12px;
        font-weight:700;
        margin-bottom:6px;
        text-transform:none;
      }
      .info-grid{
        grid-template-columns:1fr;
      }
      .compact-item{
        grid-template-columns:92px 1fr;
      }
      .compact-content{
        padding-right:18px;
      }
    }
    @media (max-width:767px){
      :root{--header-h:74px}
      .container{
        width:min(calc(100% - 24px), var(--container));
      }
      .header-inner{
        min-height:74px;
      }
      .brand-mark{
        width:40px;height:40px;
      }
      .brand-text strong{
        font-size:16px;
      }
      .brand-text span{
        font-size:11px;
      }
      .hero{
        padding:28px 0 28px;
      }
      .hero h1{
        max-width:100%;
        font-size:clamp(28px, 8vw, 34px);
        line-height:1.24;
      }
      .hero-lead{
        font-size:15px;
        line-height:1.78;
      }
      .hero-actions .btn{
        flex:1 1 160px;
      }
      .hero-meta{
        grid-template-columns:1fr 1fr;
      }
      .meta-card b{
        font-size:18px;
      }
      .toolbar{
        margin-top:-18px;
      }
      .toolbar-inner{
        padding:16px;
        border-radius:20px;
      }
      .section{
        padding:60px 0;
      }
      .section.compact{
        padding:48px 0;
      }
      .section-desc{
        font-size:15px;
        line-height:1.78;
      }
      .section-title{
        font-size:clamp(22px, 6vw, 28px);
      }
      .compact-item{
        grid-template-columns:1fr;
      }
      .compact-item img{
        min-height:180px;
      }
      .compact-content{
        padding:18px;
      }
      .index-grid{
        grid-template-columns:1fr;
      }
      .faq-question{
        font-size:15px;
        padding:16px;
      }
      .faq-answer .inner{
        padding:0 16px 16px;
        font-size:14px;
      }
      .cta-band{
        padding:24px 18px;
        border-radius:22px;
      }
      .footer-top{
        gap:22px;
      }
      .footer-bottom{
        flex-direction:column;
        gap:8px;
      }
      .mobile-drawer .nav-links{
        grid-template-columns:1fr;
      }
      .search-box{
        padding:0 12px;
      }
      .search-box input{
        min-height:42px;
      }
      .score-row{
        border-radius:18px;
        margin:0 12px 12px;
        border:1px solid rgba(18,59,52,.08);
      }
      .score-board{
        padding:12px 0 0;
      }
      .score-board > .score-row:last-child{
        margin-bottom:12px;
      }
    }
    @media (max-width:520px){
      .hero-meta{
        grid-template-columns:1fr;
      }
      .header-actions .btn-secondary{
        display:none;
      }
      .hero-actions{
        gap:10px;
      }
      .hero-actions .btn{
        min-width:unset;
        width:100%;
      }
      .filter-row{
        overflow-x:auto;
        padding-bottom:4px;
        flex-wrap:nowrap;
      }
      .filter-row::-webkit-scrollbar{
        height:0;
      }
      .filter-chip{
        flex:none;
      }
      .score-row > div::before{
        margin-bottom:4px;
      }
      .featured-body{
        padding:18px;
      }
      .article-card .content{
        padding:18px;
      }
    }
