/* roulang page: index */
:root{
      --blue-900:#0f2f6b;
      --blue-700:#1d4ed8;
      --blue-600:#2563eb;
      --blue-500:#3b82f6;
      --blue-100:#dbeafe;
      --blue-50:#eff6ff;
      --peach-600:#f35f85;
      --peach-400:#ff8ba7;
      --peach-200:#ffccd7;
      --peach-100:#fff1f4;
      --bg:#f8fbff;
      --paper:#ffffff;
      --ink:#0f172a;
      --text:#334155;
      --muted:#64748b;
      --line:#e2e8f0;
      --line-strong:#cbd5e1;
      --success:#16a34a;
      --warning:#f59e0b;
      --radius-sm:12px;
      --radius:18px;
      --radius-lg:26px;
      --shadow-sm:0 8px 20px rgba(15,23,42,.06);
      --shadow:0 16px 42px rgba(15,23,42,.09);
      --shadow-lg:0 24px 70px rgba(37,99,235,.14);
      --nav-w:104px;
      --ease:all .24s ease;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      min-height:100vh;
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 18% 6%, rgba(59,130,246,.12), transparent 28%),
        radial-gradient(circle at 86% 12%, rgba(255,139,167,.16), transparent 24%),
        linear-gradient(180deg,#f8fbff 0%,#ffffff 46%,#f8fbff 100%);
      line-height:1.75;
      overflow-x:hidden;
    }
    body:before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      background-image:
        linear-gradient(rgba(37,99,235,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37,99,235,.05) 1px, transparent 1px);
      background-size:44px 44px;
      mask-image:linear-gradient(180deg,rgba(0,0,0,.8),transparent 78%);
      z-index:-1;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    a:hover{color:var(--blue-600)}
    button,input,select,textarea{font:inherit}
    button{cursor:pointer}
    img{max-width:100%;height:auto}
    p{margin:0 0 1rem}
    h1,h2,h3,h4{color:var(--ink);font-weight:800;line-height:1.18;margin:0}
    h2{font-size:clamp(1.8rem,3vw,2.55rem);letter-spacing:-.03em}
    h3{font-size:1.22rem}
    .site-shell{min-height:100vh}
    .side-nav{
      position:fixed;
      top:0;
      left:0;
      width:var(--nav-w);
      height:100vh;
      background:rgba(255,255,255,.92);
      border-right:1px solid var(--line);
      backdrop-filter:blur(18px);
      z-index:60;
      display:flex;
      flex-direction:column;
      align-items:center;
      padding:18px 12px;
      box-shadow:8px 0 28px rgba(15,23,42,.04);
    }
    .brand-mark{
      width:72px;
      min-height:76px;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      gap:8px;
      border:1px solid var(--line);
      border-radius:22px;
      background:linear-gradient(145deg,#fff,var(--blue-50));
      box-shadow:var(--shadow-sm);
      text-align:center;
    }
    .brand-icon{
      width:32px;
      height:32px;
      border-radius:12px;
      background:
        linear-gradient(135deg,var(--blue-600),var(--blue-500));
      position:relative;
      box-shadow:0 8px 18px rgba(37,99,235,.25);
    }
    .brand-icon:after{
      content:"";
      position:absolute;
      width:12px;
      height:12px;
      border-radius:999px;
      right:-3px;
      bottom:-3px;
      background:var(--peach-400);
      border:3px solid #fff;
    }
    .brand-text{
      color:var(--ink);
      font-size:11px;
      font-weight:800;
      line-height:1.2;
      letter-spacing:.02em;
    }
    .nav-menu{
      list-style:none;
      margin:34px 0 0;
      padding:0;
      width:100%;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .nav-link{
      min-height:68px;
      border-radius:18px;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      gap:6px;
      color:var(--muted);
      font-size:12px;
      font-weight:700;
      position:relative;
      outline:none;
    }
    .nav-link .nav-ico{
      width:24px;
      height:24px;
      border-radius:9px;
      display:grid;
      place-items:center;
      background:#f1f5f9;
      color:var(--blue-600);
      transition:var(--ease);
      font-size:14px;
    }
    .nav-link:hover,.nav-link:focus{background:var(--blue-50);color:var(--blue-700)}
    .nav-link:focus-visible,.btn:focus-visible,.chip:focus-visible,input:focus,select:focus,textarea:focus{
      outline:3px solid rgba(37,99,235,.22);
      outline-offset:3px;
    }
    .nav-link.active{
      background:linear-gradient(180deg,var(--blue-50),#fff);
      color:var(--blue-700);
      box-shadow:inset 0 0 0 1px var(--blue-100);
    }
    .nav-link.active:before{
      content:"";
      position:absolute;
      left:0;
      top:18px;
      bottom:18px;
      width:4px;
      border-radius:0 999px 999px 0;
      background:var(--peach-400);
    }
    .nav-link.active .nav-ico{background:var(--blue-600);color:#fff}
    .side-foot{
      margin-top:auto;
      width:100%;
      padding-top:16px;
      border-top:1px solid var(--line);
      text-align:center;
      color:var(--muted);
      font-size:11px;
      line-height:1.45;
    }
    .mobile-header{
      display:none;
      position:sticky;
      top:0;
      z-index:70;
      background:rgba(255,255,255,.94);
      backdrop-filter:blur(18px);
      border-bottom:1px solid var(--line);
      padding:12px 16px;
    }
    .mobile-row{display:flex;align-items:center;justify-content:space-between;gap:12px}
    .mobile-logo{display:flex;align-items:center;gap:10px;font-weight:900;color:var(--ink)}
    .menu-toggle{
      width:46px;
      height:46px;
      border:1px solid var(--line);
      border-radius:15px;
      background:#fff;
      display:grid;
      place-items:center;
      box-shadow:var(--shadow-sm);
    }
    .hamburger,.hamburger:before,.hamburger:after{
      content:"";
      display:block;
      width:20px;
      height:2px;
      background:var(--ink);
      border-radius:99px;
      transition:var(--ease);
    }
    .hamburger:before{transform:translateY(-7px)}
    .hamburger:after{transform:translateY(5px)}
    .mobile-panel{
      display:none;
      margin-top:12px;
      padding:10px;
      border:1px solid var(--line);
      border-radius:20px;
      background:#fff;
      box-shadow:var(--shadow);
    }
    .mobile-panel.open{display:block}
    .mobile-panel a{
      min-height:48px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:0 14px;
      border-radius:14px;
      color:var(--text);
      font-weight:750;
    }
    .mobile-panel a.active,.mobile-panel a:hover{background:var(--blue-50);color:var(--blue-700)}
    .main-area{margin-left:var(--nav-w)}
    .page-container{width:min(1220px,calc(100% - 48px));margin:0 auto}
    .section{padding:88px 0}
    .section-tight{padding:56px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      min-height:30px;
      padding:5px 12px;
      border-radius:999px;
      background:var(--peach-100);
      color:#9f3855;
      font-size:13px;
      font-weight:800;
      border:1px solid var(--peach-200);
    }
    .eyebrow:before{
      content:"";
      width:8px;
      height:8px;
      border-radius:99px;
      background:var(--peach-400);
      box-shadow:0 0 0 5px rgba(255,139,167,.16);
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:28px;
      margin-bottom:30px;
    }
    .section-head p{max-width:620px;color:var(--muted);font-size:16px;margin:10px 0 0}
    .btn-row{display:flex;flex-wrap:wrap;gap:12px;align-items:center}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:48px;
      padding:0 20px;
      border-radius:999px;
      border:1px solid transparent;
      font-weight:800;
      letter-spacing:.01em;
      transition:var(--ease);
      white-space:nowrap;
    }
    .btn-primary{
      background:linear-gradient(135deg,var(--blue-600),var(--blue-500));
      color:#fff;
      box-shadow:0 12px 28px rgba(37,99,235,.24);
    }
    .btn-primary:hover{color:#fff;transform:translateY(-2px);box-shadow:0 18px 38px rgba(37,99,235,.3)}
    .btn-secondary{
      background:#fff;
      color:var(--blue-700);
      border-color:var(--blue-100);
      box-shadow:var(--shadow-sm);
    }
    .btn-secondary:hover{background:var(--blue-50);border-color:#bfdbfe;transform:translateY(-2px)}
    .btn-ghost{
      background:transparent;
      color:var(--text);
      border-color:var(--line);
    }
    .btn-ghost:hover{background:#fff;color:var(--blue-700);border-color:var(--blue-100)}
    .hero{
      padding:74px 0 54px;
      min-height:720px;
      display:flex;
      align-items:center;
    }
    .hero-stage{
      position:relative;
      overflow:hidden;
      border:1px solid var(--line);
      border-radius:34px;
      background:
        linear-gradient(135deg,rgba(255,255,255,.96),rgba(239,246,255,.88)),
        radial-gradient(circle at 10% 20%,rgba(255,139,167,.18),transparent 30%);
      box-shadow:var(--shadow-lg);
      padding:36px;
    }
    .hero-stage:before{
      content:"";
      position:absolute;
      inset:0;
      background-image:
        linear-gradient(rgba(37,99,235,.07) 1px,transparent 1px),
        linear-gradient(90deg,rgba(37,99,235,.07) 1px,transparent 1px);
      background-size:34px 34px;
      opacity:.5;
      pointer-events:none;
    }
    .hero-content{position:relative;z-index:1}
    .hero h1{
      font-size:clamp(2.25rem,5.4vw,4.45rem);
      max-width:980px;
      letter-spacing:-.06em;
      margin:18px 0 18px;
    }
    .hero-desc{
      max-width:860px;
      font-size:18px;
      color:var(--text);
      line-height:1.85;
      margin-bottom:26px;
    }
    .hero-strip{
      margin-top:34px;
      display:grid;
      grid-template-columns:1.2fr .8fr .8fr;
      gap:16px;
    }
    .hero-panel{
      position:relative;
      border:1px solid rgba(203,213,225,.9);
      background:rgba(255,255,255,.82);
      border-radius:22px;
      padding:20px;
      box-shadow:var(--shadow-sm);
      backdrop-filter:blur(10px);
      overflow:hidden;
    }
    .hero-panel:after,.card:after{
      content:"";
      position:absolute;
      right:18px;
      top:18px;
      width:34px;
      height:8px;
      border-top:2px solid rgba(37,99,235,.18);
      border-bottom:2px solid rgba(255,139,167,.22);
      pointer-events:none;
    }
    .hero-panel strong{display:block;color:var(--ink);font-size:20px;margin-bottom:6px}
    .hero-panel span{color:var(--muted);font-size:14px}
    .status-line{display:flex;align-items:center;gap:8px;color:var(--muted);font-size:13px;margin-top:14px}
    .status-dot{width:9px;height:9px;border-radius:99px;background:var(--success);box-shadow:0 0 0 5px rgba(22,163,74,.1)}
    .countdown-card{
      margin-top:24px;
      border:1px solid var(--blue-100);
      border-radius:24px;
      padding:18px;
      background:linear-gradient(135deg,#fff,var(--blue-50));
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
    }
    .countdown-card b{color:var(--ink)}
    .time-boxes{display:flex;gap:8px}
    .time-box{
      min-width:54px;
      padding:8px 10px;
      border-radius:14px;
      background:var(--ink);
      color:#fff;
      text-align:center;
      font-weight:900;
      box-shadow:0 10px 20px rgba(15,23,42,.15);
    }
    .time-box small{display:block;color:#cbd5e1;font-size:11px;font-weight:700}
    .feature-bar{
      margin-top:-18px;
      position:relative;
      z-index:2;
    }
    .feature-card{
      height:100%;
      border:1px solid var(--line);
      border-radius:24px;
      background:#fff;
      padding:24px;
      box-shadow:var(--shadow);
      transition:var(--ease);
      position:relative;
      overflow:hidden;
    }
    .feature-card:hover,.card:hover,.topic-card:hover,.story-card:hover,.trust-item:hover{
      transform:translateY(-4px);
      border-color:rgba(37,99,235,.42);
      box-shadow:0 22px 54px rgba(15,23,42,.12);
    }
    .feature-num{
      width:42px;
      height:42px;
      display:grid;
      place-items:center;
      border-radius:15px;
      background:var(--blue-50);
      color:var(--blue-700);
      font-weight:900;
      margin-bottom:16px;
    }
    .feature-card p{color:var(--muted);margin:10px 0 0;font-size:15px}
    .story-section{background:linear-gradient(180deg,rgba(239,246,255,.45),rgba(255,255,255,.8))}
    .story-card{
      border:1px solid var(--line);
      border-radius:28px;
      background:#fff;
      box-shadow:var(--shadow);
      padding:30px;
      height:100%;
      transition:var(--ease);
    }
    .story-card.lead{
      background:linear-gradient(135deg,#fff,var(--peach-100));
      border-color:rgba(255,139,167,.32);
    }
    .rule-list{list-style:none;margin:22px 0 0;padding:0;display:grid;gap:14px}
    .rule-list li{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:14px;
      border:1px solid var(--line);
      border-radius:18px;
      background:#fbfdff;
    }
    .rule-list b{color:var(--ink)}
    .check{
      flex:0 0 auto;
      width:24px;
      height:24px;
      border-radius:50%;
      display:grid;
      place-items:center;
      background:var(--blue-600);
      color:#fff;
      font-size:13px;
      font-weight:900;
    }
    .entry-matrix{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:16px;
    }
    .entry-card{
      min-height:150px;
      padding:22px;
      border:1px solid var(--line);
      border-radius:24px;
      background:#fff;
      box-shadow:var(--shadow-sm);
      position:relative;
      overflow:hidden;
      transition:var(--ease);
    }
    .entry-card:nth-child(2),.entry-card:nth-child(5){background:linear-gradient(135deg,#fff,var(--blue-50))}
    .entry-card:nth-child(3){background:linear-gradient(135deg,#fff,var(--peach-100))}
    .entry-card:hover{transform:translateY(-4px);border-color:var(--peach-400);box-shadow:var(--shadow)}
    .entry-card .tag{margin-bottom:14px}
    .entry-card p{font-size:14px;color:var(--muted);margin:8px 0 0}
    .tag,.chip{
      display:inline-flex;
      align-items:center;
      gap:6px;
      border-radius:999px;
      padding:6px 11px;
      font-size:12px;
      line-height:1;
      font-weight:800;
      background:var(--peach-100);
      color:#9f3855;
      border:1px solid var(--peach-200);
    }
    .chip{
      background:#fff;
      color:var(--text);
      border-color:var(--line);
      min-height:34px;
      transition:var(--ease);
    }
    .chip:hover,.chip.active{background:var(--blue-600);border-color:var(--blue-600);color:#fff}
    .card{
      position:relative;
      border:1px solid var(--line);
      background:#fff;
      border-radius:26px;
      box-shadow:var(--shadow);
      padding:28px;
      transition:var(--ease);
      overflow:hidden;
      height:100%;
    }
    .card.big{
      min-height:420px;
      background:
        linear-gradient(135deg,rgba(255,255,255,.95),rgba(239,246,255,.78)),
        radial-gradient(circle at 80% 10%,rgba(255,139,167,.18),transparent 28%);
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .card h3{margin:12px 0 10px}
    .card p{color:var(--muted);font-size:15px}
    .card-footer{
      margin-top:18px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      color:var(--muted);
      font-size:13px;
    }
    .mini-list{list-style:none;padding:0;margin:20px 0 0;display:grid;gap:12px}
    .mini-list li{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      padding:14px 0;
      border-bottom:1px dashed var(--line);
    }
    .mini-list li:last-child{border-bottom:0}
    .mini-list a{font-weight:800;color:var(--ink)}
    .mini-list small{color:var(--muted);white-space:nowrap}
    .topics-band{
      border:1px solid var(--line);
      border-radius:30px;
      background:#fff;
      box-shadow:var(--shadow);
      padding:26px;
      overflow:hidden;
    }
    .topic-row{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:18px;
    }
    .topic-card{
      border:1px solid var(--line);
      border-radius:22px;
      background:#fff;
      padding:20px;
      transition:var(--ease);
      height:100%;
    }
    .topic-card p{color:var(--muted);font-size:14px;margin:8px 0 0}
    .info-section{
      background:linear-gradient(180deg,#fff,var(--blue-50));
    }
    .news-panel{
      border:1px solid var(--line);
      border-radius:28px;
      background:#fff;
      box-shadow:var(--shadow);
      padding:28px;
    }
    .news-list{list-style:none;margin:0;padding:0;display:grid;gap:0}
    .news-list li{
      display:grid;
      grid-template-columns:120px 1fr auto;
      align-items:center;
      gap:18px;
      padding:18px 0;
      border-bottom:1px solid var(--line);
    }
    .news-list li:last-child{border-bottom:none}
    .news-date{
      color:var(--muted);
      font-weight:800;
      font-size:13px;
      background:var(--blue-50);
      border-radius:999px;
      padding:6px 10px;
      text-align:center;
    }
    .news-title{color:var(--ink);font-weight:850}
    .news-desc{color:var(--muted);font-size:14px;margin-top:4px}
    .recommend-box{
      border:1px solid var(--blue-100);
      border-radius:26px;
      background:linear-gradient(135deg,#fff,var(--blue-50));
      box-shadow:var(--shadow-sm);
      padding:24px;
      height:100%;
    }
    .progress-line{
      height:10px;
      border-radius:999px;
      background:#e5edf8;
      overflow:hidden;
      margin:14px 0;
    }
    .progress-line span{
      display:block;
      width:72%;
      height:100%;
      border-radius:999px;
      background:linear-gradient(90deg,var(--blue-600),var(--peach-400));
    }
    .trust-grid{
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:22px;
      align-items:stretch;
    }
    .trust-panel{
      border:1px solid var(--line);
      border-radius:30px;
      background:#fff;
      padding:30px;
      box-shadow:var(--shadow);
    }
    .trust-items{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;margin-top:22px}
    .trust-item{
      border:1px solid var(--line);
      border-radius:22px;
      padding:18px;
      background:#fbfdff;
      transition:var(--ease);
    }
    .trust-item b{display:block;color:var(--ink);margin-bottom:6px}
    .trust-item span{color:var(--muted);font-size:14px}
    .metric-stack{display:grid;gap:16px}
    .metric{
      border:1px solid var(--line);
      border-radius:24px;
      background:#fff;
      padding:22px;
      box-shadow:var(--shadow-sm);
    }
    .metric strong{font-size:32px;line-height:1;color:var(--blue-700);letter-spacing:-.04em}
    .metric span{display:block;color:var(--muted);margin-top:8px}
    .faq-wrap{
      max-width:980px;
      margin:0 auto;
    }
    .accordion{
      background:transparent;
      border:0;
    }
    .accordion-item{
      margin-bottom:14px;
      border:1px solid var(--line);
      border-radius:20px;
      background:#fff;
      box-shadow:var(--shadow-sm);
      overflow:hidden;
    }
    .accordion-title{
      border:0!important;
      color:var(--ink)!important;
      font-size:16px;
      font-weight:850;
      padding:20px 54px 20px 22px;
      background:#fff;
    }
    .accordion-title:before{font-size:22px;margin-top:-12px;color:var(--blue-600)}
    .is-active>.accordion-title{
      background:var(--blue-50);
      border-left:5px solid var(--peach-400)!important;
    }
    .accordion-content{
      border:0!important;
      border-top:1px solid var(--line)!important;
      color:var(--muted);
      padding:18px 24px 22px;
      line-height:1.85;
    }
    .cta-card{
      position:relative;
      overflow:hidden;
      border-radius:34px;
      border:1px solid rgba(37,99,235,.18);
      background:
        linear-gradient(135deg,var(--blue-600),#1e40af 58%,#143066),
        radial-gradient(circle at 82% 20%,rgba(255,139,167,.44),transparent 26%);
      box-shadow:0 26px 80px rgba(37,99,235,.22);
      padding:38px;
      color:#eaf2ff;
    }
    .cta-card:before{
      content:"";
      position:absolute;
      inset:0;
      background-image:
        linear-gradient(rgba(255,255,255,.09) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.09) 1px,transparent 1px);
      background-size:38px 38px;
      pointer-events:none;
    }
    .cta-card h2{color:#fff}
    .cta-card p{color:#dbeafe}
    .cta-inner{position:relative;z-index:1}
    .form-card{
      border-radius:26px;
      border:1px solid rgba(255,255,255,.28);
      background:rgba(255,255,255,.94);
      padding:24px;
      box-shadow:0 18px 46px rgba(15,23,42,.16);
    }
    .form-card label{color:var(--ink);font-weight:800;font-size:13px;margin-bottom:8px}
    .form-card input,.form-card select,.form-card textarea{
      height:48px;
      border-radius:16px;
      border:1px solid var(--line-strong);
      box-shadow:none;
      background:#fff;
      color:var(--text);
      margin-bottom:14px;
    }
    .form-card textarea{height:94px;resize:vertical}
    .form-card input:focus,.form-card select:focus,.form-card textarea:focus{
      border-color:var(--blue-500);
      box-shadow:0 0 0 4px rgba(59,130,246,.13);
    }
    .floating-cta{
      position:sticky;
      bottom:18px;
      z-index:50;
      width:min(980px,calc(100% - 32px));
      margin:0 auto 24px;
      border:1px solid rgba(37,99,235,.2);
      border-radius:999px;
      background:rgba(255,255,255,.92);
      box-shadow:0 18px 50px rgba(15,23,42,.13);
      backdrop-filter:blur(16px);
      padding:10px 12px 10px 18px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
    }
    .floating-cta span{font-weight:850;color:var(--ink)}
    .floating-cta small{color:var(--muted);display:block;font-weight:600}
    .footer{
      margin-left:var(--nav-w);
      background:#fff;
      border-top:1px solid var(--line);
      padding:46px 0;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr .8fr;
      gap:28px;
      align-items:start;
    }
    .footer-brand{font-size:20px;font-weight:900;color:var(--ink);margin-bottom:10px}
    .footer p,.footer a,.footer li{color:var(--muted);font-size:14px}
    .footer ul{list-style:none;margin:0;padding:0;display:grid;gap:8px}
    .footer a:hover{color:var(--blue-600)}
    .copyright{
      margin-top:28px;
      padding-top:18px;
      border-top:1px solid var(--line);
      color:var(--muted);
      font-size:13px;
      display:flex;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
    }
    @media (max-width:1024px){
      :root{--nav-w:0px}
      .side-nav{display:none}
      .mobile-header{display:block}
      .main-area,.footer{margin-left:0}
      .hero{padding-top:36px;min-height:auto}
      .hero-strip{grid-template-columns:1fr}
      .entry-matrix{grid-template-columns:repeat(2,1fr)}
      .trust-grid{grid-template-columns:1fr}
      .page-container{width:min(100% - 32px,960px)}
      .section{padding:68px 0}
      .footer-grid{grid-template-columns:1fr 1fr}
    }
    @media (max-width:768px){
      .hero-stage{padding:24px;border-radius:26px}
      .section-head{display:block}
      .entry-matrix,.trust-items{grid-template-columns:1fr}
      .news-list li{grid-template-columns:1fr;gap:8px}
      .news-date{width:max-content}
      .countdown-card{align-items:flex-start}
      .time-box{min-width:48px}
      .cta-card{padding:26px;border-radius:28px}
      .floating-cta{border-radius:22px;align-items:flex-start;flex-direction:column;padding:16px}
      .floating-cta .btn{width:100%}
      .footer-grid{grid-template-columns:1fr}
    }
    @media (max-width:520px){
      .page-container{width:min(100% - 24px,460px)}
      .hero h1{font-size:2.05rem}
      .hero-desc{font-size:16px}
      .btn{width:100%;min-height:46px}
      .btn-row{width:100%}
      .section{padding:56px 0}
      .section-tight{padding:42px 0}
      .card,.story-card,.news-panel,.trust-panel{padding:22px;border-radius:22px}
      .feature-card{padding:20px}
    }

/* roulang page: category1 */
:root{
      --blue-900:#0F172A;
      --blue-800:#1E293B;
      --blue-700:#1D4ED8;
      --blue-600:#2563EB;
      --blue-500:#3B82F6;
      --blue-100:#DBEAFE;
      --blue-50:#EFF6FF;
      --peach-600:#F45F86;
      --peach-400:#FF8BA7;
      --peach-200:#FFB4C2;
      --peach-50:#FFF1F4;
      --bg:#F8FBFF;
      --surface:#FFFFFF;
      --text:#334155;
      --muted:#64748B;
      --line:#E2E8F0;
      --line-soft:#EDF2F7;
      --success:#10B981;
      --warning:#F59E0B;
      --radius-sm:12px;
      --radius-md:18px;
      --radius-lg:24px;
      --radius-xl:30px;
      --shadow-sm:0 8px 22px rgba(15,23,42,.06);
      --shadow-md:0 14px 36px rgba(15,23,42,.09);
      --shadow-lg:0 22px 60px rgba(37,99,235,.16);
      --nav-w:104px;
      --ease:all .22s ease;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",sans-serif;
      color:var(--text);
      background:
        linear-gradient(90deg, rgba(37,99,235,.035) 1px, transparent 1px) 0 0 / 44px 44px,
        linear-gradient(0deg, rgba(37,99,235,.035) 1px, transparent 1px) 0 0 / 44px 44px,
        var(--bg);
      line-height:1.75;
      overflow-x:hidden;
    }

    a{color:inherit;text-decoration:none;transition:var(--ease)}
    a:hover,a:focus{color:var(--blue-600)}
    img{max-width:100%;height:auto;display:block}
    button,input,select,textarea{font:inherit}
    button{cursor:pointer}
    ::selection{background:var(--blue-100);color:var(--blue-900)}

    .page-shell{
      min-height:100vh;
      padding-left:var(--nav-w);
    }

    .page-container{
      width:min(1180px, calc(100% - 48px));
      margin:0 auto;
    }

    .section{
      padding:84px 0;
      position:relative;
    }

    .section-tight{padding:56px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      margin-bottom:14px;
      color:var(--blue-700);
      background:rgba(219,234,254,.72);
      border:1px solid rgba(59,130,246,.22);
      border-radius:999px;
      padding:7px 13px;
      font-size:13px;
      font-weight:700;
      letter-spacing:.02em;
    }
    .eyebrow::before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--peach-400);
      box-shadow:0 0 0 4px rgba(255,139,167,.16);
    }

    h1,h2,h3,h4,p{margin-top:0}
    h1,h2,h3{
      color:var(--blue-900);
      letter-spacing:-.035em;
    }
    h1{
      font-size:clamp(32px, 5vw, 54px);
      line-height:1.16;
      font-weight:820;
      margin-bottom:18px;
      max-width:760px;
    }
    h2{
      font-size:clamp(28px, 3.2vw, 38px);
      line-height:1.2;
      font-weight:800;
      margin-bottom:16px;
    }
    h3{
      font-size:21px;
      line-height:1.35;
      font-weight:760;
      margin-bottom:10px;
    }
    p{
      font-size:16px;
      color:var(--text);
      margin-bottom:16px;
    }
    .lead{
      font-size:18px;
      color:#475569;
      max-width:720px;
      line-height:1.85;
    }
    .muted{color:var(--muted)}
    .tiny{font-size:13px;color:var(--muted)}

    .mobile-header{
      position:relative;
      z-index:1000;
    }
    .mobile-row{
      display:none;
      position:sticky;
      top:0;
      width:100%;
      height:68px;
      align-items:center;
      justify-content:space-between;
      padding:0 18px;
      background:rgba(255,255,255,.92);
      border-bottom:1px solid var(--line);
      backdrop-filter:blur(16px);
      z-index:1002;
    }
    .mobile-logo{
      display:inline-flex;
      align-items:center;
      gap:10px;
      font-weight:800;
      color:var(--blue-900);
    }
    .brand-icon{
      width:32px;
      height:32px;
      border-radius:11px;
      background:
        radial-gradient(circle at 72% 28%, var(--peach-400) 0 5px, transparent 6px),
        linear-gradient(135deg, var(--blue-600), var(--blue-500));
      box-shadow:0 8px 18px rgba(37,99,235,.25);
      position:relative;
    }
    .brand-icon::after{
      content:"";
      position:absolute;
      inset:8px;
      border:1px solid rgba(255,255,255,.66);
      border-radius:7px;
    }
    .menu-toggle{
      width:46px;
      height:46px;
      border-radius:15px;
      border:1px solid var(--line);
      background:#fff;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      box-shadow:var(--shadow-sm);
      color:var(--blue-900);
    }
    .hamburger,
    .hamburger::before,
    .hamburger::after{
      width:18px;
      height:2px;
      display:block;
      background:currentColor;
      border-radius:999px;
      position:relative;
      transition:var(--ease);
    }
    .hamburger::before,.hamburger::after{
      content:"";
      position:absolute;
      left:0;
    }
    .hamburger::before{top:-6px}
    .hamburger::after{top:6px}
    .menu-toggle.is-open .hamburger{background:transparent}
    .menu-toggle.is-open .hamburger::before{top:0;transform:rotate(45deg)}
    .menu-toggle.is-open .hamburger::after{top:0;transform:rotate(-45deg)}

    .side-nav{
      position:fixed;
      left:0;
      top:0;
      width:var(--nav-w);
      height:100vh;
      background:rgba(255,255,255,.94);
      border-right:1px solid var(--line);
      backdrop-filter:blur(18px);
      display:flex;
      flex-direction:column;
      align-items:stretch;
      justify-content:flex-start;
      padding:18px 12px;
      z-index:1001;
      box-shadow:8px 0 30px rgba(15,23,42,.035);
    }
    .side-nav-logo{
      min-height:98px;
      border-radius:20px;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      gap:5px;
      background:linear-gradient(180deg, #fff, var(--blue-50));
      border:1px solid var(--line-soft);
      text-align:center;
      padding:12px 6px;
      color:var(--blue-900);
      margin-bottom:22px;
    }
    .side-nav-logo:hover{
      transform:translateY(-2px);
      box-shadow:var(--shadow-sm);
      border-color:rgba(37,99,235,.25);
    }
    .logo-main{
      font-size:13px;
      line-height:1.25;
      font-weight:850;
      letter-spacing:-.02em;
      writing-mode:vertical-rl;
      max-height:68px;
    }
    .logo-sub{
      font-size:10px;
      color:var(--muted);
      letter-spacing:.02em;
    }
    .side-nav-links{
      list-style:none;
      padding:0;
      margin:0;
      display:flex;
      flex-direction:column;
      gap:12px;
      flex:1;
    }
    .side-nav-link{
      min-height:72px;
      border-radius:19px;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      gap:7px;
      padding:10px 6px;
      color:#475569;
      border:1px solid transparent;
      font-size:12px;
      font-weight:720;
      text-align:center;
      line-height:1.25;
      position:relative;
    }
    .side-nav-link .nav-icon{
      width:22px;
      height:22px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border-radius:50%;
      color:transparent;
      background:linear-gradient(135deg, var(--blue-100), #fff);
      border:1px solid rgba(37,99,235,.18);
      position:relative;
    }
    .side-nav-link .nav-icon::after{
      content:"";
      width:7px;
      height:7px;
      border-radius:50%;
      background:var(--blue-500);
      position:absolute;
    }
    .side-nav-link:hover{
      background:var(--blue-50);
      border-color:rgba(37,99,235,.18);
      color:var(--blue-700);
      transform:translateY(-2px);
    }
    .side-nav-link.active{
      background:linear-gradient(180deg, var(--blue-50), #fff);
      border-color:rgba(37,99,235,.28);
      color:var(--blue-700);
      box-shadow:var(--shadow-sm);
    }
    .side-nav-link.active::before{
      content:"";
      position:absolute;
      left:-13px;
      top:18px;
      bottom:18px;
      width:4px;
      border-radius:999px;
      background:linear-gradient(180deg, var(--blue-600), var(--peach-400));
    }
    .side-nav-link.active .nav-icon::after{background:var(--peach-400)}
    .side-nav-footer{
      font-size:10px;
      color:var(--muted);
      text-align:center;
      border-top:1px solid var(--line-soft);
      padding-top:14px;
      line-height:1.4;
    }
    .mobile-panel{
      display:none;
      position:fixed;
      top:76px;
      left:16px;
      right:16px;
      z-index:1001;
      background:#fff;
      border:1px solid var(--line);
      border-radius:22px;
      box-shadow:var(--shadow-lg);
      padding:10px;
    }
    .mobile-panel a{
      display:flex;
      justify-content:space-between;
      align-items:center;
      min-height:48px;
      padding:0 14px;
      border-radius:14px;
      color:var(--blue-900);
      font-weight:720;
    }
    .mobile-panel a span{
      color:var(--muted);
      font-size:12px;
      font-weight:700;
    }
    .mobile-panel a:hover,.mobile-panel a.active{
      background:var(--blue-50);
      color:var(--blue-700);
    }
    .mobile-panel.is-open{display:block}

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      min-height:48px;
      padding:0 20px;
      border-radius:999px;
      border:1px solid transparent;
      font-size:15px;
      font-weight:760;
      line-height:1;
      transition:var(--ease);
      user-select:none;
      white-space:nowrap;
    }
    .btn-primary{
      background:linear-gradient(135deg, var(--blue-600), var(--blue-500));
      color:#fff;
      box-shadow:0 12px 28px rgba(37,99,235,.24);
    }
    .btn-primary:hover,.btn-primary:focus{
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 18px 36px rgba(37,99,235,.30);
      background:linear-gradient(135deg, var(--blue-700), var(--blue-600));
    }
    .btn-secondary{
      background:#fff;
      color:var(--blue-700);
      border-color:rgba(37,99,235,.24);
      box-shadow:var(--shadow-sm);
    }
    .btn-secondary:hover,.btn-secondary:focus{
      background:var(--blue-50);
      border-color:rgba(37,99,235,.38);
      transform:translateY(-2px);
    }
    .btn-peach{
      background:var(--peach-50);
      color:#9F3151;
      border-color:rgba(255,139,167,.35);
    }
    .btn-peach:hover,.btn-peach:focus{
      color:#8B2945;
      background:#FFE4EA;
      transform:translateY(-2px);
    }
    .btn:focus-visible,
    .side-nav-link:focus-visible,
    .mobile-panel a:focus-visible,
    input:focus-visible,
    select:focus-visible,
    textarea:focus-visible{
      outline:3px solid rgba(59,130,246,.30);
      outline-offset:3px;
    }

    .badge,.pill{
      display:inline-flex;
      align-items:center;
      gap:6px;
      border-radius:999px;
      padding:6px 10px;
      font-size:12px;
      font-weight:750;
      line-height:1;
    }
    .badge{
      background:var(--peach-50);
      color:#A33754;
      border:1px solid rgba(255,139,167,.26);
    }
    .pill{
      background:#fff;
      color:#475569;
      border:1px solid var(--line);
    }
    .pill.is-active{
      background:var(--blue-600);
      color:#fff;
      border-color:var(--blue-600);
      box-shadow:0 10px 22px rgba(37,99,235,.20);
    }

    .card{
      background:var(--surface);
      border:1px solid var(--line);
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow-sm);
      padding:26px;
      position:relative;
      overflow:hidden;
      transition:var(--ease);
    }
    .card::before{
      content:"";
      position:absolute;
      top:18px;
      right:18px;
      width:36px;
      height:18px;
      border-top:1px solid rgba(37,99,235,.18);
      border-right:1px solid rgba(37,99,235,.18);
      border-radius:0 10px 0 0;
      pointer-events:none;
    }
    .card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-md);
      border-color:rgba(37,99,235,.34);
    }

    .category-hero{
      padding:58px 0 42px;
    }
    .breadcrumb{
      display:flex;
      align-items:center;
      gap:8px;
      flex-wrap:wrap;
      font-size:13px;
      color:var(--muted);
      margin-bottom:18px;
    }
    .breadcrumb a{
      color:var(--blue-700);
      font-weight:720;
    }
    .breadcrumb span{color:#94A3B8}
    .hero-bento{
      display:grid;
      grid-template-columns:1.25fr .75fr;
      grid-template-rows:auto auto;
      gap:20px;
      align-items:stretch;
    }
    .hero-main{
      min-height:360px;
      border-radius:32px;
      background:
        radial-gradient(circle at 8% 12%, rgba(255,139,167,.18), transparent 34%),
        radial-gradient(circle at 88% 20%, rgba(37,99,235,.16), transparent 30%),
        linear-gradient(135deg, #fff, #F4F8FF);
      border:1px solid rgba(226,232,240,.9);
      box-shadow:var(--shadow-md);
      padding:38px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      overflow:hidden;
      position:relative;
    }
    .hero-main::after{
      content:"";
      position:absolute;
      right:-60px;
      bottom:-80px;
      width:240px;
      height:240px;
      border-radius:50%;
      border:34px solid rgba(219,234,254,.55);
    }
    .hero-main > *{position:relative;z-index:1}
    .hero-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:22px;
    }
    .hero-mini{
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      min-height:170px;
      background:#fff;
      border:1px solid var(--line);
      border-radius:28px;
      box-shadow:var(--shadow-sm);
      padding:24px;
      position:relative;
      overflow:hidden;
    }
    .hero-mini.status{
      background:linear-gradient(180deg, #fff, var(--blue-50));
    }
    .hero-mini.notice{
      background:linear-gradient(180deg, #fff, var(--peach-50));
    }
    .mini-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom:16px;
    }
    .status-dot{
      width:10px;
      height:10px;
      border-radius:50%;
      background:var(--success);
      box-shadow:0 0 0 6px rgba(16,185,129,.12);
      flex:0 0 auto;
    }
    .metric{
      display:flex;
      align-items:flex-end;
      gap:8px;
      margin-top:6px;
    }
    .metric strong{
      color:var(--blue-900);
      font-size:34px;
      line-height:1;
      letter-spacing:-.05em;
    }
    .metric span{font-size:13px;color:var(--muted);font-weight:700}
    .hero-cta-strip{
      grid-column:1 / -1;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      border-radius:26px;
      background:var(--blue-900);
      color:#fff;
      padding:18px 22px;
      box-shadow:0 20px 46px rgba(15,23,42,.16);
      position:relative;
      overflow:hidden;
    }
    .hero-cta-strip::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px) 0 0 / 32px 32px,
        linear-gradient(0deg, rgba(255,255,255,.05) 1px, transparent 1px) 0 0 / 32px 32px;
      opacity:.75;
    }
    .hero-cta-strip > *{position:relative;z-index:1}
    .hero-cta-strip p{margin:0;color:#DDE7F7;font-size:15px}
    .hero-cta-strip strong{color:#fff}
    .strip-actions{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      flex:0 0 auto;
    }

    .section-head{
      display:flex;
      justify-content:space-between;
      align-items:flex-end;
      gap:24px;
      margin-bottom:28px;
    }
    .section-head .lead{margin-bottom:0}
    .head-note{
      width:min(360px,100%);
      padding:16px 18px;
      border-radius:20px;
      border:1px solid rgba(255,139,167,.28);
      background:var(--peach-50);
      color:#8B3550;
      font-size:14px;
      line-height:1.7;
    }

    .filter-panel{
      border-radius:28px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow-sm);
      padding:20px;
      margin-bottom:24px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
    }
    .filter-left,.filter-right{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
    }
    .filter-title{
      color:var(--blue-900);
      font-weight:800;
      margin-right:2px;
    }

    .feature-list{
      display:flex;
      flex-direction:column;
      gap:18px;
    }
    .entry-card{
      display:grid;
      grid-template-columns:auto 1fr auto;
      gap:18px;
      align-items:center;
      padding:24px;
      border-radius:26px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow-sm);
      transition:var(--ease);
      position:relative;
      overflow:hidden;
    }
    .entry-card:hover{
      transform:translateY(-4px);
      border-color:rgba(37,99,235,.35);
      box-shadow:var(--shadow-md);
    }
    .entry-card::after{
      content:"";
      position:absolute;
      right:0;
      top:0;
      bottom:0;
      width:5px;
      background:linear-gradient(180deg, var(--blue-500), var(--peach-400));
      opacity:.45;
    }
    .entry-number{
      width:54px;
      height:54px;
      border-radius:18px;
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:850;
      color:var(--blue-700);
      background:var(--blue-50);
      border:1px solid rgba(37,99,235,.18);
    }
    .entry-body h3{margin-bottom:8px}
    .entry-meta{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
      margin-top:12px;
    }
    .entry-action{display:flex;align-items:center}

    .side-stack{
      display:flex;
      flex-direction:column;
      gap:18px;
    }
    .info-panel{
      background:#fff;
      border:1px solid var(--line);
      border-radius:26px;
      box-shadow:var(--shadow-sm);
      padding:24px;
    }
    .info-panel.dark{
      background:linear-gradient(150deg, var(--blue-900), #172554);
      color:#fff;
      border-color:rgba(255,255,255,.08);
      box-shadow:0 20px 48px rgba(15,23,42,.18);
    }
    .info-panel.dark h3,.info-panel.dark p{color:#fff}
    .info-panel.dark .tiny{color:#CBD5E1}
    .check-list{
      list-style:none;
      padding:0;
      margin:16px 0 0;
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .check-list li{
      display:flex;
      align-items:flex-start;
      gap:10px;
      color:#475569;
      font-size:14px;
    }
    .check-list li::before{
      content:"✓";
      width:21px;
      height:21px;
      border-radius:50%;
      flex:0 0 auto;
      display:flex;
      align-items:center;
      justify-content:center;
      background:var(--blue-50);
      color:var(--blue-700);
      font-size:12px;
      font-weight:900;
      margin-top:2px;
    }
    .info-panel.dark .check-list li{color:#E2E8F0}
    .info-panel.dark .check-list li::before{
      background:rgba(255,255,255,.12);
      color:#fff;
    }

    .timeline{
      position:relative;
      display:flex;
      flex-direction:column;
      gap:18px;
    }
    .timeline-item{
      display:grid;
      grid-template-columns:42px 1fr;
      gap:16px;
      align-items:flex-start;
      padding:22px;
      border-radius:24px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow-sm);
      transition:var(--ease);
    }
    .timeline-item:hover{
      transform:translateY(-3px);
      box-shadow:var(--shadow-md);
      border-color:rgba(255,139,167,.36);
    }
    .timeline-mark{
      width:42px;
      height:42px;
      border-radius:15px;
      background:var(--peach-50);
      border:1px solid rgba(255,139,167,.30);
      color:#A33754;
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:850;
    }

    .trust-grid{
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:22px;
    }
    .trust-strip{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:14px;
      margin-top:18px;
    }
    .trust-cell{
      border:1px solid var(--line-soft);
      border-radius:20px;
      padding:18px;
      background:linear-gradient(180deg,#fff,var(--blue-50));
    }
    .trust-cell strong{
      display:block;
      color:var(--blue-900);
      font-size:24px;
      line-height:1;
      margin-bottom:7px;
      letter-spacing:-.04em;
    }
    .trust-cell span{
      color:var(--muted);
      font-size:13px;
      font-weight:700;
    }

    .accordion{
      background:transparent;
      border:0;
      margin:0;
    }
    .accordion-item{
      margin-bottom:14px;
      border:1px solid var(--line);
      border-radius:22px;
      overflow:hidden;
      background:#fff;
      box-shadow:var(--shadow-sm);
      transition:var(--ease);
    }
    .accordion-item:hover{border-color:rgba(37,99,235,.26)}
    .accordion-title{
      border:0 !important;
      padding:20px 56px 20px 22px;
      color:var(--blue-900);
      font-size:16px;
      font-weight:800;
      line-height:1.5;
      background:#fff;
    }
    .accordion-title:hover,.accordion-title:focus{
      background:var(--blue-50);
      color:var(--blue-700);
    }
    .accordion-title::before{
      right:22px;
      color:var(--blue-600);
      font-weight:900;
    }
    .accordion-content{
      border:0 !important;
      padding:0 22px 20px 22px;
      background:#fff;
      color:#475569;
      position:relative;
    }
    .accordion-content::before{
      content:"";
      position:absolute;
      left:0;
      top:4px;
      bottom:24px;
      width:4px;
      border-radius:999px;
      background:var(--peach-400);
    }
    .accordion-content p{
      margin:0;
      padding-left:8px;
      font-size:15px;
      color:#475569;
    }
    .accordion-item.is-active{
      border-color:rgba(37,99,235,.34);
      box-shadow:var(--shadow-md);
    }

    .cta-card{
      border-radius:34px;
      background:
        radial-gradient(circle at 18% 22%, rgba(255,139,167,.20), transparent 32%),
        linear-gradient(135deg, #FFFFFF, #EEF6FF);
      border:1px solid rgba(226,232,240,.95);
      box-shadow:var(--shadow-lg);
      padding:34px;
      overflow:hidden;
      position:relative;
    }
    .cta-card::after{
      content:"";
      position:absolute;
      right:-40px;
      top:-50px;
      width:170px;
      height:170px;
      border-radius:50%;
      border:24px solid rgba(37,99,235,.08);
    }
    .cta-card > *{position:relative;z-index:1}
    .form-wrap{
      background:#fff;
      border:1px solid var(--line);
      border-radius:26px;
      padding:22px;
      box-shadow:var(--shadow-sm);
    }
    label{
      color:var(--blue-900);
      font-size:13px;
      font-weight:800;
      margin-bottom:7px;
    }
    input[type="email"],select,textarea{
      width:100%;
      min-height:48px;
      border-radius:16px;
      border:1px solid var(--line);
      background:#fff;
      color:var(--blue-900);
      padding:12px 14px;
      box-shadow:none;
      transition:var(--ease);
      margin-bottom:14px;
    }
    textarea{
      min-height:96px;
      resize:vertical;
    }
    input[type="email"]:focus,select:focus,textarea:focus{
      border-color:var(--blue-500);
      box-shadow:0 0 0 4px rgba(59,130,246,.12);
      background:#fff;
    }

    .footer{
      margin-left:var(--nav-w);
      background:#fff;
      border-top:1px solid var(--line);
      padding:50px 0 28px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.35fr .75fr .9fr;
      gap:32px;
      align-items:start;
    }
    .footer-brand{
      display:inline-flex;
      align-items:center;
      gap:10px;
      color:var(--blue-900);
      font-size:20px;
      font-weight:850;
      margin-bottom:12px;
      letter-spacing:-.025em;
    }
    .footer-brand::before{
      content:"";
      width:30px;
      height:30px;
      border-radius:11px;
      background:linear-gradient(135deg, var(--blue-600), var(--peach-400));
      box-shadow:0 10px 20px rgba(37,99,235,.18);
    }
    .footer p{
      max-width:520px;
      color:var(--muted);
      font-size:14px;
      margin-bottom:0;
    }
    .footer h3{
      font-size:15px;
      margin-bottom:12px;
      letter-spacing:0;
    }
    .footer ul{
      list-style:none;
      padding:0;
      margin:0;
      display:flex;
      flex-direction:column;
      gap:9px;
    }
    .footer li,.footer a{
      color:var(--muted);
      font-size:14px;
    }
    .footer a:hover{
      color:var(--blue-700);
      padding-left:3px;
    }
    .copyright{
      margin-top:34px;
      padding-top:18px;
      border-top:1px solid var(--line-soft);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      color:#94A3B8;
      font-size:13px;
    }

    @media (max-width:1024px){
      :root{--nav-w:0px}
      .page-shell{padding-left:0}
      .mobile-row{display:flex}
      .side-nav{display:none}
      .footer{margin-left:0}
      .section{padding:70px 0}
      .category-hero{padding-top:34px}
      .page-container{width:min(100% - 34px, 920px)}
      .hero-bento{grid-template-columns:1fr}
      .hero-main{min-height:310px}
      .hero-cta-strip{grid-column:auto;align-items:flex-start;flex-direction:column}
      .section-head{align-items:flex-start;flex-direction:column}
      .trust-grid{grid-template-columns:1fr}
      .entry-card{grid-template-columns:auto 1fr}
      .entry-action{grid-column:1 / -1}
    }

    @media (max-width:768px){
      .page-container{width:min(100% - 28px, 680px)}
      .section{padding:56px 0}
      .hero-main{padding:28px;border-radius:26px}
      .hero-mini{border-radius:24px}
      .hero-actions,.strip-actions{width:100%}
      .btn{width:100%}
      .filter-panel{align-items:stretch}
      .filter-left,.filter-right{width:100%}
      .pill{flex:1;justify-content:center}
      .entry-card{
        grid-template-columns:1fr;
        gap:14px;
      }
      .entry-number{width:48px;height:48px}
      .trust-strip{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr;gap:24px}
      .copyright{align-items:flex-start;flex-direction:column}
      .cta-card{padding:24px;border-radius:28px}
    }

    @media (max-width:520px){
      body{background-size:34px 34px}
      .mobile-row{height:64px}
      h1{font-size:31px}
      h2{font-size:26px}
      h3{font-size:19px}
      .lead{font-size:16px}
      .card,.info-panel,.timeline-item{padding:20px;border-radius:22px}
      .hero-main{padding:22px}
      .hero-cta-strip{padding:18px;border-radius:22px}
      .accordion-title{padding:18px 48px 18px 18px}
      .accordion-content{padding:0 18px 18px 18px}
    }
