/* roulang page: index */
:root{
      --bg:#070a12;
      --bg-2:#0b1020;
      --panel:#11182b;
      --panel-2:#151f36;
      --text:#f5f7fb;
      --muted:#a8b3ca;
      --soft:#d8deeb;
      --line:rgba(255,255,255,.12);
      --line-strong:rgba(255,255,255,.22);
      --brand:#ff334e;
      --brand-2:#ff7a1a;
      --green:#42d392;
      --warning:#ffd166;
      --radius-xl:28px;
      --radius-lg:22px;
      --radius-md:16px;
      --shadow:0 26px 90px rgba(0,0,0,.38);
      --shadow-soft:0 16px 42px rgba(0,0,0,.2);
      --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 12% 8%, rgba(255,51,78,.20), transparent 34%),
        radial-gradient(circle at 85% 2%, rgba(255,122,26,.18), transparent 28%),
        linear-gradient(180deg,#070a12 0%,#0b1020 48%,#080b13 100%);
      line-height:1.7;
      overflow-x:hidden;
    }
    body:before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      opacity:.35;
      background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
      background-size:44px 44px;
      mask-image:linear-gradient(to bottom,rgba(0,0,0,.85),transparent 78%);
      z-index:-1;
    }
    a{color:inherit;text-decoration:none}
    img{display:block;max-width:100%}
    button,input,select,textarea{font:inherit}
    button{cursor:pointer}
    ::selection{background:rgba(255,51,78,.75);color:#fff}
    .container{
      width:min(var(--container), calc(100% - 40px));
      margin-inline:auto;
    }
    .skip-link{
      position:absolute;
      left:-999px;
      top:10px;
      background:#fff;
      color:#111;
      padding:10px 14px;
      border-radius:12px;
      z-index:50;
    }
    .skip-link:focus{left:14px}
    .site-header{
      position:sticky;
      top:0;
      z-index:40;
      background:linear-gradient(100deg, rgba(12,17,34,.96), rgba(161,28,46,.96) 52%, rgba(255,122,26,.94));
      border-bottom:1px solid rgba(255,255,255,.16);
      box-shadow:0 14px 42px rgba(0,0,0,.24);
      backdrop-filter:blur(18px);
    }
    .nav-inner{
      min-height:74px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:22px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      font-weight:900;
      letter-spacing:.01em;
      color:#fff;
      min-width:0;
    }
    .brand-mark{
      width:42px;
      height:42px;
      border-radius:14px;
      display:grid;
      place-items:center;
      background:rgba(255,255,255,.14);
      border:1px solid rgba(255,255,255,.26);
      box-shadow:inset 0 0 22px rgba(255,255,255,.12);
      flex:0 0 auto;
    }
    .brand-mark span{
      width:17px;
      height:17px;
      border-radius:50%;
      background:#fff;
      box-shadow:13px 0 0 rgba(255,255,255,.54), 0 13px 0 rgba(255,255,255,.32);
      transform:translate(-5px,-5px);
    }
    .brand-text{
      font-size:18px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .nav-menu{
      display:flex;
      align-items:center;
      gap:8px;
      margin-left:auto;
    }
    .nav-link{
      padding:10px 14px;
      border-radius:999px;
      color:rgba(255,255,255,.88);
      font-weight:700;
      font-size:15px;
      transition:.22s ease;
      position:relative;
    }
    .nav-link:hover,.nav-link.active{
      background:rgba(255,255,255,.14);
      color:#fff;
    }
    .nav-link.active:after{
      content:"";
      position:absolute;
      left:16px;
      right:16px;
      bottom:5px;
      height:2px;
      border-radius:999px;
      background:#fff;
      opacity:.88;
    }
    .nav-cta{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:11px 16px;
      border-radius:999px;
      background:#fff;
      color:#15121c;
      font-weight:900;
      border:1px solid rgba(255,255,255,.55);
      box-shadow:0 12px 28px rgba(0,0,0,.18);
      transition:.22s ease;
      white-space:nowrap;
    }
    .nav-cta:hover{transform:translateY(-2px);box-shadow:0 18px 34px rgba(0,0,0,.25)}
    .mobile-toggle{
      display:none;
      width:44px;height:44px;border:0;border-radius:14px;
      color:#fff;background:rgba(255,255,255,.14);
      border:1px solid rgba(255,255,255,.22);
    }
    .mobile-toggle span{
      display:block;width:20px;height:2px;margin:5px auto;background:#fff;border-radius:99px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      min-height:48px;
      padding:13px 18px;
      border-radius:999px;
      font-weight:900;
      letter-spacing:.01em;
      border:1px solid transparent;
      transition:transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
      user-select:none;
    }
    .btn:focus-visible,.nav-link:focus-visible,.nav-cta:focus-visible,.mobile-toggle:focus-visible,input:focus-visible,button:focus-visible{
      outline:3px solid rgba(255,209,102,.85);
      outline-offset:3px;
    }
    .btn-primary{
      background:linear-gradient(135deg,var(--brand),var(--brand-2));
      color:#fff;
      box-shadow:0 18px 40px rgba(255,51,78,.28);
    }
    .btn-primary:hover{transform:translateY(-2px);box-shadow:0 24px 54px rgba(255,51,78,.36)}
    .btn-ghost{
      background:rgba(255,255,255,.08);
      border-color:rgba(255,255,255,.18);
      color:#fff;
    }
    .btn-ghost:hover{background:rgba(255,255,255,.13);transform:translateY(-2px)}
    .btn-dark{
      background:#111827;color:#fff;border-color:rgba(255,255,255,.1);
    }
    .btn-dark:hover{background:#0b1020;transform:translateY(-2px)}
    .badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 11px;
      border-radius:999px;
      background:rgba(255,51,78,.12);
      color:#ffd7dc;
      border:1px solid rgba(255,51,78,.28);
      font-size:13px;
      font-weight:800;
    }
    .badge:before{
      content:"";
      width:8px;height:8px;border-radius:50%;
      background:var(--brand);
      box-shadow:0 0 0 5px rgba(255,51,78,.13);
    }
    .section{
      padding:82px 0;
      position:relative;
    }
    .section-tight{padding:54px 0}
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:26px;
      margin-bottom:34px;
    }
    .section-kicker{
      color:#ffb199;
      font-weight:900;
      letter-spacing:.12em;
      font-size:13px;
      text-transform:uppercase;
      margin-bottom:10px;
    }
    .section-title{
      margin:0;
      font-size:clamp(28px,4vw,46px);
      line-height:1.14;
      letter-spacing:-.04em;
      font-weight:950;
    }
    .section-desc{
      margin:12px 0 0;
      color:var(--muted);
      max-width:720px;
      font-size:16px;
    }
    .hero{
      padding:72px 0 48px;
    }
    .hero-shell{
      border:1px solid rgba(255,255,255,.14);
      border-radius:34px;
      overflow:hidden;
      background:
        linear-gradient(140deg, rgba(255,51,78,.18), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
      box-shadow:var(--shadow);
      position:relative;
    }
    .hero-shell:after{
      content:"";
      position:absolute;
      inset:auto -80px -130px auto;
      width:340px;height:340px;border-radius:50%;
      background:radial-gradient(circle,rgba(255,122,26,.35),transparent 68%);
      filter:blur(8px);
    }
    .hero-top{
      display:grid;
      grid-template-columns:1.06fr .94fr;
      gap:0;
      min-height:520px;
      position:relative;
      z-index:1;
    }
    .hero-copy{
      padding:56px;
      display:flex;
      flex-direction:column;
      justify-content:center;
    }
    .pain-line{
      display:inline-flex;
      width:max-content;
      max-width:100%;
      align-items:center;
      gap:10px;
      padding:9px 13px;
      border-radius:999px;
      background:rgba(0,0,0,.24);
      border:1px solid rgba(255,255,255,.12);
      color:#ffe2d8;
      font-weight:800;
      font-size:14px;
      margin-bottom:18px;
    }
    .pain-line i{
      width:10px;height:10px;border-radius:50%;background:var(--brand);
      box-shadow:0 0 18px rgba(255,51,78,.9);
      flex:0 0 auto;
    }
    h1{
      font-size:clamp(40px,7vw,78px);
      line-height:.98;
      letter-spacing:-.07em;
      margin:0;
      font-weight:1000;
    }
    .hero-copy p{
      color:#cfd6e7;
      font-size:18px;
      max-width:680px;
      margin:22px 0 0;
    }
    .hero-actions{
      display:flex;
      align-items:center;
      flex-wrap:wrap;
      gap:14px;
      margin-top:30px;
    }
    .hero-points{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
      margin-top:34px;
      max-width:720px;
    }
    .hero-point{
      padding:14px;
      border:1px solid rgba(255,255,255,.12);
      border-radius:18px;
      background:rgba(0,0,0,.18);
    }
    .hero-point strong{
      display:block;
      font-size:24px;
      color:#fff;
      line-height:1.1;
    }
    .hero-point span{
      color:var(--muted);
      font-size:13px;
      display:block;
      margin-top:5px;
    }
    .demo-stage{
      padding:34px 34px 34px 0;
      display:flex;
      align-items:center;
    }
    .demo-console{
      width:100%;
      min-height:410px;
      border-radius:28px;
      background:#080d18;
      border:1px solid rgba(255,255,255,.14);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.08), 0 24px 60px rgba(0,0,0,.32);
      overflow:hidden;
    }
    .console-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:16px 18px;
      border-bottom:1px solid rgba(255,255,255,.1);
      background:rgba(255,255,255,.04);
    }
    .dots{display:flex;gap:7px}
    .dots span{width:10px;height:10px;border-radius:50%;background:#ff5f57}
    .dots span:nth-child(2){background:#ffbd2e}
    .dots span:nth-child(3){background:#28c840}
    .status-pill{
      font-size:12px;
      color:#98f5c0;
      padding:6px 10px;
      border-radius:999px;
      background:rgba(66,211,146,.1);
      border:1px solid rgba(66,211,146,.22);
      font-weight:800;
    }
    .console-body{padding:20px}
    .signal-row{
      display:grid;
      grid-template-columns:118px 1fr 68px;
      gap:12px;
      align-items:center;
      padding:13px 0;
      border-bottom:1px solid rgba(255,255,255,.08);
    }
    .signal-row:last-child{border-bottom:0}
    .signal-label{color:#e9edf7;font-weight:800;font-size:14px}
    .bar{
      height:12px;border-radius:999px;background:rgba(255,255,255,.08);overflow:hidden;
      border:1px solid rgba(255,255,255,.06);
    }
    .bar span{
      display:block;height:100%;border-radius:999px;
      background:linear-gradient(90deg,var(--brand),var(--brand-2));
      box-shadow:0 0 22px rgba(255,51,78,.35);
    }
    .signal-value{font-size:13px;color:#fff;text-align:right;font-weight:900}
    .subtitle-panel{
      margin-top:20px;
      border:1px solid rgba(255,255,255,.11);
      border-radius:22px;
      background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.03));
      padding:18px;
    }
    .subtitle-line{
      padding:12px 0;
      border-bottom:1px dashed rgba(255,255,255,.13);
    }
    .subtitle-line:last-child{border-bottom:0}
    .subtitle-line b{color:#fff}
    .subtitle-line span{display:block;color:#aeb9cf;font-size:13px;margin-top:2px}
    .console-foot{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:12px;
      margin-top:16px;
    }
    .mini-card{
      padding:14px;
      border-radius:18px;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.1);
    }
    .mini-card small{display:block;color:var(--muted);font-weight:700}
    .mini-card strong{font-size:21px;color:#fff}
    .count-wrap{
      display:grid;
      grid-template-columns:.8fr 1.2fr;
      gap:24px;
      align-items:stretch;
    }
    .count-intro,.count-board,.card{
      border:1px solid var(--line);
      background:linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.035));
      border-radius:var(--radius-xl);
      box-shadow:var(--shadow-soft);
    }
    .count-intro{padding:28px}
    .count-intro p{color:var(--muted);margin:12px 0 0}
    .count-board{
      padding:24px;
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
    }
    .time-box{
      min-height:122px;
      display:flex;
      flex-direction:column;
      justify-content:center;
      align-items:center;
      border-radius:22px;
      background:#0b1020;
      border:1px solid rgba(255,255,255,.12);
      position:relative;
      overflow:hidden;
    }
    .time-box:after{
      content:"";
      position:absolute;
      inset:auto 0 0;
      height:4px;
      background:linear-gradient(90deg,var(--brand),var(--brand-2));
    }
    .time-box strong{font-size:42px;line-height:1;font-weight:1000}
    .time-box span{color:var(--muted);font-weight:800;margin-top:8px}
    .highlights-layout{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:22px;
    }
    .feature-wall{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:16px;
    }
    .feature-card{
      padding:22px;
      min-height:172px;
      border:1px solid var(--line);
      border-radius:24px;
      background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.032));
      transition:.22s ease;
      position:relative;
      overflow:hidden;
    }
    .feature-card:hover{
      transform:translateY(-5px);
      border-color:rgba(255,122,26,.38);
      box-shadow:0 22px 52px rgba(0,0,0,.28);
    }
    .feature-card:before{
      content:"";
      position:absolute;
      top:18px;right:18px;
      width:9px;height:9px;border-radius:50%;
      background:var(--brand);
      box-shadow:0 0 18px rgba(255,51,78,.8);
    }
    .feature-card h3,.plan-card h3,.info-card h3,.faq-item h3{
      margin:0;
      font-size:19px;
      font-weight:950;
      letter-spacing:-.02em;
    }
    .feature-card p,.plan-card p,.info-card p,.faq-item p{
      color:var(--muted);
      margin:10px 0 0;
      font-size:15px;
    }
    .focus-panel{
      padding:26px;
      border-radius:28px;
      background:
        linear-gradient(160deg,rgba(255,51,78,.18),rgba(255,255,255,.04)),
        #11182b;
      border:1px solid rgba(255,255,255,.13);
      min-height:100%;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      overflow:hidden;
      position:relative;
    }
    .focus-panel:after{
      content:"";
      position:absolute;
      right:-80px;bottom:-90px;
      width:210px;height:210px;border-radius:50%;
      background:rgba(255,122,26,.25);
      filter:blur(2px);
    }
    .focus-list{display:grid;gap:12px;margin-top:24px;position:relative;z-index:1}
    .focus-list li{
      list-style:none;
      display:flex;
      gap:12px;
      align-items:flex-start;
      color:#dce3f3;
      padding:13px 14px;
      border-radius:16px;
      background:rgba(0,0,0,.18);
      border:1px solid rgba(255,255,255,.1);
    }
    .focus-list li:before{
      content:"✓";
      width:24px;height:24px;border-radius:8px;
      display:grid;place-items:center;
      background:rgba(66,211,146,.14);
      color:#7bf0b0;
      font-weight:900;
      flex:0 0 auto;
    }
    .plans{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px;
    }
    .plan-card{
      padding:26px;
      border:1px solid var(--line);
      border-radius:28px;
      background:rgba(255,255,255,.055);
      position:relative;
      transition:.22s ease;
    }
    .plan-card:hover{transform:translateY(-5px);border-color:rgba(255,255,255,.26);box-shadow:var(--shadow-soft)}
    .plan-card.recommend{
      background:linear-gradient(180deg,rgba(255,51,78,.20),rgba(255,255,255,.055));
      border-color:rgba(255,51,78,.4);
      box-shadow:0 26px 70px rgba(255,51,78,.16);
    }
    .plan-tag{
      position:absolute;
      top:18px;right:18px;
      padding:6px 10px;
      border-radius:999px;
      background:rgba(255,122,26,.16);
      color:#ffd3b0;
      border:1px solid rgba(255,122,26,.28);
      font-size:12px;
      font-weight:900;
    }
    .price{
      display:flex;
      align-items:flex-end;
      gap:8px;
      margin:20px 0 18px;
    }
    .price strong{font-size:38px;line-height:1;font-weight:1000}
    .price span{color:var(--muted);font-size:14px}
    .check-list{display:grid;gap:11px;margin:20px 0 24px;padding:0}
    .check-list li{
      list-style:none;
      color:#d7deee;
      display:flex;
      gap:10px;
      align-items:flex-start;
      font-size:14px;
    }
    .check-list li:before{content:"●";color:var(--brand);font-size:12px;margin-top:2px}
    .data-grid{
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:22px;
    }
    .kpi-panel{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:14px;
    }
    .kpi{
      padding:22px;
      border-radius:24px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.055);
    }
    .kpi strong{
      display:block;
      font-size:34px;
      line-height:1;
      font-weight:1000;
    }
    .kpi span{display:block;color:var(--muted);margin-top:9px;font-size:14px}
    .chart-card{
      padding:26px;
      border-radius:28px;
      background:#0b1020;
      border:1px solid rgba(255,255,255,.12);
      overflow:hidden;
    }
    .chart-bars{display:grid;gap:16px;margin-top:22px}
    .chart-row{
      display:grid;
      grid-template-columns:126px 1fr 42px;
      gap:14px;
      align-items:center;
      color:#dfe5f4;
      font-weight:800;
      font-size:14px;
    }
    .timeline{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:16px;
      counter-reset:step;
    }
    .time-node{
      position:relative;
      padding:24px;
      min-height:190px;
      border:1px solid var(--line);
      border-radius:26px;
      background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.03));
    }
    .time-node:before{
      counter-increment:step;
      content:"0" counter(step);
      display:inline-flex;
      width:44px;height:44px;
      align-items:center;justify-content:center;
      border-radius:15px;
      background:rgba(255,51,78,.14);
      color:#ffc3cb;
      font-weight:1000;
      border:1px solid rgba(255,51,78,.28);
      margin-bottom:18px;
    }
    .time-node h3{margin:0;font-size:18px;font-weight:950}
    .time-node p{margin:9px 0 0;color:var(--muted);font-size:14px}
    .info-layout{
      display:grid;
      grid-template-columns:1.35fr .65fr;
      gap:22px;
    }
    .news-list{
      border:1px solid var(--line);
      border-radius:28px;
      overflow:hidden;
      background:rgba(255,255,255,.05);
    }
    .news-item{
      display:grid;
      grid-template-columns:120px 1fr auto;
      gap:18px;
      align-items:center;
      padding:20px 22px;
      border-bottom:1px solid rgba(255,255,255,.09);
      transition:.2s ease;
    }
    .news-item:last-child{border-bottom:0}
    .news-item:hover{background:rgba(255,255,255,.06)}
    .news-date{
      color:#ffb199;
      font-weight:900;
      font-size:13px;
      letter-spacing:.04em;
    }
    .news-title{
      font-weight:900;
      color:#fff;
      line-height:1.4;
    }
    .news-text{color:var(--muted);font-size:14px;margin-top:4px}
    .news-arrow{
      width:34px;height:34px;border-radius:50%;
      display:grid;place-items:center;
      background:rgba(255,255,255,.08);
      color:#fff;
      transition:.2s ease;
    }
    .news-item:hover .news-arrow{background:var(--brand);transform:translateX(3px)}
    .info-card{
      padding:24px;
      border:1px solid var(--line);
      border-radius:28px;
      background:linear-gradient(180deg,rgba(255,122,26,.12),rgba(255,255,255,.045));
    }
    .directory-list{display:grid;gap:10px;margin-top:18px}
    .directory{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:13px 14px;
      border-radius:16px;
      background:rgba(0,0,0,.18);
      border:1px solid rgba(255,255,255,.09);
      color:#dfe5f4;
      font-size:14px;
    }
    .directory b{color:#fff}
    .cta-panel{
      display:grid;
      grid-template-columns:1fr .86fr;
      gap:28px;
      padding:34px;
      border-radius:34px;
      background:
        linear-gradient(130deg,rgba(255,51,78,.28),rgba(255,122,26,.18) 42%,rgba(255,255,255,.065)),
        #11182b;
      border:1px solid rgba(255,255,255,.16);
      box-shadow:var(--shadow);
      overflow:hidden;
      position:relative;
    }
    .cta-panel:before{
      content:"";
      position:absolute;
      inset:-1px;
      background:linear-gradient(90deg,transparent,rgba(255,255,255,.08),transparent);
      pointer-events:none;
    }
    .cta-copy{position:relative;z-index:1}
    .cta-copy h2{margin:0;font-size:clamp(30px,4.5vw,52px);line-height:1.08;letter-spacing:-.045em;font-weight:1000}
    .cta-copy p{color:#e1e6f2;margin:16px 0 0;max-width:720px}
    .signup-form{
      position:relative;
      z-index:1;
      padding:22px;
      border-radius:26px;
      background:rgba(7,10,18,.72);
      border:1px solid rgba(255,255,255,.15);
      display:grid;
      gap:12px;
    }
    .field{
      display:grid;
      gap:7px;
    }
    .field label{
      color:#cbd4e8;
      font-weight:800;
      font-size:13px;
    }
    .field input,.field select{
      width:100%;
      min-height:48px;
      padding:0 14px;
      color:#fff;
      background:rgba(255,255,255,.07);
      border:1px solid rgba(255,255,255,.14);
      border-radius:15px;
      outline:none;
      transition:.2s ease;
    }
    .field input::placeholder{color:#7f8ba5}
    .field input:focus,.field select:focus{border-color:rgba(255,122,26,.65);background:rgba(255,255,255,.1)}
    .form-note{color:#9fb0cd;font-size:13px;margin:0}
    .form-message{
      min-height:22px;
      color:#8ff0b8;
      font-weight:800;
      font-size:14px;
    }
    .faq-list{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:16px;
    }
    .faq-item{
      padding:24px;
      border:1px solid var(--line);
      border-radius:26px;
      background:rgba(255,255,255,.052);
      transition:.22s ease;
    }
    .faq-item:hover{border-color:rgba(255,122,26,.32);background:rgba(255,255,255,.075)}
    .site-footer{
      padding:50px 0 34px;
      border-top:1px solid rgba(255,255,255,.12);
      background:rgba(0,0,0,.18);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1fr auto;
      gap:26px;
      align-items:start;
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:12px;
      font-weight:950;
      font-size:18px;
      margin-bottom:12px;
    }
    .footer-brand .brand-mark{width:38px;height:38px}
    .footer-desc{
      color:var(--muted);
      max-width:680px;
      margin:0;
    }
    .footer-links{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .footer-links a{
      padding:9px 12px;
      border-radius:999px;
      color:#dce3f3;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.1);
      font-weight:800;
      font-size:14px;
      transition:.2s ease;
    }
    .footer-links a:hover{background:rgba(255,255,255,.12);transform:translateY(-2px)}
    .copyright{
      margin-top:28px;
      padding-top:22px;
      border-top:1px solid rgba(255,255,255,.1);
      color:#8f9bb7;
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      font-size:13px;
    }
    @media (max-width:1024px){
      .hero-top,.count-wrap,.highlights-layout,.data-grid,.info-layout,.cta-panel{grid-template-columns:1fr}
      .demo-stage{padding:0 34px 34px}
      .hero-copy{padding:44px 34px 28px}
      .plans{grid-template-columns:1fr}
      .timeline{grid-template-columns:repeat(2,1fr)}
      .section-head{align-items:flex-start;flex-direction:column}
    }
    @media (max-width:768px){
      .container{width:min(100% - 28px,var(--container))}
      .nav-inner{min-height:66px}
      .mobile-toggle{display:block}
      .nav-menu{
        position:absolute;
        left:14px;right:14px;top:76px;
        display:none;
        flex-direction:column;
        align-items:stretch;
        gap:8px;
        padding:14px;
        border-radius:22px;
        background:rgba(11,16,32,.98);
        border:1px solid rgba(255,255,255,.14);
        box-shadow:var(--shadow);
      }
      .nav-menu.open{display:flex}
      .nav-link,.nav-cta{justify-content:center}
      .brand-text{font-size:16px;max-width:220px}
      .hero{padding-top:34px}
      .hero-shell{border-radius:26px}
      .hero-copy{padding:32px 22px 22px}
      .demo-stage{padding:0 18px 22px}
      .hero-points,.count-board,.feature-wall,.kpi-panel,.faq-list{grid-template-columns:1fr}
      .signal-row{grid-template-columns:92px 1fr 52px}
      .console-foot{grid-template-columns:1fr}
      .count-board{gap:10px}
      .time-box{min-height:96px}
      .time-box strong{font-size:32px}
      .news-item{grid-template-columns:1fr;gap:6px}
      .news-arrow{display:none}
      .footer-grid{grid-template-columns:1fr}
      .footer-links{justify-content:flex-start}
      .section{padding:58px 0}
    }
    @media (max-width:520px){
      h1{font-size:40px}
      .pain-line{width:100%;font-size:13px}
      .hero-actions .btn{width:100%}
      .timeline{grid-template-columns:1fr}
      .chart-row{grid-template-columns:1fr;gap:7px}
      .cta-panel{padding:22px}
      .brand-text{max-width:190px}
    }
