/* roulang page: index */
:root{
      --bg: #fff8ef;
      --bg-soft: #f8f1fb;
      --bg-deep: #111014;
      --bg-deep-2: #17151d;
      --card: rgba(255,255,255,.88);
      --card-strong: #ffffff;
      --text: #241d2b;
      --muted: #625a6c;
      --line: #e8ddeb;
      --line-strong: rgba(255,255,255,.12);
      --purple: #b85cff;
      --purple-2: #d7a8ff;
      --orange: #ff6a3d;
      --orange-2: #ffb84d;
      --green: #35c48d;
      --red: #e94b5f;
      --shadow: 0 18px 50px rgba(30, 18, 40, 0.08);
      --shadow-deep: 0 0 0 1px rgba(184, 92, 255, 0.24), 0 24px 70px rgba(184, 92, 255, 0.18);
      --radius-xl: 28px;
      --radius-lg: 22px;
      --radius-md: 18px;
      --radius-sm: 14px;
      --container: 1200px;
      --transition: 220ms cubic-bezier(.2,.8,.2,1);
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: PingFang SC, Microsoft YaHei, Noto Sans SC, Helvetica Neue, Arial, sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 12% 10%, rgba(184,92,255,.08), transparent 24%),
        radial-gradient(circle at 88% 8%, rgba(255,106,61,.08), transparent 20%),
        linear-gradient(180deg, #16141b 0%, #16141b 18%, var(--bg) 18%, var(--bg) 100%);
      line-height:1.8;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:color var(--transition), opacity var(--transition), transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition)}
    img{max-width:100%;display:block}
    button,input,textarea{font:inherit}
    ::selection{background:rgba(184,92,255,.2);color:#111014}
    .container{width:min(var(--container), calc(100% - 32px));margin:0 auto}
    .site-header{
      position:sticky;top:0;z-index:60;
      background:linear-gradient(180deg, rgba(17,16,20,.98), rgba(17,16,20,.94));
      backdrop-filter:saturate(120%) blur(10px);
      border-bottom:1px solid rgba(255,255,255,.06);
      box-shadow:0 10px 30px rgba(0,0,0,.16);
    }
    .site-header::after{
      content:"";
      display:block;
      height:2px;
      background:linear-gradient(90deg, transparent 0%, rgba(184,92,255,.85) 18%, rgba(255,106,61,.9) 58%, transparent 100%);
      opacity:.95;
    }
    .nav-wrap{
      min-height:76px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
      padding:10px 0;
    }
    .brand{
      display:flex;align-items:center;gap:12px;min-width:0;
    }
    .brand-mark{
      width:42px;height:42px;border-radius:14px;
      background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,.32), transparent 30%),
        linear-gradient(135deg, var(--orange), var(--purple));
      box-shadow:0 12px 28px rgba(184,92,255,.25);
      position:relative;flex:0 0 auto;
    }
    .brand-mark::before,.brand-mark::after{
      content:"";position:absolute;inset:10px;border-radius:10px;
      border:1px solid rgba(255,255,255,.5);
      transform:rotate(12deg);
    }
    .brand-mark::after{inset:14px;transform:rotate(-10deg);opacity:.7}
    .brand-text{min-width:0}
    .brand-title{
      display:block;
      font-size:18px;
      font-weight:800;
      letter-spacing:.2px;
      color:#fff;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
      line-height:1.1;
    }
    .brand-sub{
      display:block;
      font-size:12px;
      color:rgba(255,255,255,.72);
      margin-top:4px;
      letter-spacing:.2px;
    }
    .nav{
      display:flex;
      align-items:center;
      gap:8px;
      flex-wrap:wrap;
      justify-content:center;
    }
    .nav a{
      color:rgba(255,255,255,.78);
      padding:10px 14px;
      border-radius:999px;
      font-size:14px;
      font-weight:600;
      position:relative;
      outline:none;
    }
    .nav a:hover,
    .nav a:focus-visible{
      color:#fff;
      background:rgba(255,255,255,.05);
      box-shadow:inset 0 0 0 1px rgba(255,255,255,.08), 0 0 0 4px rgba(184,92,255,.08);
    }
    .nav a.active{
      color:#fff;
      background:rgba(184,92,255,.12);
      box-shadow:inset 0 0 0 1px rgba(184,92,255,.34), 0 0 18px rgba(184,92,255,.18);
    }
    .nav a.active::after{
      content:"";
      position:absolute;
      left:16px;right:16px;bottom:6px;height:2px;
      border-radius:999px;
      background:linear-gradient(90deg, var(--purple), rgba(255,106,61,.95));
      box-shadow:0 0 18px rgba(184,92,255,.45);
    }
    .nav-cta{
      display:flex;align-items:center;gap:10px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border:none;
      cursor:pointer;
      font-weight:700;
      border-radius:999px;
      padding:13px 20px;
      min-height:46px;
      transition:transform var(--transition), box-shadow var(--transition), filter var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
      outline:none;
      text-align:center;
    }
    .btn:focus-visible{
      box-shadow:0 0 0 4px rgba(184,92,255,.25), 0 16px 32px rgba(0,0,0,.14);
    }
    .btn-primary{
      color:#fff;
      background:linear-gradient(135deg, var(--orange), var(--purple));
      box-shadow:0 18px 34px rgba(184,92,255,.20);
    }
    .btn-primary:hover{transform:translateY(-2px);filter:brightness(1.03);box-shadow:0 22px 42px rgba(184,92,255,.25)}
    .btn-secondary{
      color:#fff;
      background:transparent;
      border:1px solid rgba(255,255,255,.18);
      box-shadow:inset 0 0 0 1px rgba(184,92,255,.12);
    }
    .btn-secondary:hover{
      transform:translateY(-2px);
      background:rgba(255,255,255,.05);
      border-color:rgba(184,92,255,.42);
      box-shadow:0 0 0 4px rgba(184,92,255,.08);
    }
    .btn-light{
      background:#fff;
      color:var(--text);
      border:1px solid rgba(80,50,90,.12);
      box-shadow:var(--shadow);
    }
    .btn-light:hover{
      transform:translateY(-2px);
      box-shadow:0 18px 40px rgba(30,18,40,.12);
    }
    .menu-toggle{
      display:none;
      width:46px;height:46px;border-radius:14px;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.08);
      align-items:center;
      justify-content:center;
      color:#fff;
      cursor:pointer;
      flex:0 0 auto;
    }
    .menu-toggle:focus-visible{box-shadow:0 0 0 4px rgba(184,92,255,.18)}
    .menu-lines{
      width:18px;height:12px;position:relative;display:block;
    }
    .menu-lines span{
      position:absolute;left:0;right:0;height:2px;border-radius:999px;background:#fff;transition:transform var(--transition), top var(--transition), opacity var(--transition);
    }
    .menu-lines span:nth-child(1){top:0}
    .menu-lines span:nth-child(2){top:5px}
    .menu-lines span:nth-child(3){top:10px}
    .menu-toggle[aria-expanded="true"] .menu-lines span:nth-child(1){top:5px;transform:rotate(45deg)}
    .menu-toggle[aria-expanded="true"] .menu-lines span:nth-child(2){opacity:0}
    .menu-toggle[aria-expanded="true"] .menu-lines span:nth-child(3){top:5px;transform:rotate(-45deg)}
    .hero{
      position:relative;
      padding:72px 0 42px;
      color:#fff;
      overflow:hidden;
    }
    .hero::before{
      content:"";
      position:absolute;
      inset:-120px -60px auto auto;
      width:420px;height:420px;border-radius:50%;
      background:radial-gradient(circle, rgba(184,92,255,.22), rgba(184,92,255,.08) 32%, transparent 70%);
      filter:blur(10px);
      pointer-events:none;
    }
    .hero::after{
      content:"";
      position:absolute;
      left:0;right:0;bottom:-1px;height:64px;
      background:linear-gradient(180deg, rgba(17,16,20,0), rgba(255,248,239,1));
      pointer-events:none;
    }
    .hero-grid{
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:36px;
      align-items:center;
      position:relative;
      z-index:1;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 14px;
      border-radius:999px;
      background:rgba(255,255,255,.07);
      border:1px solid rgba(255,255,255,.1);
      color:rgba(255,255,255,.84);
      font-size:13px;
      letter-spacing:.2px;
      margin-bottom:18px;
    }
    .eyebrow i{
      width:8px;height:8px;border-radius:50%;
      background:linear-gradient(135deg, var(--orange), var(--purple));
      box-shadow:0 0 0 4px rgba(184,92,255,.12);
      display:inline-block;
    }
    h1,h2,h3,p{margin:0}
    .hero h1{
      font-size:clamp(34px, 4.5vw, 56px);
      line-height:1.16;
      letter-spacing:-.5px;
      max-width:12ch;
    }
    .hero-lead{
      margin-top:18px;
      font-size:17px;
      color:rgba(255,255,255,.8);
      max-width:46rem;
    }
    .hero-points{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:24px;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:9px 13px;
      border-radius:999px;
      background:rgba(255,255,255,.07);
      border:1px solid rgba(255,255,255,.1);
      color:#fff;
      font-size:13px;
      line-height:1;
    }
    .tag.soft{
      background:rgba(248,241,251,.88);
      border-color:rgba(184,92,255,.16);
      color:#40294d;
    }
    .hero-actions{
      display:flex;
      gap:14px;
      margin-top:30px;
      flex-wrap:wrap;
    }
    .hero-note{
      margin-top:20px;
      display:flex;
      flex-wrap:wrap;
      gap:10px 16px;
      color:rgba(255,255,255,.76);
      font-size:14px;
    }
    .hero-note span{
      display:inline-flex;
      align-items:center;
      gap:8px;
    }
    .hero-note span::before{
      content:"";
      width:8px;height:8px;border-radius:50%;
      background:var(--green);
      box-shadow:0 0 0 4px rgba(53,196,141,.12);
    }
    .dashboard{
      position:relative;
      min-height:520px;
      border-radius:34px;
      background:
        radial-gradient(circle at 20% 18%, rgba(184,92,255,.18), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(255,106,61,.16), transparent 22%),
        linear-gradient(180deg, rgba(33,30,41,.96), rgba(17,16,20,.98));
      box-shadow:var(--shadow-deep);
      border:1px solid rgba(255,255,255,.12);
      overflow:hidden;
      padding:26px;
    }
    .dashboard::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(transparent 0 0),
        radial-gradient(circle at 24% 26%, rgba(255,255,255,.08), transparent 10%),
        radial-gradient(circle at 56% 72%, rgba(255,255,255,.08), transparent 12%);
      opacity:.45;
      pointer-events:none;
    }
    .dashboard-grid{
      position:relative;
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:16px;
      height:100%;
      z-index:1;
    }
    .dash-panel{
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.1);
      border-radius:22px;
      padding:18px;
      backdrop-filter:blur(8px);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.05);
    }
    .dash-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      margin-bottom:18px;
      gap:12px;
    }
    .dash-title{
      font-size:15px;
      color:#fff;
      font-weight:700;
    }
    .dash-pill{
      padding:7px 10px;
      border-radius:999px;
      font-size:12px;
      color:#fff;
      background:linear-gradient(135deg, rgba(255,106,61,.22), rgba(184,92,255,.22));
      border:1px solid rgba(255,255,255,.08);
    }
    .dash-search{
      display:flex;
      gap:10px;
      align-items:center;
      margin-bottom:16px;
      padding:12px 14px;
      border-radius:16px;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.09);
      color:rgba(255,255,255,.72);
      font-size:14px;
    }
    .dash-search .dot{
      width:10px;height:10px;border-radius:50%;
      background:linear-gradient(135deg, var(--orange), var(--purple));
      box-shadow:0 0 18px rgba(184,92,255,.55);
      flex:0 0 auto;
    }
    .trend{
      height:150px;
      border-radius:20px;
      background:
        linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)),
        linear-gradient(90deg, transparent 0, transparent 11%, rgba(255,255,255,.06) 11%, rgba(255,255,255,.06) 12%, transparent 12%, transparent 24%, rgba(255,255,255,.06) 24%, rgba(255,255,255,.06) 25%, transparent 25%, transparent 37%, rgba(255,255,255,.06) 37%, rgba(255,255,255,.06) 38%, transparent 38%, transparent 50%, rgba(255,255,255,.06) 50%, rgba(255,255,255,.06) 51%, transparent 51%, transparent 63%, rgba(255,255,255,.06) 63%, rgba(255,255,255,.06) 64%, transparent 64%, transparent 76%, rgba(255,255,255,.06) 76%, rgba(255,255,255,.06) 77%, transparent 77%, transparent 89%, rgba(255,255,255,.06) 89%, rgba(255,255,255,.06) 90%, transparent 90%),
        linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.03));
      position:relative;
      overflow:hidden;
      margin-bottom:16px;
    }
    .trend svg{
      position:absolute;inset:0;
      width:100%;height:100%;
    }
    .mini-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:12px;
    }
    .mini-card{
      min-height:90px;
      border-radius:18px;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.09);
      padding:14px;
    }
    .mini-label{
      display:block;
      color:rgba(255,255,255,.74);
      font-size:12px;
      margin-bottom:8px;
    }
    .mini-value{
      font-size:26px;
      font-weight:800;
      line-height:1;
      background:linear-gradient(135deg, #fff, #ffd8c9 30%, #ebd0ff 70%, #fff);
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
      letter-spacing:-.4px;
    }
    .mini-desc{
      display:block;
      color:rgba(255,255,255,.68);
      font-size:12px;
      margin-top:8px;
    }
    .flow-card{
      display:flex;
      flex-direction:column;
      gap:12px;
      justify-content:space-between;
    }
    .flow-item{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:12px 14px;
      border-radius:16px;
      background:rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.08);
    }
    .flow-item strong{
      font-size:14px;
      color:#fff;
    }
    .flow-item span{
      font-size:12px;color:rgba(255,255,255,.68)
    }
    .flow-dot{
      width:12px;height:12px;border-radius:50%;
      background:linear-gradient(135deg, var(--orange), var(--purple));
      box-shadow:0 0 16px rgba(184,92,255,.4);
      flex:0 0 auto;
    }
    .section{
      padding:82px 0;
    }
    .section.tight{padding-top:64px}
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:20px;
      margin-bottom:28px;
    }
    .section-head.center{
      flex-direction:column;
      align-items:center;
      text-align:center;
    }
    .section-title{
      font-size:clamp(28px, 3vw, 40px);
      line-height:1.22;
      letter-spacing:-.3px;
      max-width:12ch;
    }
    .section-lead{
      max-width:56rem;
      color:var(--muted);
      font-size:16px;
      line-height:1.85;
    }
    .section-head.center .section-lead{
      max-width:44rem;
      margin-top:14px;
    }
    .muted-badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 14px;
      border-radius:999px;
      background:var(--bg-soft);
      border:1px solid rgba(184,92,255,.14);
      color:#5a3c69;
      font-size:13px;
      font-weight:700;
    }
    .muted-badge::before{
      content:"";
      width:8px;height:8px;border-radius:50%;
      background:linear-gradient(135deg, var(--orange), var(--purple));
      box-shadow:0 0 0 4px rgba(184,92,255,.1);
    }
    .problem-grid{
      display:grid;
      grid-template-columns:repeat(12,minmax(0,1fr));
      gap:16px;
      margin-top:24px;
    }
    .problem-card{
      grid-column:span 4;
      background:var(--card);
      border:1px solid var(--line);
      border-radius:24px;
      padding:24px;
      box-shadow:var(--shadow);
      position:relative;
      overflow:hidden;
      transition:transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    }
    .problem-card::before{
      content:"";
      position:absolute;
      left:0;top:0;bottom:0;width:4px;
      background:linear-gradient(180deg, var(--orange), var(--purple));
      opacity:.95;
    }
    .problem-card:hover{
      transform:translateY(-4px);
      border-color:rgba(184,92,255,.24);
      box-shadow:0 20px 56px rgba(30,18,40,.12);
    }
    .problem-meta{
      display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:14px
    }
    .problem-index{
      width:34px;height:34px;border-radius:12px;
      background:rgba(184,92,255,.1);
      color:#6e3a92;
      display:grid;place-items:center;
      font-weight:800;
      flex:0 0 auto;
    }
    .problem-icon{
      width:38px;height:38px;border-radius:14px;
      display:grid;place-items:center;
      background:linear-gradient(135deg, rgba(255,106,61,.14), rgba(184,92,255,.14));
      color:#7c3fa6;
      font-size:18px;
    }
    .problem-card h3{
      font-size:20px;line-height:1.35;margin-bottom:10px;
    }
    .problem-card p{
      color:var(--muted);
      font-size:15px;
      line-height:1.88;
    }
    .problem-card .chips{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:16px;
    }
    .chip{
      display:inline-flex;
      align-items:center;
      padding:7px 11px;
      border-radius:999px;
      background:#f7f1fb;
      color:#5d4d67;
      font-size:12px;
      border:1px solid rgba(184,92,255,.12);
    }
    .solution-grid{
      display:grid;
      grid-template-columns:repeat(12,minmax(0,1fr));
      gap:18px;
      margin-top:26px;
    }
    .solution-card{
      grid-column:span 6;
      background:var(--card-strong);
      border:1px solid var(--line);
      border-radius:28px;
      padding:28px;
      box-shadow:var(--shadow);
      position:relative;
      overflow:hidden;
      transition:transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    }
    .solution-card:hover{
      transform:translateY(-4px);
      border-color:rgba(255,106,61,.22);
      box-shadow:0 24px 60px rgba(30,18,40,.12);
    }
    .solution-card.dark{
      background:linear-gradient(180deg, rgba(28,25,34,.98), rgba(18,16,22,.98));
      color:#fff;
      border-color:rgba(255,255,255,.1);
      box-shadow:var(--shadow-deep);
    }
    .step-label{
      display:inline-flex;
      align-items:center;
      gap:8px;
      margin-bottom:16px;
      padding:7px 12px;
      border-radius:999px;
      background:rgba(184,92,255,.08);
      color:#6e3a92;
      font-size:13px;
      font-weight:700;
    }
    .solution-card.dark .step-label{
      background:rgba(255,255,255,.06);
      color:#fff;
    }
    .solution-card h3{
      font-size:24px;
      line-height:1.28;
      margin-bottom:12px;
    }
    .solution-card p{
      color:inherit;
      opacity:.82;
      font-size:15px;
      line-height:1.9;
      margin-bottom:18px;
    }
    .solution-tags{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .solution-tags .chip{background:rgba(184,92,255,.08);color:#5e3a7d}
    .solution-card.dark .solution-tags .chip{
      background:rgba(255,255,255,.08);
      color:#fff;
      border-color:rgba(255,255,255,.08);
    }
    .solution-aside{
      grid-column:span 12;
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:16px;
    }
    .solution-mini{
      background:linear-gradient(180deg, rgba(255,255,255,.9), rgba(248,241,251,.96));
      border:1px solid var(--line);
      border-radius:22px;
      padding:20px;
      box-shadow:var(--shadow);
    }
    .solution-mini strong{
      display:block;
      font-size:17px;
      margin-bottom:8px;
    }
    .solution-mini span{
      color:var(--muted);
      font-size:14px;
      line-height:1.8;
    }
    .stats-band{
      margin-top:30px;
      background:linear-gradient(135deg, #15131b 0%, #1a1721 60%, #111014 100%);
      color:#fff;
      border-radius:34px;
      padding:30px;
      border:1px solid rgba(255,255,255,.08);
      box-shadow:var(--shadow-deep);
      position:relative;
      overflow:hidden;
    }
    .stats-band::before{
      content:"";
      position:absolute;
      left:-80px;top:-80px;
      width:220px;height:220px;border-radius:50%;
      background:radial-gradient(circle, rgba(255,106,61,.22), transparent 65%);
    }
    .stats-band::after{
      content:"";
      position:absolute;
      right:-80px;bottom:-100px;
      width:260px;height:260px;border-radius:50%;
      background:radial-gradient(circle, rgba(184,92,255,.22), transparent 65%);
    }
    .stats-grid{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:16px;
    }
    .stat{
      padding:12px 6px;
    }
    .stat .num{
      display:block;
      font-size:34px;
      font-weight:900;
      line-height:1;
      letter-spacing:-.8px;
      margin-bottom:10px;
      background:linear-gradient(135deg, #fff, #ffcdbb 35%, #f0d6ff 70%, #fff);
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
    }
    .stat .label{
      display:block;
      font-size:14px;
      color:rgba(255,255,255,.88);
      margin-bottom:8px;
    }
    .stat .desc{
      font-size:13px;
      line-height:1.8;
      color:rgba(255,255,255,.68);
    }
    .testimonials{
      display:grid;
      grid-template-columns:repeat(12,minmax(0,1fr));
      gap:18px;
      margin-top:24px;
    }
    .quote{
      grid-column:span 4;
      background:#fff;
      border-radius:24px;
      border:1px solid var(--line);
      box-shadow:var(--shadow);
      padding:24px;
      position:relative;
    }
    .quote::before{
      content:"“";
      position:absolute;
      top:16px;right:18px;
      font-size:58px;
      line-height:1;
      color:rgba(184,92,255,.16);
      font-weight:900;
    }
    .quote p{
      font-size:15px;
      line-height:1.9;
      color:#3c3445;
      margin-bottom:16px;
    }
    .quote footer{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      align-items:center;
      justify-content:space-between;
      color:var(--muted);
      font-size:13px;
    }
    .quote .role{
      font-weight:700;
      color:#5a3c69;
    }
    .quote .scene{
      padding:6px 10px;
      border-radius:999px;
      background:var(--bg-soft);
      color:#6a4d79;
      border:1px solid rgba(184,92,255,.12);
    }
    .directory{
      margin-top:24px;
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:18px;
      align-items:stretch;
    }
    .directory-main{
      background:linear-gradient(180deg, rgba(255,255,255,.95), rgba(248,241,251,.92));
      border:1px solid var(--line);
      box-shadow:var(--shadow);
      border-radius:30px;
      padding:28px;
      overflow:hidden;
      position:relative;
    }
    .directory-main::before{
      content:"";
      position:absolute;
      inset:auto -80px -80px auto;
      width:220px;height:220px;border-radius:50%;
      background:radial-gradient(circle, rgba(255,106,61,.12), transparent 70%);
    }
    .directory-title{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:14px;
      margin-bottom:18px;
    }
    .directory-title h3{
      font-size:26px;
      line-height:1.28;
      max-width:13ch;
    }
    .directory-title p{
      max-width:30rem;
      color:var(--muted);
      font-size:15px;
      line-height:1.88;
      margin-top:10px;
    }
    .directory-list{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:14px;
      margin-top:18px;
    }
    .directory-item{
      padding:18px;
      border-radius:20px;
      background:#fff;
      border:1px solid var(--line);
      transition:transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    }
    .directory-item:hover{
      transform:translateY(-3px);
      border-color:rgba(184,92,255,.2);
      box-shadow:0 14px 34px rgba(30,18,40,.08);
    }
    .directory-item strong{
      display:block;
      font-size:17px;
      margin-bottom:8px;
    }
    .directory-item p{
      color:var(--muted);
      font-size:14px;
      line-height:1.85;
    }
    .directory-side{
      display:grid;
      gap:18px;
    }
    .directory-feature{
      background:linear-gradient(180deg, #1a1721 0%, #111014 100%);
      color:#fff;
      border-radius:30px;
      border:1px solid rgba(255,255,255,.1);
      padding:28px;
      box-shadow:var(--shadow-deep);
    }
    .directory-feature h3{
      font-size:25px;
      line-height:1.25;
      margin-bottom:12px;
    }
    .directory-feature p{
      color:rgba(255,255,255,.78);
      font-size:15px;
      line-height:1.9;
      margin-bottom:18px;
    }
    .feature-tags{
      display:flex;flex-wrap:wrap;gap:8px;margin-bottom:20px;
    }
    .feature-tags .chip{
      background:rgba(255,255,255,.08);
      color:#fff;
      border-color:rgba(255,255,255,.08);
    }
    .directory-cta{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
    }
    .directory-tip{
      background:#fff;
      border:1px solid var(--line);
      border-radius:24px;
      padding:22px;
      box-shadow:var(--shadow);
    }
    .directory-tip strong{
      display:block;
      font-size:18px;
      margin-bottom:10px;
    }
    .directory-tip p{
      color:var(--muted);
      font-size:14px;
      line-height:1.85;
      margin-bottom:14px;
    }
    .tip-list{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:10px;
    }
    .tip-list li{
      display:flex;gap:10px;align-items:flex-start;
      font-size:14px;
      color:#3c3445;
    }
    .tip-list li::before{
      content:"";
      width:10px;height:10px;border-radius:50%;
      margin-top:9px;
      background:linear-gradient(135deg, var(--orange), var(--purple));
      box-shadow:0 0 0 4px rgba(184,92,255,.1);
      flex:0 0 auto;
    }
    .faq-grid{
      display:grid;
      gap:14px;
      margin-top:24px;
    }
    details.faq-item{
      background:#fff;
      border:1px solid var(--line);
      border-radius:20px;
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    details.faq-item[open]{
      border-color:rgba(184,92,255,.22);
      box-shadow:0 18px 40px rgba(30,18,40,.1);
    }
    details.faq-item summary{
      list-style:none;
      cursor:pointer;
      padding:20px 22px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      font-weight:800;
      font-size:16px;
      color:#30273a;
      outline:none;
      user-select:none;
    }
    details.faq-item summary::-webkit-details-marker{display:none}
    details.faq-item summary::after{
      content:"+";
      width:34px;height:34px;border-radius:12px;
      display:grid;place-items:center;
      background:rgba(184,92,255,.1);
      color:#6e3a92;
      font-size:20px;
      flex:0 0 auto;
      transition:transform var(--transition), background var(--transition);
    }
    details.faq-item[open] summary{
      background:linear-gradient(180deg, rgba(248,241,251,.9), rgba(255,255,255,.88));
    }
    details.faq-item[open] summary::after{
      content:"–";
      transform:rotate(0deg);
      background:rgba(255,106,61,.12);
      color:#b13d16;
    }
    .faq-content{
      padding:0 22px 22px;
      color:var(--muted);
      font-size:15px;
      line-height:1.9;
      border-left:4px solid transparent;
    }
    details.faq-item[open] .faq-content{
      border-left-color:var(--purple);
    }
    .cta-banner{
      background:
        radial-gradient(circle at 12% 30%, rgba(255,106,61,.18), transparent 26%),
        radial-gradient(circle at 82% 20%, rgba(184,92,255,.2), transparent 24%),
        linear-gradient(135deg, #15131b, #1b1722 58%, #111014);
      color:#fff;
      border-radius:34px;
      padding:32px;
      border:1px solid rgba(255,255,255,.08);
      box-shadow:var(--shadow-deep);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
      overflow:hidden;
      position:relative;
    }
    .cta-banner::before{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(120deg, transparent 0%, rgba(255,255,255,.04) 50%, transparent 100%);
      pointer-events:none;
    }
    .cta-banner h2{
      font-size:clamp(28px, 3vw, 38px);
      line-height:1.22;
      margin-bottom:12px;
      max-width:14ch;
    }
    .cta-banner p{
      color:rgba(255,255,255,.78);
      max-width:54rem;
      font-size:15px;
      line-height:1.9;
    }
    .cta-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      justify-content:flex-end;
      flex:0 0 auto;
    }
    .site-footer{
      margin-top:36px;
      background:#111014;
      color:#fff;
      position:relative;
      overflow:hidden;
    }
    .site-footer::before{
      content:"";
      position:absolute;
      top:0;left:0;right:0;height:2px;
      background:linear-gradient(90deg, transparent, var(--purple), var(--orange), transparent);
    }
    .footer-wrap{
      padding:42px 0 34px;
      display:grid;
      grid-template-columns:1.4fr .8fr .8fr;
      gap:26px;
    }
    .footer-brand .brand-title{font-size:20px}
    .footer-brand .brand-sub{color:rgba(255,255,255,.7)}
    .footer-text{
      margin-top:14px;
      color:rgba(255,255,255,.72);
      font-size:14px;
      line-height:1.9;
      max-width:34rem;
    }
    .footer-col h3{
      font-size:15px;
      color:#fff;
      margin-bottom:14px;
    }
    .footer-links{
      display:grid;
      gap:10px;
    }
    .footer-links a{
      color:rgba(255,255,255,.72);
      font-size:14px;
      width:fit-content;
    }
    .footer-links a:hover,
    .footer-links a:focus-visible{
      color:#fff;
      text-shadow:0 0 18px rgba(184,92,255,.28);
    }
    .footer-meta{
      border-top:1px solid rgba(255,255,255,.08);
      padding:16px 0 28px;
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      color:rgba(255,255,255,.58);
      font-size:13px;
      line-height:1.7;
    }
    .notice{
      display:inline-flex;
      align-items:center;
      gap:8px;
    }
    .notice::before{
      content:"";
      width:8px;height:8px;border-radius:50%;
      background:var(--green);
      box-shadow:0 0 0 4px rgba(53,196,141,.12);
      flex:0 0 auto;
    }
    .mobile-only{display:none}
    .desktop-only{display:flex}
    .sep{
      height:1px;
      background:linear-gradient(90deg, transparent, rgba(184,92,255,.18), rgba(255,106,61,.18), transparent);
      margin:22px 0;
    }
    .reveal{
      animation:fadeUp .7s ease both;
    }
    .delay-1{animation-delay:.05s}
    .delay-2{animation-delay:.12s}
    .delay-3{animation-delay:.18s}
    .delay-4{animation-delay:.24s}
    @keyframes fadeUp{
      from{opacity:0;transform:translateY(14px)}
      to{opacity:1;transform:translateY(0)}
    }
    @media (max-width: 1080px){
      .hero-grid,
      .directory,
      .footer-wrap{
        grid-template-columns:1fr;
      }
      .dashboard{min-height:420px}
      .section-head{
        flex-direction:column;
        align-items:flex-start;
      }
      .section-head.center{align-items:center}
      .section-title{max-width:unset}
      .problem-card{grid-column:span 6}
      .solution-card{grid-column:span 12}
      .solution-aside{grid-template-columns:repeat(2,minmax(0,1fr))}
      .quote{grid-column:span 6}
      .stats-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
    }
    @media (max-width: 820px){
      .nav-wrap{
        position:relative;
      }
      .menu-toggle{display:inline-flex}
      .nav,
      .nav-cta{
        display:none;
      }
      .nav-panel{
        display:none;
        position:absolute;
        left:0;right:0;top:100%;
        margin-top:1px;
        background:linear-gradient(180deg, rgba(17,16,20,.99), rgba(23,21,29,.99));
        border-bottom:1px solid rgba(255,255,255,.08);
        padding:16px 0 20px;
        box-shadow:0 24px 40px rgba(0,0,0,.2);
      }
      .nav-panel.open{display:block}
      .nav-panel .nav,
      .nav-panel .nav-cta{
        display:flex;
        flex-direction:column;
        align-items:stretch;
        gap:10px;
      }
      .nav-panel .nav{
        margin-bottom:14px;
      }
      .nav-panel .nav a{
        width:100%;
        border-radius:16px;
        padding:14px 16px;
      }
      .nav-panel .nav a.active::after{
        left:18px;right:auto;width:64px;bottom:10px;
      }
      .nav-panel .nav-cta .btn{width:100%}
      .hero{padding:48px 0 30px}
      .hero h1{max-width:unset}
      .hero-actions .btn{flex:1 1 220px}
      .problem-card{grid-column:span 12}
      .quote{grid-column:span 12}
      .directory-list{grid-template-columns:1fr}
      .cta-banner{
        flex-direction:column;
        align-items:flex-start;
      }
      .cta-actions{justify-content:flex-start}
    }
    @media (max-width: 560px){
      body{
        background:
          radial-gradient(circle at 12% 8%, rgba(184,92,255,.07), transparent 24%),
          radial-gradient(circle at 88% 8%, rgba(255,106,61,.07), transparent 18%),
          linear-gradient(180deg, #16141b 0%, #16141b 16%, var(--bg) 16%, var(--bg) 100%);
      }
      .container{width:min(var(--container), calc(100% - 24px))}
      .nav-wrap{min-height:68px}
      .brand-mark{width:38px;height:38px;border-radius:12px}
      .brand-title{font-size:16px}
      .brand-sub{display:none}
      .hero{padding:38px 0 24px}
      .hero h1{font-size:clamp(30px, 8vw, 38px)}
      .hero-lead,.section-lead,.cta-banner p{font-size:15px}
      .dashboard{padding:18px;border-radius:26px;min-height:360px}
      .dashboard-grid{grid-template-columns:1fr}
      .mini-grid{grid-template-columns:1fr}
      .section{padding:58px 0}
      .stats-band{padding:22px;border-radius:28px}
      .stats-grid{grid-template-columns:1fr}
      .solution-aside{grid-template-columns:1fr}
      .cta-banner,.directory-main,.directory-feature,.directory-tip,.problem-card,.solution-card,.quote,details.faq-item{border-radius:22px}
      .footer-meta{
        flex-direction:column;
      }
      .hero-actions,.directory-cta,.cta-actions{
        width:100%;
      }
      .hero-actions .btn,
      .directory-cta .btn,
      .cta-actions .btn{
        width:100%;
      }
      .section-title{font-size:clamp(26px, 8vw, 34px)}
      .directory-title{
        flex-direction:column;
      }
      .directory-title h3{max-width:unset}
      .site-footer .brand-sub{display:block}
    }

/* roulang page: category1 */
:root{
      --bg: #f7f0e7;
      --bg-soft: #fff8ef;
      --surface: #ffffff;
      --surface-2: #f3e7ff;
      --dark: #111014;
      --dark-2: #18161e;
      --dark-3: #23202a;
      --text: #2d2732;
      --muted: #6d6474;
      --line: #e8dde9;
      --line-2: rgba(255,255,255,.12);
      --primary: #b85cff;
      --primary-2: #8f3df0;
      --accent: #ff6a3d;
      --accent-2: #ff8b5e;
      --success: #35c48d;
      --warning: #ffb84d;
      --danger: #e94b5f;
      --shadow: 0 18px 50px rgba(30, 18, 40, 0.08);
      --shadow-2: 0 26px 80px rgba(23, 13, 35, 0.18);
      --glow: 0 0 0 1px rgba(184, 92, 255, 0.24), 0 24px 70px rgba(184, 92, 255, 0.18);
      --radius-xl: 28px;
      --radius-lg: 24px;
      --radius-md: 18px;
      --radius-sm: 14px;
      --radius-pill: 999px;
      --container: 1200px;
      --gap: 24px;
      --ease: 220ms cubic-bezier(.2,.8,.2,1);
    }
    *,*::before,*::after{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: PingFang SC, Microsoft YaHei, Noto Sans SC, Helvetica Neue, Arial, sans-serif;
      color:var(--text);
      background:
        radial-gradient(1200px 600px at 85% -10%, rgba(184,92,255,.10), transparent 60%),
        radial-gradient(900px 500px at 10% 5%, rgba(255,106,61,.09), transparent 54%),
        linear-gradient(180deg, #fffaf3 0%, #f7f0e7 100%);
      line-height:1.8;
      overflow-x:hidden;
    }
    img{max-width:100%;display:block}
    a{color:inherit;text-decoration:none;transition:color var(--ease),opacity var(--ease),transform var(--ease),border-color var(--ease),background var(--ease),box-shadow var(--ease)}
    button,input,select,textarea{font:inherit}
    button{cursor:pointer}
    ::selection{background:rgba(184,92,255,.18);color:#22152b}
    .container{
      width:min(var(--container), calc(100% - 40px));
      margin:0 auto;
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      background:rgba(17,16,20,.92);
      backdrop-filter:blur(12px);
      border-bottom:1px solid rgba(255,255,255,.06);
      box-shadow:0 10px 30px rgba(0,0,0,.18);
    }
    .site-header::after{
      content:"";
      display:block;
      height:1px;
      background:linear-gradient(90deg, transparent, #b85cff 20%, #ff6a3d 78%, transparent);
    }
    .nav-wrap{
      min-height:74px;
      display:flex;
      align-items:center;
      gap:18px;
      position:relative;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:14px;
      min-width:0;
      color:#fff;
    }
    .brand-mark{
      width:42px;
      height:42px;
      border-radius:14px;
      background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,.5), transparent 28%),
        linear-gradient(135deg, var(--primary), var(--accent));
      box-shadow:0 0 0 1px rgba(255,255,255,.10), 0 12px 30px rgba(184,92,255,.28);
      position:relative;
      flex:none;
    }
    .brand-mark::before,
    .brand-mark::after{
      content:"";
      position:absolute;
      inset:11px;
      border:1px solid rgba(255,255,255,.36);
      border-radius:10px;
      transform:rotate(12deg);
    }
    .brand-mark::after{
      inset:15px 13px 13px 15px;
      border-color:rgba(255,255,255,.22);
      transform:rotate(-16deg);
    }
    .brand-text{
      display:flex;
      flex-direction:column;
      line-height:1.2;
      min-width:0;
    }
    .brand-title{
      font-size:18px;
      font-weight:800;
      letter-spacing:.02em;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .brand-sub{
      font-size:12px;
      color:rgba(255,255,255,.68);
      margin-top:4px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .nav{
      display:flex;
      align-items:center;
      gap:8px;
      margin-left:auto;
    }
    .nav a{
      position:relative;
      color:rgba(255,255,255,.76);
      padding:10px 14px;
      border-radius:999px;
      font-size:14px;
      font-weight:600;
      letter-spacing:.01em;
    }
    .nav a:hover{
      color:#fff;
      background:rgba(255,255,255,.04);
    }
    .nav a.active{
      color:#fff;
      background:rgba(184,92,255,.12);
      box-shadow:inset 0 0 0 1px rgba(184,92,255,.25), 0 0 26px rgba(184,92,255,.18);
    }
    .nav a.active::after{
      content:"";
      position:absolute;
      left:16px;
      right:16px;
      bottom:6px;
      height:2px;
      border-radius:999px;
      background:linear-gradient(90deg, var(--primary), var(--accent));
      box-shadow:0 0 12px rgba(184,92,255,.65);
    }
    .nav-cta{
      margin-left:8px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      border:0;
      border-radius:var(--radius-pill);
      padding:13px 20px;
      font-size:15px;
      font-weight:700;
      line-height:1;
      transition:transform var(--ease), box-shadow var(--ease), background var(--ease), border-color var(--ease), color var(--ease), opacity var(--ease);
      white-space:nowrap;
      outline:none;
    }
    .btn:focus-visible,
    .menu-toggle:focus-visible,
    summary:focus-visible,
    input:focus-visible,
    select:focus-visible,
    textarea:focus-visible{
      outline:3px solid rgba(184,92,255,.24);
      outline-offset:2px;
    }
    .btn:hover{transform:translateY(-2px)}
    .btn:active{transform:translateY(0)}
    .btn-primary{
      color:#fff;
      background:linear-gradient(135deg, var(--accent), var(--primary));
      box-shadow:0 18px 30px rgba(255,106,61,.20), 0 16px 32px rgba(184,92,255,.20);
    }
    .btn-primary:hover{box-shadow:0 22px 38px rgba(255,106,61,.24), 0 20px 40px rgba(184,92,255,.24)}
    .btn-secondary{
      color:#f6eff8;
      background:rgba(255,255,255,.03);
      border:1px solid rgba(184,92,255,.30);
      box-shadow:0 0 0 1px rgba(255,255,255,.02);
    }
    .btn-secondary:hover{
      background:rgba(184,92,255,.10);
      border-color:rgba(255,106,61,.45);
    }
    .menu-toggle{
      display:none;
      margin-left:auto;
      width:46px;
      height:46px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.10);
      background:rgba(255,255,255,.04);
      color:#fff;
      align-items:center;
      justify-content:center;
      padding:0;
      flex:none;
    }
    .menu-lines{
      width:18px;
      height:14px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .menu-lines span{
      display:block;
      height:2px;
      border-radius:999px;
      background:linear-gradient(90deg, #fff, rgba(255,255,255,.68));
      transition:transform var(--ease), opacity var(--ease), width var(--ease);
    }
    .menu-toggle[aria-expanded="true"] .menu-lines span:nth-child(1){transform:translateY(6px) rotate(45deg)}
    .menu-toggle[aria-expanded="true"] .menu-lines span:nth-child(2){opacity:0}
    .menu-toggle[aria-expanded="true"] .menu-lines span:nth-child(3){transform:translateY(-6px) rotate(-45deg)}
    .mobile-only{display:none}
    main{position:relative}
    .section{
      padding:86px 0;
      position:relative;
    }
    .section-tight{padding:64px 0}
    .section-dark{
      background:
        radial-gradient(1000px 420px at 80% 0%, rgba(184,92,255,.14), transparent 58%),
        radial-gradient(900px 380px at 15% 20%, rgba(255,106,61,.12), transparent 55%),
        linear-gradient(180deg, #17131d 0%, #111014 100%);
      color:#fff;
    }
    .section-dark .section-kicker,
    .section-dark .eyebrow,
    .section-dark .lead,
    .section-dark p,
    .section-dark li,
    .section-dark .muted{
      color:rgba(255,255,255,.78);
    }
    .hero{
      padding:28px 0 32px;
      background:
        linear-gradient(180deg, #111014 0%, #17131d 68%, #f7f0e7 69%, #f7f0e7 100%);
    }
    .hero-shell{
      position:relative;
      overflow:hidden;
      border-radius:32px;
      padding:34px;
      background:
        linear-gradient(145deg, rgba(26,22,31,.97), rgba(17,16,20,.96)),
        linear-gradient(135deg, rgba(184,92,255,.18), rgba(255,106,61,.10));
      border:1px solid rgba(255,255,255,.08);
      box-shadow:var(--shadow-2);
    }
    .hero-shell::before,
    .hero-shell::after{
      content:"";
      position:absolute;
      border-radius:50%;
      pointer-events:none;
      filter:blur(2px);
    }
    .hero-shell::before{
      width:340px;height:340px;
      right:-110px;top:-120px;
      background:radial-gradient(circle, rgba(184,92,255,.18) 0%, rgba(184,92,255,.07) 35%, transparent 70%);
    }
    .hero-shell::after{
      width:300px;height:300px;
      left:-100px;bottom:-140px;
      background:radial-gradient(circle, rgba(255,106,61,.16) 0%, rgba(255,106,61,.05) 35%, transparent 70%);
    }
    .hero-grid{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns: 1.02fr .98fr;
      gap:28px;
      align-items:center;
    }
    .eyebrow,
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:8px 14px;
      border-radius:999px;
      font-size:13px;
      font-weight:700;
      letter-spacing:.02em;
      background:rgba(255,255,255,.06);
      color:#f4edf7;
      border:1px solid rgba(255,255,255,.10);
      margin-bottom:18px;
    }
    .eyebrow::before,
    .section-kicker::before{
      content:"";
      width:8px;
      height:8px;
      border-radius:999px;
      background:linear-gradient(135deg, var(--accent), var(--primary));
      box-shadow:0 0 16px rgba(184,92,255,.65);
    }
    h1,h2,h3,h4{
      margin:0;
      line-height:1.2;
      letter-spacing:-.02em;
    }
    h1{
      font-size:clamp(34px, 4.5vw, 56px);
      font-weight:800;
      max-width:12.5em;
      color:#fff;
    }
    h2{
      font-size:clamp(28px, 3vw, 38px);
      font-weight:800;
      color:inherit;
    }
    h3{
      font-size:clamp(20px, 2vw, 26px);
      font-weight:800;
      color:inherit;
    }
    p{
      margin:0;
    }
    .hero-copy .lead{
      margin-top:18px;
      font-size:17px;
      line-height:1.88;
      color:rgba(255,255,255,.76);
      max-width:38em;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:14px;
      margin-top:28px;
    }
    .hero-tags{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:22px;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:9px 14px;
      border-radius:999px;
      font-size:13px;
      font-weight:700;
      line-height:1;
      border:1px solid rgba(255,255,255,.08);
      background:rgba(255,255,255,.05);
      color:rgba(255,255,255,.82);
    }
    .tag::before{
      content:"";
      width:7px;
      height:7px;
      border-radius:999px;
      background:linear-gradient(135deg, var(--primary), var(--accent));
      box-shadow:0 0 10px rgba(184,92,255,.55);
    }
    .hero-note{
      margin-top:16px;
      font-size:13px;
      color:rgba(255,255,255,.60);
    }
    .hero-visual{
      position:relative;
      min-height:500px;
      display:flex;
      align-items:center;
      justify-content:center;
    }
    .dashboard{
      position:relative;
      width:min(100%, 510px);
      border-radius:28px;
      padding:18px;
      background:
        linear-gradient(180deg, rgba(31,28,39,.96), rgba(20,18,26,.96));
      border:1px solid rgba(255,255,255,.10);
      box-shadow:0 24px 70px rgba(0,0,0,.34), 0 0 0 1px rgba(184,92,255,.16);
      overflow:hidden;
    }
    .dashboard::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg, rgba(184,92,255,.07) 0 1px, transparent 1px 100%),
        linear-gradient(180deg, rgba(255,255,255,.05) 0 1px, transparent 1px 100%);
      background-size:46px 46px;
      opacity:.4;
      pointer-events:none;
    }
    .dashboard-top{
      position:relative;
      z-index:1;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      margin-bottom:16px;
    }
    .dashboard-title{
      color:#fff;
      font-size:15px;
      font-weight:700;
      display:flex;
      align-items:center;
      gap:10px;
    }
    .dashboard-title span{
      width:10px;
      height:10px;
      border-radius:999px;
      background:linear-gradient(135deg, var(--accent), var(--primary));
      box-shadow:0 0 14px rgba(184,92,255,.55);
    }
    .dashboard-badge{
      padding:8px 12px;
      border-radius:999px;
      color:#fff;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.08);
      font-size:12px;
      font-weight:700;
    }
    .dash-grid{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:14px;
    }
    .dash-card{
      border-radius:20px;
      padding:16px;
      background:rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.08);
      min-height:132px;
    }
    .dash-card h4{
      color:#fff;
      font-size:14px;
      margin-bottom:8px;
    }
    .mini-list{
      display:grid;
      gap:10px;
      margin-top:12px;
    }
    .mini-row{
      display:flex;
      align-items:center;
      gap:10px;
      justify-content:space-between;
      color:rgba(255,255,255,.76);
      font-size:13px;
    }
    .mini-row strong{color:#fff;font-size:14px}
    .mini-meter{
      flex:1;
      height:8px;
      border-radius:999px;
      background:rgba(255,255,255,.08);
      overflow:hidden;
    }
    .mini-meter > span{
      display:block;
      height:100%;
      border-radius:inherit;
      background:linear-gradient(90deg, var(--accent), var(--primary));
      box-shadow:0 0 18px rgba(184,92,255,.45);
    }
    .feature-stack{
      display:grid;
      gap:14px;
    }
    .feature-pill{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      border-radius:18px;
      padding:15px 16px;
      background:linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
      border:1px solid rgba(255,255,255,.08);
      color:#fff;
      font-size:13px;
      font-weight:700;
    }
    .feature-pill span{
      color:rgba(255,255,255,.70);
      font-weight:600;
      font-size:12px;
    }
    .chart{
      margin-top:14px;
      display:flex;
      align-items:end;
      gap:10px;
      height:120px;
      padding-top:6px;
    }
    .chart i{
      display:block;
      width:100%;
      border-radius:12px 12px 4px 4px;
      background:linear-gradient(180deg, rgba(255,106,61,.95), rgba(184,92,255,.7));
      box-shadow:0 0 18px rgba(184,92,255,.28);
    }
    .chart i:nth-child(1){height:28%}
    .chart i:nth-child(2){height:48%}
    .chart i:nth-child(3){height:38%}
    .chart i:nth-child(4){height:65%}
    .chart i:nth-child(5){height:52%}
    .chart i:nth-child(6){height:78%}
    .chart i:nth-child(7){height:62%}
    .chart i:nth-child(8){height:90%}
    .hero-floating{
      position:absolute;
      right:-20px;
      bottom:18px;
      width:190px;
      border-radius:18px;
      padding:14px;
      background:rgba(18,16,22,.88);
      border:1px solid rgba(184,92,255,.22);
      box-shadow:0 18px 40px rgba(0,0,0,.22);
      color:#fff;
    }
    .hero-floating strong{
      display:block;
      font-size:22px;
      margin-bottom:3px;
      background:linear-gradient(90deg, #fff, #f3e7ff 45%, #ffcfbb 100%);
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
    }
    .hero-floating small{
      display:block;
      color:rgba(255,255,255,.68);
      font-size:12px;
      line-height:1.55;
    }
    .section-light{
      background:linear-gradient(180deg, rgba(255,248,239,.78), rgba(247,240,231,1));
    }
    .section-head{
      display:flex;
      align-items:end;
      justify-content:space-between;
      gap:24px;
      margin-bottom:26px;
    }
    .section-head p{
      color:var(--muted);
      max-width:42em;
      font-size:16px;
      line-height:1.85;
    }
    .section-head .title-wrap{
      max-width:760px;
    }
    .badge-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:14px;
    }
    .mini-badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:9px 13px;
      border-radius:999px;
      background:#fff;
      border:1px solid var(--line);
      color:#4b4352;
      font-size:13px;
      font-weight:700;
      box-shadow:0 10px 30px rgba(40, 24, 54, .04);
    }
    .mini-badge i{
      width:8px;
      height:8px;
      border-radius:999px;
      background:linear-gradient(135deg, var(--primary), var(--accent));
      box-shadow:0 0 12px rgba(184,92,255,.35);
      display:inline-block;
    }
    .overview-grid{
      display:grid;
      grid-template-columns:repeat(3, minmax(0, 1fr));
      gap:20px;
    }
    .info-card{
      border-radius:var(--radius-lg);
      padding:24px;
      background:var(--surface);
      border:1px solid rgba(80,50,90,.10);
      box-shadow:var(--shadow);
      transition:transform var(--ease), box-shadow var(--ease), border-color var(--ease);
      height:100%;
    }
    .info-card:hover{
      transform:translateY(-4px);
      border-color:rgba(184,92,255,.22);
      box-shadow:0 24px 60px rgba(30,18,40,.10);
    }
    .info-card .icon{
      width:48px;
      height:48px;
      border-radius:16px;
      display:grid;
      place-items:center;
      margin-bottom:16px;
      background:linear-gradient(135deg, rgba(184,92,255,.12), rgba(255,106,61,.10));
      border:1px solid rgba(184,92,255,.16);
      color:var(--primary);
      font-size:18px;
      font-weight:800;
    }
    .info-card p{
      margin-top:10px;
      color:var(--muted);
      line-height:1.9;
      font-size:15px;
    }
    .info-list{
      margin-top:12px;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .info-list li{
      position:relative;
      padding-left:18px;
      color:var(--text);
      font-size:14px;
      line-height:1.7;
    }
    .info-list li::before{
      content:"";
      position:absolute;
      left:0;
      top:.72em;
      width:8px;
      height:8px;
      border-radius:999px;
      background:linear-gradient(135deg, var(--accent), var(--primary));
      box-shadow:0 0 10px rgba(184,92,255,.22);
      transform:translateY(-50%);
    }
    .chip-strip{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .chip{
      display:inline-flex;
      align-items:center;
      padding:10px 14px;
      border-radius:999px;
      background:rgba(255,255,255,.88);
      border:1px solid var(--line);
      color:#4a4351;
      font-size:13px;
      font-weight:700;
      box-shadow:0 10px 30px rgba(40,24,54,.04);
      transition:transform var(--ease), border-color var(--ease), box-shadow var(--ease), color var(--ease), background var(--ease);
    }
    .chip:hover{
      transform:translateY(-2px);
      border-color:rgba(184,92,255,.26);
      color:#22152b;
      box-shadow:0 14px 30px rgba(184,92,255,.10);
      background:#fff;
    }
    .directory-layout{
      display:grid;
      grid-template-columns:minmax(0, 1.05fr) 340px;
      gap:24px;
      align-items:start;
    }
    .list-stack{
      display:grid;
      gap:16px;
    }
    .entry-card{
      display:grid;
      grid-template-columns:72px 1fr auto;
      gap:18px;
      align-items:center;
      border-radius:22px;
      padding:20px 22px;
      background:var(--surface);
      border:1px solid rgba(80,50,90,.10);
      box-shadow:var(--shadow);
      transition:transform var(--ease), box-shadow var(--ease), border-color var(--ease);
      position:relative;
      overflow:hidden;
    }
    .entry-card::before{
      content:"";
      position:absolute;
      left:0;
      top:0;
      bottom:0;
      width:4px;
      background:linear-gradient(180deg, var(--primary), var(--accent));
      opacity:.95;
    }
    .entry-card:hover{
      transform:translateY(-3px);
      box-shadow:0 22px 50px rgba(40,24,54,.10);
      border-color:rgba(184,92,255,.22);
    }
    .entry-index{
      width:72px;
      height:72px;
      border-radius:20px;
      background:linear-gradient(135deg, rgba(184,92,255,.12), rgba(255,106,61,.12));
      color:var(--dark);
      display:grid;
      place-items:center;
      font-size:22px;
      font-weight:800;
      letter-spacing:.02em;
      border:1px solid rgba(184,92,255,.14);
    }
    .entry-copy h3{
      font-size:22px;
      margin-bottom:8px;
      color:var(--dark);
    }
    .entry-copy p{
      color:var(--muted);
      font-size:15px;
      line-height:1.88;
      margin-bottom:14px;
      max-width:54em;
    }
    .entry-meta{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .meta-tag{
      display:inline-flex;
      align-items:center;
      gap:6px;
      font-size:12px;
      font-weight:700;
      color:#584d62;
      background:#faf6fe;
      border:1px solid #eadcf3;
      border-radius:999px;
      padding:7px 10px;
    }
    .meta-tag.hot{
      color:#7b3b1a;
      background:#fff2ea;
      border-color:#ffd5c4;
    }
    .meta-tag.ok{
      color:#18523e;
      background:#edfdf5;
      border-color:#c7f0de;
    }
    .entry-link{
      align-self:center;
      min-width:108px;
      padding:12px 16px;
      text-align:center;
      border-radius:999px;
      background:rgba(17,16,20,.96);
      color:#fff;
      font-size:13px;
      font-weight:800;
      border:1px solid rgba(184,92,255,.26);
      box-shadow:0 12px 28px rgba(17,16,20,.18);
    }
    .entry-link:hover{
      transform:translateY(-2px);
      background:linear-gradient(135deg, var(--accent), var(--primary));
      border-color:transparent;
      box-shadow:0 18px 30px rgba(184,92,255,.18);
    }
    .directory-side{
      position:sticky;
      top:96px;
      display:grid;
      gap:18px;
    }
    .side-card{
      border-radius:24px;
      padding:24px;
      background:linear-gradient(180deg, #15131a, #111014);
      color:#fff;
      border:1px solid rgba(255,255,255,.08);
      box-shadow:0 22px 60px rgba(16,13,20,.25);
    }
    .side-card h3{
      margin-bottom:12px;
    }
    .side-card p{
      color:rgba(255,255,255,.74);
      font-size:15px;
      line-height:1.9;
      margin-bottom:18px;
    }
    .side-list{
      display:grid;
      gap:12px;
      margin:0;
      padding:0;
      list-style:none;
    }
    .side-list li{
      display:flex;
      gap:12px;
      align-items:flex-start;
      color:rgba(255,255,255,.80);
      font-size:14px;
      line-height:1.75;
    }
    .side-list i{
      width:24px;
      height:24px;
      border-radius:8px;
      flex:none;
      background:linear-gradient(135deg, rgba(184,92,255,.22), rgba(255,106,61,.18));
      border:1px solid rgba(255,255,255,.10);
      display:grid;
      place-items:center;
      font-style:normal;
      font-weight:800;
      color:#fff;
      margin-top:2px;
    }
    .side-cta{
      margin-top:20px;
      display:grid;
      gap:12px;
    }
    .side-cta .btn{
      width:100%;
    }
    .side-stat{
      display:grid;
      grid-template-columns:repeat(2, minmax(0, 1fr));
      gap:12px;
      margin-top:18px;
    }
    .side-stat .s{
      border-radius:18px;
      padding:14px;
      background:rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.08);
    }
    .side-stat strong{
      display:block;
      font-size:22px;
      line-height:1.1;
      color:#fff;
      margin-bottom:4px;
    }
    .side-stat span{
      display:block;
      font-size:12px;
      color:rgba(255,255,255,.66);
      line-height:1.5;
    }
    .spotlight-wrap{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:22px;
      align-items:stretch;
    }
    .spotlight-card{
      border-radius:28px;
      padding:28px;
      background:
        linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)),
        linear-gradient(135deg, rgba(184,92,255,.14), rgba(255,106,61,.12));
      border:1px solid rgba(255,255,255,.10);
      box-shadow:var(--glow);
    }
    .spotlight-card h3{
      margin-bottom:10px;
      color:#fff;
    }
    .spotlight-card p{
      color:rgba(255,255,255,.76);
      line-height:1.9;
      font-size:15px;
      margin-bottom:20px;
    }
    .step-grid{
      display:grid;
      gap:14px;
    }
    .step{
      display:grid;
      grid-template-columns: 46px 1fr;
      gap:14px;
      padding:16px 18px;
      border-radius:20px;
      background:rgba(17,16,20,.45);
      border:1px solid rgba(255,255,255,.08);
    }
    .step-num{
      width:46px;
      height:46px;
      border-radius:16px;
      display:grid;
      place-items:center;
      font-weight:800;
      color:#fff;
      background:linear-gradient(135deg, var(--accent), var(--primary));
      box-shadow:0 10px 22px rgba(184,92,255,.2);
    }
    .step h4{
      color:#fff;
      font-size:17px;
      margin-bottom:5px;
    }
    .step p{
      margin:0;
      font-size:14px;
      color:rgba(255,255,255,.72);
      line-height:1.8;
    }
    .stack-tags{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:16px;
    }
    .stack-tags .tag{
      background:rgba(255,255,255,.05);
    }
    .compare-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:22px;
    }
    .compare-card{
      border-radius:26px;
      padding:26px;
      background:var(--surface);
      border:1px solid rgba(80,50,90,.10);
      box-shadow:var(--shadow);
      position:relative;
      overflow:hidden;
    }
    .compare-card.dark{
      background:linear-gradient(180deg, #17131d 0%, #111014 100%);
      color:#fff;
      border-color:rgba(255,255,255,.08);
      box-shadow:0 26px 60px rgba(20,15,28,.22);
    }
    .compare-card .label{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:999px;
      font-size:12px;
      font-weight:800;
      margin-bottom:16px;
      background:#f5eff8;
      color:#5b4967;
    }
    .compare-card.dark .label{
      background:rgba(184,92,255,.15);
      color:#f6ebff;
      border:1px solid rgba(184,92,255,.26);
    }
    .compare-list{
      margin:0;
      padding:0;
      list-style:none;
      display:grid;
      gap:12px;
    }
    .compare-list li{
      display:flex;
      gap:12px;
      align-items:flex-start;
      line-height:1.8;
      font-size:15px;
      color:inherit;
    }
    .compare-list li i{
      flex:none;
      width:24px;
      height:24px;
      border-radius:8px;
      display:grid;
      place-items:center;
      font-style:normal;
      font-size:14px;
      font-weight:800;
      margin-top:2px;
      background:rgba(255,106,61,.12);
      color:var(--accent);
      border:1px solid rgba(255,106,61,.16);
    }
    .compare-card.dark .compare-list li i{
      background:rgba(184,92,255,.15);
      color:#fff;
      border-color:rgba(184,92,255,.24);
    }
    .compare-card.dark .compare-list li{
      color:rgba(255,255,255,.82);
    }
    .compare-arrow{
      display:grid;
      place-items:center;
      margin:22px auto 0;
      width:64px;
      height:64px;
      border-radius:999px;
      background:linear-gradient(135deg, var(--accent), var(--primary));
      box-shadow:0 18px 30px rgba(184,92,255,.22);
      color:#fff;
      font-size:24px;
      font-weight:800;
    }
    .faq-grid{
      display:grid;
      gap:14px;
      max-width:920px;
      margin:0 auto;
    }
    details{
      border-radius:20px;
      background:var(--surface);
      border:1px solid rgba(80,50,90,.10);
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    summary{
      list-style:none;
      cursor:pointer;
      padding:20px 22px;
      font-size:17px;
      font-weight:800;
      color:var(--dark);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
    }
    summary::-webkit-details-marker{display:none}
    summary::after{
      content:"+";
      width:32px;
      height:32px;
      border-radius:999px;
      display:grid;
      place-items:center;
      flex:none;
      background:linear-gradient(135deg, rgba(184,92,255,.10), rgba(255,106,61,.10));
      color:var(--primary);
      border:1px solid rgba(184,92,255,.16);
      transition:transform var(--ease), background var(--ease), color var(--ease);
    }
    details[open] summary{
      background:linear-gradient(90deg, rgba(243,231,255,.56), rgba(255,248,239,.96));
      border-bottom:1px solid var(--line);
    }
    details[open] summary::after{
      content:"–";
      background:linear-gradient(135deg, var(--accent), var(--primary));
      color:#fff;
    }
    .faq-body{
      padding:0 22px 22px;
      color:var(--muted);
      font-size:15px;
      line-height:1.9;
    }
    .faq-body p + p{margin-top:10px}
    .cta-wrap{
      display:grid;
      grid-template-columns: 1.06fr .94fr;
      gap:24px;
      align-items:stretch;
    }
    .cta-panel{
      border-radius:30px;
      padding:30px;
      background:
        radial-gradient(1000px 400px at 90% -15%, rgba(184,92,255,.16), transparent 45%),
        radial-gradient(800px 360px at 0% 100%, rgba(255,106,61,.14), transparent 50%),
        linear-gradient(180deg, #17131d, #111014);
      color:#fff;
      border:1px solid rgba(255,255,255,.08);
      box-shadow:0 28px 60px rgba(18,14,24,.24);
    }
    .cta-panel h2{
      color:#fff;
      margin-bottom:14px;
    }
    .cta-panel p{
      color:rgba(255,255,255,.76);
      font-size:16px;
      line-height:1.9;
      max-width:34em;
    }
    .cta-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:22px;
    }
    .cta-form{
      border-radius:30px;
      padding:28px;
      background:var(--surface);
      border:1px solid rgba(80,50,90,.10);
      box-shadow:var(--shadow);
    }
    .field-grid{
      display:grid;
      gap:14px;
    }
    .field{
      display:grid;
      gap:8px;
    }
    .field label{
      font-size:13px;
      font-weight:800;
      color:#4d4458;
    }
    .field input,
    .field select,
    .field textarea{
      width:100%;
      border-radius:16px;
      border:1px solid #e3d7e8;
      background:#fff;
      color:var(--text);
      padding:13px 14px;
      transition:border-color var(--ease), box-shadow var(--ease), background var(--ease);
      resize:vertical;
    }
    .field input::placeholder,
    .field textarea::placeholder{
      color:#988ca1;
    }
    .field input:focus,
    .field select:focus,
    .field textarea:focus{
      border-color:rgba(184,92,255,.42);
      box-shadow:0 0 0 4px rgba(184,92,255,.12);
      background:#fff;
      outline:none;
    }
    .form-note{
      margin-top:14px;
      font-size:12px;
      line-height:1.7;
      color:#7a6d86;
    }
    .form-status{
      margin-top:12px;
      font-size:14px;
      font-weight:700;
      min-height:1.5em;
      color:var(--success);
    }
    .site-footer{
      margin-top:0;
      background:linear-gradient(180deg, #111014, #0e0d11);
      color:#fff;
      border-top:1px solid rgba(255,255,255,.08);
      position:relative;
      overflow:hidden;
    }
    .site-footer::before{
      content:"";
      position:absolute;
      left:0;
      right:0;
      top:0;
      height:1px;
      background:linear-gradient(90deg, transparent, #b85cff 18%, #ff6a3d 78%, transparent);
    }
    .footer-grid{
      display:grid;
      grid-template-columns: 1.15fr .7fr .7fr 1fr;
      gap:24px;
      padding:56px 0 26px;
    }
    .footer-title{
      display:flex;
      align-items:center;
      gap:12px;
      margin-bottom:16px;
    }
    .footer-title .brand-mark{
      width:38px;
      height:38px;
      border-radius:12px;
    }
    .footer-title strong{
      font-size:18px;
      font-weight:800;
      display:block;
    }
    .footer-title small{
      display:block;
      margin-top:4px;
      color:rgba(255,255,255,.64);
      font-size:12px;
    }
    .footer-col p{
      color:rgba(255,255,255,.70);
      font-size:14px;
      line-height:1.9;
      margin:0;
    }
    .footer-links{
      display:grid;
      gap:10px;
      margin-top:4px;
    }
    .footer-links a{
      color:rgba(255,255,255,.74);
      font-size:14px;
      padding:2px 0;
    }
    .footer-links a:hover{
      color:#fff;
    }
    .footer-label{
      font-size:13px;
      font-weight:800;
      color:#fff;
      margin-bottom:14px;
    }
    .footer-contact{
      display:grid;
      gap:10px;
      color:rgba(255,255,255,.74);
      font-size:14px;
      line-height:1.8;
    }
    .footer-bottom{
      border-top:1px solid rgba(255,255,255,.08);
      padding:18px 0 24px;
      display:flex;
      flex-wrap:wrap;
      justify-content:space-between;
      gap:12px;
      align-items:center;
      color:rgba(255,255,255,.64);
      font-size:13px;
    }
    .footer-bottom .meta{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      align-items:center;
    }
    .footer-bottom .meta span{
      padding:7px 10px;
      border-radius:999px;
      background:rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.08);
    }
    .role,
    .scene{
      display:inline-flex;
      align-items:center;
      gap:8px;
    }
    .role::before,
    .scene::before{
      content:"";
      width:7px;
      height:7px;
      border-radius:999px;
      background:linear-gradient(135deg, var(--accent), var(--primary));
      box-shadow:0 0 10px rgba(184,92,255,.5);
    }
    .page-bg{
      position:fixed;
      inset:0;
      pointer-events:none;
      background:
        radial-gradient(700px 240px at 88% 12%, rgba(184,92,255,.07), transparent 55%),
        radial-gradient(600px 220px at 8% 8%, rgba(255,106,61,.06), transparent 52%);
      z-index:-1;
    }
    .content-divider{
      height:1px;
      background:linear-gradient(90deg, transparent, rgba(184,92,255,.22), rgba(255,106,61,.22), transparent);
      margin:0;
    }
    .breadcrumb{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      gap:8px;
      font-size:13px;
      color:rgba(255,255,255,.66);
      margin-bottom:16px;
    }
    .breadcrumb a{
      color:rgba(255,255,255,.72);
    }
    .breadcrumb a:hover{color:#fff}
    .breadcrumb .sep{
      color:rgba(255,255,255,.35);
    }
    .subline{
      margin-top:16px;
      font-size:14px;
      color:rgba(255,255,255,.62);
    }
    .muted{color:var(--muted)}
    .section-kicker.dark{
      background:rgba(255,255,255,.05);
      border-color:rgba(255,255,255,.08);
    }
    .heading-compact{
      max-width:12.5em;
    }
    .grid-note{
      font-size:13px;
      color:var(--muted);
      margin-top:10px;
    }
    @media (max-width: 1180px){
      .hero-grid,.cta-wrap,.directory-layout,.spotlight-wrap,.compare-grid,.footer-grid{
        grid-template-columns:1fr;
      }
      .directory-side{
        position:static;
      }
      .hero-visual{
        min-height:420px;
      }
      .overview-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
      }
      .footer-grid{
        gap:18px;
      }
    }
    @media (max-width: 980px){
      .nav{
        display:none;
      }
      .nav-cta.desktop-only{display:none}
      .menu-toggle{display:inline-flex}
      .mobile-only{display:block}
      .nav-panel{
        display:none;
        position:absolute;
        left:0;
        right:0;
        top:100%;
        margin-top:1px;
        padding:16px;
        background:rgba(17,16,20,.98);
        border-top:1px solid rgba(255,255,255,.08);
        border-bottom-left-radius:22px;
        border-bottom-right-radius:22px;
        box-shadow:0 18px 40px rgba(0,0,0,.26);
      }
      .nav-panel.is-open{display:block}
      .nav-panel .nav{
        display:grid;
        gap:8px;
        margin:0;
      }
      .nav-panel .nav a{
        padding:14px 16px;
        border-radius:16px;
      }
      .nav-panel .nav a.active::after{
        left:16px;
        right:auto;
        width:54px;
      }
      .nav-panel .nav-cta{
        margin:14px 0 0;
      }
      .nav-panel .btn{
        width:100%;
      }
      .section{padding:68px 0}
      .hero{padding:22px 0 28px}
      .hero-shell{padding:24px}
      .overview-grid{
        grid-template-columns:1fr;
      }
      .entry-card{
        grid-template-columns:66px 1fr;
      }
      .entry-link{
        grid-column:2;
        justify-self:start;
      }
      .hero-copy .lead{font-size:16px}
    }
    @media (max-width: 720px){
      .container{width:min(var(--container), calc(100% - 28px))}
      .brand-sub{display:none}
      .hero-shell{border-radius:26px}
      .hero-visual{min-height:360px}
      .dash-grid{grid-template-columns:1fr}
      .entry-card{padding:18px}
      .entry-index{
        width:58px;height:58px;border-radius:16px;font-size:18px
      }
      .entry-copy h3{font-size:18px}
      .section-head{
        flex-direction:column;
        align-items:flex-start;
      }
      .cta-panel,.cta-form,.compare-card,.spotlight-card,.side-card,.info-card{padding:22px}
      summary{font-size:16px}
      .footer-bottom{
        align-items:flex-start;
        flex-direction:column;
      }
      .chart{height:96px}
      .hero-floating{
        right:12px;
        left:12px;
        bottom:12px;
        width:auto;
      }
    }
    @media (max-width: 520px){
      .nav-wrap{min-height:68px}
      .brand-title{font-size:15px}
      .menu-toggle{width:42px;height:42px}
      .hero{padding-top:18px}
      .hero-shell{padding:18px}
      h1{font-size:clamp(30px, 8vw, 38px); line-height:1.15}
      h2{font-size:clamp(24px, 7vw, 30px)}
      .hero-actions,.cta-actions{flex-direction:column}
      .btn{width:100%}
      .badge-row,.chip-strip,.hero-tags,.stack-tags{gap:8px}
      .tag,.chip,.mini-badge{padding:8px 12px}
      .entry-card{
        grid-template-columns:1fr;
      }
      .entry-index{display:none}
      .entry-link{grid-column:auto; width:100%}
      .side-stat{grid-template-columns:1fr}
      .overview-grid{gap:14px}
      .info-card,.compare-card,.cta-form,.cta-panel{border-radius:22px}
      .faq-body,.compare-card,.info-card p,.side-card p,.cta-panel p{font-size:14px}
      .footer-grid{padding-top:44px}
    }
