/* roulang page: index */
:root{
      --primary:#6d5dfc;
      --primary-dark:#5546df;
      --primary-soft:#edeaff;
      --secondary:#19b7a7;
      --secondary-soft:#e7fbf8;
      --danger:#ff5b6e;
      --warning:#ffb020;
      --ink:#111827;
      --text:#334155;
      --muted:#64748b;
      --light:#f8fafc;
      --paper:#ffffff;
      --line:#e5e7eb;
      --line-strong:#d7dce5;
      --shadow-sm:0 8px 22px rgba(15,23,42,.08);
      --shadow-md:0 18px 48px rgba(15,23,42,.12);
      --shadow-lg:0 28px 70px rgba(55,48,163,.18);
      --radius-sm:12px;
      --radius:20px;
      --radius-lg:30px;
      --container:1160px;
      --nav-h:74px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei",Arial,sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at top left, rgba(109,93,252,.14), transparent 34rem),
        radial-gradient(circle at top right, rgba(25,183,167,.12), transparent 32rem),
        linear-gradient(180deg,#ffffff 0%,#f8fafc 52%,#ffffff 100%);
      line-height:1.75;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:all .22s ease}
    img{max-width:100%;height:auto;display:block}
    button,input,textarea,select{font:inherit}
    ::selection{background:rgba(109,93,252,.18);color:var(--ink)}
    .container-custom{width:min(100% - 32px,var(--container));margin-inline:auto}
    .site-header{
      position:sticky;
      top:0;
      z-index:1020;
      background:rgba(255,255,255,.88);
      backdrop-filter:saturate(180%) blur(18px);
      border-bottom:1px solid rgba(226,232,240,.86);
      box-shadow:0 8px 24px rgba(15,23,42,.04);
    }
    .brand-row{
      min-height:var(--nav-h);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      padding:12px 0;
    }
    .brand-logo{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:0;
    }
    .brand-mark{
      width:44px;
      height:44px;
      border-radius:16px;
      display:grid;
      place-items:center;
      color:#fff;
      background:linear-gradient(135deg,var(--primary),#8b7cff 46%,var(--secondary));
      box-shadow:0 12px 26px rgba(109,93,252,.28);
      flex:0 0 auto;
    }
    .brand-text{min-width:0}
    .brand-name{
      display:block;
      font-weight:900;
      color:var(--ink);
      font-size:18px;
      letter-spacing:-.02em;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
      max-width:520px;
      line-height:1.25;
    }
    .brand-sub{
      display:block;
      font-size:12px;
      color:var(--muted);
      margin-top:2px;
    }
    .top-tools{
      display:flex;
      align-items:center;
      gap:12px;
      flex:0 0 auto;
    }
    .search-box{
      width:270px;
      display:flex;
      align-items:center;
      gap:8px;
      background:#f1f5f9;
      border:1px solid transparent;
      border-radius:999px;
      padding:9px 13px;
      color:var(--muted);
      transition:all .22s ease;
    }
    .search-box:focus-within{
      background:#fff;
      border-color:rgba(109,93,252,.35);
      box-shadow:0 0 0 4px rgba(109,93,252,.12);
    }
    .search-box input{
      width:100%;
      border:0;
      background:transparent;
      outline:0;
      color:var(--ink);
      font-size:14px;
    }
    .search-box input::placeholder{color:#94a3b8}
    .urgent-btn{
      border:0;
      border-radius:999px;
      padding:10px 16px;
      color:#fff;
      background:linear-gradient(135deg,var(--danger),#ff7a59);
      font-weight:800;
      box-shadow:0 12px 28px rgba(255,91,110,.26);
      display:inline-flex;
      align-items:center;
      gap:8px;
    }
    .urgent-btn:hover{transform:translateY(-2px);box-shadow:0 18px 36px rgba(255,91,110,.32);color:#fff}
    .menu-toggle{
      display:none;
      border:1px solid var(--line);
      background:#fff;
      color:var(--ink);
      border-radius:14px;
      width:44px;
      height:44px;
      align-items:center;
      justify-content:center;
    }
    .channel-row{
      border-top:1px solid rgba(226,232,240,.68);
      background:rgba(255,255,255,.74);
    }
    .channel-nav{
      display:flex;
      align-items:center;
      gap:10px;
      overflow-x:auto;
      scrollbar-width:none;
      padding:10px 0;
    }
    .channel-nav::-webkit-scrollbar{display:none}
    .channel-nav a{
      flex:0 0 auto;
      padding:9px 16px;
      border-radius:999px;
      color:#475569;
      font-weight:800;
      font-size:14px;
      border:1px solid transparent;
      display:inline-flex;
      align-items:center;
      gap:7px;
    }
    .channel-nav a:hover{
      background:var(--primary-soft);
      color:var(--primary-dark);
      border-color:rgba(109,93,252,.16);
    }
    .channel-nav a.active{
      color:#fff;
      background:linear-gradient(135deg,var(--primary),var(--primary-dark));
      box-shadow:0 10px 24px rgba(109,93,252,.24);
    }
    main{overflow:hidden}
    .section{padding:86px 0}
    .section-tight{padding:56px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:999px;
      background:rgba(109,93,252,.1);
      color:var(--primary-dark);
      font-weight:900;
      font-size:13px;
      margin-bottom:16px;
    }
    .section-title{
      color:var(--ink);
      font-weight:950;
      letter-spacing:-.045em;
      line-height:1.16;
      font-size:clamp(30px,4vw,48px);
      margin:0 0 16px;
    }
    .section-desc{
      color:var(--muted);
      font-size:17px;
      max-width:760px;
      margin:0 auto 34px;
    }
    .hero{
      position:relative;
      padding:78px 0 54px;
    }
    .hero::before{
      content:"";
      position:absolute;
      inset:18px auto auto 58%;
      width:520px;
      height:520px;
      background:radial-gradient(circle,rgba(109,93,252,.18),transparent 66%);
      pointer-events:none;
    }
    .hero-grid{
      display:grid;
      grid-template-columns:1.03fr .97fr;
      gap:48px;
      align-items:center;
      position:relative;
      z-index:1;
    }
    .hero h1{
      color:var(--ink);
      font-weight:950;
      letter-spacing:-.055em;
      line-height:1.08;
      font-size:clamp(38px,6vw,72px);
      margin:0 0 20px;
    }
    .hero-lead{
      font-size:19px;
      color:#475569;
      max-width:680px;
      margin:0 0 28px;
    }
    .hero-actions{display:flex;flex-wrap:wrap;gap:14px;margin:28px 0}
    .btn-main,.btn-ghost{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      min-height:48px;
      border-radius:999px;
      padding:12px 20px;
      font-weight:900;
      border:1px solid transparent;
      transition:all .22s ease;
    }
    .btn-main{
      color:#fff;
      background:linear-gradient(135deg,var(--primary),var(--primary-dark));
      box-shadow:0 16px 34px rgba(109,93,252,.28);
    }
    .btn-main:hover{color:#fff;transform:translateY(-2px);box-shadow:0 22px 42px rgba(109,93,252,.34)}
    .btn-ghost{
      color:var(--ink);
      background:#fff;
      border-color:var(--line);
      box-shadow:var(--shadow-sm);
    }
    .btn-ghost:hover{color:var(--primary-dark);border-color:rgba(109,93,252,.28);transform:translateY(-2px)}
    .micro-note{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:22px;
    }
    .micro-note span{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:8px 12px;
      border-radius:999px;
      background:#fff;
      border:1px solid var(--line);
      color:#475569;
      font-weight:750;
      font-size:13px;
    }
    .hero-panel{
      position:relative;
      border-radius:var(--radius-lg);
      background:linear-gradient(180deg,#15172b,#22244b);
      color:#fff;
      padding:24px;
      box-shadow:var(--shadow-lg);
      overflow:hidden;
      min-height:560px;
    }
    .hero-panel::before{
      content:"";
      position:absolute;
      inset:-120px -100px auto auto;
      width:290px;
      height:290px;
      border-radius:50%;
      background:rgba(25,183,167,.26);
      filter:blur(4px);
    }
    .phone-card{
      position:relative;
      z-index:1;
      border:1px solid rgba(255,255,255,.14);
      background:rgba(255,255,255,.08);
      backdrop-filter:blur(14px);
      border-radius:28px;
      padding:18px;
    }
    .phone-top{
      display:flex;
      justify-content:space-between;
      align-items:center;
      margin-bottom:16px;
      color:rgba(255,255,255,.78);
      font-size:13px;
      font-weight:800;
    }
    .cover-card{
      border-radius:24px;
      padding:22px;
      background:
        linear-gradient(135deg,rgba(109,93,252,.92),rgba(25,183,167,.82)),
        radial-gradient(circle at 20% 20%,rgba(255,255,255,.26),transparent 35%);
      min-height:210px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      box-shadow:0 20px 46px rgba(0,0,0,.25);
    }
    .cover-card .tag{
      width:max-content;
      display:inline-flex;
      align-items:center;
      gap:7px;
      border-radius:999px;
      padding:7px 10px;
      background:rgba(255,255,255,.2);
      font-weight:900;
      font-size:12px;
    }
    .cover-card h2{
      margin:26px 0 0;
      color:#fff;
      font-weight:950;
      font-size:28px;
      line-height:1.2;
      letter-spacing:-.04em;
    }
    .progress-wrap{
      margin:18px 0;
      background:rgba(255,255,255,.1);
      border-radius:20px;
      padding:16px;
    }
    .progress-label{
      display:flex;
      justify-content:space-between;
      gap:10px;
      font-size:13px;
      color:rgba(255,255,255,.82);
      margin-bottom:10px;
      font-weight:850;
    }
    .risk-progress{
      height:9px;
      background:rgba(255,255,255,.15);
      border-radius:99px;
      overflow:hidden;
    }
    .risk-progress span{
      display:block;
      width:72%;
      height:100%;
      border-radius:99px;
      background:linear-gradient(90deg,var(--warning),var(--danger));
    }
    .steps-list{display:grid;gap:10px}
    .step-mini{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:13px;
      border-radius:18px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.1);
    }
    .step-mini i{
      color:#77f1df;
      margin-top:5px;
    }
    .step-mini strong{display:block;color:#fff;font-size:14px}
    .step-mini small{display:block;color:rgba(255,255,255,.68);margin-top:2px;line-height:1.5}
    .floating-hot{
      position:absolute;
      right:18px;
      bottom:18px;
      z-index:2;
      background:#fff;
      color:var(--ink);
      border-radius:20px;
      padding:14px 16px;
      box-shadow:0 16px 40px rgba(0,0,0,.22);
      width:210px;
    }
    .floating-hot b{font-size:22px;color:var(--danger)}
    .floating-hot span{display:block;color:var(--muted);font-size:12px;font-weight:800}
    .alert-strip{
      background:linear-gradient(135deg,#fff7ed,#fff1f2);
      border-top:1px solid #fed7aa;
      border-bottom:1px solid #fecdd3;
      padding:18px 0;
    }
    .alert-inner{
      display:flex;
      align-items:flex-start;
      gap:14px;
      color:#7f1d1d;
      font-weight:780;
    }
    .alert-inner i{
      margin-top:5px;
      color:var(--danger);
      font-size:20px;
    }
    .stats-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:16px;
    }
    .stat-card{
      background:#fff;
      border:1px solid var(--line);
      border-radius:var(--radius);
      padding:22px;
      box-shadow:var(--shadow-sm);
      transition:all .22s ease;
    }
    .stat-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)}
    .stat-card b{
      display:block;
      color:var(--ink);
      font-size:34px;
      line-height:1;
      letter-spacing:-.04em;
      margin-bottom:8px;
    }
    .stat-card span{color:var(--muted);font-weight:750;font-size:14px}
    .cards-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:20px;
    }
    .info-card{
      position:relative;
      background:#fff;
      border:1px solid var(--line);
      border-radius:var(--radius-lg);
      padding:28px;
      box-shadow:var(--shadow-sm);
      transition:all .22s ease;
      overflow:hidden;
      height:100%;
    }
    .info-card::after{
      content:"";
      position:absolute;
      inset:auto -40px -55px auto;
      width:130px;
      height:130px;
      border-radius:50%;
      background:rgba(109,93,252,.08);
      transition:all .22s ease;
    }
    .info-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-md);border-color:rgba(109,93,252,.22)}
    .info-card:hover::after{transform:scale(1.2);background:rgba(25,183,167,.12)}
    .icon-box{
      width:52px;
      height:52px;
      display:grid;
      place-items:center;
      border-radius:18px;
      background:var(--primary-soft);
      color:var(--primary-dark);
      font-size:20px;
      margin-bottom:20px;
    }
    .info-card h3{
      color:var(--ink);
      font-weight:950;
      letter-spacing:-.025em;
      font-size:22px;
      margin:0 0 10px;
    }
    .info-card p{margin:0;color:var(--muted)}
    .dark-section{
      background:linear-gradient(135deg,#101225,#252858);
      color:#fff;
      position:relative;
    }
    .dark-section::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at 18% 18%,rgba(109,93,252,.28),transparent 26rem),
        radial-gradient(circle at 86% 62%,rgba(25,183,167,.18),transparent 28rem);
      pointer-events:none;
    }
    .dark-section .container-custom{position:relative;z-index:1}
    .dark-section .section-title{color:#fff}
    .dark-section .section-desc{color:rgba(255,255,255,.72)}
    .scenario-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:22px;
    }
    .scenario-card{
      border:1px solid rgba(255,255,255,.12);
      background:rgba(255,255,255,.07);
      border-radius:var(--radius-lg);
      padding:26px;
      backdrop-filter:blur(12px);
      transition:all .22s ease;
    }
    .scenario-card:hover{background:rgba(255,255,255,.11);transform:translateY(-4px)}
    .scenario-card .num{
      width:42px;
      height:42px;
      border-radius:15px;
      display:grid;
      place-items:center;
      background:rgba(119,241,223,.14);
      color:#77f1df;
      font-weight:950;
      margin-bottom:18px;
    }
    .scenario-card h3{font-weight:950;margin:0 0 10px;color:#fff}
    .scenario-card p{color:rgba(255,255,255,.72);margin:0}
    .timeline{
      position:relative;
      display:grid;
      gap:18px;
      max-width:930px;
      margin:0 auto;
    }
    .timeline-item{
      display:grid;
      grid-template-columns:76px 1fr;
      gap:18px;
      align-items:start;
    }
    .timeline-dot{
      width:60px;
      height:60px;
      border-radius:22px;
      display:grid;
      place-items:center;
      color:#fff;
      background:linear-gradient(135deg,var(--secondary),var(--primary));
      font-weight:950;
      box-shadow:0 14px 30px rgba(25,183,167,.22);
    }
    .timeline-card{
      background:#fff;
      border:1px solid var(--line);
      border-radius:var(--radius);
      padding:22px;
      box-shadow:var(--shadow-sm);
    }
    .timeline-card h3{margin:0 0 8px;color:var(--ink);font-weight:950;font-size:20px}
    .timeline-card p{margin:0;color:var(--muted)}
    .channel-card{
      display:flex;
      gap:22px;
      align-items:stretch;
      background:#fff;
      border:1px solid var(--line);
      border-radius:var(--radius-lg);
      padding:18px;
      box-shadow:var(--shadow-sm);
      transition:all .22s ease;
      height:100%;
    }
    .channel-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-md)}
    .channel-cover{
      width:132px;
      min-height:176px;
      border-radius:24px;
      padding:16px;
      color:#fff;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      flex:0 0 auto;
      background:linear-gradient(155deg,var(--primary),var(--secondary));
      overflow:hidden;
      position:relative;
    }
    .channel-cover::after{
      content:"";
      width:110px;
      height:110px;
      position:absolute;
      right:-38px;
      bottom:-40px;
      border-radius:50%;
      background:rgba(255,255,255,.18);
    }
    .channel-cover span{font-size:12px;font-weight:900;position:relative;z-index:1}
    .channel-cover i{font-size:30px;position:relative;z-index:1}
    .channel-body h3{font-size:23px;font-weight:950;color:var(--ink);margin:5px 0 10px}
    .channel-body p{color:var(--muted);margin:0 0 16px}
    .chip-list{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:16px}
    .chip{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:7px 10px;
      border-radius:999px;
      background:#f1f5f9;
      color:#475569;
      font-weight:800;
      font-size:12px;
    }
    .link-more{
      color:var(--primary-dark);
      font-weight:950;
      display:inline-flex;
      align-items:center;
      gap:8px;
    }
    .link-more:hover{gap:12px;color:var(--secondary)}
    .proof-wrap{
      display:grid;
      grid-template-columns:.86fr 1.14fr;
      gap:28px;
      align-items:center;
    }
    .proof-card{
      background:#fff;
      border:1px solid var(--line);
      border-radius:var(--radius-lg);
      padding:30px;
      box-shadow:var(--shadow-md);
    }
    .proof-card h3{color:var(--ink);font-weight:950;margin:0 0 18px}
    .check-list{display:grid;gap:13px;margin:0;padding:0;list-style:none}
    .check-list li{
      display:flex;
      gap:12px;
      color:#475569;
      font-weight:760;
    }
    .check-list i{
      color:var(--secondary);
      margin-top:5px;
    }
    .quote-card{
      background:linear-gradient(135deg,var(--primary-soft),#fff);
      border:1px solid rgba(109,93,252,.16);
      border-radius:var(--radius-lg);
      padding:34px;
      position:relative;
      overflow:hidden;
    }
    .quote-card::before{
      content:"“";
      position:absolute;
      top:-32px;
      right:28px;
      color:rgba(109,93,252,.13);
      font-size:160px;
      font-family:Georgia,serif;
      line-height:1;
    }
    .quote-card p{font-size:20px;color:var(--ink);font-weight:850;margin:0 0 18px;position:relative}
    .quote-card span{color:var(--muted);font-weight:800;position:relative}
    .accordion{
      max-width:920px;
      margin:0 auto;
      display:grid;
      gap:14px;
    }
    .accordion-item{
      border:1px solid var(--line)!important;
      border-radius:20px!important;
      overflow:hidden;
      box-shadow:var(--shadow-sm);
      background:#fff;
    }
    .accordion-button{
      padding:20px 22px;
      font-weight:950;
      color:var(--ink);
      background:#fff;
      box-shadow:none!important;
      border:0;
    }
    .accordion-button:not(.collapsed){
      color:var(--primary-dark);
      background:var(--primary-soft);
    }
    .accordion-button:focus{box-shadow:0 0 0 4px rgba(109,93,252,.12)!important}
    .accordion-body{padding:0 22px 22px;color:var(--muted)}
    .cta-box{
      position:relative;
      overflow:hidden;
      border-radius:34px;
      padding:44px;
      color:#fff;
      background:
        radial-gradient(circle at 20% 18%,rgba(255,255,255,.18),transparent 20rem),
        linear-gradient(135deg,var(--primary),#4b3fd3 52%,var(--secondary));
      box-shadow:var(--shadow-lg);
    }
    .cta-box::after{
      content:"";
      position:absolute;
      right:-90px;
      bottom:-90px;
      width:260px;
      height:260px;
      border-radius:50%;
      background:rgba(255,255,255,.13);
    }
    .cta-content{position:relative;z-index:1;display:grid;grid-template-columns:1fr auto;gap:24px;align-items:center}
    .cta-box h2{font-size:clamp(28px,4vw,44px);font-weight:950;letter-spacing:-.045em;margin:0 0 12px}
    .cta-box p{color:rgba(255,255,255,.78);margin:0;max-width:720px}
    .contact-form{
      background:#fff;
      border:1px solid var(--line);
      border-radius:var(--radius-lg);
      padding:26px;
      box-shadow:var(--shadow-md);
    }
    .form-label{font-weight:900;color:var(--ink)}
    .form-control,.form-select{
      border-radius:16px;
      border-color:var(--line-strong);
      padding:12px 14px;
      color:var(--ink);
    }
    .form-control:focus,.form-select:focus{
      border-color:rgba(109,93,252,.55);
      box-shadow:0 0 0 4px rgba(109,93,252,.12);
    }
    .site-footer{
      background:#0f1224;
      color:rgba(255,255,255,.72);
      padding:54px 0 26px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr .8fr;
      gap:28px;
      margin-bottom:34px;
    }
    .footer-brand{
      display:flex;
      gap:12px;
      align-items:center;
      margin-bottom:14px;
    }
    .footer-brand .brand-mark{width:42px;height:42px;box-shadow:none}
    .footer-brand strong{display:block;color:#fff;font-weight:950;line-height:1.25}
    .footer-col h3{
      color:#fff;
      font-size:16px;
      font-weight:950;
      margin:0 0 14px;
    }
    .footer-links{display:grid;gap:10px}
    .footer-links a:hover{color:#fff;transform:translateX(3px)}
    .footer-bottom{
      border-top:1px solid rgba(255,255,255,.1);
      padding-top:20px;
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      font-size:13px;
    }
    .focus-ring:focus-visible,a:focus-visible,button:focus-visible{
      outline:3px solid rgba(109,93,252,.35);
      outline-offset:3px;
    }
    @media (max-width:1024px){
      .brand-name{max-width:380px}
      .search-box{width:220px}
      .hero-grid,.proof-wrap{grid-template-columns:1fr;gap:32px}
      .hero-panel{min-height:auto}
      .stats-grid{grid-template-columns:repeat(2,1fr)}
      .cards-grid{grid-template-columns:repeat(2,1fr)}
      .cta-content{grid-template-columns:1fr}
    }
    @media (max-width:768px){
      :root{--nav-h:64px}
      .brand-row{align-items:flex-start}
      .brand-name{max-width:calc(100vw - 118px);font-size:16px}
      .top-tools{display:none}
      .menu-toggle{display:flex}
      .mobile-tools{
        display:none;
        padding:0 0 14px;
      }
      .mobile-tools.show{display:block}
      .mobile-tools .search-box{width:100%;margin-bottom:12px}
      .mobile-tools .urgent-btn{width:100%;justify-content:center}
      .channel-nav{padding:9px 0}
      .hero{padding:52px 0 36px}
      .section{padding:64px 0}
      .section-tight{padding:42px 0}
      .cards-grid,.scenario-grid{grid-template-columns:1fr}
      .floating-hot{position:relative;right:auto;bottom:auto;margin-top:14px;width:100%}
      .timeline-item{grid-template-columns:54px 1fr;gap:12px}
      .timeline-dot{width:50px;height:50px;border-radius:18px}
      .channel-card{flex-direction:column}
      .channel-cover{width:100%;min-height:150px}
      .footer-grid{grid-template-columns:1fr}
      .cta-box{padding:32px 22px;border-radius:26px}
    }
    @media (max-width:520px){
      .container-custom{width:min(100% - 22px,var(--container))}
      .hero h1{font-size:36px}
      .hero-lead{font-size:16px}
      .hero-actions{flex-direction:column}
      .btn-main,.btn-ghost{width:100%}
      .stats-grid{grid-template-columns:1fr}
      .stat-card b{font-size:30px}
      .phone-card{padding:14px}
      .cover-card h2{font-size:23px}
      .section-title{font-size:29px}
      .alert-inner{font-size:14px}
    }

/* roulang page: category1 */
:root{
      --primary:#5b4bff;
      --primary-dark:#4030d8;
      --secondary:#16c7b7;
      --accent:#ffb84d;
      --danger:#ff5b6e;
      --bg:#f6f7fb;
      --surface:#ffffff;
      --surface-soft:#eef1ff;
      --text:#172033;
      --muted:#667085;
      --weak:#98a2b3;
      --border:#e4e7ec;
      --shadow-sm:0 10px 24px rgba(23,32,51,.08);
      --shadow-md:0 18px 48px rgba(23,32,51,.12);
      --radius-sm:14px;
      --radius-md:22px;
      --radius-lg:34px;
      --container:1180px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei",Arial,sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 10% 0%, rgba(91,75,255,.16), transparent 34%),
        radial-gradient(circle at 88% 8%, rgba(22,199,183,.12), transparent 30%),
        var(--bg);
      line-height:1.7;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:all .22s ease}
    img{max-width:100%;display:block}
    button,input{font:inherit}
    .container-custom{
      width:min(var(--container), calc(100% - 32px));
      margin:0 auto;
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      background:rgba(255,255,255,.88);
      backdrop-filter:blur(18px);
      border-bottom:1px solid rgba(228,231,236,.86);
      box-shadow:0 8px 30px rgba(23,32,51,.05);
    }
    .brand-row{
      min-height:76px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:22px;
    }
    .brand-link{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:0;
      font-weight:900;
      letter-spacing:-.02em;
    }
    .brand-mark{
      width:44px;
      height:44px;
      flex:0 0 auto;
      border-radius:16px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      background:linear-gradient(135deg,var(--primary),var(--secondary));
      box-shadow:0 12px 26px rgba(91,75,255,.25);
    }
    .brand-text{
      display:flex;
      flex-direction:column;
      min-width:0;
    }
    .brand-name{
      font-size:18px;
      color:var(--text);
      overflow:hidden;
      text-overflow:ellipsis;
      white-space:nowrap;
      max-width:520px;
    }
    .brand-note{
      font-size:12px;
      color:var(--muted);
      font-weight:700;
      margin-top:1px;
    }
    .header-tools{
      display:flex;
      align-items:center;
      gap:12px;
    }
    .quick-search{
      width:280px;
      display:flex;
      align-items:center;
      gap:8px;
      padding:10px 14px;
      border:1px solid var(--border);
      border-radius:999px;
      background:#fff;
      color:var(--muted);
      box-shadow:0 8px 20px rgba(23,32,51,.04);
    }
    .quick-search input{
      width:100%;
      border:0;
      outline:0;
      color:var(--text);
      background:transparent;
      font-size:14px;
    }
    .quick-search:focus-within{
      border-color:rgba(91,75,255,.55);
      box-shadow:0 0 0 4px rgba(91,75,255,.12);
    }
    .header-cta{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:11px 16px;
      border-radius:999px;
      color:#fff;
      font-weight:800;
      background:linear-gradient(135deg,var(--primary),var(--primary-dark));
      box-shadow:0 12px 28px rgba(91,75,255,.24);
    }
    .header-cta:hover{
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 18px 38px rgba(91,75,255,.3);
    }
    .channel-wrap{
      border-top:1px solid rgba(228,231,236,.72);
    }
    .channel-nav{
      display:flex;
      align-items:center;
      gap:10px;
      overflow-x:auto;
      padding:12px 0;
      scrollbar-width:none;
    }
    .channel-nav::-webkit-scrollbar{display:none}
    .channel-nav a{
      flex:0 0 auto;
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:10px 16px;
      border:1px solid transparent;
      border-radius:999px;
      color:#475467;
      font-weight:800;
      font-size:14px;
      background:rgba(255,255,255,.72);
    }
    .channel-nav a:hover{
      color:var(--primary);
      border-color:rgba(91,75,255,.22);
      background:#fff;
      transform:translateY(-1px);
    }
    .channel-nav a.active{
      color:#fff;
      background:linear-gradient(135deg,var(--primary),var(--secondary));
      box-shadow:0 12px 26px rgba(91,75,255,.22);
    }
    .main{padding-bottom:80px}
    .hero{
      position:relative;
      padding:70px 0 42px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns:minmax(0,1.04fr) minmax(330px,.72fr);
      gap:34px;
      align-items:center;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 13px;
      border-radius:999px;
      color:var(--primary-dark);
      background:rgba(91,75,255,.1);
      border:1px solid rgba(91,75,255,.18);
      font-size:13px;
      font-weight:900;
      margin-bottom:18px;
    }
    h1{
      margin:0;
      font-size:clamp(34px,5vw,58px);
      line-height:1.08;
      letter-spacing:-.045em;
      font-weight:950;
    }
    .hero-lead{
      margin:20px 0 0;
      max-width:760px;
      font-size:18px;
      color:#4b5565;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:28px;
    }
    .btn-modern{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      border:0;
      border-radius:999px;
      padding:13px 20px;
      font-weight:900;
      line-height:1.2;
      transition:all .22s ease;
      cursor:pointer;
    }
    .btn-primary-modern{
      color:#fff;
      background:linear-gradient(135deg,var(--primary),var(--primary-dark));
      box-shadow:0 16px 34px rgba(91,75,255,.26);
    }
    .btn-primary-modern:hover,.btn-primary-modern:focus{
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 22px 44px rgba(91,75,255,.32);
    }
    .btn-ghost-modern{
      color:var(--text);
      background:#fff;
      border:1px solid var(--border);
      box-shadow:var(--shadow-sm);
    }
    .btn-ghost-modern:hover,.btn-ghost-modern:focus{
      color:var(--primary);
      border-color:rgba(91,75,255,.28);
      transform:translateY(-2px);
    }
    .hero-panel{
      border-radius:var(--radius-lg);
      background:linear-gradient(180deg,#fff,rgba(255,255,255,.88));
      border:1px solid rgba(228,231,236,.9);
      box-shadow:var(--shadow-md);
      padding:24px;
      overflow:hidden;
      position:relative;
    }
    .hero-panel:before{
      content:"";
      position:absolute;
      inset:-80px -90px auto auto;
      width:190px;
      height:190px;
      border-radius:50%;
      background:rgba(22,199,183,.16);
    }
    .safety-card{
      position:relative;
      padding:20px;
      border-radius:24px;
      background:#111827;
      color:#fff;
      margin-bottom:16px;
      overflow:hidden;
    }
    .safety-card:after{
      content:"";
      position:absolute;
      right:-35px;
      bottom:-35px;
      width:120px;
      height:120px;
      border-radius:50%;
      background:rgba(255,255,255,.08);
    }
    .safety-card strong{
      display:block;
      font-size:22px;
      line-height:1.25;
      margin-bottom:8px;
    }
    .safety-card p{margin:0;color:rgba(255,255,255,.78)}
    .progress-list{
      display:grid;
      gap:12px;
      margin:0;
      padding:0;
      list-style:none;
    }
    .progress-list li{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:14px;
      border:1px solid var(--border);
      border-radius:18px;
      background:rgba(246,247,251,.82);
    }
    .step-dot{
      width:28px;
      height:28px;
      border-radius:50%;
      flex:0 0 auto;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      font-size:12px;
      font-weight:900;
      background:linear-gradient(135deg,var(--primary),var(--secondary));
    }
    .progress-list b{display:block;margin-bottom:2px}
    .progress-list span{display:block;color:var(--muted);font-size:14px}
    .section{
      padding:44px 0;
    }
    .section-head{
      display:flex;
      justify-content:space-between;
      align-items:end;
      gap:24px;
      margin-bottom:22px;
    }
    .section-kicker{
      color:var(--primary);
      font-weight:950;
      font-size:13px;
      letter-spacing:.06em;
      margin-bottom:8px;
    }
    .section-title{
      margin:0;
      font-size:clamp(26px,3vw,40px);
      line-height:1.18;
      letter-spacing:-.03em;
      font-weight:950;
    }
    .section-desc{
      margin:10px 0 0;
      color:var(--muted);
      max-width:700px;
    }
    .badge-soft{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(22,199,183,.1);
      color:#0f8f83;
      font-weight:900;
      font-size:13px;
      border:1px solid rgba(22,199,183,.18);
    }
    .card-modern{
      height:100%;
      border:1px solid rgba(228,231,236,.92);
      border-radius:var(--radius-md);
      background:rgba(255,255,255,.9);
      box-shadow:var(--shadow-sm);
      padding:22px;
      transition:all .24s ease;
    }
    .card-modern:hover{
      transform:translateY(-5px);
      box-shadow:var(--shadow-md);
      border-color:rgba(91,75,255,.22);
    }
    .icon-box{
      width:48px;
      height:48px;
      border-radius:17px;
      display:flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      background:linear-gradient(135deg,var(--primary),var(--secondary));
      box-shadow:0 12px 26px rgba(91,75,255,.18);
      margin-bottom:16px;
    }
    .card-modern h3{
      font-size:20px;
      font-weight:950;
      margin:0 0 8px;
      letter-spacing:-.02em;
    }
    .card-modern p{
      margin:0;
      color:var(--muted);
    }
    .urgent-band{
      border-radius:var(--radius-lg);
      padding:30px;
      background:
        linear-gradient(135deg,rgba(255,91,110,.12),rgba(255,184,77,.12)),
        #fff;
      border:1px solid rgba(255,91,110,.2);
      box-shadow:var(--shadow-sm);
    }
    .urgent-grid{
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:24px;
      align-items:center;
    }
    .urgent-label{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:#b42318;
      background:rgba(255,91,110,.12);
      border:1px solid rgba(255,91,110,.22);
      padding:8px 12px;
      border-radius:999px;
      font-weight:950;
      margin-bottom:14px;
    }
    .check-list{
      display:grid;
      gap:12px;
      margin:0;
      padding:0;
      list-style:none;
    }
    .check-list li{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:14px 15px;
      border-radius:18px;
      background:#fff;
      border:1px solid var(--border);
    }
    .check-list i{
      margin-top:3px;
      color:var(--secondary);
    }
    .scene-card{
      display:flex;
      gap:16px;
      padding:20px;
      border-radius:24px;
      border:1px solid var(--border);
      background:#fff;
      box-shadow:0 10px 26px rgba(23,32,51,.06);
      height:100%;
    }
    .scene-num{
      width:42px;
      height:42px;
      flex:0 0 auto;
      border-radius:15px;
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:950;
      color:var(--primary);
      background:rgba(91,75,255,.1);
    }
    .scene-card h3{
      font-size:18px;
      font-weight:950;
      margin:0 0 6px;
    }
    .scene-card p{
      margin:0;
      color:var(--muted);
      font-size:15px;
    }
    .timeline{
      position:relative;
      display:grid;
      gap:16px;
    }
    .timeline-item{
      display:grid;
      grid-template-columns:96px 1fr;
      gap:18px;
      align-items:stretch;
    }
    .timeline-time{
      border-radius:20px;
      background:#111827;
      color:#fff;
      display:flex;
      align-items:center;
      justify-content:center;
      text-align:center;
      padding:14px;
      font-weight:950;
      line-height:1.3;
      box-shadow:var(--shadow-sm);
    }
    .timeline-content{
      padding:20px;
      border-radius:22px;
      border:1px solid var(--border);
      background:#fff;
      box-shadow:0 10px 26px rgba(23,32,51,.05);
    }
    .timeline-content h3{
      margin:0 0 6px;
      font-size:19px;
      font-weight:950;
    }
    .timeline-content p{margin:0;color:var(--muted)}
    .contact-panel{
      border-radius:var(--radius-lg);
      background:#fff;
      border:1px solid var(--border);
      box-shadow:var(--shadow-md);
      overflow:hidden;
    }
    .contact-grid{
      display:grid;
      grid-template-columns:.9fr 1.1fr;
    }
    .contact-side{
      padding:30px;
      color:#fff;
      background:
        radial-gradient(circle at 20% 10%, rgba(255,255,255,.18), transparent 28%),
        linear-gradient(145deg,#111827,#3b2fbf 58%,#159c92);
    }
    .contact-side h2{
      font-size:30px;
      font-weight:950;
      margin:0 0 12px;
      letter-spacing:-.03em;
    }
    .contact-side p{color:rgba(255,255,255,.78);margin:0 0 22px}
    .info-chip{
      display:flex;
      align-items:center;
      gap:10px;
      padding:12px 14px;
      margin-top:10px;
      border-radius:16px;
      background:rgba(255,255,255,.12);
      border:1px solid rgba(255,255,255,.18);
      color:#fff;
      font-weight:800;
    }
    .contact-form{
      padding:30px;
      display:grid;
      gap:16px;
    }
    .form-label{
      font-weight:900;
      color:var(--text);
      margin-bottom:7px;
    }
    .form-control,.form-select{
      border-radius:16px;
      border:1px solid var(--border);
      padding:12px 14px;
      color:var(--text);
      box-shadow:none!important;
    }
    .form-control:focus,.form-select:focus{
      border-color:rgba(91,75,255,.55);
      box-shadow:0 0 0 4px rgba(91,75,255,.12)!important;
    }
    .form-hint{
      color:var(--muted);
      font-size:13px;
      margin-top:6px;
    }
    .faq-wrap .accordion-item{
      border:1px solid var(--border);
      border-radius:20px!important;
      overflow:hidden;
      margin-bottom:12px;
      background:#fff;
      box-shadow:0 8px 22px rgba(23,32,51,.04);
    }
    .faq-wrap .accordion-button{
      padding:18px 20px;
      font-weight:950;
      color:var(--text);
      background:#fff;
      box-shadow:none;
    }
    .faq-wrap .accordion-button:not(.collapsed){
      color:var(--primary);
      background:rgba(91,75,255,.06);
    }
    .faq-wrap .accordion-button:focus{
      box-shadow:0 0 0 4px rgba(91,75,255,.12);
      border-color:transparent;
    }
    .faq-wrap .accordion-body{
      color:var(--muted);
      padding:0 20px 20px;
    }
    .cta{
      border-radius:var(--radius-lg);
      padding:34px;
      color:#fff;
      background:
        radial-gradient(circle at 78% 20%, rgba(22,199,183,.3), transparent 30%),
        linear-gradient(135deg,var(--primary-dark),#111827);
      box-shadow:var(--shadow-md);
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:24px;
    }
    .cta h2{
      font-size:32px;
      font-weight:950;
      margin:0 0 8px;
      letter-spacing:-.03em;
    }
    .cta p{
      margin:0;
      color:rgba(255,255,255,.78);
      max-width:700px;
    }
    .cta .btn-modern{
      background:#fff;
      color:var(--primary-dark);
      white-space:nowrap;
    }
    .cta .btn-modern:hover{
      transform:translateY(-2px);
      color:var(--primary);
    }
    .site-footer{
      background:#0f172a;
      color:#d0d5dd;
      padding:54px 0 24px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.35fr .65fr .65fr;
      gap:34px;
      align-items:start;
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:12px;
      color:#fff;
      margin-bottom:14px;
    }
    .footer-brand strong{
      font-size:18px;
      line-height:1.35;
    }
    .site-footer p{
      margin:0;
      color:#98a2b3;
      max-width:620px;
    }
    .footer-col h3{
      color:#fff;
      font-size:16px;
      font-weight:950;
      margin:0 0 14px;
    }
    .footer-links{
      display:grid;
      gap:10px;
    }
    .footer-links a{
      color:#98a2b3;
      display:inline-flex;
      align-items:center;
      width:max-content;
      max-width:100%;
    }
    .footer-links a:hover{
      color:#fff;
      transform:translateX(3px);
    }
    .footer-bottom{
      margin-top:34px;
      padding-top:20px;
      border-top:1px solid rgba(255,255,255,.1);
      display:flex;
      justify-content:space-between;
      gap:16px;
      color:#98a2b3;
      font-size:14px;
    }
    :focus-visible{
      outline:3px solid rgba(91,75,255,.34);
      outline-offset:3px;
      border-radius:12px;
    }
    @media (max-width:1024px){
      .hero-grid,.urgent-grid,.contact-grid{
        grid-template-columns:1fr;
      }
      .quick-search{width:220px}
      .footer-grid{grid-template-columns:1fr 1fr}
      .cta{align-items:flex-start;flex-direction:column}
    }
    @media (max-width:768px){
      .brand-row{
        min-height:auto;
        padding:14px 0;
        align-items:flex-start;
        flex-direction:column;
      }
      .header-tools{
        width:100%;
      }
      .quick-search{
        width:100%;
        flex:1;
      }
      .header-cta{
        padding:11px 13px;
      }
      .brand-name{max-width:calc(100vw - 96px)}
      .hero{padding:44px 0 28px}
      .hero-panel,.urgent-band,.contact-side,.contact-form,.cta{padding:22px}
      .section{padding:34px 0}
      .section-head{
        align-items:flex-start;
        flex-direction:column;
      }
      .timeline-item{
        grid-template-columns:1fr;
        gap:10px;
      }
      .timeline-time{
        justify-content:flex-start;
      }
      .footer-grid{grid-template-columns:1fr}
      .footer-bottom{
        flex-direction:column;
      }
    }
    @media (max-width:520px){
      .container-custom{width:min(100% - 24px,var(--container))}
      h1{font-size:32px}
      .hero-lead{font-size:16px}
      .hero-actions,.header-tools{
        flex-direction:column;
        align-items:stretch;
      }
      .btn-modern,.header-cta{
        width:100%;
      }
      .channel-nav a{
        padding:9px 13px;
        font-size:13px;
      }
      .scene-card{
        flex-direction:column;
      }
      .contact-side h2,.cta h2{
        font-size:26px;
      }
    }

/* roulang page: category2 */
:root{
      --primary:#172554;
      --primary-2:#1d4ed8;
      --primary-soft:#dbeafe;
      --accent:#f97316;
      --accent-soft:#ffedd5;
      --danger:#dc2626;
      --danger-soft:#fee2e2;
      --success:#16a34a;
      --success-soft:#dcfce7;
      --ink:#0f172a;
      --text:#334155;
      --muted:#64748b;
      --light:#f8fafc;
      --panel:#ffffff;
      --line:#e2e8f0;
      --shadow:0 18px 50px rgba(15,23,42,.10);
      --shadow-soft:0 10px 30px rgba(15,23,42,.08);
      --radius-lg:28px;
      --radius-md:20px;
      --radius-sm:14px;
      --container:1180px;
      --ease:all .24s ease;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei",Arial,sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 10% 0%, rgba(29,78,216,.10), transparent 32%),
        radial-gradient(circle at 90% 12%, rgba(249,115,22,.10), transparent 30%),
        linear-gradient(180deg,#f8fafc 0%,#eef4ff 42%,#f8fafc 100%);
      line-height:1.75;
      -webkit-font-smoothing:antialiased;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    a:hover{color:var(--primary-2)}
    img{max-width:100%;height:auto;display:block}
    button,input,textarea,select{font:inherit}
    ::selection{background:var(--primary-2);color:#fff}
    .container-custom{
      width:min(100% - 32px,var(--container));
      margin-inline:auto;
    }
    .skip-link{
      position:absolute;
      left:-999px;
      top:12px;
      z-index:9999;
      background:#fff;
      color:var(--primary);
      padding:10px 14px;
      border-radius:12px;
      box-shadow:var(--shadow);
    }
    .skip-link:focus{left:16px}
    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      background:rgba(255,255,255,.88);
      backdrop-filter:blur(18px);
      border-bottom:1px solid rgba(226,232,240,.9);
      box-shadow:0 8px 24px rgba(15,23,42,.04);
    }
    .brand-row{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
      padding:16px 0 12px;
    }
    .site-brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:0;
    }
    .brand-mark{
      width:44px;
      height:44px;
      flex:0 0 44px;
      border-radius:16px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      background:linear-gradient(135deg,var(--primary),var(--primary-2));
      box-shadow:0 12px 28px rgba(29,78,216,.22);
    }
    .site-brand strong{
      display:block;
      color:var(--ink);
      font-size:18px;
      line-height:1.25;
      letter-spacing:-.02em;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
      max-width:560px;
    }
    .site-brand span{
      display:block;
      color:var(--muted);
      font-size:13px;
      margin-top:2px;
    }
    .header-actions{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .search-pill{
      display:flex;
      align-items:center;
      gap:8px;
      min-width:250px;
      padding:10px 14px;
      border:1px solid var(--line);
      border-radius:999px;
      background:#fff;
      color:var(--muted);
      box-shadow:0 8px 18px rgba(15,23,42,.04);
    }
    .search-pill input{
      border:0;
      outline:0;
      width:100%;
      background:transparent;
      color:var(--ink);
      font-size:14px;
    }
    .search-pill:focus-within{
      border-color:rgba(29,78,216,.55);
      box-shadow:0 0 0 4px rgba(29,78,216,.12);
    }
    .urgent-btn{
      border:0;
      border-radius:999px;
      padding:10px 16px;
      background:var(--danger);
      color:#fff;
      font-weight:700;
      display:inline-flex;
      align-items:center;
      gap:8px;
      box-shadow:0 12px 24px rgba(220,38,38,.22);
    }
    .urgent-btn:hover{color:#fff;background:#b91c1c;transform:translateY(-1px)}
    .channel-wrap{
      border-top:1px solid rgba(226,232,240,.72);
    }
    .channel-nav{
      display:flex;
      align-items:center;
      gap:10px;
      overflow-x:auto;
      padding:10px 0;
      scrollbar-width:none;
    }
    .channel-nav::-webkit-scrollbar{display:none}
    .channel-nav a{
      flex:0 0 auto;
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:9px 14px;
      border-radius:999px;
      color:var(--text);
      font-size:14px;
      font-weight:700;
      border:1px solid transparent;
      background:transparent;
    }
    .channel-nav a:hover{
      background:#fff;
      border-color:var(--line);
      color:var(--primary-2);
      box-shadow:0 8px 18px rgba(15,23,42,.06);
    }
    .channel-nav a.active{
      background:var(--primary);
      color:#fff;
      border-color:var(--primary);
      box-shadow:0 12px 24px rgba(23,37,84,.18);
    }
    main{overflow:hidden}
    .hero{
      padding:70px 0 46px;
      position:relative;
    }
    .hero-grid{
      display:grid;
      grid-template-columns:minmax(0,1.05fr) minmax(340px,.72fr);
      gap:34px;
      align-items:center;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(220,38,38,.10);
      color:#991b1b;
      border:1px solid rgba(220,38,38,.18);
      font-weight:800;
      font-size:14px;
      margin-bottom:18px;
    }
    .hero h1{
      margin:0;
      color:var(--ink);
      font-size:clamp(34px,5.2vw,62px);
      line-height:1.08;
      letter-spacing:-.055em;
      font-weight:900;
    }
    .hero h1 .highlight{
      color:var(--danger);
      position:relative;
      white-space:nowrap;
    }
    .lead{
      margin:20px 0 0;
      color:#475569;
      font-size:18px;
      max-width:760px;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:28px;
    }
    .btn-main,.btn-ghost,.btn-lightline{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      border-radius:999px;
      padding:13px 20px;
      font-weight:800;
      border:1px solid transparent;
      transition:var(--ease);
      min-height:50px;
    }
    .btn-main{
      background:linear-gradient(135deg,var(--danger),#f97316);
      color:#fff;
      box-shadow:0 16px 30px rgba(220,38,38,.22);
    }
    .btn-main:hover{color:#fff;transform:translateY(-2px);box-shadow:0 20px 34px rgba(220,38,38,.28)}
    .btn-ghost{
      background:#fff;
      border-color:var(--line);
      color:var(--primary);
      box-shadow:0 10px 22px rgba(15,23,42,.06);
    }
    .btn-ghost:hover{border-color:rgba(29,78,216,.35);transform:translateY(-2px)}
    .btn-lightline{
      background:rgba(255,255,255,.10);
      color:#fff;
      border-color:rgba(255,255,255,.22);
    }
    .btn-lightline:hover{background:#fff;color:var(--primary)}
    .trust-strip{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
      margin-top:30px;
    }
    .trust-item{
      padding:14px;
      border-radius:18px;
      background:rgba(255,255,255,.72);
      border:1px solid rgba(226,232,240,.86);
      box-shadow:0 10px 22px rgba(15,23,42,.05);
    }
    .trust-item strong{display:block;color:var(--ink);font-size:20px;line-height:1.1}
    .trust-item span{color:var(--muted);font-size:13px}
    .crisis-card{
      position:relative;
      padding:24px;
      border-radius:var(--radius-lg);
      color:#fff;
      background:
        linear-gradient(160deg,rgba(15,23,42,.12),rgba(15,23,42,.45)),
        linear-gradient(135deg,#172554,#1d4ed8 60%,#f97316);
      box-shadow:var(--shadow);
      overflow:hidden;
      min-height:500px;
    }
    .crisis-card:before{
      content:"";
      position:absolute;
      width:220px;
      height:220px;
      border-radius:50%;
      background:rgba(255,255,255,.13);
      right:-70px;
      top:-70px;
    }
    .crisis-card:after{
      content:"";
      position:absolute;
      width:130px;
      height:130px;
      border-radius:38px;
      background:rgba(255,255,255,.10);
      left:-42px;
      bottom:80px;
      transform:rotate(18deg);
    }
    .crisis-inner{position:relative;z-index:1}
    .status-badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      border-radius:999px;
      padding:8px 12px;
      background:rgba(255,255,255,.14);
      border:1px solid rgba(255,255,255,.18);
      font-weight:800;
      font-size:13px;
    }
    .crisis-card h2{
      margin:22px 0 10px;
      font-size:28px;
      line-height:1.22;
      font-weight:900;
    }
    .crisis-list{
      margin:18px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:12px;
    }
    .crisis-list li{
      display:flex;
      gap:11px;
      align-items:flex-start;
      padding:13px;
      border-radius:16px;
      background:rgba(255,255,255,.12);
      border:1px solid rgba(255,255,255,.15);
    }
    .crisis-list i{margin-top:4px;color:#fed7aa}
    .progress-panel{
      margin-top:22px;
      padding:16px;
      border-radius:18px;
      background:rgba(255,255,255,.12);
      border:1px solid rgba(255,255,255,.16);
    }
    .progress-line{
      height:10px;
      overflow:hidden;
      border-radius:999px;
      background:rgba(255,255,255,.20);
      margin:10px 0;
    }
    .progress-line span{
      display:block;
      height:100%;
      width:25%;
      border-radius:999px;
      background:#fff;
    }
    .section{
      padding:50px 0;
    }
    .section-header{
      display:flex;
      align-items:end;
      justify-content:space-between;
      gap:20px;
      margin-bottom:24px;
    }
    .section-kicker{
      color:var(--primary-2);
      font-weight:900;
      font-size:14px;
      letter-spacing:.06em;
      margin-bottom:7px;
    }
    .section-title{
      color:var(--ink);
      font-size:clamp(26px,3vw,40px);
      line-height:1.18;
      font-weight:900;
      letter-spacing:-.035em;
      margin:0;
    }
    .section-desc{
      max-width:620px;
      color:var(--muted);
      margin:8px 0 0;
    }
    .badge-soft{
      display:inline-flex;
      align-items:center;
      gap:6px;
      border-radius:999px;
      padding:7px 11px;
      background:var(--primary-soft);
      color:var(--primary);
      font-weight:800;
      font-size:13px;
      border:1px solid rgba(29,78,216,.12);
    }
    .urgent-panel{
      border-radius:var(--radius-lg);
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow-soft);
      overflow:hidden;
    }
    .urgent-top{
      display:grid;
      grid-template-columns:.92fr 1.08fr;
      gap:0;
    }
    .urgent-warning{
      padding:30px;
      background:
        linear-gradient(135deg,rgba(220,38,38,.96),rgba(249,115,22,.92)),
        radial-gradient(circle at 20% 20%,rgba(255,255,255,.25),transparent 35%);
      color:#fff;
    }
    .urgent-warning h2{
      margin:12px 0;
      font-size:30px;
      line-height:1.18;
      font-weight:900;
    }
    .urgent-warning p{margin:0;color:rgba(255,255,255,.90)}
    .urgent-steps{
      padding:26px;
      display:grid;
      gap:14px;
    }
    .step-item{
      display:grid;
      grid-template-columns:48px 1fr;
      gap:14px;
      align-items:start;
      padding:16px;
      border-radius:18px;
      background:var(--light);
      border:1px solid var(--line);
      transition:var(--ease);
    }
    .step-item:hover{transform:translateY(-2px);box-shadow:0 12px 24px rgba(15,23,42,.07);background:#fff}
    .step-num{
      width:48px;
      height:48px;
      border-radius:16px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:var(--primary);
      color:#fff;
      font-weight:900;
      box-shadow:0 10px 20px rgba(23,37,84,.18);
    }
    .step-item h3{
      margin:0 0 4px;
      color:var(--ink);
      font-size:18px;
      font-weight:900;
    }
    .step-item p{margin:0;color:var(--muted)}
    .cards-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px;
    }
    .info-card{
      background:#fff;
      border:1px solid var(--line);
      border-radius:var(--radius-md);
      padding:22px;
      box-shadow:0 10px 28px rgba(15,23,42,.05);
      transition:var(--ease);
      height:100%;
    }
    .info-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-soft);
      border-color:rgba(29,78,216,.24);
    }
    .icon-box{
      width:50px;
      height:50px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border-radius:17px;
      background:linear-gradient(135deg,var(--primary-soft),#fff);
      color:var(--primary-2);
      font-size:20px;
      margin-bottom:16px;
      border:1px solid rgba(29,78,216,.12);
    }
    .info-card h3{
      margin:0 0 8px;
      color:var(--ink);
      font-size:20px;
      font-weight:900;
      letter-spacing:-.02em;
    }
    .info-card p{margin:0;color:var(--muted)}
    .tag-row{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:14px;
    }
    .mini-tag{
      border-radius:999px;
      padding:5px 9px;
      font-size:12px;
      font-weight:800;
      color:var(--primary);
      background:var(--primary-soft);
    }
    .scenario-wrap{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:18px;
    }
    .scenario-card{
      border-radius:var(--radius-md);
      background:#fff;
      border:1px solid var(--line);
      overflow:hidden;
      box-shadow:0 10px 26px rgba(15,23,42,.05);
    }
    .scenario-head{
      padding:18px 20px;
      background:linear-gradient(135deg,#eff6ff,#fff7ed);
      border-bottom:1px solid var(--line);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
    }
    .scenario-head h3{
      margin:0;
      color:var(--ink);
      font-size:19px;
      font-weight:900;
    }
    .heat{
      display:inline-flex;
      align-items:center;
      gap:5px;
      color:#b45309;
      background:#fffbeb;
      border:1px solid #fde68a;
      border-radius:999px;
      padding:5px 9px;
      font-size:12px;
      font-weight:900;
    }
    .scenario-body{
      padding:20px;
    }
    .check-list{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:10px;
    }
    .check-list li{
      display:flex;
      align-items:flex-start;
      gap:10px;
      color:#475569;
    }
    .check-list i{
      color:var(--success);
      margin-top:5px;
    }
    .timeline{
      position:relative;
      display:grid;
      gap:16px;
    }
    .timeline:before{
      content:"";
      position:absolute;
      left:23px;
      top:10px;
      bottom:10px;
      width:2px;
      background:linear-gradient(180deg,var(--primary-2),rgba(29,78,216,.08));
    }
    .timeline-item{
      position:relative;
      display:grid;
      grid-template-columns:48px 1fr;
      gap:16px;
    }
    .timeline-dot{
      width:48px;
      height:48px;
      border-radius:50%;
      background:#fff;
      border:2px solid var(--primary-2);
      color:var(--primary-2);
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:900;
      z-index:1;
      box-shadow:0 8px 18px rgba(29,78,216,.12);
    }
    .timeline-card{
      background:#fff;
      border:1px solid var(--line);
      border-radius:20px;
      padding:18px 20px;
      box-shadow:0 10px 24px rgba(15,23,42,.05);
    }
    .timeline-card h3{
      margin:0 0 6px;
      color:var(--ink);
      font-size:19px;
      font-weight:900;
    }
    .timeline-card p{margin:0;color:var(--muted)}
    .contact-box{
      border-radius:var(--radius-lg);
      background:
        linear-gradient(135deg,rgba(23,37,84,.96),rgba(29,78,216,.94)),
        radial-gradient(circle at 90% 20%,rgba(249,115,22,.22),transparent 35%);
      color:#fff;
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .contact-grid{
      display:grid;
      grid-template-columns:1fr .9fr;
      gap:0;
    }
    .contact-copy{
      padding:34px;
    }
    .contact-copy h2{
      margin:0 0 12px;
      font-size:34px;
      line-height:1.18;
      font-weight:900;
      letter-spacing:-.03em;
    }
    .contact-copy p{
      color:rgba(255,255,255,.82);
      margin:0 0 20px;
    }
    .contact-list{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:10px;
    }
    .contact-list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:rgba(255,255,255,.88);
    }
    .contact-list i{margin-top:5px;color:#fed7aa}
    .message-card{
      margin:22px;
      padding:22px;
      border-radius:24px;
      background:#fff;
      color:var(--text);
      box-shadow:0 18px 38px rgba(0,0,0,.16);
    }
    .message-card label{
      color:var(--ink);
      font-weight:900;
      margin-bottom:8px;
    }
    .form-control,.form-select{
      border-radius:14px;
      border:1px solid var(--line);
      padding:12px 13px;
      color:var(--ink);
      background:#fff;
    }
    .form-control:focus,.form-select:focus{
      border-color:var(--primary-2);
      box-shadow:0 0 0 4px rgba(29,78,216,.12);
    }
    .form-hint{
      color:var(--muted);
      font-size:13px;
      margin-top:8px;
    }
    .accordion{
      --bs-accordion-border-color:var(--line);
      --bs-accordion-border-radius:20px;
      --bs-accordion-inner-border-radius:20px;
    }
    .accordion-item{
      border:1px solid var(--line)!important;
      border-radius:20px!important;
      overflow:hidden;
      margin-bottom:12px;
      box-shadow:0 8px 20px rgba(15,23,42,.04);
      background:#fff;
    }
    .accordion-button{
      font-weight:900;
      color:var(--ink);
      background:#fff;
      padding:18px 20px;
    }
    .accordion-button:not(.collapsed){
      color:var(--primary);
      background:#eff6ff;
      box-shadow:none;
    }
    .accordion-button:focus{
      box-shadow:0 0 0 4px rgba(29,78,216,.12);
      border-color:transparent;
    }
    .accordion-body{
      color:var(--muted);
      padding:18px 20px 22px;
    }
    .cta{
      padding:42px 0 70px;
    }
    .cta-card{
      border-radius:var(--radius-lg);
      background:
        linear-gradient(135deg,#fff 0%,#eff6ff 54%,#fff7ed 100%);
      border:1px solid rgba(226,232,240,.95);
      box-shadow:var(--shadow-soft);
      padding:34px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:24px;
    }
    .cta-card h2{
      margin:0 0 8px;
      color:var(--ink);
      font-size:30px;
      font-weight:900;
      letter-spacing:-.03em;
    }
    .cta-card p{margin:0;color:var(--muted);max-width:720px}
    .site-footer{
      background:#0f172a;
      color:#cbd5e1;
      padding:50px 0 24px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.5fr .7fr .7fr;
      gap:28px;
      align-items:start;
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:12px;
      color:#fff;
      margin-bottom:14px;
    }
    .footer-brand .brand-mark{
      width:40px;
      height:40px;
      flex-basis:40px;
      border-radius:14px;
    }
    .footer-brand strong{
      font-size:18px;
      line-height:1.35;
    }
    .site-footer p{
      margin:0;
      max-width:620px;
      color:#94a3b8;
    }
    .footer-col h3{
      color:#fff;
      font-size:16px;
      font-weight:900;
      margin:0 0 14px;
    }
    .footer-links{
      display:grid;
      gap:9px;
    }
    .footer-links a{
      color:#94a3b8;
      display:inline-flex;
      width:max-content;
      border-bottom:1px solid transparent;
    }
    .footer-links a:hover{
      color:#fff;
      border-bottom-color:rgba(255,255,255,.35);
    }
    .footer-bottom{
      margin-top:34px;
      padding-top:20px;
      border-top:1px solid rgba(148,163,184,.20);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      color:#94a3b8;
      font-size:14px;
    }
    @media (max-width:1024px){
      .hero-grid,.urgent-top,.contact-grid{
        grid-template-columns:1fr;
      }
      .crisis-card{min-height:auto}
      .cards-grid{grid-template-columns:repeat(2,1fr)}
      .footer-grid{grid-template-columns:1fr 1fr}
      .site-brand strong{max-width:420px}
    }
    @media (max-width:768px){
      .brand-row{
        align-items:flex-start;
        flex-direction:column;
      }
      .header-actions{
        width:100%;
        display:grid;
        grid-template-columns:1fr;
      }
      .search-pill{min-width:0;width:100%}
      .urgent-btn{width:100%;justify-content:center}
      .site-brand strong{
        max-width:calc(100vw - 106px);
        white-space:normal;
      }
      .hero{padding:46px 0 32px}
      .trust-strip,.cards-grid,.scenario-wrap{
        grid-template-columns:1fr;
      }
      .section{padding:38px 0}
      .section-header{
        display:block;
      }
      .cta-card{
        flex-direction:column;
        align-items:flex-start;
      }
      .footer-grid{grid-template-columns:1fr}
      .footer-bottom{
        flex-direction:column;
        align-items:flex-start;
      }
    }
    @media (max-width:520px){
      .container-custom{width:min(100% - 22px,var(--container))}
      .brand-mark{width:40px;height:40px;flex-basis:40px}
      .channel-nav a{padding:8px 12px;font-size:13px}
      .hero h1{font-size:34px}
      .lead{font-size:16px}
      .hero-actions .btn-main,.hero-actions .btn-ghost{
        width:100%;
      }
      .urgent-warning,.urgent-steps,.contact-copy,.cta-card{
        padding:22px;
      }
      .message-card{margin:14px;padding:18px;border-radius:20px}
      .step-item{
        grid-template-columns:42px 1fr;
        padding:14px;
      }
      .step-num{width:42px;height:42px;border-radius:14px}
      .timeline-item{grid-template-columns:42px 1fr;gap:12px}
      .timeline-dot{width:42px;height:42px}
      .timeline:before{left:20px}
    }
