/* roulang page: index */
:root{
      --arena:#101815;
      --arena-2:#13201b;
      --panel:#18231e;
      --panel-soft:#213129;
      --green:#39d98a;
      --green-dark:#18a962;
      --amber:#ffb23e;
      --amber-soft:#fff2d9;
      --bg:#f5f3ee;
      --bg-2:#fafaf7;
      --text:#1d2420;
      --muted:#65716b;
      --light:#f3f7f2;
      --line:#e3e6df;
      --line-dark:rgba(57,217,138,.18);
      --shadow:0 18px 46px rgba(16,24,21,.12);
      --shadow-soft:0 10px 26px rgba(16,24,21,.08);
      --radius-lg:22px;
      --radius-md:16px;
      --radius-sm:12px;
      --container:1200px;
      --transition:.22s ease;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei",Arial,sans-serif;
      color:var(--text);
      background:var(--bg);
      line-height:1.75;
      font-size:16px;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input,textarea{font:inherit}
    button{border:0;cursor:pointer}
    .container{width:min(var(--container),calc(100% - 40px));margin:0 auto}
    .section{padding:84px 0}
    .section.tight{padding:64px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--green);
      font-weight:700;
      font-size:13px;
      letter-spacing:.04em;
      background:rgba(57,217,138,.10);
      border:1px solid rgba(57,217,138,.22);
      border-radius:999px;
      padding:6px 12px;
    }
    .eyebrow.amber{color:#9a620f;background:var(--amber-soft);border-color:rgba(255,178,62,.35)}
    .section-head{
      display:flex;
      justify-content:space-between;
      align-items:flex-end;
      gap:28px;
      margin-bottom:34px;
    }
    .section-head h2{
      margin:12px 0 0;
      font-size:clamp(26px,3vw,34px);
      line-height:1.25;
      letter-spacing:-.02em;
    }
    .section-head p{
      max-width:520px;
      margin:0;
      color:var(--muted);
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(16,24,21,.94);
      backdrop-filter:blur(16px);
      border-bottom:1px solid rgba(255,255,255,.08);
    }
    .nav-wrap{
      min-height:76px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
    }
    .logo{
      display:flex;
      align-items:center;
      gap:12px;
      color:var(--light);
      font-weight:800;
      letter-spacing:-.02em;
      min-width:0;
    }
    .logo-mark{
      width:40px;height:40px;border-radius:14px;
      background:
        linear-gradient(135deg,rgba(57,217,138,.95),rgba(255,178,62,.88));
      position:relative;
      box-shadow:0 0 0 5px rgba(57,217,138,.08);
      flex:0 0 auto;
    }
    .logo-mark:before,.logo-mark:after{
      content:"";
      position:absolute;
      inset:10px 8px;
      border:2px solid rgba(16,24,21,.75);
      border-radius:9px;
      transform:skew(-10deg);
    }
    .logo-mark:after{
      inset:17px 13px 9px;
      border-top:0;
      border-left:0;
      opacity:.8;
    }
    .logo-text{display:flex;flex-direction:column;line-height:1.1}
    .logo-text strong{font-size:17px;white-space:nowrap}
    .logo-text span{font-size:12px;color:rgba(243,247,242,.62);font-weight:600;margin-top:3px}
    .nav{
      display:flex;
      align-items:center;
      gap:4px;
    }
    .nav a{
      position:relative;
      color:rgba(243,247,242,.78);
      padding:12px 14px;
      border-radius:999px;
      font-size:14px;
      font-weight:650;
      transition:var(--transition);
    }
    .nav a:hover,.nav a:focus{
      color:var(--green);
      background:rgba(57,217,138,.08);
      outline:none;
    }
    .nav a.active{color:var(--green)}
    .nav a.active:after{
      content:"";
      position:absolute;
      left:50%;
      bottom:5px;
      width:18px;height:3px;
      border-radius:999px;
      background:var(--green);
      transform:translateX(-50%);
    }
    .nav-cta{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .menu-toggle{
      display:none;
      width:44px;height:44px;
      border-radius:12px;
      background:rgba(255,255,255,.08);
      color:var(--light);
      align-items:center;
      justify-content:center;
    }
    .menu-toggle span{
      display:block;width:20px;height:2px;background:currentColor;position:relative;border-radius:99px;
    }
    .menu-toggle span:before,.menu-toggle span:after{
      content:"";position:absolute;left:0;width:20px;height:2px;background:currentColor;border-radius:99px;
    }
    .menu-toggle span:before{top:-7px}.menu-toggle span:after{top:7px}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:44px;
      padding:12px 18px;
      border-radius:999px;
      font-weight:800;
      font-size:14px;
      transition:var(--transition);
      border:1px solid transparent;
      white-space:nowrap;
    }
    .btn-primary{
      color:#0d1813;
      background:var(--green);
      box-shadow:0 12px 24px rgba(57,217,138,.22);
    }
    .btn-primary:hover{background:#53e79b;transform:translateY(-2px)}
    .btn-outline{
      color:var(--light);
      border-color:rgba(243,247,242,.24);
      background:rgba(255,255,255,.03);
    }
    .btn-outline:hover{border-color:var(--green);color:var(--green);background:rgba(57,217,138,.08)}
    .btn-ghost{
      color:var(--text);
      background:#fff;
      border-color:var(--line);
    }
    .btn-ghost:hover{border-color:var(--green);box-shadow:var(--shadow-soft);transform:translateY(-2px)}
    .btn-risk{
      color:#6b4309;
      border-color:rgba(255,178,62,.65);
      background:rgba(255,178,62,.12);
    }
    .btn-risk:hover{background:var(--amber-soft)}
    .hero{
      position:relative;
      color:var(--light);
      background:
        linear-gradient(180deg,rgba(16,24,21,.72),rgba(16,24,21,.96)),
        url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
      overflow:hidden;
    }
    .hero:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at 12% 20%,rgba(57,217,138,.24),transparent 30%),
        radial-gradient(circle at 86% 38%,rgba(255,178,62,.16),transparent 28%),
        linear-gradient(90deg,rgba(57,217,138,.06) 1px,transparent 1px),
        linear-gradient(0deg,rgba(57,217,138,.04) 1px,transparent 1px);
      background-size:auto,auto,72px 72px,72px 72px;
      pointer-events:none;
    }
    .hero-inner{
      position:relative;
      z-index:1;
      padding:88px 0 54px;
    }
    .hero-layout{
      display:grid;
      grid-template-columns:minmax(0,1.05fr) minmax(360px,.95fr);
      gap:42px;
      align-items:center;
    }
    .hero-copy h1{
      margin:18px 0 18px;
      font-size:clamp(34px,5vw,54px);
      line-height:1.16;
      letter-spacing:-.045em;
      max-width:780px;
    }
    .hero-copy p{
      margin:0 0 24px;
      max-width:680px;
      color:rgba(243,247,242,.78);
      font-size:17px;
      line-height:1.85;
    }
    .tag-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin:22px 0;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:7px 11px;
      border-radius:999px;
      background:#fff;
      border:1px solid var(--line);
      color:var(--muted);
      font-size:13px;
      font-weight:700;
      line-height:1;
    }
    .hero .tag{
      background:rgba(255,255,255,.08);
      color:rgba(243,247,242,.82);
      border-color:rgba(243,247,242,.16);
    }
    .tag.green{color:#0f7444;background:rgba(57,217,138,.14);border-color:rgba(57,217,138,.24)}
    .tag.amber{color:#87560d;background:var(--amber-soft);border-color:rgba(255,178,62,.45)}
    .tag.dark{color:var(--light);background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.12)}
    .hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:24px}
    .score-console{
      background:linear-gradient(180deg,rgba(24,35,30,.92),rgba(19,32,27,.92));
      border:1px solid var(--line-dark);
      border-radius:var(--radius-lg);
      box-shadow:0 28px 70px rgba(0,0,0,.28);
      padding:22px;
      position:relative;
      overflow:hidden;
    }
    .score-console:before{
      content:"";
      position:absolute;
      top:-80px;right:-70px;
      width:170px;height:170px;border-radius:50%;
      background:rgba(57,217,138,.16);
      filter:blur(4px);
    }
    .console-top{
      position:relative;
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:14px;
      padding-bottom:18px;
      border-bottom:1px solid rgba(255,255,255,.09);
    }
    .console-title strong{display:block;color:var(--light);font-size:18px}
    .console-title span{display:block;color:rgba(243,247,242,.6);font-size:13px;margin-top:3px}
    .live-dot{
      display:inline-flex;align-items:center;gap:7px;
      padding:7px 10px;border-radius:999px;
      background:rgba(255,178,62,.12);
      color:var(--amber);
      font-size:12px;font-weight:800;
      border:1px solid rgba(255,178,62,.26);
    }
    .live-dot:before{
      content:"";width:7px;height:7px;border-radius:50%;background:var(--amber);
    }
    .match-card{
      position:relative;
      margin-top:18px;
      padding:18px;
      background:rgba(255,255,255,.045);
      border:1px solid rgba(255,255,255,.09);
      border-radius:18px;
    }
    .match-row{
      display:grid;
      grid-template-columns:1fr auto 1fr;
      align-items:center;
      gap:16px;
      margin:14px 0;
    }
    .team{
      display:flex;align-items:center;gap:10px;
      color:var(--light);
      font-weight:800;
    }
    .team.right{justify-content:flex-end}
    .shield{
      width:34px;height:34px;border-radius:12px;
      background:linear-gradient(135deg,rgba(57,217,138,.9),rgba(57,217,138,.2));
      border:1px solid rgba(57,217,138,.35);
      flex:0 0 auto;
    }
    .team.right .shield{background:linear-gradient(135deg,rgba(255,178,62,.86),rgba(255,178,62,.18));border-color:rgba(255,178,62,.38)}
    .versus{
      min-width:86px;text-align:center;
      color:var(--green);
      font-weight:900;
      font-size:30px;
      letter-spacing:.03em;
    }
    .stage-line{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:10px;
      margin-top:18px;
    }
    .stage-line span{
      position:relative;
      padding:10px 8px;
      text-align:center;
      color:rgba(243,247,242,.74);
      font-size:12px;
      font-weight:750;
      background:rgba(255,255,255,.04);
      border:1px solid rgba(255,255,255,.08);
      border-radius:12px;
    }
    .stage-line span.active{color:#0d1813;background:var(--green);border-color:var(--green)}
    .console-note{
      margin-top:16px;
      color:rgba(243,247,242,.68);
      font-size:13px;
      background:rgba(255,178,62,.10);
      border:1px solid rgba(255,178,62,.24);
      border-radius:14px;
      padding:12px 14px;
    }
    .hero-stats{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
      margin-top:46px;
    }
    .stat{
      padding:18px;
      border-radius:18px;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.10);
    }
    .stat strong{display:block;color:var(--green);font-size:22px;line-height:1.2}
    .stat span{display:block;color:rgba(243,247,242,.68);font-size:13px;margin-top:6px}
    .archive-wrap{
      display:grid;
      grid-template-columns:360px minmax(0,1fr);
      gap:34px;
      align-items:start;
    }
    .archive-cover{
      position:sticky;
      top:104px;
      border-radius:var(--radius-lg);
      overflow:hidden;
      box-shadow:var(--shadow);
      background:var(--panel);
    }
    .archive-cover img{height:430px;width:100%;object-fit:cover}
    .cover-caption{
      position:absolute;
      inset:auto 16px 16px;
      color:var(--light);
      background:rgba(16,24,21,.78);
      border:1px solid rgba(255,255,255,.12);
      border-radius:16px;
      padding:14px;
      backdrop-filter:blur(10px);
    }
    .cover-caption strong{display:block;font-size:18px}
    .cover-caption span{display:block;color:rgba(243,247,242,.68);font-size:13px;margin-top:4px}
    .timeline{
      display:grid;
      gap:16px;
    }
    .timeline-item{
      display:grid;
      grid-template-columns:120px 1fr;
      gap:18px;
      background:#fff;
      border:1px solid var(--line);
      border-radius:var(--radius-md);
      padding:18px;
      box-shadow:var(--shadow-soft);
      transition:var(--transition);
      position:relative;
      overflow:hidden;
    }
    .timeline-item:before{
      content:"";
      position:absolute;
      left:0;top:0;bottom:0;width:5px;background:var(--green);
      opacity:.85;
    }
    .timeline-item:hover{transform:translateY(-3px);border-color:rgba(57,217,138,.5);box-shadow:var(--shadow)}
    .time-label{
      font-weight:900;
      color:var(--green-dark);
      background:rgba(57,217,138,.10);
      border-radius:14px;
      padding:12px;
      text-align:center;
      align-self:start;
      font-size:14px;
    }
    .timeline-item h3{margin:0 0 7px;font-size:20px;line-height:1.35}
    .timeline-item p{margin:0 0 12px;color:var(--muted)}
    .reference-grid{
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:22px;
      align-items:stretch;
    }
    .ref-card{
      background:#fff;
      border:1px solid var(--line);
      border-radius:var(--radius-lg);
      padding:26px;
      box-shadow:var(--shadow-soft);
      transition:var(--transition);
    }
    .ref-card:hover{border-color:rgba(57,217,138,.5);box-shadow:var(--shadow)}
    .ref-card.dark{
      color:var(--light);
      background:linear-gradient(180deg,var(--panel),var(--arena-2));
      border-color:var(--line-dark);
    }
    .ref-card h3{margin:12px 0 10px;font-size:23px}
    .ref-card p{margin:0;color:var(--muted)}
    .ref-card.dark p{color:rgba(243,247,242,.7)}
    .ref-card ul{
      margin:18px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .ref-card li{
      position:relative;
      padding-left:22px;
      color:inherit;
    }
    .ref-card li:before{
      content:"";
      position:absolute;left:0;top:.75em;
      width:8px;height:8px;border-radius:50%;
      background:var(--green);
    }
    .ref-stack{display:grid;gap:22px}
    .score-section{
      background:var(--arena);
      color:var(--light);
      position:relative;
      overflow:hidden;
    }
    .score-section:before{
      content:"";
      position:absolute;inset:0;
      background:
        radial-gradient(circle at 20% 10%,rgba(57,217,138,.15),transparent 28%),
        radial-gradient(circle at 80% 75%,rgba(255,178,62,.12),transparent 30%);
      pointer-events:none;
    }
    .score-section .container{position:relative;z-index:1}
    .score-section .section-head p{color:rgba(243,247,242,.68)}
    .score-board{
      border:1px solid var(--line-dark);
      border-radius:var(--radius-lg);
      overflow:hidden;
      background:rgba(255,255,255,.04);
      box-shadow:0 22px 60px rgba(0,0,0,.22);
    }
    .score-head,.score-row{
      display:grid;
      grid-template-columns:1.05fr 1fr 1.4fr .8fr .8fr;
      gap:12px;
      align-items:center;
    }
    .score-head{
      padding:14px 18px;
      color:rgba(243,247,242,.62);
      font-size:13px;
      font-weight:800;
      background:rgba(255,255,255,.05);
      border-bottom:1px solid rgba(255,255,255,.08);
    }
    .score-row{
      padding:18px;
      border-bottom:1px solid rgba(255,255,255,.08);
      transition:var(--transition);
    }
    .score-row:last-child{border-bottom:0}
    .score-row:hover{background:rgba(57,217,138,.06)}
    .score-row strong{color:var(--light)}
    .score-row span{color:rgba(243,247,242,.67)}
    .status{
      display:inline-flex;
      width:max-content;
      padding:6px 10px;
      border-radius:999px;
      font-size:12px;
      font-weight:850;
      color:#0f7444;
      background:rgba(57,217,138,.14);
      border:1px solid rgba(57,217,138,.25);
    }
    .status.amber{color:#b1700e;background:rgba(255,178,62,.14);border-color:rgba(255,178,62,.28)}
    .status.gray{color:rgba(243,247,242,.72);background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.12)}
    .link-more{
      color:var(--green);
      font-weight:850;
      display:inline-flex;
      align-items:center;
      gap:6px;
    }
    .link-more:hover{text-decoration:underline}
    .topic-layout{
      display:grid;
      grid-template-columns:1.2fr .8fr;
      gap:24px;
      align-items:stretch;
    }
    .feature-article{
      min-height:420px;
      position:relative;
      border-radius:var(--radius-lg);
      overflow:hidden;
      background:var(--panel);
      box-shadow:var(--shadow);
      display:flex;
      align-items:flex-end;
    }
    .feature-article img{
      position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
    }
    .feature-article:after{
      content:"";position:absolute;inset:0;
      background:linear-gradient(180deg,rgba(16,24,21,.12),rgba(16,24,21,.86));
    }
    .feature-content{
      position:relative;z-index:1;
      color:var(--light);
      padding:28px;
    }
    .feature-content h3{margin:14px 0 10px;font-size:28px;line-height:1.28}
    .feature-content p{margin:0 0 18px;color:rgba(243,247,242,.75)}
    .article-list{display:grid;gap:16px}
    .mini-article{
      display:grid;
      grid-template-columns:118px 1fr;
      gap:16px;
      padding:14px;
      background:#fff;
      border:1px solid var(--line);
      border-radius:18px;
      box-shadow:var(--shadow-soft);
      transition:var(--transition);
    }
    .mini-article:hover{transform:translateY(-3px);border-color:rgba(57,217,138,.5);box-shadow:var(--shadow)}
    .mini-article img{width:118px;height:104px;object-fit:cover;border-radius:14px}
    .mini-article h3{margin:4px 0 6px;font-size:18px;line-height:1.35}
    .mini-article p{margin:0;color:var(--muted);font-size:14px;line-height:1.65}
    .proof-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px;
    }
    .proof-card{
      padding:24px;
      border-radius:var(--radius-md);
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow-soft);
    }
    .proof-card strong{display:block;font-size:30px;color:var(--green-dark);line-height:1.1}
    .proof-card h3{margin:12px 0 6px;font-size:19px}
    .proof-card p{margin:0;color:var(--muted);font-size:15px}
    .risk-box{
      display:grid;
      grid-template-columns:.75fr 1.25fr;
      gap:24px;
      padding:28px;
      border-radius:var(--radius-lg);
      background:linear-gradient(135deg,#fff8ea,#fff);
      border:1px solid rgba(255,178,62,.36);
      box-shadow:var(--shadow-soft);
    }
    .risk-box h2{margin:10px 0 10px;font-size:30px;line-height:1.25}
    .risk-box p{margin:0;color:#6f5a32}
    .risk-list{
      margin:0;
      padding:0;
      list-style:none;
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:12px;
    }
    .risk-list li{
      background:rgba(255,255,255,.72);
      border:1px solid rgba(255,178,62,.24);
      border-radius:14px;
      padding:14px 14px 14px 40px;
      position:relative;
      color:#594523;
      font-weight:650;
    }
    .risk-list li:before{
      content:"!";
      position:absolute;left:14px;top:14px;
      width:18px;height:18px;border-radius:50%;
      display:grid;place-items:center;
      background:var(--amber);color:#3b2504;font-weight:900;font-size:12px;
    }
    .faq-grid{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:18px;
    }
    .faq-item{
      background:#fff;
      border:1px solid var(--line);
      border-radius:var(--radius-md);
      padding:22px;
      box-shadow:var(--shadow-soft);
    }
    .faq-item h3{
      margin:0 0 10px;
      font-size:18px;
      display:flex;
      gap:10px;
      align-items:flex-start;
    }
    .faq-item h3:before{
      content:"?";
      width:24px;height:24px;
      display:inline-grid;place-items:center;
      flex:0 0 auto;
      border-radius:8px;
      background:rgba(57,217,138,.14);
      color:var(--green-dark);
      font-size:14px;
      font-weight:900;
    }
    .faq-item p{margin:0;color:var(--muted)}
    .feedback{
      background:
        linear-gradient(135deg,rgba(16,24,21,.94),rgba(19,32,27,.92)),
        url('/assets/images/backpic/back-2.webp') center/cover no-repeat;
      color:var(--light);
    }
    .feedback-layout{
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:34px;
      align-items:start;
    }
    .feedback h2{font-size:34px;line-height:1.25;margin:12px 0 14px}
    .feedback p{color:rgba(243,247,242,.72);margin:0}
    .form-card{
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.12);
      border-radius:var(--radius-lg);
      padding:24px;
      box-shadow:0 18px 48px rgba(0,0,0,.22);
    }
    .form-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
    .field{display:grid;gap:7px}
    .field.full{grid-column:1/-1}
    .field label{font-size:13px;font-weight:800;color:rgba(243,247,242,.86)}
    .field input,.field textarea{
      width:100%;
      border:1px solid rgba(255,255,255,.14);
      background:rgba(255,255,255,.08);
      color:var(--light);
      border-radius:14px;
      padding:12px 14px;
      outline:none;
      transition:var(--transition);
    }
    .field textarea{min-height:112px;resize:vertical}
    .field input::placeholder,.field textarea::placeholder{color:rgba(243,247,242,.42)}
    .field input:focus,.field textarea:focus{
      border-color:var(--green);
      box-shadow:0 0 0 4px rgba(57,217,138,.12);
    }
    .form-hint{
      margin:14px 0 18px;
      color:rgba(243,247,242,.62);
      font-size:13px;
      line-height:1.65;
    }
    .cta-band{
      padding:34px;
      border-radius:var(--radius-lg);
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow);
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:24px;
    }
    .cta-band h2{margin:0 0 8px;font-size:28px;line-height:1.25}
    .cta-band p{margin:0;color:var(--muted)}
    .site-footer{
      background:var(--arena);
      color:var(--light);
      padding:54px 0 24px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.1fr .75fr .75fr 1fr;
      gap:28px;
      padding-bottom:34px;
      border-bottom:1px solid rgba(255,255,255,.1);
    }
    .footer-logo{margin-bottom:14px}
    .footer-desc{color:rgba(243,247,242,.65);margin:0;font-size:14px}
    .footer-col h3{margin:0 0 12px;font-size:16px}
    .footer-col a,.footer-col span{
      display:block;
      color:rgba(243,247,242,.64);
      margin:8px 0;
      font-size:14px;
      transition:var(--transition);
    }
    .footer-col a:hover{color:var(--green)}
    .footer-risk{
      background:rgba(255,178,62,.09);
      border:1px solid rgba(255,178,62,.22);
      border-radius:16px;
      padding:14px;
      color:rgba(243,247,242,.72);
      font-size:14px;
    }
    .copyright{
      padding-top:20px;
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      color:rgba(243,247,242,.52);
      font-size:13px;
    }
    .copyright a{color:rgba(243,247,242,.62)}
    .copyright a:hover{color:var(--green)}
    @media (max-width:1024px){
      .nav{gap:0}
      .nav a{padding:10px 9px;font-size:13px}
      .hero-layout,.archive-wrap,.reference-grid,.topic-layout,.risk-box,.feedback-layout{
        grid-template-columns:1fr;
      }
      .archive-cover{position:relative;top:auto}
      .archive-cover img{height:340px}
      .hero-stats,.proof-grid{grid-template-columns:repeat(2,1fr)}
      .footer-grid{grid-template-columns:1fr 1fr}
      .score-head{display:none}
      .score-row{
        grid-template-columns:1fr 1fr;
        gap:10px 16px;
      }
      .score-row span,.score-row strong{display:block}
      .score-row > *:before{
        display:block;
        color:rgba(243,247,242,.42);
        font-size:12px;
        font-weight:800;
        margin-bottom:2px;
      }
      .score-row > *:nth-child(1):before{content:"资料日期"}
      .score-row > *:nth-child(2):before{content:"赛事阶段"}
      .score-row > *:nth-child(3):before{content:"对阵信息"}
      .score-row > *:nth-child(4):before{content:"状态"}
      .score-row > *:nth-child(5):before{content:"入口"}
    }
    @media (max-width:820px){
      .container{width:min(100% - 28px,var(--container))}
      .section{padding:58px 0}
      .section.tight{padding:48px 0}
      .nav{
        position:absolute;
        left:14px;right:14px;top:76px;
        display:none;
        flex-direction:column;
        align-items:stretch;
        padding:12px;
        background:rgba(16,24,21,.98);
        border:1px solid rgba(255,255,255,.1);
        border-radius:18px;
        box-shadow:0 20px 44px rgba(0,0,0,.28);
      }
      .nav.open{display:flex}
      .nav a{min-height:44px;display:flex;align-items:center;border-radius:12px}
      .nav a.active:after{display:none}
      .menu-toggle{display:flex}
      .nav-cta .btn{display:none}
      .hero-inner{padding:58px 0 40px}
      .hero-layout{gap:28px}
      .hero-copy h1{font-size:32px}
      .hero-copy p{font-size:16px}
      .section-head{display:block}
      .section-head p{margin-top:10px}
      .timeline-item{grid-template-columns:1fr}
      .time-label{text-align:left}
      .risk-list,.faq-grid,.form-grid{grid-template-columns:1fr}
      .hero-stats{grid-template-columns:1fr 1fr}
      .cta-band{display:block}
      .cta-band .hero-actions{margin-top:18px}
    }
    @media (max-width:560px){
      .logo-text strong{font-size:15px}
      .logo-text span{display:none}
      .hero-actions,.cta-band .hero-actions{flex-direction:column}
      .btn{width:100%}
      .score-console{padding:16px}
      .match-row{grid-template-columns:1fr;gap:10px;text-align:center}
      .team,.team.right{justify-content:center}
      .versus{min-width:0;font-size:24px}
      .stage-line{grid-template-columns:1fr 1fr}
      .hero-stats,.proof-grid,.footer-grid{grid-template-columns:1fr}
      .mini-article{grid-template-columns:1fr}
      .mini-article img{width:100%;height:180px}
      .archive-cover img{height:260px}
      .feature-content{padding:22px}
      .feature-content h3{font-size:23px}
      .score-row{grid-template-columns:1fr}
      .copyright{display:block}
    }

