/* roulang page: index */
:root{
      --bg:#0b0f1a;
      --bg-soft:#111827;
      --surface:#151c2e;
      --surface-2:#1c2540;
      --card:#ffffff;
      --card-soft:#f7f3ee;
      --text:#f7f8fb;
      --text-dark:#162033;
      --muted:#9aa6bd;
      --muted-dark:#5c667a;
      --primary:#ff5c7c;
      --primary-2:#ff9a62;
      --secondary:#8b5cf6;
      --accent:#27d7b9;
      --warning:#ffd166;
      --danger:#ff477e;
      --line:rgba(255,255,255,.14);
      --line-dark:rgba(22,32,51,.11);
      --shadow:0 22px 70px rgba(3,7,18,.25);
      --shadow-soft:0 16px 42px rgba(24,32,52,.12);
      --radius-xl:34px;
      --radius-lg:24px;
      --radius-md:16px;
      --radius-sm:12px;
      --container:1180px;
      --header-h:76px;
      --ease:cubic-bezier(.2,.8,.2,1);
    }

    *{box-sizing:border-box;margin:0;padding:0}
    html{scroll-behavior:smooth}
    body{
      min-height:100vh;
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei",Arial,sans-serif;
      color:var(--text-dark);
      background:
        radial-gradient(circle at 8% 4%, rgba(255,92,124,.14), transparent 28%),
        radial-gradient(circle at 92% 8%, rgba(139,92,246,.12), transparent 26%),
        linear-gradient(180deg,#fffaf6 0%,#f7f3ee 42%,#fff 100%);
      line-height:1.72;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    button{border:none;cursor:pointer;background:none}
    ::selection{background:rgba(255,92,124,.22);color:#111827}

    .container{
      width:min(var(--container), calc(100% - 40px));
      margin-inline:auto;
    }

    .skip-link{
      position:absolute;
      left:18px;
      top:-60px;
      z-index:9999;
      background:#fff;
      color:var(--text-dark);
      padding:10px 14px;
      border-radius:12px;
      box-shadow:var(--shadow-soft);
      transition:top .25s var(--ease);
    }
    .skip-link:focus{top:14px;outline:3px solid rgba(255,92,124,.35)}

    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      backdrop-filter:blur(18px);
      background:rgba(255,250,246,.88);
      border-bottom:1px solid rgba(22,32,51,.08);
    }
    .nav-wrap{
      height:var(--header-h);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:22px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      font-weight:900;
      letter-spacing:-.02em;
      color:#121827;
      white-space:nowrap;
    }
    .brand-mark{
      width:42px;
      height:42px;
      border-radius:16px;
      background:
        radial-gradient(circle at 28% 26%,#fff 0 12%,transparent 13%),
        linear-gradient(135deg,var(--primary),var(--secondary));
      box-shadow:0 12px 28px rgba(255,92,124,.28);
      position:relative;
      overflow:hidden;
    }
    .brand-mark::after{
      content:"";
      position:absolute;
      right:-8px;
      bottom:-8px;
      width:26px;
      height:26px;
      border-radius:50%;
      background:rgba(255,255,255,.28);
    }
    .brand-text{
      display:flex;
      flex-direction:column;
      line-height:1.15;
    }
    .brand-text strong{font-size:18px}
    .brand-text span{font-size:12px;color:var(--muted-dark);font-weight:700;letter-spacing:.08em}

    .nav-main{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap:10px;
      flex:1;
    }
    .nav-links{
      display:flex;
      align-items:center;
      gap:8px;
      list-style:none;
    }
    .nav-link{
      display:inline-flex;
      align-items:center;
      height:42px;
      padding:0 16px;
      border-radius:999px;
      color:#27324a;
      font-weight:800;
      transition:background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
    }
    .nav-link:hover{
      background:rgba(255,92,124,.10);
      color:#d9305e;
      transform:translateY(-1px);
    }
    .nav-link.active{
      background:#111827;
      color:#fff;
      box-shadow:0 12px 26px rgba(17,24,39,.16);
    }
    .nav-cta{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      height:44px;
      padding:0 18px;
      border-radius:999px;
      background:linear-gradient(135deg,var(--primary),var(--primary-2));
      color:#fff;
      font-weight:900;
      box-shadow:0 14px 28px rgba(255,92,124,.28);
      transition:transform .25s var(--ease), box-shadow .25s var(--ease), filter .25s var(--ease);
      white-space:nowrap;
    }
    .nav-cta:hover{transform:translateY(-2px);box-shadow:0 18px 38px rgba(255,92,124,.34);filter:saturate(1.08)}
    .nav-cta:active{transform:translateY(0)}
    .menu-btn{
      display:none;
      width:44px;
      height:44px;
      border-radius:14px;
      border:1px solid rgba(22,32,51,.1);
      background:#fff;
      color:#111827;
      align-items:center;
      justify-content:center;
      box-shadow:0 10px 26px rgba(22,32,51,.08);
    }
    .menu-lines{
      width:18px;
      height:12px;
      position:relative;
    }
    .menu-lines::before,.menu-lines::after,.menu-lines span{
      content:"";
      position:absolute;
      left:0;
      width:18px;
      height:2px;
      border-radius:99px;
      background:#111827;
      transition:.25s var(--ease);
    }
    .menu-lines::before{top:0}
    .menu-lines span{top:5px}
    .menu-lines::after{bottom:0}

    .breadcrumb-bar{
      border-top:1px solid rgba(22,32,51,.05);
      background:rgba(255,255,255,.62);
    }
    .breadcrumb{
      height:42px;
      display:flex;
      align-items:center;
      gap:8px;
      color:var(--muted-dark);
      font-size:13px;
      font-weight:700;
      overflow-x:auto;
      white-space:nowrap;
      scrollbar-width:none;
    }
    .breadcrumb::-webkit-scrollbar{display:none}
    .breadcrumb a{
      color:#29344c;
      padding:5px 8px;
      border-radius:8px;
      transition:background .2s var(--ease),color .2s var(--ease);
    }
    .breadcrumb a:hover{background:rgba(139,92,246,.1);color:var(--secondary)}
    .breadcrumb .sep{opacity:.55}
    .breadcrumb .current{color:#d9305e}

    main{overflow:hidden}
    .section{
      padding:86px 0;
      position:relative;
    }
    .section.compact{padding:64px 0}
    .section-dark{
      background:
        radial-gradient(circle at 14% 12%,rgba(255,92,124,.20),transparent 28%),
        radial-gradient(circle at 88% 18%,rgba(39,215,185,.16),transparent 30%),
        linear-gradient(135deg,#0b0f1a 0%,#151c2e 100%);
      color:var(--text);
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:30px;
      margin-bottom:34px;
    }
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:#d9305e;
      font-size:13px;
      font-weight:900;
      letter-spacing:.12em;
      text-transform:uppercase;
      margin-bottom:10px;
    }
    .section-kicker::before{
      content:"";
      width:26px;
      height:2px;
      border-radius:99px;
      background:linear-gradient(90deg,var(--primary),var(--secondary));
    }
    .section-title{
      font-size:clamp(28px,4vw,46px);
      line-height:1.16;
      letter-spacing:-.04em;
      color:#121827;
      max-width:760px;
    }
    .section-dark .section-title{color:#fff}
    .section-desc{
      max-width:590px;
      color:var(--muted-dark);
      font-size:16px;
      margin-top:14px;
    }
    .section-dark .section-desc{color:rgba(255,255,255,.72)}
    .section-action{
      flex:0 0 auto;
      display:flex;
      align-items:center;
      gap:10px;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      min-height:48px;
      padding:12px 20px;
      border-radius:999px;
      font-weight:900;
      transition:transform .25s var(--ease),box-shadow .25s var(--ease),background .25s var(--ease),border-color .25s var(--ease),color .25s var(--ease);
      border:1px solid transparent;
      user-select:none;
    }
    .btn-primary{
      background:linear-gradient(135deg,var(--primary),var(--primary-2));
      color:#fff;
      box-shadow:0 18px 38px rgba(255,92,124,.28);
    }
    .btn-primary:hover{transform:translateY(-2px);box-shadow:0 24px 50px rgba(255,92,124,.36)}
    .btn-dark{
      background:#111827;
      color:#fff;
      box-shadow:0 18px 34px rgba(17,24,39,.16);
    }
    .btn-dark:hover{transform:translateY(-2px);background:#050814}
    .btn-light{
      background:rgba(255,255,255,.92);
      color:#111827;
      border-color:rgba(255,255,255,.44);
      box-shadow:0 16px 30px rgba(0,0,0,.12);
    }
    .btn-light:hover{transform:translateY(-2px);background:#fff}
    .btn-ghost{
      color:#27324a;
      background:rgba(255,255,255,.64);
      border-color:rgba(22,32,51,.10);
    }
    .btn-ghost:hover{background:#fff;transform:translateY(-2px);box-shadow:var(--shadow-soft)}
    .btn:focus-visible,.nav-link:focus-visible,.nav-cta:focus-visible,input:focus-visible,button:focus-visible,a:focus-visible{
      outline:3px solid rgba(255,92,124,.35);
      outline-offset:3px;
    }

    .badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.13);
      border:1px solid rgba(255,255,255,.18);
      color:#fff;
      font-size:13px;
      font-weight:800;
      backdrop-filter:blur(12px);
    }
    .badge.dark{
      background:rgba(17,24,39,.06);
      color:#29344c;
      border-color:rgba(22,32,51,.10);
    }
    .dot{
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--accent);
      box-shadow:0 0 0 5px rgba(39,215,185,.13);
      flex:0 0 auto;
    }

    .hero{
      padding:34px 0 76px;
    }
    .hero-stage{
      min-height:640px;
      border-radius:44px;
      position:relative;
      overflow:hidden;
      box-shadow:var(--shadow);
      background:
        linear-gradient(90deg,rgba(9,13,24,.84) 0%,rgba(9,13,24,.62) 42%,rgba(9,13,24,.18) 100%),
        radial-gradient(circle at 78% 18%,rgba(255,154,98,.85),transparent 20%),
        radial-gradient(circle at 88% 72%,rgba(139,92,246,.70),transparent 28%),
        radial-gradient(circle at 55% 48%,rgba(255,92,124,.88),transparent 22%),
        linear-gradient(135deg,#1d2438 0%,#2b1630 45%,#0f172a 100%);
      isolation:isolate;
    }
    .hero-stage::before{
      content:"";
      position:absolute;
      inset:0;
      background-image:
        linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.08) 1px, transparent 1px);
      background-size:42px 42px;
      mask-image:linear-gradient(90deg,#000 0%,rgba(0,0,0,.55) 55%,transparent 100%);
      opacity:.45;
      z-index:-1;
    }
    .hero-stage::after{
      content:"";
      position:absolute;
      right:6%;
      top:16%;
      width:min(43vw,520px);
      height:min(50vw,520px);
      border-radius:44px;
      background:
        linear-gradient(135deg,rgba(255,255,255,.22),rgba(255,255,255,.06)),
        radial-gradient(circle at 30% 20%,rgba(255,255,255,.36),transparent 22%);
      border:1px solid rgba(255,255,255,.24);
      transform:rotate(-6deg);
      box-shadow:0 40px 90px rgba(0,0,0,.28);
      z-index:-1;
    }
    .hero-series{
      position:absolute;
      left:30px;
      right:30px;
      top:30px;
      z-index:4;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      padding:12px;
      border-radius:24px;
      background:rgba(255,255,255,.12);
      border:1px solid rgba(255,255,255,.18);
      backdrop-filter:blur(18px);
    }
    .series-tabs{
      display:flex;
      gap:8px;
      overflow:auto;
      scrollbar-width:none;
      white-space:nowrap;
    }
    .series-tabs::-webkit-scrollbar{display:none}
    .series-tab{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:10px 14px;
      border-radius:999px;
      color:#fff;
      background:rgba(255,255,255,.10);
      border:1px solid rgba(255,255,255,.12);
      font-size:13px;
      font-weight:900;
      transition:.25s var(--ease);
    }
    .series-tab:hover,.series-tab.active{
      background:rgba(255,255,255,.92);
      color:#121827;
      transform:translateY(-1px);
    }
    .hero-entry{
      white-space:nowrap;
      padding:10px 16px;
      min-height:42px;
    }
    .hero-content{
      position:relative;
      z-index:3;
      min-height:640px;
      display:flex;
      flex-direction:column;
      justify-content:center;
      padding:112px 7% 72px;
      max-width:820px;
      color:#fff;
    }
    .hero-labels{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-bottom:26px;
    }
    h1{
      font-size:clamp(38px,6.5vw,82px);
      line-height:.98;
      letter-spacing:-.065em;
      max-width:780px;
      margin-bottom:24px;
    }
    .hero-lead{
      max-width:680px;
      color:rgba(255,255,255,.78);
      font-size:clamp(16px,2vw,20px);
      line-height:1.85;
      margin-bottom:30px;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      align-items:center;
      margin-bottom:34px;
    }
    .hero-metrics{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:12px;
      max-width:720px;
    }
    .metric{
      padding:18px;
      border-radius:22px;
      background:rgba(255,255,255,.10);
      border:1px solid rgba(255,255,255,.15);
      backdrop-filter:blur(14px);
    }
    .metric strong{
      display:block;
      font-size:24px;
      line-height:1;
      margin-bottom:8px;
    }
    .metric span{
      color:rgba(255,255,255,.72);
      font-size:13px;
      font-weight:700;
    }
    .hero-side-note{
      position:absolute;
      right:30px;
      bottom:30px;
      width:min(360px,calc(100% - 60px));
      z-index:5;
      padding:20px;
      border-radius:26px;
      background:rgba(8,12,22,.72);
      color:#fff;
      border:1px solid rgba(255,255,255,.14);
      backdrop-filter:blur(18px);
      box-shadow:0 24px 55px rgba(0,0,0,.25);
    }
    .hero-side-note b{display:block;margin-bottom:8px;font-size:16px}
    .hero-side-note p{font-size:13px;color:rgba(255,255,255,.72);line-height:1.7}

    .pain-layout{
      display:grid;
      grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);
      gap:28px;
      align-items:stretch;
    }
    .pain-demo{
      border-radius:var(--radius-xl);
      background:#111827;
      color:#fff;
      padding:28px;
      min-height:460px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      box-shadow:var(--shadow-soft);
      position:relative;
      overflow:hidden;
    }
    .pain-demo::before{
      content:"";
      position:absolute;
      inset:-60px -80px auto auto;
      width:280px;
      height:280px;
      border-radius:50%;
      background:rgba(255,92,124,.25);
      filter:blur(4px);
    }
    .demo-window{
      position:relative;
      z-index:2;
      border-radius:24px;
      border:1px solid rgba(255,255,255,.12);
      background:rgba(255,255,255,.07);
      overflow:hidden;
    }
    .demo-top{
      display:flex;
      align-items:center;
      gap:7px;
      padding:14px 16px;
      border-bottom:1px solid rgba(255,255,255,.10);
    }
    .demo-top i{
      width:10px;height:10px;border-radius:50%;display:block;
      background:rgba(255,255,255,.35);
    }
    .demo-lines{
      padding:18px;
      display:grid;
      gap:12px;
    }
    .demo-line{
      display:flex;
      align-items:center;
      gap:12px;
      padding:12px;
      border-radius:16px;
      background:rgba(255,255,255,.08);
    }
    .demo-line .warn{
      width:34px;
      height:34px;
      border-radius:12px;
      display:grid;
      place-items:center;
      background:rgba(255,209,102,.16);
      color:var(--warning);
      flex:0 0 auto;
      font-weight:900;
    }
    .demo-line p{font-size:14px;color:rgba(255,255,255,.76)}
    .pain-demo h2{
      position:relative;
      z-index:2;
      font-size:30px;
      line-height:1.24;
      letter-spacing:-.03em;
      margin-top:26px;
    }
    .pain-demo .note{
      position:relative;
      z-index:2;
      margin-top:14px;
      color:rgba(255,255,255,.70);
    }
    .pain-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:18px;
    }
    .pain-card{
      border-radius:var(--radius-lg);
      background:#fff;
      border:1px solid var(--line-dark);
      padding:24px;
      box-shadow:0 12px 34px rgba(22,32,51,.07);
      transition:transform .25s var(--ease),box-shadow .25s var(--ease),border-color .25s var(--ease);
    }
    .pain-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-soft);
      border-color:rgba(255,92,124,.22);
    }
    .icon{
      width:46px;
      height:46px;
      display:grid;
      place-items:center;
      border-radius:16px;
      margin-bottom:16px;
      background:linear-gradient(135deg,rgba(255,92,124,.12),rgba(139,92,246,.12));
      color:#d9305e;
      font-weight:900;
      font-size:20px;
    }
    .pain-card h3,.step-card h3,.safe-card h3,.hot-card h3,.media-card h3,.matrix-card h3{
      font-size:19px;
      line-height:1.35;
      margin-bottom:8px;
      color:#121827;
      letter-spacing:-.02em;
    }
    .pain-card p,.step-card p,.safe-card p,.hot-card p,.media-card p,.matrix-card p{
      color:var(--muted-dark);
      font-size:14px;
      line-height:1.75;
    }

    .steps-wrap{
      display:grid;
      grid-template-columns:1fr 1fr 1fr;
      gap:18px;
      position:relative;
    }
    .steps-wrap::before{
      content:"";
      position:absolute;
      top:58px;
      left:12%;
      right:12%;
      height:2px;
      background:linear-gradient(90deg,var(--primary),var(--secondary),var(--accent));
      opacity:.35;
    }
    .step-card{
      position:relative;
      z-index:2;
      border-radius:var(--radius-xl);
      background:#fff;
      border:1px solid var(--line-dark);
      padding:26px;
      box-shadow:0 14px 40px rgba(22,32,51,.08);
      min-height:270px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .step-num{
      width:66px;
      height:66px;
      border-radius:24px;
      display:grid;
      place-items:center;
      background:#111827;
      color:#fff;
      font-size:24px;
      font-weight:900;
      box-shadow:0 14px 30px rgba(17,24,39,.20);
      margin-bottom:22px;
    }
    .step-meta{
      margin-top:22px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      color:#d9305e;
      font-size:13px;
      font-weight:900;
    }
    .progress-pill{
      height:8px;
      width:92px;
      border-radius:999px;
      background:rgba(22,32,51,.08);
      overflow:hidden;
    }
    .progress-pill span{
      display:block;
      height:100%;
      border-radius:inherit;
      background:linear-gradient(90deg,var(--primary),var(--primary-2));
    }

    .info-layout{
      display:grid;
      grid-template-columns:minmax(0,1.3fr) minmax(320px,.7fr);
      gap:24px;
      align-items:start;
    }
    .news-panel,.recommend-panel{
      border-radius:var(--radius-xl);
      background:#fff;
      border:1px solid var(--line-dark);
      box-shadow:var(--shadow-soft);
      overflow:hidden;
    }
    .news-list{list-style:none}
    .news-item{
      display:grid;
      grid-template-columns:106px 1fr auto;
      gap:18px;
      align-items:center;
      padding:20px 22px;
      border-bottom:1px solid rgba(22,32,51,.08);
      transition:background .2s var(--ease);
    }
    .news-item:last-child{border-bottom:none}
    .news-item:hover{background:#fff7f5}
    .news-date{
      display:flex;
      flex-direction:column;
      gap:4px;
      color:var(--muted-dark);
      font-size:13px;
      font-weight:800;
    }
    .news-date b{font-size:20px;color:#121827;line-height:1}
    .news-title{
      font-size:17px;
      font-weight:900;
      color:#121827;
      margin-bottom:5px;
      line-height:1.4;
    }
    .news-summary{
      color:var(--muted-dark);
      font-size:14px;
      line-height:1.65;
    }
    .news-arrow{
      width:40px;
      height:40px;
      border-radius:50%;
      display:grid;
      place-items:center;
      background:rgba(255,92,124,.10);
      color:#d9305e;
      font-weight:900;
      transition:.25s var(--ease);
    }
    .news-item:hover .news-arrow{
      background:linear-gradient(135deg,var(--primary),var(--primary-2));
      color:#fff;
      transform:translateX(3px);
    }
    .recommend-panel{padding:24px}
    .recommend-panel h3{
      font-size:22px;
      margin-bottom:12px;
      letter-spacing:-.02em;
    }
    .recommend-panel p{
      color:var(--muted-dark);
      font-size:14px;
      margin-bottom:18px;
    }
    .rank-list{
      display:grid;
      gap:12px;
      margin-top:18px;
    }
    .rank-row{
      display:flex;
      align-items:center;
      gap:12px;
      padding:14px;
      border-radius:18px;
      background:#f8f3ef;
      border:1px solid rgba(22,32,51,.06);
    }
    .rank-no{
      width:30px;
      height:30px;
      border-radius:10px;
      display:grid;
      place-items:center;
      background:#111827;
      color:#fff;
      font-weight:900;
      flex:0 0 auto;
    }
    .rank-row strong{display:block;font-size:14px;color:#121827}
    .rank-row span{display:block;font-size:12px;color:var(--muted-dark);margin-top:2px}

    .safe-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:22px;
      align-items:stretch;
    }
    .safe-board{
      border-radius:var(--radius-xl);
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.14);
      padding:28px;
      min-height:430px;
      position:relative;
      overflow:hidden;
    }
    .safe-board::after{
      content:"";
      position:absolute;
      right:-80px;
      bottom:-90px;
      width:260px;
      height:260px;
      border-radius:50%;
      background:rgba(39,215,185,.16);
    }
    .shield{
      width:94px;
      height:110px;
      border-radius:34px 34px 44px 44px;
      background:linear-gradient(135deg,var(--accent),var(--secondary));
      margin-bottom:26px;
      display:grid;
      place-items:center;
      color:#fff;
      font-size:38px;
      font-weight:900;
      box-shadow:0 24px 60px rgba(39,215,185,.18);
      clip-path:polygon(50% 0,100% 16%,88% 78%,50% 100%,12% 78%,0 16%);
    }
    .safe-board h2{
      font-size:34px;
      line-height:1.22;
      letter-spacing:-.035em;
      margin-bottom:14px;
    }
    .safe-board p{
      color:rgba(255,255,255,.72);
      max-width:580px;
    }
    .safe-checks{
      margin-top:24px;
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:12px;
      position:relative;
      z-index:2;
    }
    .safe-check{
      padding:14px;
      border-radius:18px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.12);
      color:rgba(255,255,255,.82);
      font-size:14px;
      font-weight:800;
    }
    .safe-cards{
      display:grid;
      gap:16px;
    }
    .safe-card{
      border-radius:var(--radius-lg);
      background:rgba(255,255,255,.92);
      color:var(--text-dark);
      padding:22px;
      border:1px solid rgba(255,255,255,.16);
      box-shadow:0 18px 42px rgba(0,0,0,.12);
    }

    .hot-strip{
      display:flex;
      gap:16px;
      overflow-x:auto;
      padding:4px 4px 18px;
      scroll-snap-type:x mandatory;
      scrollbar-color:rgba(255,92,124,.35) transparent;
    }
    .hot-card{
      min-width:288px;
      scroll-snap-align:start;
      border-radius:28px;
      padding:24px;
      background:#fff;
      border:1px solid var(--line-dark);
      box-shadow:0 12px 34px rgba(22,32,51,.08);
      transition:.25s var(--ease);
    }
    .hot-card:hover{
      transform:translateY(-5px);
      box-shadow:var(--shadow-soft);
    }
    .hot-no{
      width:42px;
      height:42px;
      border-radius:16px;
      display:grid;
      place-items:center;
      background:linear-gradient(135deg,var(--primary),var(--secondary));
      color:#fff;
      font-weight:900;
      margin-bottom:18px;
    }
    .hot-card .mini-action{
      margin-top:18px;
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:#d9305e;
      font-weight:900;
      font-size:14px;
    }

    .media-row{
      display:flex;
      gap:18px;
      overflow-x:auto;
      padding-bottom:18px;
      scroll-snap-type:x mandatory;
    }
    .media-card{
      min-width:320px;
      scroll-snap-align:start;
      border-radius:28px;
      overflow:hidden;
      background:#fff;
      border:1px solid var(--line-dark);
      box-shadow:0 12px 34px rgba(22,32,51,.08);
    }
    .media-art{
      height:160px;
      background:
        linear-gradient(135deg,rgba(17,24,39,.12),rgba(255,92,124,.12)),
        radial-gradient(circle at 25% 25%,rgba(255,92,124,.45),transparent 28%),
        radial-gradient(circle at 78% 58%,rgba(139,92,246,.40),transparent 32%),
        #181f33;
      position:relative;
    }
    .media-art::after{
      content:"";
      position:absolute;
      left:24px;
      bottom:22px;
      width:72px;
      height:72px;
      border-radius:22px;
      background:rgba(255,255,255,.18);
      border:1px solid rgba(255,255,255,.22);
      backdrop-filter:blur(12px);
    }
    .media-body{padding:22px}
    .media-type{
      display:inline-flex;
      padding:6px 10px;
      border-radius:999px;
      background:rgba(139,92,246,.10);
      color:var(--secondary);
      font-size:12px;
      font-weight:900;
      margin-bottom:12px;
    }

    .matrix{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:16px;
    }
    .matrix-card{
      min-height:190px;
      border-radius:28px;
      background:#fff;
      border:1px solid var(--line-dark);
      padding:22px;
      box-shadow:0 12px 34px rgba(22,32,51,.07);
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      transition:.25s var(--ease);
    }
    .matrix-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-soft);
      border-color:rgba(139,92,246,.22);
    }
    .matrix-card .icon{margin-bottom:12px}
    .matrix-link{
      margin-top:18px;
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:#d9305e;
      font-size:14px;
      font-weight:900;
    }

    .faq-list{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:16px;
    }
    .faq-item{
      border-radius:24px;
      background:#fff;
      border:1px solid var(--line-dark);
      box-shadow:0 12px 34px rgba(22,32,51,.07);
      overflow:hidden;
    }
    .faq-question{
      width:100%;
      text-align:left;
      padding:22px 24px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      color:#121827;
      font-weight:900;
      font-size:16px;
    }
    .faq-question .plus{
      width:32px;
      height:32px;
      border-radius:50%;
      display:grid;
      place-items:center;
      background:rgba(255,92,124,.10);
      color:#d9305e;
      flex:0 0 auto;
      transition:.25s var(--ease);
    }
    .faq-answer{
      padding:0 24px 22px;
      color:var(--muted-dark);
      font-size:14px;
      display:none;
      line-height:1.82;
    }
    .faq-item.open .faq-answer{display:block}
    .faq-item.open .plus{
      transform:rotate(45deg);
      background:#111827;
      color:#fff;
    }

    .start-card{
      border-radius:44px;
      background:
        radial-gradient(circle at 18% 20%,rgba(255,92,124,.26),transparent 26%),
        radial-gradient(circle at 80% 20%,rgba(39,215,185,.18),transparent 30%),
        linear-gradient(135deg,#111827 0%,#24152d 100%);
      color:#fff;
      padding:46px;
      box-shadow:var(--shadow);
      display:grid;
      grid-template-columns:minmax(0,1fr) minmax(360px,.72fr);
      gap:34px;
      align-items:center;
      position:relative;
      overflow:hidden;
    }
    .start-card::after{
      content:"";
      position:absolute;
      inset:auto -70px -100px auto;
      width:280px;
      height:280px;
      border-radius:50%;
      background:rgba(255,154,98,.18);
    }
    .start-card h2{
      font-size:clamp(30px,4vw,52px);
      line-height:1.12;
      letter-spacing:-.045em;
      margin-bottom:16px;
    }
    .start-card p{
      color:rgba(255,255,255,.74);
      max-width:700px;
    }
    .start-points{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:22px;
    }
    .start-form{
      position:relative;
      z-index:2;
      border-radius:30px;
      padding:22px;
      background:rgba(255,255,255,.10);
      border:1px solid rgba(255,255,255,.16);
      backdrop-filter:blur(16px);
    }
    .form-field{margin-bottom:14px}
    .form-field label{
      display:block;
      font-size:13px;
      color:rgba(255,255,255,.72);
      font-weight:800;
      margin-bottom:7px;
    }
    .form-field input{
      width:100%;
      height:50px;
      border:none;
      border-radius:16px;
      padding:0 15px;
      background:rgba(255,255,255,.94);
      color:#111827;
      outline:none;
      box-shadow:inset 0 0 0 1px rgba(255,255,255,.06);
    }
    .checkline{
      display:flex;
      align-items:flex-start;
      gap:10px;
      color:rgba(255,255,255,.76);
      font-size:13px;
      line-height:1.6;
      margin:12px 0 16px;
    }
    .checkline input{
      width:18px;
      height:18px;
      accent-color:var(--primary);
      margin-top:2px;
      flex:0 0 auto;
    }
    .form-message{
      min-height:22px;
      margin-top:12px;
      color:#a7f3d0;
      font-size:13px;
      font-weight:800;
    }
    .start-form .btn{width:100%}

    .site-footer{
      background:#080b13;
      color:rgba(255,255,255,.72);
      padding:56px 0 28px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr;
      gap:28px;
      align-items:start;
      padding-bottom:30px;
      border-bottom:1px solid rgba(255,255,255,.10);
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:12px;
      color:#fff;
      font-weight:900;
      margin-bottom:14px;
    }
    .footer-brand .brand-mark{width:40px;height:40px}
    .footer-desc{
      max-width:720px;
      color:rgba(255,255,255,.64);
      font-size:14px;
    }
    .footer-links{
      display:flex;
      justify-content:flex-end;
      gap:10px;
      flex-wrap:wrap;
    }
    .footer-links a{
      padding:10px 14px;
      border-radius:999px;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.10);
      color:#fff;
      font-weight:800;
      font-size:14px;
      transition:.25s var(--ease);
    }
    .footer-links a:hover{
      background:rgba(255,92,124,.18);
      border-color:rgba(255,92,124,.28);
      transform:translateY(-2px);
    }
    .footer-bottom{
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      padding-top:22px;
      color:rgba(255,255,255,.46);
      font-size:13px;
    }

    @media (max-width:1024px){
      :root{--header-h:70px}
      .hero-stage,.hero-content{min-height:600px}
      .hero-stage::after{opacity:.62}
      .pain-layout,.safe-grid,.info-layout,.start-card{grid-template-columns:1fr}
      .matrix{grid-template-columns:repeat(2,minmax(0,1fr))}
      .footer-grid{grid-template-columns:1fr}
      .footer-links{justify-content:flex-start}
    }

    @media (max-width:768px){
      .container{width:min(100% - 28px,var(--container))}
      .menu-btn{display:flex}
      .nav-main{
        position:absolute;
        left:14px;
        right:14px;
        top:calc(var(--header-h) + 8px);
        flex-direction:column;
        align-items:stretch;
        padding:14px;
        background:rgba(255,255,255,.96);
        border:1px solid rgba(22,32,51,.10);
        border-radius:24px;
        box-shadow:var(--shadow-soft);
        transform:translateY(-12px);
        opacity:0;
        pointer-events:none;
        transition:.25s var(--ease);
      }
      .site-header.open .nav-main{
        transform:translateY(0);
        opacity:1;
        pointer-events:auto;
      }
      .nav-links{flex-direction:column;align-items:stretch;width:100%}
      .nav-link{justify-content:center;width:100%}
      .nav-cta{width:100%}
      .brand-text span{display:none}
      .hero{padding-top:22px}
      .hero-stage{border-radius:30px;min-height:auto}
      .hero-content{min-height:auto;padding:116px 24px 170px}
      .hero-series{
        left:14px;right:14px;top:14px;
        align-items:stretch;
        flex-direction:column;
      }
      .hero-entry{width:100%}
      .hero-metrics{grid-template-columns:1fr}
      .hero-side-note{right:16px;left:16px;bottom:16px;width:auto}
      .section{padding:66px 0}
      .section-head{display:block}
      .section-action{margin-top:18px}
      .pain-grid,.steps-wrap,.safe-checks,.faq-list{grid-template-columns:1fr}
      .steps-wrap::before{display:none}
      .news-item{
        grid-template-columns:1fr auto;
        gap:12px;
      }
      .news-date{grid-column:1 / -1;flex-direction:row;align-items:center}
      .start-card{padding:30px;border-radius:30px}
      .start-form{padding:18px}
    }

    @media (max-width:520px){
      .nav-wrap{gap:10px}
      .brand-text strong{font-size:16px}
      .brand-mark{width:38px;height:38px;border-radius:14px}
      h1{font-size:38px}
      .hero-lead{font-size:15px}
      .hero-actions .btn{width:100%}
      .series-tab{font-size:12px;padding:9px 12px}
      .pain-demo{padding:22px;border-radius:28px}
      .pain-card,.step-card,.safe-card,.hot-card,.media-card,.matrix-card{border-radius:22px}
      .matrix{grid-template-columns:1fr}
      .media-card{min-width:280px}
      .hot-card{min-width:260px}
      .news-item{padding:18px}
      .footer-bottom{display:block}
      .footer-bottom span{display:block;margin-bottom:8px}
    }
