/* roulang page: index */
:root{
      --primary:#2563eb;
      --primary-2:#3b82f6;
      --primary-dark:#1746b7;
      --accent:#f59e0b;
      --coral:#f97373;
      --mint:#ddf7f5;
      --blue-soft:#eaf2ff;
      --cream:#fafbf7;
      --bg:#f7faff;
      --surface:#ffffff;
      --text:#13213a;
      --muted:#637083;
      --weak:#8b97aa;
      --border:#dbe7fb;
      --border-2:#c8d9f7;
      --shadow:0 18px 45px rgba(37,99,235,.10);
      --shadow-hover:0 24px 62px rgba(37,99,235,.16);
      --radius-sm:14px;
      --radius:22px;
      --radius-lg:32px;
      --container:1200px;
      --nav-h:76px;
      --ease:all .24s ease;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",Arial,sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 8% 4%, rgba(59,130,246,.12), transparent 34%),
        radial-gradient(circle at 88% 10%, rgba(221,247,245,.95), transparent 28%),
        linear-gradient(180deg,#f7faff 0%,#ffffff 42%,#f7faff 100%);
      line-height:1.75;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    img{max-width:100%;height:auto;display:block}
    button,input,textarea{font:inherit}
    ::selection{background:rgba(37,99,235,.16);color:var(--primary-dark)}
    .container{max-width:var(--container)}
    .site-header{
      position:sticky;
      top:0;
      z-index:1020;
      min-height:var(--nav-h);
      background:rgba(255,255,255,.88);
      backdrop-filter:saturate(160%) blur(18px);
      border-bottom:1px solid rgba(219,231,251,.9);
      transition:var(--ease);
    }
    .site-header.is-scrolled{box-shadow:0 12px 32px rgba(37,99,235,.10)}
    .navbar{min-height:var(--nav-h);padding:0}
    .brand-wrap{
      display:flex;
      align-items:center;
      gap:12px;
      min-height:56px;
      font-weight:900;
      letter-spacing:-.02em;
      color:var(--text);
    }
    .brand-icon{
      width:44px;
      height:44px;
      border-radius:16px;
      background:linear-gradient(135deg,var(--primary),#7dd3fc);
      box-shadow:0 14px 30px rgba(37,99,235,.22);
      position:relative;
      flex:0 0 auto;
      overflow:hidden;
    }
    .brand-icon:before{
      content:"";
      position:absolute;
      inset:9px;
      border:2px solid rgba(255,255,255,.75);
      border-radius:12px;
      transform:rotate(8deg);
    }
    .brand-icon:after{
      content:"";
      position:absolute;
      width:8px;height:8px;border-radius:50%;
      background:#fff;
      left:18px;top:18px;
      box-shadow:12px -8px 0 rgba(255,255,255,.65),-10px 11px 0 rgba(255,255,255,.5);
    }
    .brand-text{font-size:18px;white-space:nowrap}
    .navbar-toggler{
      border:1px solid var(--border);
      border-radius:14px;
      padding:9px 11px;
      box-shadow:none!important;
    }
    .navbar-toggler:focus{outline:3px solid rgba(37,99,235,.18)}
    .nav-menu{gap:8px;align-items:center}
    .nav-link{
      min-height:44px;
      padding:10px 16px!important;
      border-radius:999px;
      color:#34425a;
      font-weight:700;
      font-size:15px;
    }
    .nav-link:hover,.nav-link:focus{color:var(--primary);background:var(--blue-soft)}
    .nav-link.active{color:var(--primary-dark)!important;background:#e7f0ff}
    .nav-status{
      display:inline-flex;
      align-items:center;
      gap:8px;
      min-height:38px;
      padding:8px 13px;
      border-radius:999px;
      background:#fff8e8;
      color:#8a5a08;
      border:1px solid rgba(245,158,11,.22);
      font-size:13px;
      font-weight:800;
      white-space:nowrap;
    }
    .pulse-dot{
      width:8px;height:8px;border-radius:50%;
      background:var(--accent);
      box-shadow:0 0 0 5px rgba(245,158,11,.15);
    }
    .btn-main,.btn-ghost,.btn-soft{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:48px;
      padding:12px 22px;
      border-radius:999px;
      border:1px solid transparent;
      font-weight:800;
      line-height:1.2;
      transition:var(--ease);
      cursor:pointer;
    }
    .btn-main{
      color:#fff;
      background:linear-gradient(135deg,var(--primary),var(--primary-2));
      box-shadow:0 14px 28px rgba(37,99,235,.22);
    }
    .btn-main:hover,.btn-main:focus{
      color:#fff;
      background:linear-gradient(135deg,var(--primary-dark),var(--primary));
      transform:translateY(-2px);
      box-shadow:0 18px 40px rgba(37,99,235,.28);
    }
    .btn-ghost{
      color:var(--primary);
      background:#fff;
      border-color:var(--border-2);
    }
    .btn-ghost:hover,.btn-ghost:focus{
      color:var(--primary-dark);
      background:#eff6ff;
      border-color:rgba(37,99,235,.32);
      transform:translateY(-2px);
    }
    .btn-soft{
      color:var(--primary-dark);
      background:#eaf2ff;
      border-color:#d6e6ff;
      min-height:42px;
      padding:10px 16px;
      font-size:14px;
    }
    .btn-soft:hover{background:#dbeafe;color:var(--primary-dark);transform:translateY(-1px)}
    .btn-main:focus-visible,.btn-ghost:focus-visible,.btn-soft:focus-visible,.nav-link:focus-visible,a:focus-visible{
      outline:3px solid rgba(37,99,235,.20);
      outline-offset:2px;
    }
    .section{padding:82px 0;position:relative}
    .section-tight{padding:58px 0}
    .section-head{
      display:flex;
      align-items:end;
      justify-content:space-between;
      gap:24px;
      margin-bottom:30px;
    }
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--primary);
      background:#edf5ff;
      border:1px solid #dbeafe;
      border-radius:999px;
      padding:7px 12px;
      font-size:13px;
      font-weight:900;
      margin-bottom:12px;
    }
    .section-title{
      font-size:32px;
      line-height:1.25;
      font-weight:950;
      letter-spacing:-.04em;
      margin:0;
    }
    .section-desc{
      max-width:660px;
      color:var(--muted);
      margin:12px 0 0;
      font-size:16px;
    }
    .hero{
      padding:54px 0 72px;
      position:relative;
    }
    .hero:before{
      content:"";
      position:absolute;
      inset:0;
      background-image:
        linear-gradient(rgba(37,99,235,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37,99,235,.055) 1px, transparent 1px);
      background-size:42px 42px;
      mask-image:linear-gradient(180deg,rgba(0,0,0,.75),transparent 82%);
      pointer-events:none;
    }
    .hero-board{
      position:relative;
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:28px;
      align-items:stretch;
      background:rgba(255,255,255,.78);
      border:1px solid rgba(219,231,251,.92);
      border-radius:38px;
      box-shadow:var(--shadow);
      padding:28px;
      overflow:hidden;
    }
    .hero-board:after{
      content:"";
      position:absolute;
      right:-130px;top:-160px;
      width:360px;height:360px;border-radius:50%;
      background:radial-gradient(circle,rgba(37,99,235,.18),transparent 66%);
      pointer-events:none;
    }
    .hero-copy{
      padding:34px 26px 30px;
      position:relative;
      z-index:1;
    }
    .hero-labels{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:18px}
    .badge-soft{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:7px 12px;
      border-radius:999px;
      background:#eef6ff;
      border:1px solid #dbeafe;
      color:#2351a8;
      font-size:13px;
      font-weight:850;
    }
    .badge-mint{background:#e9fbf8;border-color:#c9f1ea;color:#14746b}
    .badge-amber{background:#fff7e6;border-color:#ffe4ae;color:#9a6509}
    h1{
      font-size:46px;
      line-height:1.15;
      font-weight:980;
      letter-spacing:-.055em;
      margin:0 0 18px;
      color:#101f38;
    }
    .hero-intro{
      font-size:17px;
      color:#536176;
      max-width:650px;
      margin:0 0 24px;
    }
    .hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin:28px 0}
    .hero-data{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
      margin-top:24px;
      max-width:650px;
    }
    .data-pill{
      border:1px solid var(--border);
      background:rgba(255,255,255,.82);
      border-radius:18px;
      padding:14px;
      min-height:88px;
    }
    .data-pill strong{
      display:block;
      font-size:22px;
      line-height:1.1;
      color:var(--primary);
      font-weight:950;
      margin-bottom:6px;
    }
    .data-pill span{color:var(--muted);font-size:13px;font-weight:700}
    .hero-lead-card{
      position:relative;
      z-index:1;
      border-radius:30px;
      background:
        linear-gradient(145deg,#f6fbff 0%,#ffffff 48%,#eaf2ff 100%);
      border:1px solid #dbeafe;
      padding:24px;
      box-shadow:inset 0 1px 0 rgba(255,255,255,.9);
    }
    .cover-card{
      min-height:260px;
      border-radius:28px;
      padding:24px;
      color:#fff;
      background:
        radial-gradient(circle at 82% 12%,rgba(255,255,255,.35),transparent 28%),
        linear-gradient(135deg,#2563eb 0%,#60a5fa 58%,#93c5fd 100%);
      box-shadow:0 22px 48px rgba(37,99,235,.25);
      position:relative;
      overflow:hidden;
    }
    .cover-card:before{
      content:"";
      position:absolute;
      inset:24px;
      border:1px solid rgba(255,255,255,.25);
      border-radius:22px;
    }
    .cover-card:after{
      content:"";
      position:absolute;
      left:48px;bottom:52px;
      width:230px;height:80px;
      border-left:2px dashed rgba(255,255,255,.55);
      border-bottom:2px dashed rgba(255,255,255,.45);
      border-radius:0 0 0 28px;
      transform:rotate(-5deg);
    }
    .cover-top,.cover-bottom{position:relative;z-index:1}
    .cover-top{display:flex;justify-content:space-between;gap:12px;align-items:center}
    .cover-mark{
      display:inline-flex;
      padding:7px 11px;
      border-radius:999px;
      background:rgba(255,255,255,.18);
      border:1px solid rgba(255,255,255,.28);
      font-weight:850;
      font-size:13px;
    }
    .cover-title{
      margin-top:48px;
      font-size:30px;
      line-height:1.25;
      font-weight:950;
      letter-spacing:-.04em;
    }
    .cover-bottom{
      display:flex;
      justify-content:space-between;
      align-items:end;
      gap:16px;
      margin-top:34px;
      color:rgba(255,255,255,.86);
      font-size:13px;
      font-weight:700;
    }
    .lead-form{
      margin-top:18px;
      background:#fff;
      border:1px solid var(--border);
      border-radius:24px;
      padding:18px;
      box-shadow:0 12px 32px rgba(37,99,235,.08);
    }
    .lead-form h2{
      font-size:20px;
      font-weight:950;
      margin:0 0 6px;
      letter-spacing:-.03em;
    }
    .lead-form p{margin:0 0 16px;color:var(--muted);font-size:14px}
    .form-control,.form-select{
      min-height:50px;
      border-radius:16px;
      border-color:#d7e4f8;
      color:var(--text);
      background:#fbfdff;
    }
    .form-control:focus,.form-select:focus{
      border-color:var(--primary);
      box-shadow:0 0 0 .22rem rgba(37,99,235,.13);
    }
    .form-note{font-size:12px;color:var(--weak);margin-top:10px}
    .directory-track{
      display:flex;
      gap:18px;
      overflow-x:auto;
      padding:4px 4px 22px;
      scroll-snap-type:x mandatory;
      scrollbar-width:none;
    }
    .directory-track::-webkit-scrollbar{display:none}
    .track-card{
      scroll-snap-align:start;
      flex:0 0 286px;
      background:var(--surface);
      border:1px solid var(--border);
      border-radius:24px;
      padding:22px;
      box-shadow:0 12px 30px rgba(37,99,235,.075);
      transition:var(--ease);
      position:relative;
      overflow:hidden;
    }
    .track-card:before{
      content:"";
      position:absolute;
      width:95px;height:95px;border-radius:50%;
      background:rgba(59,130,246,.08);
      right:-28px;top:-30px;
    }
    .track-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-hover);
      border-color:rgba(37,99,235,.24);
    }
    .card-status{
      position:relative;
      display:inline-flex;
      padding:6px 10px;
      border-radius:999px;
      background:#f2f7ff;
      color:var(--primary);
      font-size:12px;
      font-weight:900;
      margin-bottom:16px;
    }
    .track-card h3{
      position:relative;
      font-size:21px;
      line-height:1.3;
      margin:0 0 10px;
      font-weight:950;
      letter-spacing:-.035em;
    }
    .track-card p{position:relative;color:var(--muted);margin:0 0 16px;font-size:14px}
    .tag-row{display:flex;flex-wrap:wrap;gap:8px;margin:12px 0 18px}
    .mini-tag{
      display:inline-flex;
      padding:5px 9px;
      border-radius:999px;
      background:#f7fbff;
      border:1px solid #e0ebfb;
      color:#56657a;
      font-size:12px;
      font-weight:750;
    }
    .card-link{
      display:inline-flex;
      align-items:center;
      gap:6px;
      color:var(--primary);
      font-weight:900;
      font-size:14px;
    }
    .track-card:hover .card-link{gap:10px;color:var(--primary-dark)}
    .recommend-grid{
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:22px;
      align-items:stretch;
    }
    .feature-card{
      min-height:432px;
      border-radius:32px;
      padding:30px;
      border:1px solid #d8e7ff;
      background:
        radial-gradient(circle at 86% 12%,rgba(221,247,245,.95),transparent 26%),
        linear-gradient(145deg,#ffffff 0%,#edf5ff 100%);
      box-shadow:var(--shadow);
      overflow:hidden;
      position:relative;
    }
    .feature-card:before{
      content:"";
      position:absolute;
      left:42px;top:90px;
      width:70%;
      height:210px;
      border:2px dashed rgba(37,99,235,.16);
      border-radius:34px;
      transform:rotate(-4deg);
    }
    .feature-content{position:relative;z-index:1;max-width:560px}
    .feature-card h2{
      margin:14px 0 14px;
      font-size:34px;
      line-height:1.22;
      font-weight:960;
      letter-spacing:-.045em;
    }
    .feature-card p{color:var(--muted);margin-bottom:22px}
    .metric-line{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
      margin:24px 0;
    }
    .metric{
      border-radius:18px;
      background:rgba(255,255,255,.76);
      border:1px solid rgba(219,231,251,.88);
      padding:14px;
    }
    .metric strong{display:block;color:var(--primary);font-size:24px;font-weight:950}
    .metric span{font-size:12px;color:var(--muted);font-weight:750}
    .side-stack{display:grid;gap:18px}
    .small-card{
      background:#fff;
      border:1px solid var(--border);
      border-radius:24px;
      padding:22px;
      box-shadow:0 12px 30px rgba(37,99,235,.075);
      transition:var(--ease);
    }
    .small-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-hover);border-color:rgba(37,99,235,.24)}
    .small-card h3{font-size:20px;margin:10px 0 8px;font-weight:950;letter-spacing:-.03em}
    .small-card p{margin:0;color:var(--muted);font-size:14px}
    .index-panel{
      border-radius:32px;
      background:#fff;
      border:1px solid var(--border);
      box-shadow:var(--shadow);
      padding:24px;
    }
    .custom-pills{
      display:flex;
      gap:10px;
      overflow-x:auto;
      padding-bottom:14px;
      scrollbar-width:none;
      border-bottom:1px solid var(--border);
      margin-bottom:20px;
    }
    .custom-pills::-webkit-scrollbar{display:none}
    .custom-pills .nav-link{
      white-space:nowrap;
      border:1px solid #dbeafe;
      background:#f7fbff;
      color:#506176;
    }
    .custom-pills .nav-link.active{
      color:#fff!important;
      background:linear-gradient(135deg,var(--primary),var(--primary-2));
      border-color:transparent;
      box-shadow:0 12px 24px rgba(37,99,235,.18);
    }
    .index-list{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:16px;
    }
    .index-item{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:14px;
      border:1px solid #e1ebfb;
      border-radius:20px;
      padding:18px;
      background:#fbfdff;
      transition:var(--ease);
    }
    .index-item:hover{background:#fff;transform:translateY(-2px);box-shadow:0 12px 28px rgba(37,99,235,.08)}
    .index-item h3{font-size:18px;margin:0 0 6px;font-weight:930}
    .index-item p{font-size:13px;color:var(--muted);margin:0}
    .arrow-chip{
      width:36px;height:36px;border-radius:50%;
      display:grid;place-items:center;
      background:#edf5ff;color:var(--primary);font-weight:950;
      flex:0 0 auto;
    }
    .news-wrap{
      display:grid;
      grid-template-columns:minmax(0,1fr) 360px;
      gap:24px;
      align-items:start;
    }
    .news-list{
      background:#fff;
      border:1px solid var(--border);
      border-radius:28px;
      box-shadow:var(--shadow);
      padding:10px;
    }
    .news-item{
      display:grid;
      grid-template-columns:1fr auto;
      gap:18px;
      align-items:center;
      padding:20px;
      border-radius:20px;
      border-bottom:1px solid #edf2fb;
      transition:var(--ease);
    }
    .news-item:last-child{border-bottom:0}
    .news-item:hover{background:#f7fbff}
    .news-item h3{font-size:18px;margin:0 0 7px;font-weight:920}
    .news-item h3 a:hover{color:var(--primary)}
    .news-item p{margin:0;color:var(--muted);font-size:14px}
    .news-meta{
      text-align:right;
      color:var(--weak);
      font-size:13px;
      font-weight:800;
      white-space:nowrap;
    }
    .rank-card{
      background:linear-gradient(180deg,#ffffff,#f2f7ff);
      border:1px solid var(--border);
      border-radius:28px;
      box-shadow:var(--shadow);
      padding:24px;
      position:sticky;
      top:98px;
    }
    .rank-card h3{font-size:22px;font-weight:950;margin:0 0 16px}
    .rank-row{
      display:grid;
      grid-template-columns:32px 1fr auto;
      gap:12px;
      align-items:center;
      padding:13px 0;
      border-bottom:1px solid #e3edfb;
    }
    .rank-row:last-child{border-bottom:0}
    .rank-no{
      width:30px;height:30px;border-radius:10px;
      display:grid;place-items:center;
      background:#e8f1ff;
      color:var(--primary);
      font-weight:950;
    }
    .rank-row strong{font-size:14px;line-height:1.35}
    .rank-row span{font-size:12px;color:var(--muted);font-weight:800}
    .trend-up{color:#138a72!important}
    .vertical-flow{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:18px;
    }
    .vertical-card{
      min-height:318px;
      border-radius:28px;
      border:1px solid var(--border);
      background:#fff;
      box-shadow:0 12px 30px rgba(37,99,235,.075);
      padding:18px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      transition:var(--ease);
      overflow:hidden;
      position:relative;
    }
    .vertical-card:before{
      content:"";
      height:120px;
      border-radius:22px;
      background:
        radial-gradient(circle at 24% 26%,rgba(255,255,255,.75),transparent 20%),
        linear-gradient(135deg,#dbeafe,#ffffff 48%,#ddf7f5);
      border:1px solid #e1ebfb;
      margin-bottom:18px;
    }
    .vertical-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-hover);border-color:rgba(37,99,235,.25)}
    .vertical-card h3{font-size:19px;font-weight:950;margin:0 0 8px;letter-spacing:-.03em}
    .vertical-card p{font-size:14px;color:var(--muted);margin:0 0 16px}
    .guide-grid{
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:24px;
      align-items:stretch;
    }
    .guide-note{
      border-radius:30px;
      background:#10213d;
      color:#fff;
      padding:30px;
      position:relative;
      overflow:hidden;
    }
    .guide-note:after{
      content:"";
      position:absolute;
      right:-80px;bottom:-80px;
      width:230px;height:230px;border-radius:50%;
      background:rgba(59,130,246,.35);
    }
    .guide-note h2{font-size:30px;line-height:1.25;font-weight:950;margin:14px 0}
    .guide-note p{color:rgba(255,255,255,.78);margin:0}
    .step-list{
      display:grid;
      gap:14px;
    }
    .step-item{
      display:grid;
      grid-template-columns:46px 1fr;
      gap:14px;
      background:#fff;
      border:1px solid var(--border);
      border-radius:22px;
      padding:18px;
      box-shadow:0 10px 26px rgba(37,99,235,.07);
      transition:var(--ease);
    }
    .step-item:hover{transform:translateY(-2px);box-shadow:var(--shadow)}
    .step-num{
      width:46px;height:46px;border-radius:16px;
      display:grid;place-items:center;
      color:#fff;
      background:linear-gradient(135deg,var(--primary),#7dd3fc);
      font-weight:950;
    }
    .step-item h3{font-size:18px;font-weight:940;margin:0 0 6px}
    .step-item p{color:var(--muted);font-size:14px;margin:0}
    .share-panel{
      border-radius:34px;
      padding:30px;
      border:1px solid #dbeafe;
      background:
        radial-gradient(circle at 92% 0%,rgba(245,158,11,.13),transparent 24%),
        linear-gradient(135deg,#ffffff 0%,#eef6ff 72%,#e9fbf8 100%);
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .progress-box{
      background:#fff;
      border:1px solid var(--border);
      border-radius:24px;
      padding:20px;
      height:100%;
    }
    .progress{
      height:12px;
      border-radius:999px;
      background:#e7eefb;
      overflow:hidden;
    }
    .progress-bar{
      background:linear-gradient(90deg,var(--primary),#22c5b8);
      border-radius:999px;
    }
    .reward-list{display:grid;gap:12px;margin-top:18px}
    .reward-item{
      display:flex;
      justify-content:space-between;
      gap:14px;
      padding:12px 0;
      border-bottom:1px solid #edf2fb;
      color:var(--muted);
      font-size:14px;
    }
    .reward-item:last-child{border-bottom:0}
    .reward-item strong{color:var(--text)}
    .faq-box{
      background:#fff;
      border:1px solid var(--border);
      border-radius:30px;
      box-shadow:var(--shadow);
      padding:14px;
    }
    .accordion-item{
      border:0;
      border-bottom:1px solid #e7eefb;
      background:transparent;
    }
    .accordion-item:last-child{border-bottom:0}
    .accordion-button{
      border-radius:18px!important;
      padding:18px 20px;
      color:var(--text);
      font-weight:900;
      box-shadow:none!important;
      background:#fff;
    }
    .accordion-button:not(.collapsed){
      color:var(--primary-dark);
      background:#eef6ff;
    }
    .accordion-button:focus{box-shadow:0 0 0 .22rem rgba(37,99,235,.13)!important}
    .accordion-body{
      color:var(--muted);
      padding:0 20px 20px;
      font-size:15px;
    }
    .cta-panel{
      border-radius:34px;
      padding:34px;
      color:#10213d;
      background:
        radial-gradient(circle at 15% 15%,rgba(37,99,235,.12),transparent 30%),
        radial-gradient(circle at 80% 18%,rgba(221,247,245,.9),transparent 26%),
        linear-gradient(135deg,#ffffff,#edf5ff);
      border:1px solid #dbeafe;
      box-shadow:var(--shadow);
      position:relative;
      overflow:hidden;
    }
    .cta-panel:before{
      content:"";
      position:absolute;
      inset:auto 36px 24px auto;
      width:220px;height:90px;
      border-top:2px dashed rgba(37,99,235,.18);
      border-right:2px dashed rgba(37,99,235,.18);
      border-radius:0 30px 0 0;
    }
    .cta-panel h2{font-size:32px;font-weight:960;letter-spacing:-.04em;margin:0 0 12px}
    .cta-panel p{color:var(--muted);margin:0}
    .trust-points{display:flex;flex-wrap:wrap;gap:10px;margin-top:20px}
    .trust-point{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.82);
      border:1px solid #dbeafe;
      color:#526176;
      font-size:13px;
      font-weight:800;
    }
    .site-footer{
      padding:54px 0 28px;
      background:#f1f6ff;
      border-top:1px solid #dbeafe;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.3fr .8fr .9fr;
      gap:28px;
      align-items:start;
    }
    .footer-brand p{color:var(--muted);margin:16px 0 0;max-width:520px}
    .footer-title{font-weight:950;margin-bottom:12px}
    .footer-links{display:grid;gap:10px}
    .footer-links a{color:#526176;font-weight:750}
    .footer-links a:hover{color:var(--primary);transform:translateX(2px)}
    .compliance{
      background:#fff;
      border:1px solid var(--border);
      border-radius:22px;
      padding:16px;
      color:var(--muted);
      font-size:14px;
    }
    .copyright{
      margin-top:34px;
      padding-top:22px;
      border-top:1px solid #dbeafe;
      color:#7b8798;
      font-size:13px;
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
    }
    @media (max-width: 991.98px){
      :root{--nav-h:66px}
      .navbar-collapse{
        margin-top:12px;
        padding:14px;
        border-radius:24px;
        background:#fff;
        border:1px solid var(--border);
        box-shadow:var(--shadow);
      }
      .nav-menu{align-items:stretch}
      .nav-status{justify-content:center;margin:8px 0}
      .nav-cta{width:100%}
      .hero-board,.recommend-grid,.guide-grid,.news-wrap{grid-template-columns:1fr}
      .hero-copy{padding:18px 10px}
      h1{font-size:36px}
      .hero-data,.metric-line{grid-template-columns:repeat(3,1fr)}
      .vertical-flow{grid-template-columns:repeat(2,1fr)}
      .rank-card{position:relative;top:auto}
      .footer-grid{grid-template-columns:1fr 1fr}
    }
    @media (max-width: 767.98px){
      .section{padding:58px 0}
      .section-tight{padding:46px 0}
      .section-head{display:block}
      .section-title{font-size:27px}
      .hero{padding:30px 0 54px}
      .hero-board{border-radius:28px;padding:16px}
      .hero-lead-card{border-radius:24px;padding:16px}
      .cover-title{font-size:25px}
      .hero-actions{display:grid}
      .btn-main,.btn-ghost{width:100%}
      .hero-data{grid-template-columns:1fr}
      .data-pill{min-height:auto}
      .index-list{grid-template-columns:1fr}
      .news-item{grid-template-columns:1fr}
      .news-meta{text-align:left}
      .footer-grid{grid-template-columns:1fr}
      .cta-panel{padding:24px;border-radius:26px}
      .cta-panel h2{font-size:27px}
    }
    @media (max-width: 575.98px){
      .brand-text{font-size:16px}
      h1{font-size:31px}
      .hero-intro{font-size:15.5px}
      .track-card{flex-basis:82vw}
      .vertical-flow{grid-template-columns:1fr}
      .metric-line{grid-template-columns:1fr}
      .cover-bottom{display:block}
      .lead-form .row>[class*="col-"]{margin-bottom:10px}
      .copyright{display:block}
    }

/* roulang page: category1 */
:root {
      --primary: #2563EB;
      --primary-600: #1D4ED8;
      --primary-700: #1E40AF;
      --secondary: #3B82F6;
      --soft-blue: #EAF2FF;
      --soft-cyan: #DDF7F5;
      --cream: #FAFBF7;
      --amber: #F59E0B;
      --coral: #F97373;
      --bg: #F7FAFF;
      --surface: #FFFFFF;
      --surface-2: #F9FCFF;
      --text: #102033;
      --muted: #637083;
      --light-text: #8A96A8;
      --border: rgba(37, 99, 235, .14);
      --border-strong: rgba(37, 99, 235, .24);
      --shadow: 0 18px 45px rgba(37, 99, 235, .10);
      --shadow-hover: 0 24px 58px rgba(37, 99, 235, .16);
      --radius-lg: 28px;
      --radius-md: 22px;
      --radius-sm: 16px;
      --radius-pill: 999px;
      --container: 1200px;
      --header-height: 76px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 12% 8%, rgba(59, 130, 246, .13), transparent 32%),
        radial-gradient(circle at 88% 10%, rgba(221, 247, 245, .8), transparent 28%),
        linear-gradient(180deg, #F7FAFF 0%, #FFFFFF 42%, #F7FAFF 100%);
      line-height: 1.75;
      font-size: 16px;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: -1;
      background-image:
        linear-gradient(rgba(37, 99, 235, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, .045) 1px, transparent 1px);
      background-size: 46px 46px;
      mask-image: linear-gradient(180deg, rgba(0,0,0,.55), transparent 70%);
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
    }

    a:hover {
      color: var(--primary);
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    button:focus-visible,
    a:focus-visible,
    input:focus-visible,
    textarea:focus-visible {
      outline: 3px solid rgba(37, 99, 235, .28);
      outline-offset: 3px;
      border-radius: 14px;
    }

    .container {
      max-width: var(--container);
      padding-left: 20px;
      padding-right: 20px;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1020;
      background: rgba(255, 255, 255, .92);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(37, 99, 235, .12);
      transition: box-shadow .25s ease, background-color .25s ease;
    }

    .site-header.is-scrolled {
      box-shadow: 0 12px 32px rgba(37, 99, 235, .10);
      background: rgba(255, 255, 255, .96);
    }

    .navbar {
      min-height: var(--header-height);
      padding: 10px 0;
    }

    .brand-wrap {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-height: 48px;
      font-weight: 800;
      letter-spacing: -.02em;
      color: var(--text);
    }

    .brand-wrap:hover {
      color: var(--primary-700);
    }

    .brand-icon {
      width: 42px;
      height: 42px;
      display: inline-block;
      border-radius: 15px;
      position: relative;
      background:
        radial-gradient(circle at 70% 26%, #FFFFFF 0 8%, transparent 9%),
        linear-gradient(135deg, #2563EB, #6EA8FF);
      box-shadow: 0 12px 26px rgba(37, 99, 235, .22);
      overflow: hidden;
      flex: 0 0 auto;
    }

    .brand-icon::before,
    .brand-icon::after {
      content: "";
      position: absolute;
      border-radius: 999px;
      background: rgba(255, 255, 255, .66);
    }

    .brand-icon::before {
      width: 26px;
      height: 3px;
      left: 8px;
      top: 21px;
      transform: rotate(-28deg);
    }

    .brand-icon::after {
      width: 7px;
      height: 7px;
      left: 22px;
      top: 14px;
      box-shadow: -11px 11px 0 rgba(255,255,255,.48);
    }

    .brand-text {
      font-size: 20px;
      line-height: 1.1;
      white-space: nowrap;
    }

    .navbar-toggler {
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 10px 12px;
      background: var(--surface);
      box-shadow: 0 8px 20px rgba(37, 99, 235, .08);
    }

    .navbar-toggler:focus {
      box-shadow: 0 0 0 4px rgba(37, 99, 235, .14);
    }

    .nav-menu {
      align-items: center;
      gap: 8px;
    }

    .nav-menu .nav-link {
      min-height: 42px;
      padding: 9px 16px;
      color: #435064;
      border-radius: var(--radius-pill);
      font-weight: 700;
      font-size: 15px;
      position: relative;
    }

    .nav-menu .nav-link:hover {
      color: var(--primary);
      background: rgba(37, 99, 235, .08);
    }

    .nav-menu .nav-link.active {
      color: var(--primary-700);
      background: var(--soft-blue);
      box-shadow: inset 0 0 0 1px rgba(37, 99, 235, .10);
    }

    .nav-status {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 40px;
      padding: 8px 13px;
      border-radius: var(--radius-pill);
      color: #925F08;
      background: rgba(245, 158, 11, .12);
      font-weight: 700;
      font-size: 13px;
      white-space: nowrap;
    }

    .pulse-dot {
      width: 8px;
      height: 8px;
      display: inline-block;
      border-radius: 999px;
      background: var(--amber);
      box-shadow: 0 0 0 5px rgba(245, 158, 11, .16);
      animation: pulse 1.8s infinite;
    }

    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, .28); }
      70% { box-shadow: 0 0 0 9px rgba(245, 158, 11, 0); }
      100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
    }

    .btn-main,
    .btn-outline-soft {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 48px;
      padding: 12px 22px;
      border-radius: var(--radius-pill);
      font-weight: 800;
      border: 1px solid transparent;
      transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
    }

    .btn-main {
      color: #fff;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      box-shadow: 0 14px 28px rgba(37, 99, 235, .22);
    }

    .btn-main:hover,
    .btn-main:active {
      color: #fff;
      background: linear-gradient(135deg, var(--primary-600), var(--primary));
      transform: translateY(-2px);
      box-shadow: 0 18px 34px rgba(37, 99, 235, .28);
    }

    .btn-outline-soft {
      color: var(--primary-700);
      background: rgba(255, 255, 255, .82);
      border-color: var(--border-strong);
      box-shadow: 0 10px 22px rgba(37, 99, 235, .08);
    }

    .btn-outline-soft:hover,
    .btn-outline-soft:active {
      color: var(--primary-700);
      background: #EFF6FF;
      border-color: rgba(37, 99, 235, .34);
      transform: translateY(-2px);
    }

    .nav-cta {
      min-height: 42px;
      padding: 9px 17px;
      font-size: 14px;
    }

    .page-hero {
      position: relative;
      padding: 72px 0 48px;
      overflow: hidden;
    }

    .page-hero::before {
      content: "";
      position: absolute;
      width: 460px;
      height: 460px;
      right: -160px;
      top: -170px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(59,130,246,.18), transparent 67%);
      pointer-events: none;
    }

    .breadcrumb-soft {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 18px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 700;
    }

    .breadcrumb-soft a {
      color: var(--primary-700);
    }

    .hero-card {
      position: relative;
      padding: 34px;
      border-radius: 34px;
      background:
        linear-gradient(135deg, rgba(234, 242, 255, .96), rgba(255,255,255,.94)),
        radial-gradient(circle at 80% 15%, rgba(221,247,245,.95), transparent 28%);
      border: 1px solid rgba(37, 99, 235, .14);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .hero-card::after {
      content: "";
      position: absolute;
      inset: 24px;
      pointer-events: none;
      border-radius: 26px;
      background:
        linear-gradient(90deg, transparent 0 24%, rgba(37,99,235,.11) 24% 24.4%, transparent 24.4% 100%),
        linear-gradient(0deg, transparent 0 62%, rgba(37,99,235,.08) 62% 62.4%, transparent 62.4% 100%);
      opacity: .55;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 13px;
      border-radius: var(--radius-pill);
      background: rgba(37, 99, 235, .09);
      color: var(--primary-700);
      font-size: 13px;
      font-weight: 800;
      margin-bottom: 18px;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--primary);
    }

    h1,
    h2,
    h3 {
      color: var(--text);
      font-weight: 900;
      letter-spacing: -.04em;
      line-height: 1.18;
      margin: 0;
    }

    h1 {
      font-size: clamp(30px, 4vw, 46px);
      max-width: 760px;
    }

    .hero-summary {
      margin: 18px 0 0;
      max-width: 760px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.85;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 26px;
    }

    .status-panel {
      position: relative;
      z-index: 1;
      padding: 24px;
      border-radius: 26px;
      background: rgba(255, 255, 255, .9);
      border: 1px solid rgba(37, 99, 235, .14);
      box-shadow: 0 18px 40px rgba(37,99,235,.10);
      height: 100%;
    }

    .status-panel-title {
      font-size: 18px;
      font-weight: 900;
      margin-bottom: 16px;
    }

    .status-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 14px 0;
      border-top: 1px solid rgba(37,99,235,.10);
    }

    .status-item:first-of-type {
      border-top: 0;
      padding-top: 0;
    }

    .node {
      width: 28px;
      height: 28px;
      border-radius: 12px;
      flex: 0 0 auto;
      background: var(--soft-blue);
      position: relative;
      box-shadow: inset 0 0 0 1px rgba(37,99,235,.12);
    }

    .node::after {
      content: "";
      position: absolute;
      width: 8px;
      height: 8px;
      left: 10px;
      top: 10px;
      border-radius: 50%;
      background: var(--primary);
    }

    .status-item strong {
      display: block;
      font-size: 15px;
      line-height: 1.4;
      margin-bottom: 2px;
    }

    .status-item span {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.55;
    }

    .section {
      padding: 72px 0;
    }

    .section-tight {
      padding: 48px 0;
    }

    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 24px;
      margin-bottom: 28px;
    }

    .section-kicker {
      color: var(--primary-700);
      font-weight: 900;
      font-size: 14px;
      margin-bottom: 8px;
    }

    .section-title {
      font-size: clamp(26px, 3vw, 34px);
    }

    .section-desc {
      margin: 10px 0 0;
      color: var(--muted);
      max-width: 680px;
    }

    .filter-wrap {
      position: sticky;
      top: calc(var(--header-height) + 10px);
      z-index: 10;
      padding: 12px;
      border: 1px solid rgba(37,99,235,.12);
      border-radius: 24px;
      background: rgba(255, 255, 255, .92);
      backdrop-filter: blur(12px);
      box-shadow: 0 12px 28px rgba(37,99,235,.08);
      overflow-x: auto;
      scrollbar-width: none;
    }

    .filter-wrap::-webkit-scrollbar {
      display: none;
    }

    .filter-pills {
      display: flex;
      gap: 10px;
      min-width: max-content;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .filter-pill {
      border: 1px solid rgba(37,99,235,.14);
      background: #fff;
      color: #44536A;
      border-radius: var(--radius-pill);
      min-height: 42px;
      padding: 9px 16px;
      font-weight: 800;
      font-size: 14px;
      cursor: pointer;
      transition: all .2s ease;
    }

    .filter-pill:hover,
    .filter-pill.active {
      color: var(--primary-700);
      background: var(--soft-blue);
      border-color: rgba(37,99,235,.28);
      transform: translateY(-1px);
    }

    .content-shell {
      margin-top: 30px;
    }

    .entry-list {
      display: grid;
      gap: 18px;
    }

    .entry-card,
    .side-card,
    .info-card,
    .process-card {
      border: 1px solid rgba(37,99,235,.13);
      border-radius: var(--radius-md);
      background: rgba(255,255,255,.94);
      box-shadow: 0 14px 34px rgba(37,99,235,.08);
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }

    .entry-card {
      padding: 22px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 18px;
      align-items: center;
    }

    .entry-card:hover,
    .side-card:hover,
    .info-card:hover,
    .process-card:hover {
      transform: translateY(-3px);
      border-color: rgba(37,99,235,.26);
      box-shadow: var(--shadow-hover);
    }

    .entry-card:hover .entry-title {
      color: var(--primary-700);
    }

    .entry-title {
      font-size: 20px;
      margin-bottom: 7px;
      transition: color .2s ease;
    }

    .entry-summary {
      color: var(--muted);
      margin: 0 0 13px;
      line-height: 1.7;
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      min-height: 28px;
      padding: 4px 10px;
      border-radius: var(--radius-pill);
      background: #F1F6FF;
      color: #35557E;
      font-size: 12px;
      font-weight: 800;
      border: 1px solid rgba(37,99,235,.10);
    }

    .tag.hot {
      background: rgba(245,158,11,.12);
      color: #8A5B08;
      border-color: rgba(245,158,11,.18);
    }

    .tag.ok {
      background: rgba(34,197,94,.10);
      color: #166534;
      border-color: rgba(34,197,94,.14);
    }

    .entry-action {
      white-space: nowrap;
      align-self: center;
    }

    .mini-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 40px;
      padding: 8px 14px;
      border-radius: var(--radius-pill);
      background: var(--soft-blue);
      color: var(--primary-700);
      border: 1px solid rgba(37,99,235,.14);
      font-weight: 900;
      font-size: 14px;
    }

    .mini-btn:hover {
      color: #fff;
      background: var(--primary);
      border-color: var(--primary);
      transform: translateY(-1px);
    }

    .highlight-card {
      position: relative;
      padding: 28px;
      border-radius: 28px;
      overflow: hidden;
      border: 1px solid rgba(37,99,235,.14);
      background:
        radial-gradient(circle at 78% 20%, rgba(221,247,245,.9), transparent 26%),
        linear-gradient(135deg, #EAF2FF, #FFFFFF);
      box-shadow: var(--shadow);
    }

    .highlight-card::before {
      content: "";
      position: absolute;
      right: 34px;
      top: 30px;
      width: 120px;
      height: 88px;
      opacity: .55;
      background:
        radial-gradient(circle at 20% 30%, rgba(37,99,235,.40) 0 5px, transparent 6px),
        radial-gradient(circle at 74% 18%, rgba(37,99,235,.22) 0 5px, transparent 6px),
        radial-gradient(circle at 56% 72%, rgba(245,158,11,.38) 0 5px, transparent 6px),
        linear-gradient(135deg, transparent 0 30%, rgba(37,99,235,.18) 30% 32%, transparent 32% 58%, rgba(37,99,235,.14) 58% 60%, transparent 60%);
    }

    .highlight-card h3 {
      font-size: 24px;
      margin-bottom: 10px;
      max-width: 620px;
    }

    .highlight-card p {
      max-width: 680px;
      color: var(--muted);
      margin-bottom: 18px;
    }

    .side-stack {
      display: grid;
      gap: 18px;
      position: sticky;
      top: calc(var(--header-height) + 92px);
    }

    .side-card {
      padding: 22px;
    }

    .side-title {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 900;
      font-size: 18px;
      margin-bottom: 14px;
    }

    .side-title::before {
      content: "";
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: var(--primary);
      box-shadow: 0 0 0 6px rgba(37,99,235,.10);
    }

    .quick-links {
      display: grid;
      gap: 10px;
    }

    .quick-links a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 12px 13px;
      border-radius: 16px;
      background: #F7FAFF;
      border: 1px solid rgba(37,99,235,.10);
      color: #42516A;
      font-weight: 800;
    }

    .quick-links a:hover {
      background: var(--soft-blue);
      border-color: rgba(37,99,235,.22);
      color: var(--primary-700);
      transform: translateX(2px);
    }

    .meter {
      height: 9px;
      border-radius: 999px;
      background: #E8F0FF;
      overflow: hidden;
      margin: 12px 0 8px;
    }

    .meter span {
      display: block;
      width: 78%;
      height: 100%;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--primary), #68D3CF);
    }

    .side-note {
      color: var(--muted);
      font-size: 14px;
      margin: 0;
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .process-card {
      padding: 22px;
      position: relative;
      overflow: hidden;
    }

    .process-card::after {
      content: "";
      position: absolute;
      right: -22px;
      bottom: -28px;
      width: 86px;
      height: 86px;
      border-radius: 50%;
      background: rgba(37,99,235,.06);
    }

    .step-num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 15px;
      background: var(--soft-blue);
      color: var(--primary-700);
      font-weight: 900;
      margin-bottom: 16px;
      box-shadow: inset 0 0 0 1px rgba(37,99,235,.10);
    }

    .process-card h3 {
      font-size: 19px;
      margin-bottom: 8px;
    }

    .process-card p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
    }

    .notice-strip {
      padding: 22px;
      border-radius: 24px;
      background: rgba(250, 251, 247, .92);
      border: 1px solid rgba(245,158,11,.18);
      box-shadow: 0 12px 30px rgba(245,158,11,.08);
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }

    .notice-icon {
      width: 38px;
      height: 38px;
      border-radius: 14px;
      background: rgba(245,158,11,.14);
      flex: 0 0 auto;
      position: relative;
    }

    .notice-icon::after {
      content: "!";
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #8A5B08;
      font-weight: 900;
    }

    .notice-strip strong {
      display: block;
      margin-bottom: 4px;
      font-weight: 900;
      color: #5B420E;
    }

    .notice-strip p {
      margin: 0;
      color: #715D36;
    }

    .faq-wrap {
      max-width: 920px;
      margin: 0 auto;
    }

    .accordion {
      display: grid;
      gap: 14px;
    }

    .accordion-item {
      border: 1px solid rgba(37,99,235,.13) !important;
      border-radius: 20px !important;
      overflow: hidden;
      background: rgba(255,255,255,.96);
      box-shadow: 0 12px 28px rgba(37,99,235,.07);
    }

    .accordion-button {
      min-height: 62px;
      padding: 18px 22px;
      font-weight: 900;
      color: var(--text);
      background: #fff;
      box-shadow: none !important;
      border-radius: 20px !important;
    }

    .accordion-button:not(.collapsed) {
      color: var(--primary-700);
      background: var(--soft-blue);
    }

    .accordion-button::after {
      width: 22px;
      height: 22px;
      border-radius: 999px;
      background-color: rgba(37,99,235,.10);
      background-size: 13px;
      background-position: center;
      padding: 12px;
    }

    .accordion-body {
      padding: 18px 22px 22px;
      color: var(--muted);
      line-height: 1.8;
      background: #fff;
    }

    .cta-panel {
      position: relative;
      overflow: hidden;
      border-radius: 34px;
      padding: 36px;
      background:
        radial-gradient(circle at 85% 18%, rgba(221,247,245,.95), transparent 28%),
        linear-gradient(135deg, #EAF2FF, #FFFFFF 58%, #F7FAFF);
      border: 1px solid rgba(37,99,235,.14);
      box-shadow: var(--shadow);
    }

    .cta-panel::before {
      content: "";
      position: absolute;
      inset: 22px;
      pointer-events: none;
      border-radius: 26px;
      background:
        radial-gradient(circle at 12% 28%, rgba(37,99,235,.16) 0 4px, transparent 5px),
        radial-gradient(circle at 44% 68%, rgba(37,99,235,.12) 0 4px, transparent 5px),
        radial-gradient(circle at 80% 44%, rgba(245,158,11,.18) 0 4px, transparent 5px),
        linear-gradient(135deg, transparent 0 26%, rgba(37,99,235,.12) 26% 26.4%, transparent 26.4% 72%, rgba(37,99,235,.10) 72% 72.4%, transparent 72.4%);
      opacity: .75;
    }

    .cta-content {
      position: relative;
      z-index: 1;
    }

    .cta-panel h2 {
      font-size: clamp(26px, 3vw, 36px);
      margin-bottom: 12px;
    }

    .cta-panel p {
      margin: 0;
      color: var(--muted);
      max-width: 680px;
    }

    .cta-actions {
      position: relative;
      z-index: 1;
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: flex-end;
      align-items: center;
    }

    .trust-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 20px;
    }

    .trust-item {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: var(--radius-pill);
      background: rgba(255,255,255,.72);
      border: 1px solid rgba(37,99,235,.12);
      color: #43536B;
      font-weight: 800;
      font-size: 13px;
    }

    .trust-item::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: var(--primary);
    }

    .site-footer {
      padding: 58px 0 26px;
      background: linear-gradient(180deg, #FFFFFF, #EEF5FF);
      border-top: 1px solid rgba(37,99,235,.13);
      margin-top: 28px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: minmax(280px, 1.4fr) .8fr 1fr;
      gap: 34px;
      align-items: start;
    }

    .footer-brand p,
    .compliance p {
      color: var(--muted);
      margin: 16px 0 0;
      line-height: 1.8;
    }

    .footer-title {
      font-weight: 900;
      margin-bottom: 14px;
      color: var(--text);
    }

    .footer-links {
      display: grid;
      gap: 10px;
    }

    .footer-links a {
      color: var(--muted);
      font-weight: 700;
      width: fit-content;
      padding: 2px 0;
    }

    .footer-links a:hover {
      color: var(--primary-700);
      transform: translateX(2px);
    }

    .compliance {
      padding: 18px;
      border-radius: 22px;
      background: rgba(255,255,255,.66);
      border: 1px solid rgba(37,99,235,.12);
    }

    .copyright {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      margin-top: 34px;
      padding-top: 20px;
      border-top: 1px solid rgba(37,99,235,.12);
      color: var(--light-text);
      font-size: 14px;
    }

    @media (max-width: 991.98px) {
      :root {
        --header-height: 64px;
      }

      .navbar-collapse {
        margin-top: 12px;
        padding: 16px;
        border-radius: 24px;
        background: rgba(255,255,255,.98);
        border: 1px solid rgba(37,99,235,.12);
        box-shadow: var(--shadow);
      }

      .nav-menu {
        align-items: stretch;
        gap: 6px;
      }

      .nav-menu .nav-link {
        display: flex;
        align-items: center;
      }

      .nav-status {
        margin: 12px 0 10px;
        width: 100%;
        justify-content: center;
      }

      .nav-cta {
        width: 100%;
      }

      .page-hero {
        padding: 50px 0 34px;
      }

      .hero-card {
        padding: 26px;
      }

      .status-panel {
        margin-top: 22px;
      }

      .section {
        padding: 56px 0;
      }

      .section-head {
        display: block;
      }

      .entry-card {
        grid-template-columns: 1fr;
      }

      .entry-action {
        justify-self: start;
      }

      .side-stack {
        position: static;
        margin-top: 22px;
      }

      .process-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .cta-actions {
        justify-content: flex-start;
        margin-top: 22px;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .footer-brand {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 575.98px) {
      body {
        font-size: 15px;
      }

      .container {
        padding-left: 16px;
        padding-right: 16px;
      }

      .brand-icon {
        width: 38px;
        height: 38px;
        border-radius: 14px;
      }

      .brand-text {
        font-size: 18px;
        max-width: 190px;
        white-space: normal;
      }

      .page-hero {
        padding: 38px 0 26px;
      }

      .hero-card,
      .cta-panel {
        padding: 22px;
        border-radius: 26px;
      }

      .hero-actions,
      .cta-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .btn-main,
      .btn-outline-soft {
        width: 100%;
      }

      .section {
        padding: 46px 0;
      }

      .filter-wrap {
        border-radius: 20px;
      }

      .entry-card,
      .side-card,
      .highlight-card,
      .process-card {
        border-radius: 20px;
        padding: 18px;
      }

      .entry-title {
        font-size: 18px;
      }

      .process-grid {
        grid-template-columns: 1fr;
      }

      .notice-strip {
        display: block;
      }

      .notice-icon {
        margin-bottom: 12px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .copyright {
        display: grid;
        gap: 8px;
      }
    }