/* roulang page: category1 */
:root{
            --bg: #F5F3EE;
            --bg-soft: #FAFAF7;
            --card: #FFFFFF;
            --deep: #101815;
            --deep-2: #13201B;
            --text: #1D2420;
            --muted: #65716B;
            --line: #E3E6DF;
            --line-2: rgba(57, 217, 138, .18);
            --accent: #39D98A;
            --accent-strong: #27C679;
            --amber: #FFB23E;
            --amber-soft: rgba(255, 178, 62, .12);
            --green-soft: rgba(57, 217, 138, .10);
            --shadow: 0 14px 34px rgba(16, 24, 21, .08);
            --shadow-lg: 0 26px 56px rgba(16, 24, 21, .14);
            --radius: 20px;
            --radius-sm: 14px;
            --radius-xs: 12px;
            --container: 1200px;
            --gap: clamp(18px, 2vw, 28px);
            --header-h: 78px;
        }
        *{box-sizing:border-box}
        html{scroll-behavior:smooth}
        body{
            margin:0;
            font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Hiragino Sans GB","Microsoft YaHei",Segoe UI,Roboto,Helvetica,Arial,sans-serif;
            color:var(--text);
            background:
                radial-gradient(circle at top right, rgba(57,217,138,.10), transparent 28%),
                radial-gradient(circle at left 20%, rgba(255,178,62,.08), transparent 24%),
                var(--bg);
            line-height:1.8;
            text-rendering:optimizeLegibility;
            -webkit-font-smoothing:antialiased;
        }
        ::selection{background:rgba(57,217,138,.22); color:var(--deep)}
        a{color:inherit; text-decoration:none; transition:color .2s ease, transform .2s ease, border-color .2s ease, background-color .2s ease, box-shadow .2s ease}
        img{max-width:100%; display:block}
        button,input,textarea{font:inherit}
        button{cursor:pointer}
        .container{
            width:min(var(--container), calc(100% - 32px));
            margin-inline: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(--deep);
            color:#fff;
            border-radius:999px;
            z-index:1000;
        }

        .site-header{
            position:sticky;
            top:0;
            z-index:100;
            backdrop-filter:saturate(160%) blur(10px);
            background:rgba(16,24,21,.88);
            border-bottom:1px solid rgba(255,255,255,.06);
        }
        .header-inner{
            min-height:var(--header-h);
            display:flex;
            align-items:center;
            gap:16px;
            padding:10px 0;
        }
        .logo{
            display:inline-flex;
            align-items:center;
            gap:12px;
            color:#F3F7F2;
            white-space:nowrap;
        }
        .logo-mark{
            width:42px;
            height:42px;
            border-radius:14px;
            background:
                linear-gradient(145deg, rgba(57,217,138,.28), rgba(57,217,138,.08)),
                linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.02));
            border:1px solid rgba(57,217,138,.28);
            position:relative;
            box-shadow:inset 0 0 0 1px rgba(255,255,255,.04);
        }
        .logo-mark::before,
        .logo-mark::after{
            content:"";
            position:absolute;
            inset:auto;
            background:var(--accent);
            border-radius:999px;
            opacity:.9;
        }
        .logo-mark::before{
            width:16px;
            height:2px;
            left:11px;
            top:15px;
            box-shadow:0 8px 0 var(--accent);
        }
        .logo-mark::after{
            width:8px;
            height:8px;
            right:10px;
            bottom:11px;
            background:var(--amber);
            box-shadow:0 -10px 0 rgba(255,255,255,.18);
        }
        .logo-text{
            display:flex;
            flex-direction:column;
            gap:2px;
        }
        .logo-text strong{
            font-size:1.02rem;
            letter-spacing:.2px;
            font-weight:800;
            line-height:1.1;
        }
        .logo-text span{
            color:rgba(243,247,242,.72);
            font-size:.82rem;
            line-height:1.1;
        }
        .menu-toggle{
            display:none;
            margin-left:auto;
            align-items:center;
            justify-content:center;
            gap:8px;
            height:44px;
            padding:0 14px;
            border-radius:999px;
            border:1px solid rgba(255,255,255,.14);
            background:rgba(255,255,255,.04);
            color:#F3F7F2;
        }
        .menu-toggle span{
            width:16px;
            height:2px;
            background:currentColor;
            display:block;
            position:relative;
            border-radius:2px;
        }
        .menu-toggle span::before,
        .menu-toggle span::after{
            content:"";
            position:absolute;
            left:0;
            width:16px;
            height:2px;
            background:currentColor;
            border-radius:2px;
        }
        .menu-toggle span::before{top:-6px}
        .menu-toggle span::after{top:6px}
        .nav-shell{
            margin-left:auto;
            display:flex;
            align-items:center;
            gap:16px;
        }
        .nav{
            display:flex;
            align-items:center;
            gap:10px;
            flex-wrap:wrap;
        }
        .nav a{
            position:relative;
            color:rgba(243,247,242,.84);
            font-size:.98rem;
            padding:10px 14px;
            border-radius:999px;
            transition:background-color .2s ease, color .2s ease, transform .2s ease;
        }
        .nav a:hover{
            background:rgba(255,255,255,.06);
            color:#fff;
            transform:translateY(-1px);
        }
        .nav a.active{
            color:#fff;
            background:rgba(57,217,138,.12);
            box-shadow:inset 0 0 0 1px rgba(57,217,138,.22);
        }
        .nav a.active::after{
            content:"";
            position:absolute;
            left:14px;
            right:14px;
            bottom:6px;
            height:2px;
            border-radius:999px;
            background:var(--accent);
        }
        .header-cta{
            display:inline-flex;
            align-items:center;
            justify-content:center;
            min-height:44px;
            padding:0 18px;
            border-radius:999px;
            background:var(--accent);
            color:#0F1613;
            font-weight:700;
            box-shadow:0 10px 20px rgba(57,217,138,.18);
            border:1px solid transparent;
        }
        .header-cta:hover{
            background:#4ee49b;
            transform:translateY(-1px);
            box-shadow:0 14px 24px rgba(57,217,138,.24);
        }

        .notice-strip{
            background:linear-gradient(90deg, rgba(255,178,62,.18), rgba(57,217,138,.08));
            border-bottom:1px solid rgba(255,178,62,.18);
        }
        .notice-strip .container{
            display:flex;
            align-items:center;
            gap:12px;
            padding:12px 0;
            color:#314038;
            font-size:.96rem;
        }
        .notice-badge{
            flex:0 0 auto;
            display:inline-flex;
            align-items:center;
            gap:8px;
            padding:6px 12px;
            border-radius:999px;
            background:rgba(255,178,62,.18);
            color:#865500;
            border:1px solid rgba(255,178,62,.30);
            font-size:.88rem;
            font-weight:700;
        }

        .hero{
            position:relative;
            overflow:hidden;
            padding:42px 0 28px;
        }
        .hero::before{
            content:"";
            position:absolute;
            inset:0;
            background:
                linear-gradient(180deg, rgba(16,24,21,.82), rgba(16,24,21,.68)),
                var(--hero-image) center/cover no-repeat;
            z-index:-2;
        }
        .hero::after{
            content:"";
            position:absolute;
            inset:0;
            background:
                linear-gradient(130deg, rgba(57,217,138,.10), transparent 38%),
                radial-gradient(circle at 80% 20%, rgba(57,217,138,.12), transparent 20%),
                radial-gradient(circle at 15% 75%, rgba(255,178,62,.10), transparent 18%);
            z-index:-1;
        }
        .hero .container{
            color:#F3F7F2;
        }
        .crumbs{
            display:flex;
            flex-wrap:wrap;
            gap:8px;
            align-items:center;
            color:rgba(243,247,242,.72);
            font-size:.95rem;
            margin-bottom:16px;
        }
        .crumbs a{
            color:#F3F7F2;
            opacity:.82;
        }
        .crumbs span{
            color:rgba(243,247,242,.52);
        }
        .hero-grid{
            display:grid;
            grid-template-columns: 1.02fr .98fr;
            gap:28px;
            align-items:stretch;
            padding:16px 0 8px;
        }
        .hero-copy{
            padding:18px 0 14px;
        }
        .eyebrow{
            display:inline-flex;
            align-items:center;
            gap:8px;
            padding:7px 12px;
            border-radius:999px;
            background:rgba(57,217,138,.12);
            color:#D9FFEC;
            border:1px solid rgba(57,217,138,.18);
            font-size:.86rem;
            font-weight:700;
            letter-spacing:.2px;
        }
        h1{
            margin:16px 0 14px;
            font-size:clamp(2.1rem, 4vw, 3.45rem);
            line-height:1.18;
            letter-spacing:-.02em;
            font-weight:800;
            max-width:12ch;
        }
        .hero-copy p{
            margin:0;
            max-width:62ch;
            color:rgba(243,247,242,.84);
            font-size:1.04rem;
            line-height:1.92;
        }
        .tag-row{
            display:flex;
            flex-wrap:wrap;
            gap:10px;
            margin:20px 0 22px;
        }
        .chip{
            display:inline-flex;
            align-items:center;
            gap:8px;
            min-height:34px;
            padding:7px 12px;
            border-radius:999px;
            background:rgba(255,255,255,.06);
            color:#F3F7F2;
            border:1px solid rgba(255,255,255,.10);
            font-size:.88rem;
        }
        .chip.is-green{
            background:rgba(57,217,138,.12);
            border-color:rgba(57,217,138,.22);
        }
        .chip.is-amber{
            background:rgba(255,178,62,.12);
            border-color:rgba(255,178,62,.24);
            color:#FFEAC2;
        }
        .chip.is-soft{
            background:rgba(255,255,255,.04);
            color:rgba(243,247,242,.88);
        }
        .hero-actions{
            display:flex;
            flex-wrap:wrap;
            gap:12px;
            margin-top:12px;
        }
        .btn{
            display:inline-flex;
            align-items:center;
            justify-content:center;
            gap:10px;
            min-height:48px;
            padding:0 18px;
            border-radius:999px;
            border:1px solid transparent;
            font-weight:700;
            letter-spacing:.1px;
            transition:transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
        }
        .btn:hover{transform:translateY(-1px)}
        .btn-primary{
            background:var(--accent);
            color:#0F1613;
            box-shadow:0 14px 26px rgba(57,217,138,.18);
        }
        .btn-primary:hover{background:#4fe4a0; box-shadow:0 18px 30px rgba(57,217,138,.24)}
        .btn-secondary{
            background:transparent;
            color:#F3F7F2;
            border-color:rgba(243,247,242,.22);
        }
        .btn-secondary:hover{
            border-color:rgba(57,217,138,.34);
            color:#D9FFEC;
            background:rgba(57,217,138,.06);
        }
        .btn-amber{
            background:transparent;
            color:#FFE6B7;
            border-color:rgba(255,178,62,.34);
        }
        .btn-amber:hover{
            border-color:rgba(255,178,62,.55);
            background:rgba(255,178,62,.08);
        }

        .hero-panel{
            position:relative;
            padding:22px;
            background:linear-gradient(180deg, rgba(24,35,30,.90), rgba(19,32,27,.92));
            border:1px solid var(--line-2);
            border-radius:var(--radius);
            box-shadow:var(--shadow-lg);
            overflow:hidden;
        }
        .hero-panel::before{
            content:"";
            position:absolute;
            inset:-40% -10% auto auto;
            width:220px;
            height:220px;
            background:radial-gradient(circle, rgba(57,217,138,.16), transparent 60%);
            pointer-events:none;
        }
        .panel-head{
            display:flex;
            align-items:flex-start;
            justify-content:space-between;
            gap:12px;
            margin-bottom:16px;
        }
        .panel-title{
            margin:0;
            font-size:1.16rem;
            font-weight:800;
            color:#F3F7F2;
        }
        .panel-sub{
            margin-top:6px;
            color:rgba(243,247,242,.68);
            font-size:.92rem;
        }
        .risk-dot{
            display:inline-flex;
            align-items:center;
            gap:8px;
            padding:8px 10px;
            border-radius:12px;
            background:rgba(255,178,62,.12);
            color:#FFE0A5;
            border:1px solid rgba(255,178,62,.20);
            font-size:.84rem;
            white-space:nowrap;
        }
        .board{
            display:grid;
            gap:12px;
        }
        .board-row{
            display:grid;
            grid-template-columns:auto 1fr auto;
            gap:12px;
            align-items:center;
            padding:14px 14px;
            background:rgba(255,255,255,.04);
            border:1px solid rgba(255,255,255,.08);
            border-radius:16px;
        }
        .stage-badge{
            min-width:72px;
            text-align:center;
            padding:8px 10px;
            border-radius:12px;
            font-size:.82rem;
            font-weight:800;
            letter-spacing:.02em;
            color:#0F1613;
            background:linear-gradient(180deg, #8cf0bf, #39D98A);
        }
        .match-info strong{
            display:block;
            color:#F3F7F2;
            font-size:1rem;
            line-height:1.35;
        }
        .match-info span{
            color:rgba(243,247,242,.72);
            font-size:.88rem;
        }
        .status-pill{
            display:inline-flex;
            align-items:center;
            justify-content:center;
            padding:8px 10px;
            border-radius:999px;
            border:1px solid rgba(57,217,138,.22);
            background:rgba(57,217,138,.10);
            color:#D9FFEC;
            font-size:.82rem;
            font-weight:700;
            white-space:nowrap;
        }
        .hero-stats{
            margin-top:22px;
            display:grid;
            grid-template-columns:repeat(4, minmax(0, 1fr));
            gap:12px;
        }
        .stat{
            padding:16px 16px 15px;
            border-radius:18px;
            background:rgba(255,255,255,.05);
            border:1px solid rgba(255,255,255,.08);
            backdrop-filter: blur(4px);
        }
        .stat b{
            display:block;
            color:#fff;
            font-size:1.2rem;
            line-height:1.1;
            margin-bottom:6px;
        }
        .stat span{
            display:block;
            color:rgba(243,247,242,.72);
            font-size:.88rem;
            line-height:1.5;
        }

        main{
            padding:36px 0 70px;
        }
        .section{
            padding:78px 0 0;
        }
        .section-header{
            display:flex;
            align-items:flex-end;
            justify-content:space-between;
            gap:18px;
            margin-bottom:24px;
        }
        .section h2{
            margin:0;
            font-size:clamp(1.6rem, 2.6vw, 2.2rem);
            line-height:1.22;
            letter-spacing:-.01em;
            font-weight:800;
            color:var(--text);
        }
        .section-lead{
            margin:10px 0 0;
            color:var(--muted);
            font-size:1rem;
            line-height:1.86;
            max-width:70ch;
        }
        .section-cta{
            flex:0 0 auto;
            color:var(--deep);
            background:var(--green-soft);
            border:1px solid rgba(57,217,138,.24);
            padding:10px 14px;
            border-radius:999px;
            font-weight:700;
            font-size:.92rem;
        }
        .section-cta:hover{
            background:rgba(57,217,138,.16);
            border-color:rgba(57,217,138,.34);
        }

        .archive-grid{
            display:grid;
            grid-template-columns:repeat(4, minmax(0, 1fr));
            gap:18px;
        }
        .phase-card{
            position:relative;
            background:var(--card);
            border:1px solid var(--line);
            border-radius:var(--radius);
            overflow:hidden;
            box-shadow:var(--shadow);
            padding:18px;
            min-height:240px;
        }
        .phase-card::before{
            content:"";
            position:absolute;
            left:0;top:0;bottom:0;
            width:4px;
            background:linear-gradient(180deg, var(--accent), rgba(57,217,138,.26));
        }
        .phase-top{
            display:flex;
            justify-content:space-between;
            gap:10px;
            align-items:flex-start;
            margin-bottom:12px;
        }
        .phase-top h3{
            margin:0;
            font-size:1.1rem;
            line-height:1.35;
            font-weight:800;
            color:var(--text);
        }
        .phase-meta{
            display:inline-flex;
            align-items:center;
            padding:6px 10px;
            border-radius:999px;
            background:var(--green-soft);
            border:1px solid rgba(57,217,138,.16);
            color:#13885a;
            font-size:.8rem;
            font-weight:700;
            white-space:nowrap;
        }
        .phase-card p{
            margin:0;
            color:var(--muted);
            font-size:.96rem;
            line-height:1.8;
        }
        .phase-tags{
            display:flex;
            flex-wrap:wrap;
            gap:8px;
            margin-top:14px;
        }
        .mini-tag{
            display:inline-flex;
            align-items:center;
            padding:6px 10px;
            border-radius:999px;
            background:#F3F5F0;
            border:1px solid #E8ECE4;
            color:#48534D;
            font-size:.8rem;
            line-height:1;
        }
        .cover-card{
            display:grid;
            grid-template-columns:1.02fr .98fr;
            gap:20px;
            align-items:stretch;
        }
        .cover-card .image-box{
            border-radius:var(--radius);
            overflow:hidden;
            min-height:100%;
            box-shadow:var(--shadow);
            border:1px solid var(--line);
            background:var(--bg-soft);
        }
        .cover-card .image-box img{
            width:100%;
            height:100%;
            object-fit:cover;
            aspect-ratio:4 / 3;
            filter:saturate(1.02);
        }
        .cover-content{
            background:var(--card);
            border:1px solid var(--line);
            border-radius:var(--radius);
            padding:22px;
            box-shadow:var(--shadow);
        }
        .cover-label{
            display:inline-flex;
            align-items:center;
            gap:8px;
            padding:6px 10px;
            border-radius:999px;
            background:rgba(57,217,138,.10);
            color:#167C54;
            border:1px solid rgba(57,217,138,.18);
            font-size:.82rem;
            font-weight:700;
        }
        .cover-content h3{
            margin:14px 0 12px;
            font-size:1.34rem;
            line-height:1.4;
            font-weight:800;
            color:var(--text);
        }
        .cover-content p{
            margin:0;
            color:var(--muted);
            font-size:1rem;
            line-height:1.88;
        }
        .cover-list{
            list-style:none;
            padding:0;
            margin:18px 0 0;
            display:grid;
            gap:10px;
        }
        .cover-list li{
            position:relative;
            padding-left:18px;
            color:var(--text);
            font-size:.97rem;
            line-height:1.7;
        }
        .cover-list li::before{
            content:"";
            position:absolute;
            left:0; top:.72em;
            width:8px; height:8px;
            border-radius:50%;
            background:var(--accent);
            box-shadow:0 0 0 4px rgba(57,217,138,.12);
        }

        .split-grid{
            display:grid;
            grid-template-columns:1.05fr .95fr;
            gap:18px;
        }
        .info-card,
        .note-card,
        .pull-card{
            background:var(--card);
            border:1px solid var(--line);
            border-radius:var(--radius);
            box-shadow:var(--shadow);
            padding:20px;
            overflow:hidden;
            position:relative;
        }
        .info-card::after,
        .note-card::after,
        .pull-card::after{
            content:"";
            position:absolute;
            inset:auto -18% -22% auto;
            width:180px;
            height:180px;
            border-radius:50%;
            background:radial-gradient(circle, rgba(57,217,138,.10), transparent 60%);
            pointer-events:none;
        }
        .info-card h3,
        .note-card h3,
        .pull-card h3{
            margin:0 0 12px;
            font-size:1.12rem;
            line-height:1.35;
            font-weight:800;
        }
        .info-card p,
        .note-card p,
        .pull-card p{
            margin:0;
            color:var(--muted);
            line-height:1.84;
            font-size:.98rem;
        }
        .list-check{
            list-style:none;
            padding:0;
            margin:16px 0 0;
            display:grid;
            gap:10px;
        }
        .list-check li{
            position:relative;
            padding-left:28px;
            color:var(--text);
            line-height:1.76;
            font-size:.96rem;
        }
        .list-check li::before{
            content:"";
            position:absolute;
            left:0;
            top:.45em;
            width:18px;
            height:18px;
            border-radius:50%;
            background:rgba(57,217,138,.14);
            border:1px solid rgba(57,217,138,.24);
            box-shadow:inset 0 0 0 4px #fff;
        }
        .info-stack{
            display:grid;
            gap:18px;
        }
        .info-stack .note-card{
            min-height:calc(50% - 9px);
        }
        .note-card.amber{
            background:linear-gradient(180deg, #fff, #fffaf0);
            border-color:rgba(255,178,62,.24);
        }
        .note-card.amber .cover-label{
            background:var(--amber-soft);
            border-color:rgba(255,178,62,.24);
            color:#946000;
        }

        .score-panel{
            background:linear-gradient(180deg, #ffffff, #fafbf8);
            border:1px solid var(--line);
            border-radius:var(--radius);
            box-shadow:var(--shadow);
            overflow:hidden;
        }
        .score-panel-head{
            padding:20px 20px 12px;
            border-bottom:1px solid var(--line);
            display:flex;
            align-items:flex-end;
            justify-content:space-between;
            gap:12px;
        }
        .score-panel-head h3{
            margin:0;
            font-size:1.15rem;
            font-weight:800;
        }
        .score-panel-head span{
            color:var(--muted);
            font-size:.92rem;
        }
        .score-grid{
            display:grid;
        }
        .score-row{
            display:grid;
            grid-template-columns:130px 1fr 110px 110px;
            gap:0;
            align-items:center;
            padding:16px 20px;
            border-top:1px solid var(--line);
        }
        .score-row:nth-child(odd){background:#FCFCFA}
        .score-date{
            color:var(--muted);
            font-size:.9rem;
            font-weight:700;
        }
        .score-match strong{
            display:block;
            font-size:1rem;
            color:var(--text);
            line-height:1.4;
            margin-bottom:4px;
        }
        .score-match span{
            color:var(--muted);
            font-size:.88rem;
        }
        .score-status{
            justify-self:start;
            display:inline-flex;
            align-items:center;
            justify-content:center;
            padding:8px 10px;
            border-radius:999px;
            font-size:.82rem;
            font-weight:700;
            border:1px solid transparent;
            white-space:nowrap;
        }
        .status-green{
            background:rgba(57,217,138,.10);
            color:#177C54;
            border-color:rgba(57,217,138,.18);
        }
        .status-amber{
            background:rgba(255,178,62,.12);
            color:#9B6400;
            border-color:rgba(255,178,62,.20);
        }
        .score-link{
            justify-self:end;
            color:var(--accent-strong);
            font-weight:700;
            font-size:.92rem;
        }
        .score-link:hover{color:#15945d}
        .score-note{
            padding:18px 20px 20px;
            display:flex;
            flex-wrap:wrap;
            gap:10px;
            align-items:center;
            border-top:1px solid var(--line);
            color:var(--muted);
            font-size:.94rem;
        }
        .score-note strong{
            color:var(--text);
        }

        .article-layout{
            display:grid;
            grid-template-columns:1.12fr .88fr;
            gap:18px;
            align-items:start;
        }
        .feature-article{
            display:grid;
            grid-template-columns:1fr;
            background:var(--card);
            border:1px solid var(--line);
            border-radius:var(--radius);
            overflow:hidden;
            box-shadow:var(--shadow);
        }
        .feature-article img{
            width:100%;
            aspect-ratio:16 / 9;
            object-fit:cover;
        }
        .feature-body{
            padding:20px;
        }
        .feature-body .meta{
            display:flex;
            flex-wrap:wrap;
            gap:8px;
            align-items:center;
            margin-bottom:12px;
        }
        .feature-body h3{
            margin:0 0 10px;
            font-size:1.28rem;
            line-height:1.45;
            font-weight:800;
        }
        .feature-body p{
            margin:0 0 16px;
            color:var(--muted);
            font-size:.98rem;
            line-height:1.86;
        }
        .article-grid{
            display:grid;
            gap:16px;
        }
        .mini-article{
            display:grid;
            grid-template-columns:114px 1fr;
            gap:14px;
            align-items:center;
            background:var(--card);
            border:1px solid var(--line);
            border-radius:18px;
            overflow:hidden;
            box-shadow:var(--shadow);
            transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
        }
        .mini-article:hover{
            transform:translateY(-3px);
            border-color:rgba(57,217,138,.34);
            box-shadow:var(--shadow-lg);
        }
        .mini-article img{
            width:100%;
            height:100%;
            aspect-ratio:1 / 1;
            object-fit:cover;
        }
        .mini-body{
            padding:14px 14px 14px 0;
        }
        .mini-body h4{
            margin:8px 0 8px;
            font-size:1.03rem;
            line-height:1.45;
            font-weight:800;
        }
        .mini-body p{
            margin:0 0 10px;
            color:var(--muted);
            font-size:.93rem;
            line-height:1.72;
        }
        .mini-meta{
            display:flex;
            flex-wrap:wrap;
            gap:8px;
        }
        .text-card{
            background:var(--card);
            border:1px solid var(--line);
            border-radius:18px;
            box-shadow:var(--shadow);
            padding:18px;
        }
        .text-card h4{
            margin:0 0 10px;
            font-size:1rem;
            font-weight:800;
        }
        .text-card p{
            margin:0;
            color:var(--muted);
            font-size:.95rem;
            line-height:1.8;
        }

        .compliance-banner{
            display:grid;
            grid-template-columns:auto 1fr auto;
            gap:16px;
            align-items:center;
            padding:20px;
            border-radius:var(--radius);
            background:linear-gradient(180deg, #fff8eb, #fffdf8);
            border:1px solid rgba(255,178,62,.24);
            box-shadow:var(--shadow);
        }
        .compliance-icon{
            width:56px;
            height:56px;
            border-radius:18px;
            background:rgba(255,178,62,.16);
            border:1px solid rgba(255,178,62,.24);
            display:grid;
            place-items:center;
            color:#A66A00;
            font-size:1.5rem;
            font-weight:800;
        }
        .compliance-banner h3{
            margin:0 0 6px;
            font-size:1.18rem;
            font-weight:800;
        }
        .compliance-banner p{
            margin:0;
            color:#705B39;
            line-height:1.84;
        }

        .faq-wrap{
            display:grid;
            gap:14px;
        }
        details.faq-item{
            background:var(--card);
            border:1px solid var(--line);
            border-radius:18px;
            box-shadow:var(--shadow);
            overflow:hidden;
        }
        details.faq-item[open]{
            border-color:rgba(57,217,138,.24);
        }
        details.faq-item summary{
            list-style:none;
            cursor:pointer;
            padding:18px 20px;
            display:flex;
            align-items:center;
            justify-content:space-between;
            gap:16px;
            font-weight:800;
            color:var(--text);
            outline:none;
        }
        details.faq-item summary::-webkit-details-marker{display:none}
        details.faq-item summary::after{
            content:"+";
            color:var(--accent-strong);
            font-size:1.3rem;
            line-height:1;
            flex:0 0 auto;
        }
        details.faq-item[open] summary::after{
            content:"–";
        }
        .faq-answer{
            padding:0 20px 18px;
            color:var(--muted);
            font-size:.97rem;
            line-height:1.88;
        }

        .feedback-layout{
            display:grid;
            grid-template-columns:.95fr 1.05fr;
            gap:18px;
            align-items:start;
        }
        .feedback-info,
        .feedback-form{
            background:var(--card);
            border:1px solid var(--line);
            border-radius:var(--radius);
            box-shadow:var(--shadow);
            padding:22px;
        }
        .feedback-info h3,
        .feedback-form h3{
            margin:0 0 10px;
            font-size:1.15rem;
            font-weight:800;
        }
        .feedback-info p{
            margin:0;
            color:var(--muted);
            line-height:1.84;
        }
        .bullet-list{
            list-style:none;
            padding:0;
            margin:18px 0 0;
            display:grid;
            gap:10px;
        }
        .bullet-list li{
            padding:12px 14px;
            border-radius:14px;
            background:#FAFAF7;
            border:1px solid #E9ECE5;
            color:var(--text);
            line-height:1.72;
            font-size:.95rem;
        }
        .form-grid{
            display:grid;
            gap:14px;
            margin-top:12px;
        }
        .field-group{
            display:grid;
            gap:8px;
        }
        .field-group label{
            font-size:.92rem;
            font-weight:700;
            color:var(--text);
        }
        .field-group input,
        .field-group textarea{
            width:100%;
            border:1px solid var(--line);
            background:#fff;
            color:var(--text);
            border-radius:14px;
            padding:14px 14px;
            outline:none;
            transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease;
        }
        .field-group input::placeholder,
        .field-group textarea::placeholder{color:#A0A8A2}
        .field-group input:focus,
        .field-group textarea:focus{
            border-color:rgba(57,217,138,.52);
            box-shadow:0 0 0 4px rgba(57,217,138,.12);
        }
        .field-group textarea{
            min-height:140px;
            resize:vertical;
        }
        .form-actions{
            display:flex;
            flex-wrap:wrap;
            align-items:center;
            gap:12px;
            margin-top:2px;
        }
        .form-note{
            color:var(--muted);
            font-size:.92rem;
            line-height:1.72;
        }

        .bottom-cta{
            margin-top:78px;
            padding:24px;
            border-radius:24px;
            background:linear-gradient(135deg, var(--deep), var(--deep-2));
            color:#F3F7F2;
            border:1px solid rgba(57,217,138,.18);
            box-shadow:var(--shadow-lg);
            display:flex;
            align-items:center;
            justify-content:space-between;
            gap:18px;
        }
        .bottom-cta h3{
            margin:0 0 8px;
            font-size:1.32rem;
            font-weight:800;
        }
        .bottom-cta p{
            margin:0;
            color:rgba(243,247,242,.76);
            line-height:1.84;
        }
        .bottom-cta .btn-secondary{
            border-color:rgba(243,247,242,.22);
        }

        .site-footer{
            margin-top:70px;
            background:var(--deep);
            color:#F3F7F2;
            padding:42px 0 22px;
            border-top:1px solid rgba(255,255,255,.06);
        }
        .footer-grid{
            display:grid;
            grid-template-columns:1.4fr .9fr .9fr 1fr;
            gap:26px;
            align-items:start;
        }
        .footer-logo{
            margin-bottom:14px;
        }
        .footer-desc{
            margin:0;
            color:rgba(243,247,242,.74);
            line-height:1.84;
            max-width:34ch;
        }
        .footer-col h3{
            margin:0 0 12px;
            font-size:1rem;
            color:#fff;
            font-weight:800;
        }
        .footer-col a,
        .footer-col span{
            display:block;
            color:rgba(243,247,242,.74);
            margin-bottom:10px;
            font-size:.95rem;
            line-height:1.7;
        }
        .footer-col a:hover{color:#fff}
        .footer-risk{
            color:#FFE8C5;
            background:rgba(255,178,62,.10);
            border:1px solid rgba(255,178,62,.18);
            border-radius:16px;
            padding:14px;
            line-height:1.8;
            font-size:.94rem;
        }
        .copyright{
            display:flex;
            flex-wrap:wrap;
            justify-content:space-between;
            gap:12px;
            margin-top:28px;
            padding-top:18px;
            border-top:1px solid rgba(255,255,255,.08);
            color:rgba(243,247,242,.62);
            font-size:.9rem;
        }
        .copyright a{
            color:#fff;
        }

        .grid-2{
            display:grid;
            grid-template-columns:repeat(2, minmax(0, 1fr));
            gap:18px;
        }
        .grid-3{
            display:grid;
            grid-template-columns:repeat(3, minmax(0, 1fr));
            gap:18px;
        }
        .mt-0{margin-top:0}
        .mt-16{margin-top:16px}
        .mt-24{margin-top:24px}
        .muted{color:var(--muted)}
        .divider{
            height:1px;
            background:var(--line);
            margin:18px 0;
        }

        .soft-box{
            border-radius:18px;
            background:#FAFAF7;
            border:1px solid #E7EBE4;
            padding:18px;
        }
        .soft-box strong{
            display:block;
            margin-bottom:8px;
            color:var(--text);
        }
        .soft-box p{
            margin:0;
            color:var(--muted);
            line-height:1.82;
        }

        .page-tags{
            display:flex;
            flex-wrap:wrap;
            gap:10px;
        }
        .page-tags a{
            display:inline-flex;
            align-items:center;
            min-height:36px;
            padding:8px 12px;
            border-radius:999px;
            border:1px solid #E2E6DF;
            background:#fff;
            color:#415049;
            font-size:.88rem;
        }
        .page-tags a:hover{
            border-color:rgba(57,217,138,.34);
            color:#137e54;
            box-shadow:0 8px 18px rgba(16,24,21,.06);
        }
        .page-tags a.active{
            background:rgba(57,217,138,.10);
            border-color:rgba(57,217,138,.26);
            color:#137e54;
        }

        .sr{
            position:absolute;
            width:1px;height:1px;
            padding:0;margin:-1px;
            overflow:hidden;clip:rect(0,0,0,0);
            white-space:nowrap;border:0;
        }

        .hero-bubble{
            position:absolute;
            inset:auto 3% 10% auto;
            width:160px;
            height:160px;
            border-radius:50%;
            background:radial-gradient(circle, rgba(57,217,138,.14), transparent 64%);
            pointer-events:none;
            z-index:-1;
        }

        .focus-ring:focus-visible,
        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        textarea:focus-visible,
        summary:focus-visible{
            outline:3px solid rgba(57,217,138,.36);
            outline-offset:2px;
        }

        @media (max-width: 1180px){
            .archive-grid{grid-template-columns:repeat(2, minmax(0, 1fr))}
            .grid-3{grid-template-columns:repeat(2, minmax(0, 1fr))}
            .footer-grid{grid-template-columns:1.1fr .9fr .9fr}
            .footer-grid .footer-col:last-child{grid-column:1 / -1}
        }
        @media (max-width: 980px){
            :root{--header-h:72px}
            .menu-toggle{display:inline-flex}
            .nav-shell{
                display:none;
                position:absolute;
                left:0;right:0;
                top:100%;
                background:rgba(16,24,21,.98);
                padding:14px 16px 18px;
                border-bottom:1px solid rgba(255,255,255,.06);
                box-shadow:0 16px 28px rgba(16,24,21,.14);
            }
            .nav-shell.open{display:block}
            .nav{
                flex-direction:column;
                align-items:stretch;
                gap:8px;
                width:100%;
            }
            .nav a{
                width:100%;
                border-radius:14px;
                padding:12px 14px;
            }
            .header-cta{
                margin-left:auto;
            }
            .hero-grid,
            .split-grid,
            .article-layout,
            .feedback-layout,
            .cover-card{
                grid-template-columns:1fr;
            }
            .hero-stats{grid-template-columns:repeat(2, minmax(0, 1fr))}
            .score-row{
                grid-template-columns:1fr;
                gap:8px;
                align-items:start;
            }
            .score-status,
            .score-link{
                justify-self:start;
            }
            .score-panel-head{
                flex-direction:column;
                align-items:flex-start;
            }
            .bottom-cta,
            .compliance-banner,
            .section-header{
                grid-template-columns:1fr;
                flex-direction:column;
                align-items:flex-start;
            }
        }
        @media (max-width: 760px){
            .container{width:min(calc(100% - 24px), var(--container))}
            .site-header .container{width:min(calc(100% - 18px), var(--container))}
            .hero{padding:28px 0 18px}
            .hero-copy{padding-top:0}
            h1{max-width:none; font-size:clamp(1.9rem, 7vw, 2.7rem)}
            .hero p{font-size:1rem}
            .hero-actions{flex-direction:column; align-items:stretch}
            .btn,.header-cta{width:100%}
            .hero-stats{grid-template-columns:1fr}
            .archive-grid,
            .grid-3,
            .grid-2{
                grid-template-columns:1fr;
            }
            .section{padding-top:56px}
            .section-header{margin-bottom:18px}
            .section-cta{width:100%; text-align:center}
            .mini-article{
                grid-template-columns:88px 1fr;
            }
            .mini-body{padding-right:14px}
            .footer-grid{grid-template-columns:1fr}
            .copyright{
                flex-direction:column;
                align-items:flex-start;
            }
            .notice-strip .container{
                flex-direction:column;
                align-items:flex-start;
            }
            .compliance-banner{
                grid-template-columns:1fr;
            }
            .compliance-icon{
                width:48px;height:48px;border-radius:16px;
            }
        }
        @media (max-width: 520px){
            :root{--radius:18px}
            .logo-text span{font-size:.76rem}
            .phase-card,
            .info-card,
            .note-card,
            .pull-card,
            .feedback-info,
            .feedback-form,
            .feature-body{
                padding:18px;
            }
            .panel-head{flex-direction:column}
            .score-panel-head h3,
            .panel-title,
            .section h2{
                font-size:1.08rem;
            }
            details.faq-item summary{
                padding:16px 18px;
                align-items:flex-start;
            }
            .faq-answer{
                padding:0 18px 16px;
            }
            .field-group input,
            .field-group textarea{
                padding:13px 13px;
            }
            .bottom-cta{
                padding:20px;
            }
            .hero-panel{
                padding:18px;
            }
            .board-row{
                grid-template-columns:1fr;
                justify-items:start;
            }
            .stage-badge{
                min-width:0;
                width:auto;
            }
            .mini-article{
                grid-template-columns:1fr;
            }
            .mini-article img{
                aspect-ratio:16 / 9;
            }
            .mini-body{
                padding:0 14px 14px;
            }
        }
