/* roulang page: index */
:root{
      --color-primary:#7c3aed;
      --color-primary-dark:#5b21b6;
      --color-primary-soft:#f1e9ff;
      --color-secondary:#06b6d4;
      --color-accent:#ffb703;
      --color-danger:#ef4444;
      --color-success:#16a34a;
      --color-ink:#172033;
      --color-text:#334155;
      --color-muted:#64748b;
      --color-light:#f8fafc;
      --color-surface:#ffffff;
      --color-border:#e2e8f0;
      --color-footer:#101827;
      --radius-xs:10px;
      --radius-sm:14px;
      --radius-md:20px;
      --radius-lg:28px;
      --shadow-sm:0 10px 28px rgba(15,23,42,.08);
      --shadow-md:0 18px 48px rgba(88,28,135,.14);
      --shadow-glow:0 24px 70px rgba(124,58,237,.22);
      --container:1180px;
      --nav-height:74px;
      --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(--color-text);
      background:
        radial-gradient(circle at 12% 6%, rgba(124,58,237,.12), transparent 28%),
        radial-gradient(circle at 88% 2%, rgba(6,182,212,.12), transparent 25%),
        linear-gradient(180deg,#fff 0%,#f8fafc 42%,#fff 100%);
      line-height:1.78;
      font-size:16px;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    a:hover,a:focus{color:inherit;text-decoration:none}
    img{max-width:100%;height:auto;display:block}
    button,input,textarea,select{font:inherit}
    button{cursor:pointer}
    ::selection{background:rgba(124,58,237,.18);color:var(--color-ink)}

    .site-wrap{min-height:100vh;display:flex;flex-direction:column}
    .container{
      width:min(calc(100% - 40px),var(--container));
      margin-inline:auto;
    }

    .skip-link{
      position:absolute;left:18px;top:-50px;z-index:999;
      background:#fff;color:var(--color-primary-dark);
      border-radius:999px;padding:10px 16px;font-weight:800;
      box-shadow:var(--shadow-sm);
    }
    .skip-link:focus{top:16px;outline:3px solid rgba(255,183,3,.65)}

    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      background:linear-gradient(100deg,#5b21b6 0%,#7c3aed 45%,#0891b2 100%);
      color:#fff;
      box-shadow:0 12px 34px rgba(91,33,182,.24);
    }
    .nav-shell{
      min-height:var(--nav-height);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:24px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:0;
      font-weight:900;
      letter-spacing:.02em;
      color:#fff;
    }
    .brand-mark{
      width:42px;height:42px;border-radius:16px;
      display:grid;place-items:center;
      background:rgba(255,255,255,.18);
      border:1px solid rgba(255,255,255,.24);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.22);
      flex:0 0 auto;
    }
    .brand-mark i{font-size:18px;color:#fff}
    .brand-text{
      font-size:17px;
      line-height:1.2;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
      max-width:410px;
    }
    .main-nav{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .nav-link{
      color:rgba(255,255,255,.88);
      font-weight:800;
      padding:10px 14px;
      border-radius:999px;
      position:relative;
    }
    .nav-link:hover,.nav-link:focus,.nav-link.active{
      color:#fff;
      background:rgba(255,255,255,.16);
    }
    .nav-link.active::after{
      content:"";
      position:absolute;
      left:16px;right:16px;bottom:5px;
      height:2px;border-radius:2px;background:#fff;
    }
    .nav-search{
      display:flex;
      align-items:center;
      gap:8px;
      width:248px;
      padding:8px 12px;
      border:1px solid rgba(255,255,255,.22);
      background:rgba(255,255,255,.12);
      border-radius:999px;
      backdrop-filter:blur(10px);
    }
    .nav-search i{color:rgba(255,255,255,.8)}
    .nav-search input{
      width:100%;
      border:0;
      outline:0;
      color:#fff;
      background:transparent;
      font-size:14px;
      box-shadow:none;
      margin:0;
      height:auto;
      padding:0;
    }
    .nav-search input::placeholder{color:rgba(255,255,255,.72)}
    .nav-cta{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:11px 16px;
      border-radius:999px;
      background:#fff;
      color:var(--color-primary-dark);
      font-weight:900;
      box-shadow:0 10px 24px rgba(0,0,0,.12);
    }
    .nav-cta:hover,.nav-cta:focus{
      transform:translateY(-2px);
      color:var(--color-primary-dark);
      box-shadow:0 16px 34px rgba(0,0,0,.18);
    }
    .menu-toggle{
      display:none;
      width:42px;height:42px;
      border:1px solid rgba(255,255,255,.28);
      border-radius:14px;
      background:rgba(255,255,255,.12);
      color:#fff;
      align-items:center;
      justify-content:center;
    }
    .menu-toggle:focus{outline:3px solid rgba(255,255,255,.35);outline-offset:2px}

    main{flex:1}
    .section{
      padding:82px 0;
      position:relative;
    }
    .section.compact{padding:60px 0}
    .section-alt{
      background:linear-gradient(180deg,rgba(241,245,249,.7),rgba(255,255,255,.95));
    }
    .section-head{
      display:flex;
      justify-content:space-between;
      align-items:flex-end;
      gap:24px;
      margin-bottom:30px;
    }
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      margin-bottom:12px;
      padding:7px 12px;
      border-radius:999px;
      color:var(--color-primary-dark);
      background:var(--color-primary-soft);
      font-weight:900;
      font-size:14px;
      letter-spacing:.02em;
    }
    .section-title{
      margin:0;
      color:var(--color-ink);
      font-size:clamp(28px,3.5vw,44px);
      line-height:1.2;
      letter-spacing:-.04em;
      font-weight:950;
    }
    .section-desc{
      max-width:680px;
      margin:12px 0 0;
      color:var(--color-muted);
      font-size:17px;
      line-height:1.9;
    }

    .hero{
      padding:58px 0 70px;
      overflow:hidden;
      background:
        linear-gradient(135deg,rgba(124,58,237,.10),rgba(6,182,212,.08) 50%,rgba(255,183,3,.09)),
        radial-gradient(circle at 50% 0%,rgba(255,255,255,.85),transparent 48%);
    }
    .hero-panel{
      border:1px solid rgba(148,163,184,.22);
      background:rgba(255,255,255,.78);
      box-shadow:var(--shadow-glow);
      border-radius:34px;
      padding:34px;
      backdrop-filter:blur(18px);
      position:relative;
      overflow:hidden;
    }
    .hero-panel::before{
      content:"";
      position:absolute;
      inset:-1px;
      background:
        radial-gradient(circle at 15% 20%,rgba(124,58,237,.16),transparent 24%),
        radial-gradient(circle at 82% 15%,rgba(6,182,212,.18),transparent 26%);
      pointer-events:none;
    }
    .hero-content{position:relative;z-index:1}
    .status-strip{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
      margin-bottom:26px;
      padding:12px 14px;
      border:1px solid rgba(124,58,237,.14);
      background:rgba(255,255,255,.72);
      border-radius:999px;
      box-shadow:0 8px 24px rgba(15,23,42,.06);
    }
    .status-left,.status-right{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
    }
    .pulse-dot{
      width:10px;height:10px;border-radius:50%;
      background:var(--color-success);
      box-shadow:0 0 0 7px rgba(22,163,74,.12);
    }
    .status-text{font-weight:900;color:var(--color-ink);font-size:14px}
    .status-chip{
      display:inline-flex;align-items:center;gap:6px;
      padding:7px 10px;
      border-radius:999px;
      background:#fff;
      color:var(--color-muted);
      border:1px solid var(--color-border);
      font-weight:800;
      font-size:13px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:28px;
      align-items:stretch;
    }
    .hero-copy{
      padding:10px 6px 4px;
    }
    h1{
      margin:0;
      color:var(--color-ink);
      font-size:clamp(34px,5vw,64px);
      line-height:1.08;
      letter-spacing:-.06em;
      font-weight:1000;
    }
    .hero-lead{
      margin:22px 0 0;
      max-width:760px;
      font-size:18px;
      color:#475569;
      line-height:1.95;
    }
    .hero-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:28px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      border:0;
      border-radius:999px;
      padding:14px 20px;
      min-height:50px;
      font-weight:950;
      line-height:1;
      transition:var(--ease);
      box-shadow:none;
    }
    .btn-primary{
      background:linear-gradient(135deg,var(--color-primary),var(--color-secondary));
      color:#fff;
      box-shadow:0 16px 34px rgba(124,58,237,.25);
    }
    .btn-primary:hover,.btn-primary:focus{
      transform:translateY(-2px);
      color:#fff;
      box-shadow:0 22px 46px rgba(124,58,237,.32);
    }
    .btn-secondary{
      background:#fff;
      color:var(--color-primary-dark);
      border:1px solid rgba(124,58,237,.18);
      box-shadow:0 10px 26px rgba(15,23,42,.06);
    }
    .btn-secondary:hover,.btn-secondary:focus{
      transform:translateY(-2px);
      color:var(--color-primary-dark);
      border-color:rgba(124,58,237,.38);
      box-shadow:0 16px 36px rgba(15,23,42,.1);
    }
    .btn-quiet{
      background:rgba(255,255,255,.68);
      color:var(--color-ink);
      border:1px solid var(--color-border);
    }
    .btn-quiet:hover,.btn-quiet:focus{background:#fff;transform:translateY(-2px);color:var(--color-ink)}
    .btn:focus-visible,.input-control:focus,.report-form textarea:focus{
      outline:3px solid rgba(124,58,237,.22);
      outline-offset:3px;
    }
    .metric-row{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
      margin-top:28px;
      max-width:760px;
    }
    .metric{
      padding:14px;
      border-radius:18px;
      border:1px solid rgba(148,163,184,.22);
      background:rgba(255,255,255,.72);
    }
    .metric strong{
      display:block;
      color:var(--color-ink);
      font-size:24px;
      line-height:1.1;
      font-weight:1000;
    }
    .metric span{
      display:block;
      margin-top:5px;
      color:var(--color-muted);
      font-size:13px;
      font-weight:800;
    }
    .icon-matrix{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:14px;
      align-content:center;
    }
    .icon-tile{
      min-height:126px;
      border-radius:24px;
      border:1px solid rgba(148,163,184,.22);
      background:rgba(255,255,255,.76);
      box-shadow:0 16px 38px rgba(15,23,42,.07);
      padding:18px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      transition:var(--ease);
    }
    .icon-tile:nth-child(2n){transform:translateY(14px)}
    .icon-tile:hover{
      transform:translateY(-3px);
      box-shadow:0 20px 46px rgba(124,58,237,.16);
      border-color:rgba(124,58,237,.22);
    }
    .icon-tile:nth-child(2n):hover{transform:translateY(9px)}
    .tile-icon{
      width:42px;height:42px;border-radius:16px;
      display:grid;place-items:center;
      background:var(--color-primary-soft);
      color:var(--color-primary-dark);
      font-size:18px;
    }
    .icon-tile strong{color:var(--color-ink);font-weight:950;line-height:1.35}
    .icon-tile small{color:var(--color-muted);font-weight:800}

    .story-band{
      margin-top:28px;
      display:grid;
      grid-template-columns:1.2fr .8fr;
      gap:18px;
    }
    .story-card{
      border-radius:24px;
      padding:22px;
      color:#fff;
      background:linear-gradient(135deg,#1e1b4b,#6d28d9 58%,#0891b2);
      box-shadow:var(--shadow-md);
      position:relative;
      overflow:hidden;
    }
    .story-card::after{
      content:"";
      position:absolute;right:-50px;top:-50px;
      width:160px;height:160px;border-radius:50%;
      background:rgba(255,255,255,.14);
    }
    .story-card h2,.notice-card h2{
      margin:0 0 10px;
      font-size:24px;
      color:inherit;
      font-weight:1000;
      letter-spacing:-.03em;
    }
    .story-card p,.notice-card p{margin:0;color:rgba(255,255,255,.86)}
    .notice-card{
      border-radius:24px;
      padding:22px;
      background:#fff;
      border:1px solid var(--color-border);
      box-shadow:var(--shadow-sm);
    }
    .notice-card h2{color:var(--color-ink)}
    .notice-card p{color:var(--color-muted)}

    .process-layout{
      display:grid;
      grid-template-columns:.8fr 1.2fr;
      gap:28px;
      align-items:start;
    }
    .process-note{
      position:sticky;
      top:100px;
      padding:26px;
      border-radius:28px;
      background:linear-gradient(180deg,#fff,#f8f5ff);
      border:1px solid rgba(124,58,237,.14);
      box-shadow:var(--shadow-sm);
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:7px 12px;
      border-radius:999px;
      background:rgba(6,182,212,.1);
      color:#0e7490;
      font-size:13px;
      font-weight:950;
    }
    .process-note h3{margin:16px 0 10px;color:var(--color-ink);font-size:25px;font-weight:1000}
    .process-note p{margin:0;color:var(--color-muted)}
    .step-list{
      display:grid;
      gap:16px;
      counter-reset:step;
    }
    .step-card{
      display:grid;
      grid-template-columns:auto 1fr;
      gap:16px;
      align-items:start;
      padding:22px;
      border-radius:24px;
      background:#fff;
      border:1px solid var(--color-border);
      box-shadow:var(--shadow-sm);
      transition:var(--ease);
    }
    .step-card:hover{
      transform:translateY(-3px);
      border-color:rgba(124,58,237,.25);
      box-shadow:var(--shadow-md);
    }
    .step-num{
      width:44px;height:44px;border-radius:16px;
      display:grid;place-items:center;
      background:linear-gradient(135deg,var(--color-primary),var(--color-secondary));
      color:#fff;
      font-weight:1000;
      box-shadow:0 12px 24px rgba(124,58,237,.22);
    }
    .step-card h3{margin:0 0 6px;color:var(--color-ink);font-size:20px;font-weight:1000}
    .step-card p{margin:0;color:var(--color-muted);line-height:1.75}

    .signal-board{
      border:1px solid var(--color-border);
      background:#fff;
      box-shadow:var(--shadow-sm);
      border-radius:28px;
      overflow:hidden;
    }
    .signal-row{
      display:grid;
      grid-template-columns:1.1fr .8fr .7fr auto;
      gap:16px;
      align-items:center;
      padding:18px 22px;
      border-bottom:1px solid var(--color-border);
      transition:var(--ease);
    }
    .signal-row:last-child{border-bottom:0}
    .signal-row:hover{background:#faf5ff}
    .signal-title{
      display:flex;
      align-items:center;
      gap:12px;
      color:var(--color-ink);
      font-weight:1000;
    }
    .signal-icon{
      width:38px;height:38px;border-radius:14px;
      display:grid;place-items:center;
      background:var(--color-primary-soft);
      color:var(--color-primary-dark);
      flex:0 0 auto;
    }
    .signal-meta{color:var(--color-muted);font-weight:800}
    .status-pill{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      white-space:nowrap;
      border-radius:999px;
      padding:7px 11px;
      font-size:13px;
      font-weight:950;
    }
    .status-danger{background:rgba(239,68,68,.1);color:#b91c1c}
    .status-progress{background:rgba(255,183,3,.16);color:#92400e}
    .status-done{background:rgba(22,163,74,.1);color:#15803d}

    .news-layout{
      display:grid;
      grid-template-columns:1.35fr .65fr;
      gap:24px;
      align-items:start;
    }
    .news-list{
      border-radius:28px;
      background:#fff;
      border:1px solid var(--color-border);
      box-shadow:var(--shadow-sm);
      overflow:hidden;
    }
    .news-item{
      display:grid;
      grid-template-columns:auto 1fr auto;
      gap:16px;
      align-items:center;
      padding:19px 22px;
      border-bottom:1px solid var(--color-border);
      transition:var(--ease);
    }
    .news-item:last-child{border-bottom:0}
    .news-item:hover{background:#f8fafc}
    .news-date{
      min-width:68px;
      text-align:center;
      border-radius:16px;
      padding:9px 10px;
      background:var(--color-primary-soft);
      color:var(--color-primary-dark);
      font-weight:1000;
      line-height:1.25;
    }
    .news-date small{display:block;font-size:12px;color:#6d28d9}
    .news-link{
      color:var(--color-ink);
      font-weight:950;
      line-height:1.5;
    }
    .news-link:hover{color:var(--color-primary-dark)}
    .news-summary{
      margin:4px 0 0;
      color:var(--color-muted);
      font-size:14px;
      line-height:1.6;
    }
    .arrow{
      width:38px;height:38px;border-radius:14px;
      display:grid;place-items:center;
      background:#f8fafc;
      color:var(--color-muted);
      transition:var(--ease);
    }
    .news-item:hover .arrow{background:var(--color-primary);color:#fff;transform:translateX(3px)}
    .recommend-card{
      border-radius:28px;
      padding:24px;
      background:linear-gradient(180deg,#172033,#312e81);
      color:#fff;
      box-shadow:var(--shadow-md);
    }
    .recommend-card h3{margin:0 0 12px;color:#fff;font-size:24px;font-weight:1000}
    .recommend-card p{margin:0;color:rgba(255,255,255,.78)}
    .recommend-list{
      margin:20px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:12px;
    }
    .recommend-list li{
      display:flex;gap:10px;align-items:flex-start;
      color:rgba(255,255,255,.88);
      font-weight:800;
    }
    .recommend-list i{margin-top:6px;color:var(--color-accent)}

    .promise-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:16px;
    }
    .promise-card{
      padding:22px;
      border-radius:24px;
      background:#fff;
      border:1px solid var(--color-border);
      box-shadow:var(--shadow-sm);
      min-height:210px;
      transition:var(--ease);
    }
    .promise-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md);border-color:rgba(124,58,237,.22)}
    .promise-card i{
      width:46px;height:46px;border-radius:17px;
      display:grid;place-items:center;
      background:linear-gradient(135deg,rgba(124,58,237,.13),rgba(6,182,212,.13));
      color:var(--color-primary-dark);
      font-size:19px;
      margin-bottom:15px;
    }
    .promise-card h3{margin:0 0 8px;color:var(--color-ink);font-size:19px;font-weight:1000}
    .promise-card p{margin:0;color:var(--color-muted);font-size:15px;line-height:1.75}

    .demo-box{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:24px;
      align-items:stretch;
    }
    .demo-panel{
      border-radius:30px;
      border:1px solid var(--color-border);
      background:#fff;
      box-shadow:var(--shadow-sm);
      padding:26px;
    }
    .demo-panel.dark{
      color:#fff;
      background:
        radial-gradient(circle at 85% 12%,rgba(6,182,212,.28),transparent 28%),
        linear-gradient(135deg,#111827,#4c1d95);
      border-color:rgba(255,255,255,.12);
    }
    .demo-panel h3{margin:0 0 12px;color:var(--color-ink);font-size:25px;font-weight:1000}
    .demo-panel.dark h3{color:#fff}
    .demo-panel p{margin:0;color:var(--color-muted)}
    .demo-panel.dark p{color:rgba(255,255,255,.76)}
    .timeline{
      margin-top:22px;
      display:grid;
      gap:14px;
    }
    .timeline-item{
      display:flex;
      gap:12px;
      align-items:flex-start;
    }
    .timeline-dot{
      width:14px;height:14px;border-radius:50%;
      background:var(--color-secondary);
      margin-top:8px;
      box-shadow:0 0 0 7px rgba(6,182,212,.12);
      flex:0 0 auto;
    }
    .timeline-item strong{display:block;color:inherit;font-weight:1000}
    .timeline-item span{display:block;color:inherit;opacity:.76;font-size:14px;line-height:1.65}

    .faq-wrap{
      display:grid;
      grid-template-columns:.8fr 1.2fr;
      gap:28px;
      align-items:start;
    }
    .faq-intro{
      padding:26px;
      border-radius:28px;
      background:#fff;
      border:1px solid var(--color-border);
      box-shadow:var(--shadow-sm);
    }
    .faq-intro h2{margin:0 0 12px;color:var(--color-ink);font-size:31px;font-weight:1000;letter-spacing:-.04em}
    .faq-intro p{margin:0;color:var(--color-muted)}
    .accordion{
      margin:0;
      background:transparent;
    }
    .accordion-item{
      border:1px solid var(--color-border);
      border-radius:20px;
      overflow:hidden;
      margin-bottom:12px;
      background:#fff;
      box-shadow:0 8px 22px rgba(15,23,42,.05);
    }
    .accordion-title{
      border:0 !important;
      color:var(--color-ink) !important;
      font-weight:1000;
      padding:20px 52px 20px 20px;
      font-size:17px;
      line-height:1.5;
      background:#fff;
    }
    .accordion-title:hover,.accordion-title:focus{background:#faf5ff;color:var(--color-primary-dark) !important}
    .accordion-content{
      border:0 !important;
      color:var(--color-muted);
      padding:0 20px 20px;
      line-height:1.85;
    }

    .entry{
      padding-bottom:92px;
    }
    .entry-card{
      display:grid;
      grid-template-columns:.88fr 1.12fr;
      gap:24px;
      border-radius:34px;
      overflow:hidden;
      border:1px solid rgba(124,58,237,.16);
      background:#fff;
      box-shadow:var(--shadow-glow);
    }
    .entry-left{
      padding:34px;
      color:#fff;
      background:
        radial-gradient(circle at 20% 15%,rgba(255,255,255,.18),transparent 28%),
        linear-gradient(145deg,#5b21b6,#7c3aed 55%,#0891b2);
    }
    .entry-left h2{margin:0 0 14px;color:#fff;font-size:34px;font-weight:1000;letter-spacing:-.04em}
    .entry-left p{margin:0;color:rgba(255,255,255,.82)}
    .entry-tips{
      list-style:none;
      padding:0;
      margin:24px 0 0;
      display:grid;
      gap:12px;
    }
    .entry-tips li{display:flex;align-items:flex-start;gap:10px;color:rgba(255,255,255,.9);font-weight:800}
    .entry-tips i{margin-top:6px;color:var(--color-accent)}
    .report-form{
      padding:34px;
      display:grid;
      gap:14px;
    }
    .form-row{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:14px;
    }
    .form-field label{
      display:block;
      margin-bottom:7px;
      color:var(--color-ink);
      font-weight:950;
      font-size:14px;
    }
    .input-control,.report-form textarea{
      width:100%;
      border:1px solid var(--color-border);
      border-radius:16px;
      background:#f8fafc;
      color:var(--color-ink);
      padding:13px 14px;
      min-height:48px;
      box-shadow:none;
      margin:0;
      transition:var(--ease);
    }
    .input-control:hover,.report-form textarea:hover{border-color:rgba(124,58,237,.28);background:#fff}
    .report-form textarea{min-height:120px;resize:vertical}
    .form-help{
      margin:0;
      color:var(--color-muted);
      font-size:13px;
      line-height:1.6;
    }
    .form-alert{
      display:flex;
      gap:10px;
      padding:13px 14px;
      border-radius:18px;
      background:rgba(239,68,68,.08);
      color:#991b1b;
      font-weight:800;
      line-height:1.6;
    }
    .form-alert i{margin-top:5px}
    .form-actions{display:flex;align-items:center;gap:12px;flex-wrap:wrap;margin-top:4px}

    .site-footer{
      background:
        radial-gradient(circle at 12% 0%,rgba(124,58,237,.25),transparent 26%),
        linear-gradient(180deg,#111827,#0b1020);
      color:rgba(255,255,255,.78);
      padding:48px 0 28px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr .8fr;
      gap:30px;
      align-items:start;
    }
    .footer-brand{
      display:flex;align-items:center;gap:12px;
      color:#fff;font-weight:1000;font-size:18px;
      margin-bottom:14px;
    }
    .footer-brand .brand-mark{background:rgba(255,255,255,.12)}
    .footer-text{margin:0;max-width:560px;color:rgba(255,255,255,.68);line-height:1.85}
    .footer-title{margin:0 0 14px;color:#fff;font-size:16px;font-weight:1000}
    .footer-links{display:grid;gap:10px}
    .footer-links a{
      color:rgba(255,255,255,.72);
      font-weight:800;
      width:max-content;
    }
    .footer-links a:hover,.footer-links a:focus{color:#fff;transform:translateX(3px)}
    .footer-bottom{
      margin-top:34px;
      padding-top:22px;
      border-top:1px solid rgba(255,255,255,.12);
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      color:rgba(255,255,255,.55);
      font-size:14px;
    }

    .floating-cta{
      position:fixed;
      right:18px;
      bottom:18px;
      z-index:40;
      display:flex;
      align-items:center;
      gap:10px;
      padding:12px 16px;
      border-radius:999px;
      background:linear-gradient(135deg,var(--color-primary),var(--color-secondary));
      color:#fff;
      font-weight:1000;
      box-shadow:0 18px 44px rgba(124,58,237,.3);
    }
    .floating-cta:hover,.floating-cta:focus{color:#fff;transform:translateY(-3px)}

    @media (max-width:1024px){
      .nav-search{display:none}
      .brand-text{max-width:300px}
      .hero-grid,.process-layout,.news-layout,.demo-box,.faq-wrap,.entry-card,.story-band{grid-template-columns:1fr}
      .process-note{position:relative;top:auto}
      .promise-grid{grid-template-columns:repeat(2,1fr)}
      .signal-row{grid-template-columns:1fr 1fr;gap:10px}
      .signal-row .status-pill{justify-self:start}
      .icon-tile:nth-child(2n){transform:none}
      .icon-tile:nth-child(2n):hover{transform:translateY(-3px)}
    }
    @media (max-width:768px){
      :root{--nav-height:66px}
      .container{width:min(calc(100% - 28px),var(--container))}
      .menu-toggle{display:flex}
      .main-nav{
        position:absolute;
        left:14px;right:14px;top:calc(var(--nav-height) + 10px);
        display:none;
        flex-direction:column;
        align-items:stretch;
        gap:8px;
        padding:14px;
        border-radius:22px;
        background:rgba(45,27,105,.96);
        box-shadow:0 20px 50px rgba(0,0,0,.24);
        backdrop-filter:blur(16px);
      }
      .main-nav.is-open{display:flex}
      .nav-link,.nav-cta{justify-content:center;text-align:center}
      .brand-text{max-width:220px;font-size:15px}
      .hero{padding:34px 0 50px}
      .hero-panel{padding:22px;border-radius:26px}
      .status-strip{border-radius:22px;align-items:flex-start}
      .icon-matrix{grid-template-columns:repeat(2,1fr)}
      .metric-row{grid-template-columns:1fr}
      .section{padding:58px 0}
      .section-head{display:block}
      .promise-grid{grid-template-columns:1fr}
      .news-item{grid-template-columns:1fr;gap:8px}
      .arrow{display:none}
      .footer-grid{grid-template-columns:1fr}
      .form-row{grid-template-columns:1fr}
      .entry-left,.report-form{padding:24px}
      .floating-cta{left:14px;right:14px;justify-content:center}
    }
    @media (max-width:520px){
      body{font-size:15px}
      .brand-mark{width:38px;height:38px;border-radius:14px}
      .brand-text{max-width:180px}
      .hero-actions .btn,.form-actions .btn{width:100%}
      .icon-matrix{grid-template-columns:1fr}
      .icon-tile{min-height:auto;gap:16px}
      .signal-row{grid-template-columns:1fr}
      .section-title{font-size:29px}
      .hero-lead,.section-desc{font-size:16px}
      .footer-bottom{padding-bottom:58px}
    }
