:root{
      --bg:#ffffff;
      --panel:#ffffff;
      --text:#1f2937;
      --muted:#64748b;
      --muted2:#7c879c;
      --line:rgba(15, 23, 42, .10);
      --line2:rgba(15, 23, 42, .14);
      --shadow: 0 18px 40px rgba(16, 24, 40, .10);
      --shadow2: 0 10px 24px rgba(16, 24, 40, .10);
      --radius:18px;
      --radius2:14px;

      --grad-a: linear-gradient(110deg, #7c3aed 0%, #2563eb 38%, #06b6d4 75%, #22c55e 100%);
      --grad-b: linear-gradient(135deg, #60a5fa 0%, #a78bfa 35%, #34d399 75%, #22c55e 100%);
      --grad-c: linear-gradient(135deg, rgba(124,58,237,.18), rgba(37,99,235,.16) 35%, rgba(6,182,212,.14) 70%, rgba(34,197,94,.12));

      --primary:#2563eb;
      --primary2:#7c3aed;
      --ink:#0f172a;
      --focus:#4f46e5;

      --btn:#2563eb;
      --btn2:#7c3aed;
      --ghost:#0f172a;
      --ghost-bg: rgba(15,23,42,.06);

      --container: 1160px;
    }

    *{ box-sizing:border-box; }
    html,body{ height:100%; }
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      background: radial-gradient(1200px 600px at 20% -10%, rgba(124,58,237,.10), transparent 60%),
                  radial-gradient(900px 500px at 90% 0%, rgba(37,99,235,.10), transparent 55%),
                  radial-gradient(800px 500px at 50% 25%, rgba(6,182,212,.08), transparent 55%),
                  var(--bg);
      color:var(--text);
      overflow-x:hidden;
    }

    .skip-link{
      position:absolute; left:-999px; top:8px;
      background:#0f172a; color:#fff;
      padding:10px 12px; border-radius:10px;
      z-index:9999;
    }
    .skip-link:focus{ left:12px; }

    .container{
      width: min(var(--container), calc(100% - 32px));
      margin:0 auto;
    }

    .site-header{
      position:sticky; top:0; z-index:50;
      background: rgba(255,255,255,.72);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(15,23,42,.08);
    }

    .nav-wrap{
      display:flex; align-items:center; justify-content:space-between;
      padding:14px 0;
      gap:14px;
    }

    .brand{
      display:flex; align-items:center; gap:12px; text-decoration:none;
      min-width: 240px;
    }
    .brand-logo{
      width:40px; height:40px; border-radius:12px;
      box-shadow: 0 10px 20px rgba(37,99,235,.15);
      object-fit:contain;
      background: #fff;
      padding:6px;
      border:1px solid rgba(15,23,42,.08);
    }
    .brand-text{ display:flex; flex-direction:column; line-height:1.1; }
    .brand-name{
      font-weight:800;
      letter-spacing:.2px;
      color:var(--ink);
      font-size:16px;
    }
    .brand-sub{
      font-size:12px; color:var(--muted);
      margin-top:3px;
      white-space:nowrap;
    }

    .nav-desktop{
      display:flex; align-items:center; gap:18px;
      flex: 1;
      justify-content:center;
    }
    .nav-link{
      text-decoration:none;
      color: #334155;
      font-weight:600;
      font-size:13px;
      padding:10px 10px;
      border-radius:12px;
      transition: background .2s ease, color .2s ease;
    }
    .nav-link:hover{ background: rgba(37,99,235,.08); color:#1d4ed8; }

    .nav-actions{
      display:flex; align-items:center; gap:10px;
    }

    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      gap:10px;
      border-radius:14px;
      padding:12px 16px;
      font-weight:750;
      text-decoration:none;
      border:1px solid transparent;
      cursor:pointer;
      user-select:none;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
      line-height:1;
      color:#0b1220;
      background:#fff;
    }
    .btn:active{ transform: translateY(1px); }
    .btn-primary{
      background: var(--grad-a);
      color:#fff;
      border-color: rgba(255,255,255,.18);
      box-shadow: 0 14px 30px rgba(37,99,235,.18);
    }
    .btn-primary:hover{
      box-shadow: 0 18px 40px rgba(124,58,237,.22);
      transform: translateY(-1px);
    }
    .btn-ghost{
      background: rgba(255,255,255,.78);
      border-color: rgba(15,23,42,.12);
      color:#0f172a;
      box-shadow: 0 10px 20px rgba(16,24,40,.06);
    }
    .btn-ghost:hover{
      background: rgba(255,255,255,.95);
      border-color: rgba(37,99,235,.20);
      transform: translateY(-1px);
    }
    .btn-lg{ padding:13px 18px; font-size:15px; border-radius:16px; }
    .btn-small{ padding:10px 12px; border-radius:12px; font-size:13px; }
    .btn-block{ width:100%; }

    .nav-toggle{
      display:none;
      width:44px; height:44px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.12);
      background:#fff;
      box-shadow: 0 10px 20px rgba(16,24,40,.06);
      cursor:pointer;
    }
    .nav-toggle-lines{
      width:18px; height:12px; display:inline-block; position:relative;
    }
    .nav-toggle-lines::before,
    .nav-toggle-lines::after{
      content:"";
      position:absolute; left:0; right:0;
      height:2px; background:#0f172a; border-radius:4px;
      transition: transform .18s ease, top .18s ease;
    }
    .nav-toggle-lines::before{ top:0; }
    .nav-toggle-lines::after{ top:10px; }
    .nav-toggle-lines{ background: transparent; }
    .nav-toggle-lines span{ display:none; }
    .nav-toggle-lines{
      background:
        linear-gradient(#0f172a,#0f172a) 0 50% / 100% 2px no-repeat;
    }

    .mobile-menu{
      display:none;
      position:fixed; inset:0; z-index:80;
      background: rgba(2,6,23,.35);
      backdrop-filter: blur(6px);
    }
    .mobile-menu[hidden]{ display:none; }
    .mobile-menu-inner{
      background: #fff;
      border-top-left-radius: 22px;
      border-top-right-radius: 22px;
      margin: auto;
      width: min(var(--container), calc(100% - 24px));
      box-shadow: 0 40px 90px rgba(0,0,0,.25);
      border: 1px solid rgba(15,23,42,.10);
      padding:16px;
    }
    .mobile-menu-top{
      display:flex; align-items:center; justify-content:space-between;
      padding:6px 0 10px 0;
      border-bottom:1px solid rgba(15,23,42,.08);
      margin-bottom:10px;
    }
    .mobile-menu-title{ font-weight:900; color:#0f172a; }
    .icon-btn{
      width:44px; height:44px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.12);
      background:#fff;
      cursor:pointer;
      box-shadow: 0 10px 20px rgba(16,24,40,.06);
    }
    .icon-x{
      width:18px; height:18px; display:inline-block; position:relative;
      transform: rotate(45deg);
    }
    .icon-x::before,.icon-x::after{
      content:""; position:absolute; left:8px; top:1px;
      width:2px; height:16px; background:#0f172a; border-radius:3px;
    }
    .icon-x::before{ left:1px; top:8px; height:2px; width:16px; transform: rotate(0deg); }
    .icon-x::after{ left:1px; top:8px; height:2px; width:16px; transform: rotate(0deg); }

    .mobile-link{
      display:block;
      text-decoration:none;
      color:#0f172a;
      font-weight:700;
      padding:12px 12px;
      border-radius:14px;
      background: rgba(2,6,23,.03);
      border:1px solid rgba(2,6,23,.06);
      margin:10px 0;
    }
    .mobile-link:hover{ background: rgba(37,99,235,.07); border-color: rgba(37,99,235,.18); }
    .mobile-menu-cta{ display:grid; gap:10px; margin-top:14px; }

    @media (max-width: 980px){
      .nav-desktop{ display:none; }
      .nav-toggle{ display:inline-flex; align-items:center; justify-content:center; }
      .mobile-menu{ display:flex; }
      .brand{ min-width: 200px; }
      .brand-sub{ display:none; }
    }

    body.no-scroll{ overflow:hidden; }

    .hero{
      position:relative;
      padding:56px 0 28px 0;
    }
    .hero-bg{
      position:absolute; inset:0;
      pointer-events:none;
      overflow:hidden;
    }
    .glow{
      position:absolute;
      width:620px; height:620px;
      border-radius:50%;
      filter: blur(38px);
      opacity:.55;
    }
    .glow-a{
      background: radial-gradient(circle at 30% 30%, rgba(124,58,237,.70), transparent 60%);
      left:-160px; top:-220px;
      animation: floaty 9s ease-in-out infinite;
    }
    .glow-b{
      background: radial-gradient(circle at 30% 30%, rgba(34,197,94,.45), transparent 60%);
      right:-220px; top:-160px;
      animation: floaty2 11s ease-in-out infinite;
    }
    @keyframes floaty{ 0%,100%{ transform: translate(0,0);} 50%{ transform: translate(22px,28px);} }
    @keyframes floaty2{ 0%,100%{ transform: translate(0,0);} 50%{ transform: translate(-24px,24px);} }

    .grid{
      position:absolute;
      width:900px; height:520px;
      border-radius: 26px;
      background-image: linear-gradient(rgba(15,23,42,.06) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(15,23,42,.06) 1px, transparent 1px);
      background-size: 44px 44px;
      opacity:.55;
      transform: rotate(6deg);
      left: -120px; top: 70px;
      mask-image: radial-gradient(circle at 30% 40%, #000 0%, transparent 65%);
      animation: gridMove 14s ease-in-out infinite;
    }
    .grid-b{
      left:auto; right:-180px;
      top:160px;
      transform: rotate(-8deg);
      opacity:.35;
      width:760px; height:440px;
      animation-duration: 18s;
    }
    @keyframes gridMove{
      0%,100%{ transform: translate(0,0) rotate(6deg); }
      50%{ transform: translate(20px,10px) rotate(8deg); }
    }

    .sparkle{
      position:absolute;
      width:240px; height:240px;
      border-radius:50%;
      background: radial-gradient(circle at 50% 50%, rgba(56,189,248,.35), transparent 62%);
      opacity:.55;
    }
    .sparkle-1{ left: 50%; top: -90px; transform: translateX(-50%); }
    .sparkle-2{ left: 65%; top: 30px; transform: translateX(-50%); opacity:.3; }

    .hero-inner{
      position:relative;
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:22px;
      align-items:start;
    }

    .hero-left{
      padding:14px 0;
    }
    .badge-row{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:16px; }
    .badge{
      display:inline-flex; align-items:center; gap:10px;
      padding:10px 14px;
      border-radius:999px;
      background: rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      box-shadow: 0 12px 24px rgba(16,24,40,.06);
      font-weight:800;
      color:#0f172a;
      font-size:13px;
    }
    .badge-dot{
      width:10px; height:10px; border-radius:50%;
      background: var(--grad-a);
      box-shadow: 0 0 0 6px rgba(37,99,235,.12);
    }
    .badge-soft{
      font-weight:800;
      color:#0f172a;
      background: rgba(2,6,23,.03);
      border:1px solid rgba(15,23,42,.08);
    }

    .hero-title{
      font-size:40px;
      line-height:1.12;
      margin: 0;
      letter-spacing:-.6px;
      font-weight:920;
      color:#0b1220;
      animation: heroIn .8s ease both;
    }
    @keyframes heroIn{
      from{ opacity:0; transform: translateY(10px); }
      to{ opacity:1; transform: translateY(0); }
    }
    .hero-desc{
      margin:16px 0 20px 0;
      color:#334155;
      font-size:15px;
      line-height:1.7;
      max-width: 620px;
    }
    .hero-ctas{ display:flex; gap:12px; flex-wrap:wrap; margin-bottom:16px; }
    .hero-mini{
      margin-top:10px;
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap:10px;
    }
    .mini-item{
      background: rgba(255,255,255,.78);
      border:1px solid rgba(15,23,42,.10);
      border-radius:16px;
      padding:12px 12px;
      box-shadow: 0 14px 30px rgba(16,24,40,.06);
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .mini-item:hover{
      transform: translateY(-2px);
      box-shadow: 0 20px 50px rgba(16,24,40,.10);
    }
    .mini-top{ display:flex; align-items:center; gap:10px; }
    .mini-icon{ font-size:16px; }
    .mini-label{ font-weight:900; color:#0f172a; font-size:13px; }
    .mini-value{ margin-top:8px; color:#334155; font-weight:800; font-size:13px; }

    .hero-right{ display:grid; gap:14px; }

    .stat-panel{
      background: rgba(255,255,255,.84);
      border:1px solid rgba(15,23,42,.10);
      border-radius: 22px;
      box-shadow: var(--shadow2);
      padding:16px;
      overflow:hidden;
      position:relative;
    }
    .stat-panel::before{
      content:"";
      position:absolute; inset:-2px;
      background: var(--grad-c);
      opacity:.55;
      pointer-events:none;
      mask-image: radial-gradient(circle at 25% 10%, #000 0%, transparent 60%);
    }
    .stat-header{
      position:relative;
      display:flex; align-items:flex-start; justify-content:space-between;
      gap:12px;
      margin-bottom:14px;
    }
    .stat-kicker{ color:var(--muted); font-weight:800; font-size:12px; }
    .stat-title{ font-size:18px; font-weight:950; color:#0b1220; margin-top:6px; }
    .link-pill{
      text-decoration:none;
      font-weight:900;
      font-size:12px;
      color:#1d4ed8;
      padding:10px 12px;
      border-radius:999px;
      background: rgba(37,99,235,.08);
      border:1px solid rgba(37,99,235,.18);
      white-space:nowrap;
    }
    .stat-grid{
      position:relative;
      display:grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap:12px;
      margin-bottom:14px;
    }
    .stat-card{
      background: rgba(255,255,255,.82);
      border:1px solid rgba(15,23,42,.10);
      border-radius:18px;
      padding:14px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      box-shadow: 0 12px 24px rgba(16,24,40,.06);
    }
    .stat-card:hover{
      transform: translateY(-2px);
      border-color: rgba(37,99,235,.22);
      box-shadow: 0 20px 45px rgba(37,99,235,.14);
    }
    .stat-num{ font-size:18px; font-weight:1000; color:#0b1220; letter-spacing:.2px; }
    .stat-desc{ margin-top:6px; font-weight:900; color:#0f172a; }
    .stat-meta{ margin-top:8px; color:var(--muted); font-size:12px; line-height:1.5; }

    .stat-bottom{
      position:relative;
      display:flex; align-items:flex-end; justify-content:space-between; gap:14px;
      flex-wrap:wrap;
      padding-top:8px;
      border-top:1px solid rgba(15,23,42,.08);
    }
    .token-quick-title{ font-weight:950; color:#0f172a; margin-bottom:10px; }
    .token-quick-actions{ display:flex; gap:10px; flex-wrap:wrap; }
    .trust-line{
      display:flex; align-items:center; gap:10px;
      color:var(--muted);
      font-weight:800;
      font-size:12px;
      max-width: 260px;
    }
    .trust-dot{
      width:10px; height:10px; border-radius:50%;
      background: var(--grad-b);
      box-shadow: 0 0 0 6px rgba(167,139,250,.14);
    }

    .hero-surface{
      background: rgba(255,255,255,.60);
      border:1px solid rgba(15,23,42,.10);
      border-radius: 22px;
      box-shadow: 0 14px 30px rgba(16,24,40,.06);
      padding:14px 14px 12px 14px;
      overflow:hidden;
      position:relative;
    }
    .hero-surface::before{
      content:"";
      position:absolute; inset:-2px;
      background: var(--grad-c);
      opacity:.7;
      mask-image: radial-gradient(circle at 70% 20%, #000 0%, transparent 55%);
      pointer-events:none;
    }
    .surface-row{
      position:relative;
      display:flex; flex-wrap:wrap; gap:10px;
    }
    .chip{
      padding:9px 12px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.72);
      font-weight:900;
      font-size:12px;
      color:#0f172a;
      white-space:nowrap;
    }
    .chip-ink{
      background: rgba(2,6,23,.03);
      border-color: rgba(15,23,42,.10);
      color:#0b1220;
    }

    @media (max-width: 980px){
      .hero-inner{ grid-template-columns: 1fr; }
      .hero-title{ font-size: 30px; }
      .hero-mini{ grid-template-columns: 1fr; }
      .stat-grid{ grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 520px){
      .stat-grid{ grid-template-columns: 1fr; }
      .badge-row{ gap:8px; }
      .badge{ padding:9px 12px; }
    }

    .section{
      padding:56px 0;
    }
    .section.compact{ padding:30px 0 44px 0; }

    .section-head{
      margin-bottom:22px;
    }
    .section-kicker{
      font-weight:950;
      color:#1d4ed8;
      font-size:13px;
      letter-spacing:.3px;
      text-transform:none;
      margin-bottom:8px;
      display:inline-block;
    }
    .section-title{
      margin:0;
      font-size:28px;
      letter-spacing:-.4px;
      font-weight:980;
      color:#0b1220;
    }
    .section-sub{
      margin:10px 0 0 0;
      color:#334155;
      line-height:1.75;
      max-width: 920px;
      font-size:14px;
      font-weight:650;
    }

    .about-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap:14px;
      align-items:stretch;
      margin-top:18px;
    }
    .about-card{
      background: rgba(255,255,255,.86);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:18px;
      box-shadow: 0 14px 30px rgba(16,24,40,.06);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .about-card:hover{
      transform: translateY(-3px);
      box-shadow: 0 24px 60px rgba(16,24,40,.12);
      border-color: rgba(37,99,235,.22);
    }
    .about-card.alt{
      background: linear-gradient(180deg, rgba(37,99,235,.06), rgba(255,255,255,.92));
    }
    .about-icon{
      width:48px; height:48px; border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(37,99,235,.10);
      border:1px solid rgba(37,99,235,.18);
      font-size:20px;
      box-shadow: 0 12px 26px rgba(37,99,235,.12);
    }
    .about-title{
      margin:14px 0 8px 0;
      font-size:16px;
      font-weight:980;
      color:#0b1220;
    }
    .about-desc{
      color:#334155;
      font-size:13px;
      line-height:1.7;
      margin:0 0 14px 0;
      font-weight:650;
    }
    .about-list{ display:grid; gap:10px; }
    .tick{
      display:flex; align-items:center; gap:10px;
      font-weight:850; color:#0f172a; font-size:13px;
    }
    .tick::before{
      content:"";
      width:10px; height:10px; border-radius:3px;
      background: var(--grad-a);
      box-shadow: 0 0 0 6px rgba(37,99,235,.12);
    }

    @media (max-width: 980px){
      .about-grid{ grid-template-columns: 1fr; }
    }

    .callout{
      margin-top:18px;
      background: linear-gradient(120deg, rgba(37,99,235,.10), rgba(124,58,237,.10), rgba(6,182,212,.08));
      border:1px solid rgba(37,99,235,.18);
      border-radius: 22px;
      padding:16px;
      display:flex; align-items:center; justify-content:space-between; gap:14px;
      box-shadow: 0 18px 45px rgba(37,99,235,.10);
    }
    .callout-title{ font-weight:1000; color:#0b1220; font-size:16px; }
    .callout-desc{ margin-top:6px; color:#334155; font-weight:700; font-size:13px; }
    .callout-right{ display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end; }

    @media (max-width: 820px){
      .callout{ flex-direction:column; align-items:flex-start; }
      .callout-right{ width:100%; justify-content:flex-start; }
    }

    .service-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap:14px;
    }
    .service-card{
      background: rgba(255,255,255,.86);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:18px;
      box-shadow: 0 14px 30px rgba(16,24,40,.06);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      display:flex;
      flex-direction:column;
      min-height: 320px;
    }
    .service-card:hover{
      transform: translateY(-3px);
      box-shadow: 0 26px 70px rgba(16,24,40,.12);
      border-color: rgba(124,58,237,.22);
    }
    .service-card.alt{
      background: linear-gradient(180deg, rgba(124,58,237,.06), rgba(255,255,255,.95));
    }
    .service-card.alt2{
      background: linear-gradient(180deg, rgba(6,182,212,.06), rgba(255,255,255,.95));
    }
    .service-top{
      display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:10px;
    }
    .service-badge{
      font-weight:1000;
      font-size:12px;
      padding:9px 12px;
      border-radius:999px;
      background: rgba(37,99,235,.10);
      border:1px solid rgba(37,99,235,.18);
      color:#1d4ed8;
    }
    .service-icon{
      width:46px; height:46px;
      border-radius:16px;
      background: rgba(124,58,237,.10);
      border:1px solid rgba(124,58,237,.18);
      display:flex; align-items:center; justify-content:center;
      font-size:20px;
      box-shadow: 0 12px 26px rgba(124,58,237,.12);
    }
    .service-title{
      margin:0;
      font-weight:1000;
      font-size:17px;
      color:#0b1220;
      letter-spacing:-.2px;
    }
    .service-desc{
      margin:10px 0 12px 0;
      color:#334155;
      font-weight:680;
      font-size:13px;
      line-height:1.7;
    }
    .service-points{ margin:0; padding-left:18px; color:#0f172a; font-weight:800; font-size:13px; }
    .service-points li{ margin:8px 0; color:#0f172a; }
    .service-points li::marker{ color:#2563eb; }

    @media (max-width: 980px){
      .service-grid{ grid-template-columns: 1fr; }
      .service-card{ min-height: unset; }
    }

    .models-panel{
      margin-top:18px;
      display:grid;
      grid-template-columns: 1fr 1.15fr;
      gap:14px;
      align-items:stretch;
      padding:18px;
      border-radius:22px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 45px rgba(16,24,40,.08);
      position:relative;
      overflow:hidden;
    }
    .models-panel::before{
      content:"";
      position:absolute; inset:-2px;
      background: var(--grad-c);
      opacity:.8;
      pointer-events:none;
      mask-image: radial-gradient(circle at 20% 20%, #000 0%, transparent 60%);
    }
    .models-left, .models-right{ position:relative; }
    .models-kicker{ color:var(--muted); font-weight:900; font-size:12px; margin-bottom:6px; }
    .models-title{ font-weight:1000; font-size:18px; color:#0b1220; }
    .models-desc{ margin:10px 0 14px 0; color:#334155; font-weight:700; line-height:1.7; font-size:13px; }
    .models-actions{ display:flex; gap:10px; flex-wrap:wrap; }
    .models-chips{
      display:flex; flex-wrap:wrap; gap:10px;
      align-items:flex-start;
      padding:10px;
      border-radius:20px;
      background: rgba(2,6,23,.02);
      border:1px solid rgba(15,23,42,.08);
    }

    @media (max-width: 980px){
      .models-panel{ grid-template-columns: 1fr; }
    }

    .timeline-wrap{
      margin-top:6px;
      background: rgba(255,255,255,.76);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      box-shadow: 0 18px 45px rgba(16,24,40,.07);
      padding:16px;
    }
    .timeline{
      list-style:none;
      margin:0; padding:0;
      display:grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap:12px;
      align-items:start;
    }
    .time-node{
      position:relative;
      padding:10px 10px 12px 10px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 12px 24px rgba(16,24,40,.05);
      min-height: 140px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .time-node:hover{
      transform: translateY(-2px);
      border-color: rgba(37,99,235,.22);
      box-shadow: 0 22px 55px rgba(37,99,235,.12);
    }
    .time-dot{
      width:12px; height:12px; border-radius:4px;
      background: var(--grad-a);
      box-shadow: 0 0 0 6px rgba(37,99,235,.12);
      margin-bottom:12px;
    }
    .time-title{ font-size:14px; font-weight:1000; color:#0b1220; margin:0; }
    .time-desc{ margin:8px 0 0 0; color:#334155; font-weight:700; line-height:1.6; font-size:12.5px; }

    @media (max-width: 980px){
      .timeline{ grid-template-columns: 1fr; }
      .time-node{ min-height: unset; }
    }

    .two-col{
      margin-top:14px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
    }
    .panel-card{
      background: rgba(255,255,255,.86);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:18px;
      box-shadow: 0 18px 45px rgba(16,24,40,.07);
    }
    .panel-card.alt{
      background: linear-gradient(180deg, rgba(37,99,235,.06), rgba(255,255,255,.95));
    }
    .panel-kicker{ color:var(--muted); font-weight:950; font-size:12px; }
    .panel-title{ margin:8px 0 0 0; font-size:18px; font-weight:1000; color:#0b1220; letter-spacing:-.2px; }
    .panel-head{ margin-bottom:12px; }
    .panel-desc{ margin:0; color:#334155; font-weight:700; line-height:1.7; font-size:13px; }
    .scene-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top:12px;
    }
    .scene-item{
      padding:12px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 12px 24px rgba(16,24,40,.05);
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .scene-item:hover{ transform: translateY(-2px); box-shadow: 0 22px 55px rgba(16,24,40,.10); }
    .scene-ico{ font-size:18px; margin-bottom:8px; }
    .scene-text{ font-weight:900; color:#0f172a; font-size:13px; line-height:1.5; }

    .proof-list{ display:grid; gap:12px; margin-top:12px; }
    .proof-item{ display:flex; gap:12px; align-items:flex-start; }
    .proof-mark{
      width:10px; height:10px; border-radius:4px;
      background: var(--grad-b);
      box-shadow: 0 0 0 6px rgba(167,139,250,.14);
      margin-top:6px;
      flex:0 0 auto;
    }
    .proof-text strong{ display:block; color:#0b1220; font-weight:1000; }
    .proof-text span{ color:#334155; font-weight:700; font-size:13px; line-height:1.6; display:block; margin-top:3px; }
    .panel-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top:16px; }

    @media (max-width: 980px){
      .two-col{ grid-template-columns: 1fr; }
      .scene-grid{ grid-template-columns: 1fr; }
    }

    .grid-3{ display:grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap:14px; }
    .industry-card{
      background: rgba(255,255,255,.86);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:18px;
      box-shadow: 0 18px 45px rgba(16,24,40,.07);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      min-height: 220px;
    }
    .industry-card:hover{ transform: translateY(-3px); box-shadow: 0 26px 70px rgba(16,24,40,.12); border-color: rgba(37,99,235,.22); }
    .industry-card.alt{ background: linear-gradient(180deg, rgba(124,58,237,.06), rgba(255,255,255,.95)); }
    .industry-head{ display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:10px; }
    .industry-tag{
      font-weight:1000; font-size:12px;
      padding:9px 12px; border-radius:999px;
      background: rgba(124,58,237,.10);
      border:1px solid rgba(124,58,237,.18);
      color:#6d28d9;
      white-space:nowrap;
    }
    .industry-card.alt .industry-tag{ background: rgba(37,99,235,.10); border-color: rgba(37,99,235,.18); color:#1d4ed8; }
    .industry-ico{
      width:46px; height:46px; border-radius:16px;
      background: rgba(37,99,235,.10);
      border:1px solid rgba(37,99,235,.18);
      display:flex; align-items:center; justify-content:center;
      font-size:20px;
      box-shadow: 0 12px 26px rgba(37,99,235,.12);
    }
    .industry-title{ margin:0; font-weight:1000; font-size:17px; color:#0b1220; letter-spacing:-.2px; }
    .industry-desc{ margin:10px 0 14px 0; color:#334155; font-weight:700; line-height:1.7; font-size:13px; }
    .industry-foot{ display:flex; align-items:center; justify-content:space-between; gap:10px; }
    .muted{ color:var(--muted); font-weight:800; font-size:12.5px; }
    .mini-link{
      color:#1d4ed8; font-weight:950;
      text-decoration:none;
      border-bottom: 1px solid rgba(29,78,216,.25);
      padding-bottom:2px;
      transition: color .2s ease;
      white-space:nowrap;
    }
    .mini-link:hover{ color:#1e40af; }

    @media (max-width: 980px){
      .grid-3{ grid-template-columns: 1fr; }
      .industry-card{ min-height: unset; }
    }

    .materials-strip{
      margin-top:14px;
      display:grid;
      grid-template-columns: .9fr 1.1fr;
      gap:14px;
      align-items:start;
    }
    .materials-card{
      background: rgba(255,255,255,.86);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:18px;
      box-shadow: 0 18px 45px rgba(16,24,40,.07);
    }
    .materials-title{ font-weight:1000; color:#0b1220; font-size:18px; }
    .materials-desc{ margin-top:10px; color:#334155; font-weight:700; line-height:1.7; font-size:13px; }

    .materials-grid{
      display:grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap:12px;
      align-items:stretch;
    }
    .media-card{
      margin:0;
      background: rgba(255,255,255,.86);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      box-shadow: 0 18px 45px rgba(16,24,40,.06);
      overflow:hidden;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .media-card:hover{ transform: translateY(-3px); box-shadow: 0 26px 70px rgba(16,24,40,.12); border-color: rgba(37,99,235,.22); }
    .media-img-wrap{
      padding:12px;
      background: linear-gradient(180deg, rgba(37,99,235,.05), rgba(255,255,255,.95));
    }
    .media-img-wrap img{
      width:100%; height:auto; display:block;
      border-radius:16px;
      object-fit:contain;
      background:#fff;
      border:1px solid rgba(15,23,42,.08);
    }
    .media-cap{
      padding:12px 12px 14px 12px;
      font-weight:950;
      color:#0f172a;
      font-size:13px;
      line-height:1.4;
    }

    @media (max-width: 980px){
      .materials-strip{ grid-template-columns: 1fr; }
      .materials-grid{ grid-template-columns: 1fr; }
    }

    .network-grid{
      display:grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap:14px;
    }
    .network-card{
      background: rgba(255,255,255,.86);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:18px;
      box-shadow: 0 18px 45px rgba(16,24,40,.07);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      min-height: 170px;
    }
    .network-card:hover{ transform: translateY(-3px); border-color: rgba(37,99,235,.22); box-shadow: 0 26px 70px rgba(16,24,40,.12); }
    .network-card.alt{ background: linear-gradient(180deg, rgba(6,182,212,.06), rgba(255,255,255,.95)); }
    .network-ico{
      width:46px; height:46px; border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(37,99,235,.10);
      border:1px solid rgba(37,99,235,.18);
      font-size:20px;
      box-shadow: 0 12px 26px rgba(37,99,235,.12);
      margin-bottom:12px;
    }
    .network-title{ margin:0; font-weight:1000; font-size:16px; color:#0b1220; }
    .network-desc{ margin:10px 0 14px 0; color:#334155; font-weight:700; line-height:1.7; font-size:13px; }
    .network-meta{ color:var(--muted); font-weight:850; font-size:12.5px; }

    @media (max-width: 980px){
      .network-grid{ grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 520px){
      .network-grid{ grid-template-columns: 1fr; }
    }

    .net-cta{
      margin-top:14px;
      border-radius:22px;
      border:1px solid rgba(37,99,235,.18);
      background: linear-gradient(120deg, rgba(37,99,235,.10), rgba(124,58,237,.10), rgba(6,182,212,.08));
      box-shadow: 0 18px 45px rgba(37,99,235,.10);
      padding:16px;
      display:flex; align-items:center; justify-content:space-between; gap:14px;
      flex-wrap:wrap;
    }
    .net-title{ font-weight:1000; color:#0b1220; font-size:16px; }
    .net-desc{ margin-top:6px; color:#334155; font-weight:700; font-size:13px; line-height:1.6; }
    .net-right{ display:flex; gap:10px; flex-wrap:wrap; }

    .process-steps{ display:grid; gap:14px; }
    .process-row{ display:grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap:14px; }
    .step-card{
      background: rgba(255,255,255,.86);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:18px;
      box-shadow: 0 18px 45px rgba(16,24,40,.07);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      min-height: 180px;
    }
    .step-card:hover{ transform: translateY(-3px); box-shadow: 0 26px 70px rgba(16,24,40,.12); border-color: rgba(124,58,237,.22); }
    .step-card.alt{ background: linear-gradient(180deg, rgba(124,58,237,.06), rgba(255,255,255,.95)); }
    .step-card.alt2{ background: linear-gradient(180deg, rgba(34,197,94,.06), rgba(255,255,255,.95)); }
    .step-no{
      display:inline-flex;
      width:48px; height:48px;
      border-radius:18px;
      align-items:center; justify-content:center;
      background: rgba(37,99,235,.10);
      border:1px solid rgba(37,99,235,.18);
      font-weight:1000;
      color:#1d4ed8;
      box-shadow: 0 12px 26px rgba(37,99,235,.12);
      margin-bottom:12px;
    }
    .step-title{ margin:0; font-weight:1000; font-size:16px; color:#0b1220; letter-spacing:-.2px; }
    .step-desc{ margin:10px 0 14px 0; color:#334155; font-weight:700; line-height:1.7; font-size:13px; }
    .step-tags{ display:flex; gap:8px; flex-wrap:wrap; }
    .tag{
      padding:9px 12px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(2,6,23,.03);
      font-weight:900;
      font-size:12px;
      color:#0f172a;
    }

    @media (max-width: 980px){
      .process-row{ grid-template-columns: 1fr; }
    }

    .process-cta{
      margin-top:14px;
      border-radius:22px;
      padding:16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.84);
      box-shadow: 0 18px 45px rgba(16,24,40,.07);
      display:flex; align-items:center; justify-content:space-between; gap:14px;
      flex-wrap:wrap;
    }
    .process-cta-title{ font-weight:1000; color:#0b1220; font-size:16px; }
    .process-cta-desc{ margin-top:6px; color:#334155; font-weight:700; font-size:13px; }

    .case-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap:14px;
    }
    .case-card{
      background: rgba(255,255,255,.86);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      box-shadow: 0 18px 45px rgba(16,24,40,.07);
      overflow:hidden;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      display:flex; flex-direction:column;
      min-height: 270px;
    }
    .case-card:hover{ transform: translateY(-3px); border-color: rgba(37,99,235,.22); box-shadow: 0 26px 70px rgba(16,24,40,.12); }
    .case-card.alt{ background: linear-gradient(180deg, rgba(124,58,237,.06), rgba(255,255,255,.95)); }
    .case-media{
      height:92px;
      background: rgba(2,6,23,.02);
      position:relative;
      overflow:hidden;
    }
    .case-grad{
      position:absolute; inset:-60px -60px auto -60px;
      height:200px;
      background: var(--grad-a);
      opacity:.17;
      transform: rotate(12deg);
    }
    .case-grad.two{ background: var(--grad-b); opacity:.18; }
    .case-grad.three{ background: linear-gradient(135deg, rgba(34,197,94,.35), rgba(6,182,212,.30), rgba(37,99,235,.25)); opacity:.18; }
    .case-shape{
      position:absolute;
      right:-20px; top:-40px;
      width:140px; height:140px;
      border-radius:38px;
      background: rgba(124,58,237,.12);
      border:1px solid rgba(124,58,237,.16);
      transform: rotate(14deg);
    }
    .case-shape.two{ background: rgba(37,99,235,.12); border-color: rgba(37,99,235,.16); }
    .case-shape.three{ background: rgba(6,182,212,.12); border-color: rgba(6,182,212,.16); }

    .case-body{ padding:16px 16px 18px 16px; display:flex; flex-direction:column; gap:10px; flex:1; }
    .case-top{ display:flex; align-items:center; justify-content:space-between; gap:10px; }
    .case-pill{
      padding:9px 12px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(2,6,23,.03);
      font-weight:1000;
      font-size:12px;
      color:#0f172a;
    }
    .case-rate{
      font-weight:950;
      color:#1d4ed8;
      font-size:12.5px;
      background: rgba(37,99,235,.08);
      border:1px solid rgba(37,99,235,.18);
      padding:8px 10px;
      border-radius:999px;
      white-space:nowrap;
    }
    .case-title{ margin:0; font-weight:1000; font-size:17px; letter-spacing:-.2px; color:#0b1220; }
    .case-desc{ margin:0; color:#334155; font-weight:700; line-height:1.7; font-size:13px; }
    .case-foot{ margin-top:auto; display:flex; align-items:center; justify-content:space-between; gap:10px; padding-top:10px; border-top:1px solid rgba(15,23,42,.08); }

    @media (max-width: 980px){
      .case-grid{ grid-template-columns: 1fr; }
      .case-card{ min-height: unset; }
    }

    .case-cta{
      margin-top:14px;
      border-radius:22px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.84);
      box-shadow: 0 18px 45px rgba(16,24,40,.07);
      padding:16px;
      display:flex; justify-content:space-between; align-items:center; gap:14px;
      flex-wrap:wrap;
    }
    .case-cta-title{ font-weight:1000; color:#0b1220; font-size:16px; }
    .case-cta-desc{ margin-top:6px; color:#334155; font-weight:700; font-size:13px; }

    .compare-top{
      display:grid;
      grid-template-columns: .85fr 1.15fr;
      gap:14px;
      align-items:stretch;
    }
    @media (max-width: 980px){
      .compare-top{ grid-template-columns: 1fr; }
    }

    .rating-card{
      background: rgba(255,255,255,.86);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      box-shadow: 0 18px 45px rgba(16,24,40,.07);
      padding:18px;
      overflow:hidden;
      position:relative;
    }
    .rating-card::before{
      content:"";
      position:absolute; inset:-2px;
      background: var(--grad-c);
      opacity:.7;
      pointer-events:none;
      mask-image: radial-gradient(circle at 20% 10%, #000 0%, transparent 60%);
    }
    .rating-row{ position:relative; display:flex; align-items:flex-end; justify-content:space-between; gap:12px; }
    .rating-score{ display:flex; align-items:flex-end; gap:8px; }
    .rating-num{ font-size:44px; font-weight:1100; color:#0b1220; line-height:1; }
    .rating-sub{ font-weight:950; color:#334155; margin-bottom:8px; }
    .stars{ font-size:20px; letter-spacing:2px; color:#f59e0b; font-weight:1000; padding-bottom:6px; }
    .rating-desc{ position:relative; margin-top:10px; color:#334155; font-weight:750; line-height:1.7; font-size:13px; }

    .compare-bullets{
      background: rgba(255,255,255,.84);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      box-shadow: 0 18px 45px rgba(16,24,40,.07);
      padding:16px;
      display:grid;
      gap:12px;
    }
    .bullet{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(2,6,23,.02);
    }
    .bullet-ico{
      width:42px; height:42px;
      border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(37,99,235,.10);
      border:1px solid rgba(37,99,235,.18);
      box-shadow: 0 12px 26px rgba(37,99,235,.10);
      font-size:18px;
      flex:0 0 auto;
    }
    .bullet-title{ font-weight:1000; color:#0b1220; font-size:14px; }
    .bullet-desc{ margin-top:6px; color:#334155; font-weight:700; line-height:1.6; font-size:13px; }

    .compare-table-wrap{
      margin-top:14px;
      background: rgba(255,255,255,.84);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      box-shadow: 0 18px 45px rgba(16,24,40,.07);
      overflow:hidden;
    }
    .table-toolbar{
      padding:14px 16px;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      border-bottom:1px solid rgba(15,23,42,.08);
      background: linear-gradient(180deg, rgba(37,99,235,.06), rgba(255,255,255,.94));
    }
    .table-title{ font-weight:1000; color:#0b1220; }
    .table-link{ text-decoration:none; color:#1d4ed8; font-weight:950; }
    .table-scroll{ overflow:auto; }
    .compare-table{
      width:100%;
      border-collapse:collapse;
      min-width: 720px;
    }
    .compare-table th, .compare-table td{
      padding:14px 14px;
      border-bottom:1px solid rgba(15,23,42,.08);
      vertical-align:top;
      text-align:left;
    }
    .compare-table thead th{
      font-weight:1000;
      color:#0b1220;
      background: rgba(2,6,23,.02);
    }
    .compare-table td{ color:#334155; font-weight:700; }
    .compare-table tbody tr:hover td{ background: rgba(37,99,235,.04); }

    .compare-bottom{
      margin-top:14px;
      border-radius:22px;
      border:1px solid rgba(37,99,235,.18);
      background: linear-gradient(120deg, rgba(37,99,235,.10), rgba(124,58,237,.10), rgba(6,182,212,.08));
      box-shadow: 0 18px 45px rgba(37,99,235,.10);
      padding:16px;
      display:flex; align-items:center; justify-content:space-between; gap:14px;
      flex-wrap:wrap;
    }
    .compare-bottom-title{ font-weight:1000; color:#0b1220; font-size:16px; }
    .compare-bottom-desc{ margin-top:6px; color:#334155; font-weight:700; font-size:13px; }

    .match-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    @media (max-width: 980px){
      .match-grid{ grid-template-columns: 1fr; }
    }

    .form-card, .help-panel, .reviews-side, .help-side, .news-side-card{
      background: rgba(255,255,255,.86);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      box-shadow: 0 18px 45px rgba(16,24,40,.07);
    }

    .form-card{
      padding:18px;
    }
    .form-title{
      display:flex; align-items:center; gap:10px;
      font-weight:1100;
      color:#0b1220;
      font-size:16px;
      margin-bottom:12px;
    }
    .form-dot{
      width:12px; height:12px;
      border-radius:4px;
      background: var(--grad-a);
      box-shadow: 0 0 0 6px rgba(37,99,235,.12);
    }

    .form{ display:grid; gap:12px; }
    .form-row{ display:grid; grid-template-columns: 1fr 1fr; gap:12px; }
    .form-row .field{ width:100%; }
    .field{
      display:grid;
      gap:8px;
    }
    .field-label{
      font-weight:950;
      color:#0b1220;
      font-size:13px;
    }
    input, select, textarea{
      width:100%;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.14);
      padding:12px 12px;
      background: rgba(255,255,255,.92);
      color:#0f172a;
      outline:none;
      font-weight:750;
      box-shadow: 0 10px 20px rgba(16,24,40,.03);
      transition: border-color .2s ease, box-shadow .2s ease;
    }
    textarea{ resize: vertical; min-height: 100px; }
    input::placeholder, textarea::placeholder{ color: rgba(100,116,139,.9); font-weight:650; }
    input:focus, select:focus, textarea:focus{
      border-color: rgba(79,70,229,.35);
      box-shadow: 0 0 0 4px rgba(79,70,229,.12);
    }

    @media (max-width: 520px){
      .form-row{ grid-template-columns: 1fr; }
    }

    .form-actions{
      display:flex; gap:12px; flex-wrap:wrap; align-items:center;
      margin-top:4px;
    }
    .form-actions .btn{ flex:1; min-width: 210px; }
    @media (max-width: 520px){
      .form-actions .btn{ min-width: unset; flex:unset; width:100%; }
    }

    .form-hint{
      min-height: 18px;
      color:#1d4ed8;
      font-weight:850;
      font-size:12.5px;
    }

    .help-panel{
      padding:18px;
      position:relative;
      overflow:hidden;
    }
    .help-panel::before{
      content:"";
      position:absolute; inset:-2px;
      background: var(--grad-c);
      opacity:.55;
      pointer-events:none;
      mask-image: radial-gradient(circle at 85% 20%, #000 0%, transparent 60%);
    }
    .help-title{ position:relative; font-weight:1000; color:#0b1220; font-size:16px; margin-bottom:12px; }
    .help-items{ position:relative; display:grid; gap:12px; }
    .help-item{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px;
      background: rgba(2,6,23,.02);
      border:1px solid rgba(15,23,42,.08);
      border-radius:18px;
    }
    .help-ico{
      width:42px; height:42px; border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(37,99,235,.10);
      border:1px solid rgba(37,99,235,.18);
      box-shadow: 0 12px 26px rgba(37,99,235,.10);
      font-size:18px;
      flex:0 0 auto;
    }
    .help-subtitle{ font-weight:1000; color:#0b1220; font-size:14px; }
    .help-desc{ margin-top:6px; color:#334155; font-weight:700; line-height:1.6; font-size:13px; }

    .help-callout{
      position:relative;
      margin-top:14px;
      border-radius:20px;
      padding:12px;
      background: rgba(37,99,235,.06);
      border:1px solid rgba(37,99,235,.14);
    }
    .help-callout-title{ font-weight:1000; color:#0b1220; }
    .help-callout-desc{ margin-top:6px; color:#334155; font-weight:700; line-height:1.6; font-size:13px; }

    .quick-links{
      margin-top:14px;
      position:relative;
      display:flex; flex-wrap:wrap; gap:10px;
    }
    .quick-link{
      text-decoration:none;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      color:#0f172a;
      font-weight:950;
      font-size:13px;
      display:inline-flex; align-items:center; gap:8px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      box-shadow: 0 10px 20px rgba(16,24,40,.04);
    }
    .quick-link:hover{
      transform: translateY(-2px);
      border-color: rgba(37,99,235,.22);
      box-shadow: 0 22px 55px rgba(37,99,235,.12);
    }

    .reviews-side{
      padding:18px;
      margin-top:14px;
    }
    .side-title{ font-weight:1000; color:#0b1220; font-size:16px; margin-bottom:12px; }
    .review-list{ display:grid; gap:12px; }
    .review-item{
      padding:12px;
      border-radius:20px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(2,6,23,.02);
    }
    .review-top{ display:flex; align-items:flex-start; justify-content:space-between; gap:12px; }
    .review-avatar{
      width:42px; height:42px; border-radius:16px;
      background: rgba(124,58,237,.10);
      border:1px solid rgba(124,58,237,.18);
      display:flex; align-items:center; justify-content:center;
      font-weight:1000;
      color:#0b1220;
      box-shadow: 0 12px 26px rgba(124,58,237,.10);
      flex:0 0 auto;
    }
    .review-name{ font-weight:1000; color:#0b1220; font-size:13.5px; }
    .review-tag{ margin-top:4px; color:#1d4ed8; font-weight:900; font-size:12.5px; }
    .review-stars{ color:#f59e0b; font-weight:1000; letter-spacing:1px; font-size:13px; }
    .review-text{ margin-top:10px; color:#334155; font-weight:700; line-height:1.6; font-size:13px; }

    .side-actions{ margin-top:12px; }

    .banner-strip{
      margin-top:14px;
      border-radius:22px;
      border:1px solid rgba(37,99,235,.18);
      background: linear-gradient(120deg, rgba(37,99,235,.10), rgba(124,58,237,.10), rgba(6,182,212,.08));
      box-shadow: 0 18px 45px rgba(37,99,235,.10);
      padding:16px;
    }
    .banner-strip-inner{ display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap; }
    .banner-title{ font-weight:1000; color:#0b1220; font-size:16px; }
    .banner-desc{ margin-top:6px; color:#334155; font-weight:700; font-size:13px; line-height:1.6; }
    .banner-right{ display:flex; gap:10px; flex-wrap:wrap; }

    .token-grid{
      display:grid;
      grid-template-columns: .95fr 1.05fr;
      gap:14px;
      align-items:start;
    }
    @media (max-width: 980px){
      .token-grid{ grid-template-columns: 1fr; }
    }
    .token-card{
      background: rgba(255,255,255,.86);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      box-shadow: 0 18px 45px rgba(16,24,40,.07);
      padding:18px;
    }
    .token-title{ font-weight:1000; color:#0b1220; font-size:16px; margin-bottom:10px; }
    .token-steps{
      margin:0; padding-left:18px;
      color:#334155;
      font-weight:750;
      line-height:1.75;
      font-size:13px;
    }
    .token-steps li{ margin:10px 0; }
    .token-actions{ margin-top:14px; display:flex; gap:10px; flex-wrap:wrap; }

    .token-compare-card{
      background: rgba(255,255,255,.84);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      box-shadow: 0 18px 45px rgba(16,24,40,.07);
      padding:16px;
      overflow:hidden;
      position:relative;
    }
    .token-compare-card::before{
      content:"";
      position:absolute; inset:-2px;
      background: var(--grad-c);
      opacity:.55;
      pointer-events:none;
      mask-image: radial-gradient(circle at 80% 0%, #000 0%, transparent 55%);
    }
    .token-compare-head{
      position:relative;
      display:flex; align-items:flex-start; justify-content:space-between; gap:14px;
      margin-bottom:12px;
    }
    .token-compare-title{ font-weight:1000; color:#0b1220; font-size:16px; }
    .token-compare-sub{ margin-top:6px; color:#334155; font-weight:700; font-size:13px; line-height:1.6; }
    .token-badge{
      position:relative;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(37,99,235,.18);
      background: rgba(37,99,235,.08);
      color:#1d4ed8;
      font-weight:1000;
      font-size:12.5px;
      white-space:nowrap;
    }
    .token-table-scroll{ overflow:auto; }
    .token-table{
      width:100%;
      border-collapse:collapse;
      min-width: 680px;
      position:relative;
    }
    .token-table th, .token-table td{
      padding:12px 12px;
      border-bottom:1px solid rgba(15,23,42,.08);
      text-align:left;
      vertical-align:top;
      font-weight:750;
      color:#334155;
      font-size:13px;
    }
    .token-table thead th{
      background: rgba(2,6,23,.02);
      color:#0b1220;
      font-weight:1000;
    }

    .token-cta{
      position:relative;
      margin-top:14px;
      border-radius:20px;
      padding:12px;
      background: rgba(37,99,235,.06);
      border:1px solid rgba(37,99,235,.14);
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap;
    }
    .token-cta-title{ font-weight:1000; color:#0b1220; }
    .token-cta-desc{ margin-top:6px; color:#334155; font-weight:700; line-height:1.6; font-size:13px; }

    .token-footer-note{
      margin-top:14px;
      display:flex; gap:12px; align-items:flex-start;
      background: rgba(255,255,255,.84);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      box-shadow: 0 18px 45px rgba(16,24,40,.07);
      padding:14px 16px;
    }
    .note-dot{
      width:12px; height:12px; border-radius:4px;
      background: var(--grad-a);
      box-shadow: 0 0 0 6px rgba(37,99,235,.12);
      margin-top:4px;
      flex:0 0 auto;
    }
    .note-text{ color:#334155; font-weight:750; line-height:1.7; font-size:13px; }

    .training-grid{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:14px;
      align-items:start;
    }
    @media (max-width: 980px){
      .training-grid{ grid-template-columns: 1fr; }
    }

    .training-main .training-card{
      background: rgba(255,255,255,.86);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      box-shadow: 0 18px 45px rgba(16,24,40,.07);
      padding:18px;
    }
    .training-top{ display:flex; align-items:flex-start; justify-content:space-between; gap:12px; }
    .training-title{ font-weight:1000; color:#0b1220; font-size:16px; }
    .training-pill{
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(37,99,235,.18);
      background: rgba(37,99,235,.08);
      color:#1d4ed8;
      font-weight:1000;
      font-size:12.5px;
      white-space:nowrap;
    }
    .training-list{ margin-top:12px; display:grid; gap:12px; }
    .training-item{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px;
      border-radius:20px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(2,6,23,.02);
    }
    .training-ico{
      width:40px; height:40px; border-radius:16px;
      background: rgba(124,58,237,.10);
      border:1px solid rgba(124,58,237,.18);
      display:flex; align-items:center; justify-content:center;
      font-weight:1000;
      color:#0b1220;
      box-shadow: 0 12px 26px rgba(124,58,237,.10);
      flex:0 0 auto;
      margin-top:2px;
    }
    .training-name{ font-weight:1000; color:#0b1220; }
    .training-desc{ margin-top:6px; color:#334155; font-weight:700; line-height:1.6; font-size:13px; }

    .training-actions{ margin-top:14px; display:flex; gap:10px; flex-wrap:wrap; }

    .training-side{ display:grid; gap:14px; }
    .train-side-card{
      background: rgba(255,255,255,.86);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      box-shadow: 0 18px 45px rgba(16,24,40,.07);
      padding:18px;
    }
    .train-side-title{ font-weight:1000; color:#0b1220; font-size:16px; }
    .train-side-desc{ margin-top:10px; color:#334155; font-weight:700; line-height:1.7; font-size:13px; }
    .train-side-grid{
      margin-top:14px;
      display:grid; grid-template-columns: 1fr 1fr;
      gap:10px;
    }
    .pill-item{
      padding:10px 12px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(2,6,23,.02);
      font-weight:900;
      color:#0f172a;
      font-size:13px;
    }
    .train-side-divider{ margin:14px 0; height:1px; background: rgba(15,23,42,.10); }
    .train-side-title2{ font-weight:1000; color:#0b1220; font-size:16px; }
    .train-side-bullets{ margin-top:10px; display:grid; gap:10px; }
    .train-bullet{ color:#334155; font-weight:780; font-size:13px; display:flex; gap:10px; align-items:center; }
    .train-side-actions{ margin-top:14px; }

    .train-ugc-card{
      background: rgba(255,255,255,.84);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      box-shadow: 0 18px 45px rgba(16,24,40,.07);
      padding:18px;
      position:relative;
      overflow:hidden;
    }
    .train-ugc-card::before{
      content:"";
      position:absolute; inset:-2px;
      background: var(--grad-c);
      opacity:.55;
      pointer-events:none;
      mask-image: radial-gradient(circle at 20% 0%, #000 0%, transparent 60%);
    }
    .train-ugc-top{ position:relative; display:flex; align-items:flex-start; justify-content:space-between; gap:12px; }
    .train-ugc-title{ font-weight:1000; color:#0b1220; font-size:16px; }
    .train-ugc-pill{
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(124,58,237,.18);
      background: rgba(124,58,237,.08);
      color:#6d28d9;
      font-weight:1000;
      font-size:12.5px;
      white-space:nowrap;
    }
    .train-ugc-desc{ position:relative; margin-top:10px; color:#334155; font-weight:700; line-height:1.7; font-size:13px; }
    .train-ugc-row{ position:relative; display:flex; flex-wrap:wrap; gap:10px; margin-top:14px; }
    .mini-badge{
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      font-weight:950;
      color:#0f172a;
      font-size:13px;
    }

    @media (max-width: 520px){
      .train-side-grid{ grid-template-columns: 1fr; }
    }

    .help-rows{
      display:grid;
      grid-template-columns: 1fr 0.85fr;
      gap:14px;
      align-items:start;
    }
    @media (max-width: 980px){
      .help-rows{ grid-template-columns: 1fr; }
    }

    .help-accordion{
      padding:0;
      display:grid;
      gap:12px;
    }
    details.acc-item{
      background: rgba(255,255,255,.86);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:14px 16px;
      box-shadow: 0 18px 45px rgba(16,24,40,.06);
    }
    details.acc-item summary{
      cursor:pointer;
      list-style:none;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      font-weight:1000; color:#0b1220;
      outline:none;
    }
    details.acc-item summary::-webkit-details-marker{ display:none; }
    .acc-icon{
      width:14px; height:14px;
      border-radius:5px;
      border:1px solid rgba(15,23,42,.18);
      background: rgba(2,6,23,.03);
      position:relative;
      flex:0 0 auto;
    }
    .acc-icon::before{
      content:"";
      position:absolute; inset:3px 6px;
      border-top:2px solid #0f172a;
      top:6px;
      transform: rotate(0deg);
    }
    details[open] .acc-icon{
      background: rgba(37,99,235,.08);
      border-color: rgba(37,99,235,.18);
    }
    details[open] .acc-icon::after{
      content:"";
      position:absolute; left:6px; top:3px; width:2px; height:8px;
      background:#0f172a;
      opacity:.0;
    }
    details .acc-body{
      margin-top:10px;
      color:#334155;
      font-weight:720;
      line-height:1.7;
      font-size:13px;
    }

    .article-card{
      background: rgba(255,255,255,.86);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      box-shadow: 0 18px 45px rgba(16,24,40,.07);
      padding:18px;
      position:relative;
      overflow:hidden;
    }
    .article-card::before{
      content:"";
      position:absolute; inset:-2px;
      background: var(--grad-c);
      opacity:.55;
      pointer-events:none;
      mask-image: radial-gradient(circle at 80% 0%, #000 0%, transparent 60%);
    }
    .article-card-top, .article-list, .article-foot{ position:relative; }
    .article-card-top{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      margin-bottom:12px;
    }
    .article-title{ font-weight:1000; color:#0b1220; font-size:16px; }
    .article-list{ display:grid; gap:10px; }
    .article-item{
      text-decoration:none;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(2,6,23,.02);
      color:#0f172a;
      font-weight:900;
      line-height:1.5;
      font-size:13px;
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
    }
    .article-item:hover{
      transform: translateY(-2px);
      border-color: rgba(37,99,235,.20);
      background: rgba(37,99,235,.05);
    }
    .article-foot{ margin-top:14px; display:flex; }

    .faq-wrap{
      display:grid;
      grid-template-columns: 1fr 0.9fr;
      gap:14px;
      align-items:start;
    }
    @media (max-width: 980px){
      .faq-wrap{ grid-template-columns: 1fr; }
    }
    .faq-left, .faq-right{ display:grid; gap:14px; }
    .faq-legend{
      display:flex; align-items:center; gap:10px;
      color:#334155;
      font-weight:900;
      margin-bottom:6px;
      font-size:13px;
    }
    .legend-dot{
      width:12px; height:12px; border-radius:4px;
      background: var(--grad-a);
      box-shadow: 0 0 0 6px rgba(37,99,235,.12);
    }

    details.faq-item{
      background: rgba(255,255,255,.86);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:14px 16px;
      box-shadow: 0 18px 45px rgba(16,24,40,.06);
      transition: border-color .2s ease, transform .2s ease;
    }
    details.faq-item[open]{ border-color: rgba(37,99,235,.22); }
    details.faq-item summary{
      cursor:pointer;
      list-style:none;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      font-weight:1000; color:#0b1220;
      outline:none;
      padding-right:6px;
    }
    details.faq-item summary::-webkit-details-marker{ display:none; }
    .faq-body{
      margin-top:10px;
      color:#334155;
      font-weight:720;
      line-height:1.7;
      font-size:13px;
    }

    .faq-quick-card{
      background: rgba(255,255,255,.84);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      box-shadow: 0 18px 45px rgba(16,24,40,.07);
      padding:18px;
      position:relative;
      overflow:hidden;
    }
    .faq-quick-card::before{
      content:"";
      position:absolute; inset:-2px;
      background: var(--grad-c);
      opacity:.55;
      pointer-events:none;
      mask-image: radial-gradient(circle at 20% 0%, #000 0%, transparent 60%);
    }
    .faq-quick-title{ position:relative; font-weight:1000; color:#0b1220; font-size:16px; }
    .faq-quick-desc{ position:relative; margin-top:10px; color:#334155; font-weight:700; line-height:1.7; font-size:13px; }
    .faq-quick-actions{ position:relative; display:grid; gap:12px; margin-top:14px; }
    .faq-quick-divider{ position:relative; height:1px; background: rgba(15,23,42,.10); margin:14px 0; }
    .faq-quick-mini{ position:relative; display:grid; gap:10px; }
    .mini-row{ display:flex; align-items:center; gap:10px; color:#334155; font-weight:750; font-size:13px; line-height:1.6; }
    .mini-icon-dot{ width:10px; height:10px; border-radius:4px; background: var(--grad-b); box-shadow: 0 0 0 6px rgba(167,139,250,.14); }

    .wiki-grid{
      display:grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap:14px;
    }
    @media (max-width: 980px){
      .wiki-grid{ grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 520px){
      .wiki-grid{ grid-template-columns: 1fr; }
    }
    .wiki-card{
      background: rgba(255,255,255,.86);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:18px;
      box-shadow: 0 18px 45px rgba(16,24,40,.07);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      min-height: 150px;
    }
    .wiki-card:hover{ transform: translateY(-3px); border-color: rgba(37,99,235,.22); box-shadow: 0 26px 70px rgba(16,24,40,.12); }
    .wiki-card.alt{ background: linear-gradient(180deg, rgba(124,58,237,.06), rgba(255,255,255,.95)); }
    .wiki-card.alt2{ background: linear-gradient(180deg, rgba(34,197,94,.06), rgba(255,255,255,.95)); }
    .wiki-ico{
      width:46px; height:46px; border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(37,99,235,.10);
      border:1px solid rgba(37,99,235,.18);
      font-size:20px;
      box-shadow: 0 12px 26px rgba(37,99,235,.12);
      margin-bottom:12px;
    }
    .wiki-title{ margin:0; font-weight:1000; color:#0b1220; font-size:16px; }
    .wiki-desc{ margin-top:10px; color:#334155; font-weight:720; line-height:1.7; font-size:13px; }

    .tag-cloud{
      margin-top:14px;
      background: rgba(255,255,255,.84);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      box-shadow: 0 18px 45px rgba(16,24,40,.07);
      padding:16px;
    }
    .tag-cloud-title{ font-weight:1000; color:#0b1220; font-size:16px; margin-bottom:12px; }
    .tag-cloud-row{ display:flex; flex-wrap:wrap; gap:10px; }
    .cloud-tag{
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(2,6,23,.02);
      font-weight:950;
      color:#0f172a;
      font-size:13px;
    }

    .news-grid{
      display:grid;
      grid-template-columns: 1fr .95fr;
      gap:14px;
      align-items:start;
    }
    @media (max-width: 980px){
      .news-grid{ grid-template-columns: 1fr; }
    }
    .news-card{
      background: rgba(255,255,255,.86);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      box-shadow: 0 18px 45px rgba(16,24,40,.07);
      padding:18px;
    }
    .news-card-top{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      margin-bottom:12px;
    }
    .news-title{ font-weight:1000; color:#0b1220; font-size:16px; }
    .news-list{ display:grid; gap:10px; }
    .news-item{
      text-decoration:none;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(2,6,23,.02);
      color:#0f172a;
      font-weight:900;
      line-height:1.5;
      font-size:13px;
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
    }
    .news-item:hover{
      transform: translateY(-2px);
      border-color: rgba(37,99,235,.20);
      background: rgba(37,99,235,.05);
    }

    .news-side-card{
      padding:18px;
      background: rgba(255,255,255,.86);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      box-shadow: 0 18px 45px rgba(16,24,40,.07);
    }
    .news-side-title{ font-weight:1000; color:#0b1220; font-size:16px; }
    .news-side-desc{ margin-top:10px; color:#334155; font-weight:720; line-height:1.7; font-size:13px; }
    .focus-list{ margin-top:14px; display:grid; gap:12px; }
    .focus-item{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px;
      border-radius:20px;
      background: rgba(2,6,23,.02);
      border:1px solid rgba(15,23,42,.08);
    }
    .focus-ico{
      width:42px; height:42px; border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(124,58,237,.10);
      border:1px solid rgba(124,58,237,.18);
      box-shadow: 0 12px 26px rgba(124,58,237,.10);
      flex:0 0 auto;
      font-size:18px;
    }
    .focus-text{ color:#0f172a; font-weight:950; line-height:1.5; font-size:13px; }
    .news-side-actions{ margin-top:14px; display:grid; gap:12px; }

    .img-strip-card{
      margin-top:14px;
      background: rgba(255,255,255,.84);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      box-shadow: 0 18px 45px rgba(16,24,40,.07);
      padding:16px;
    }
    .img-strip-head{ margin-bottom:12px; }
    .img-strip-title{ font-weight:1000; color:#0b1220; font-size:16px; }
    .img-strip-sub{ margin-top:6px; color:#334155; font-weight:700; line-height:1.6; font-size:13px; }
    .img-strip-grid{
      display:grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap:12px;
    }
    .img-strip-grid img{
      width:100%;
      height:auto;
      display:block;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.08);
      box-shadow: 0 18px 45px rgba(16,24,40,.06);
      background:#fff;
    }

    .contact-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    @media (max-width: 980px){
      .contact-grid{ grid-template-columns: 1fr; }
    }

    .contact-card{
      background: rgba(255,255,255,.86);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      box-shadow: 0 18px 45px rgba(16,24,40,.07);
      padding:18px;
      position:relative;
      overflow:hidden;
    }
    .contact-card::before{
      content:"";
      position:absolute; inset:-2px;
      background: var(--grad-c);
      opacity:.52;
      pointer-events:none;
      mask-image: radial-gradient(circle at 25% 0%, #000 0%, transparent 60%);
    }
    .contact-card-title{ position:relative; font-weight:1000; color:#0b1220; font-size:16px; margin-bottom:12px; }

    .contact-items{ position:relative; display:grid; gap:12px; }
    .contact-item{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px;
      background: rgba(2,6,23,.02);
      border:1px solid rgba(15,23,42,.08);
      border-radius:20px;
    }
    .contact-ico{
      width:42px; height:42px; border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(37,99,235,.10);
      border:1px solid rgba(37,99,235,.18);
      box-shadow: 0 12px 26px rgba(37,99,235,.10);
      font-size:18px;
      flex:0 0 auto;
    }
    .contact-label{ font-weight:1000; color:#0b1220; font-size:13px; }
    .contact-link{
      display:inline-block;
      margin-top:6px;
      color:#1d4ed8;
      text-decoration:none;
      font-weight:950;
      border-bottom: 1px solid rgba(29,78,216,.25);
      padding-bottom:2px;
      word-break:break-word;
    }
    .contact-text{ margin-top:6px; display:block; color:#334155; font-weight:800; font-size:13px; }

    .contact-qrcode-row{
      position:relative;
      margin-top:14px;
      display:grid;
      grid-template-columns: .9fr 1.1fr;
      gap:14px;
      align-items:start;
    }
    @media (max-width: 520px){
      .contact-qrcode-row{ grid-template-columns: 1fr; }
    }
    .qrcode-block{
      background: rgba(255,255,255,.78);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:14px;
      box-shadow: 0 18px 45px rgba(16,24,40,.06);
    }
    .qrcode-title{ font-weight:1000; color:#0b1220; font-size:14px; }
    .qrcode-img{
      width:100%;
      max-width: 180px;
      height:auto;
      display:block;
      margin:12px auto 0 auto;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.08);
      background:#fff;
    }
    .qrcode-sub{ margin-top:10px; text-align:center; color:#334155; font-weight:750; line-height:1.6; font-size:12.5px; }
    .contact-actions{
      display:grid; gap:12px;
    }

    .comment-card{
      background: rgba(255,255,255,.84);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      box-shadow: 0 18px 45px rgba(16,24,40,.07);
      padding:18px;
    }
    .comment-title{ font-weight:1000; color:#0b1220; font-size:16px; margin-bottom:12px; }
    .comment-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    @media (max-width: 520px){
      .comment-grid{ grid-template-columns: 1fr; }
    }
    .comment-item{
      padding:12px;
      border-radius:22px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(2,6,23,.02);
    }
    .comment-avatar{
      width:44px; height:44px;
      border-radius:18px;
      background: rgba(124,58,237,.10);
      border:1px solid rgba(124,58,237,.18);
      display:flex; align-items:center; justify-content:center;
      font-weight:1000;
      color:#0b1220;
      box-shadow: 0 12px 26px rgba(124,58,237,.10);
    }
    .comment-meta{ margin-top:10px; display:flex; align-items:flex-start; justify-content:space-between; gap:10px; }
    .comment-name{ font-weight:1000; color:#0b1220; font-size:13.5px; }
    .comment-stars{ color:#f59e0b; font-weight:1000; letter-spacing:1px; font-size:13px; margin-top:2px; }
    .comment-text{ margin-top:10px; color:#334155; font-weight:720; line-height:1.7; font-size:13px; }

    .comment-footer{
      margin-top:14px;
      display:flex; gap:10px; flex-wrap:wrap;
    }
    .comment-footer .btn{ flex:1; }

    .contact-right{
      display:grid;
      gap:14px;
    }
    .contact-form-card{
      background: rgba(255,255,255,.86);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      box-shadow: 0 18px 45px rgba(16,24,40,.07);
      padding:18px;
    }
    .contact-form-title{ font-weight:1000; color:#0b1220; font-size:16px; margin-bottom:12px; }
    .mini-form .form-actions .btn{ min-width: 180px; }

    @media (max-width: 520px){
      .comment-footer{ flex-direction:column; }
    }

    .join-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:14px;
      align-items:start;
    }
    @media (max-width: 980px){
      .join-grid{ grid-template-columns: 1fr; }
    }
    .join-card{
      background: rgba(255,255,255,.86);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      box-shadow: 0 18px 45px rgba(16,24,40,.07);
      padding:18px;
      position:relative;
      overflow:hidden;
    }
    .join-card::before{
      content:"";
      position:absolute; inset:-2px;
      background: var(--grad-c);
      opacity:.5;
      pointer-events:none;
      mask-image: radial-gradient(circle at 20% 0%, #000 0%, transparent 60%);
    }
    .join-top{ position:relative; display:flex; gap:12px; align-items:flex-start; }
    .join-ico{
      width:46px; height:46px; border-radius:16px;
      background: rgba(34,197,94,.10);
      border:1px solid rgba(34,197,94,.18);
      box-shadow: 0 12px 26px rgba(34,197,94,.10);
      display:flex; align-items:center; justify-content:center;
      font-size:20px;
      flex:0 0 auto;
    }
    .join-title{ font-weight:1000; color:#0b1220; font-size:16px; }
    .join-desc{ margin-top:6px; color:#334155; font-weight:720; line-height:1.7; font-size:13px; }
    .join-points{ position:relative; margin-top:14px; display:grid; gap:12px; }
    .join-point{ display:flex; gap:12px; align-items:flex-start; padding:12px; border-radius:20px; background: rgba(2,6,23,.02); border:1px solid rgba(15,23,42,.08); }
    .join-bullet{ width:10px; height:10px; border-radius:4px; background: var(--grad-b); box-shadow: 0 0 0 6px rgba(167,139,250,.14); margin-top:6px; flex:0 0 auto; }
    .join-point strong{ color:#0b1220; }
    .join-point div{ color:#334155; font-weight:750; line-height:1.6; font-size:13px; }
    .join-actions{ position:relative; margin-top:14px; display:flex; gap:10px; flex-wrap:wrap; }

    .join-side{ display:grid; gap:14px; }
    .price-network-card, .partner-note-card{
      background: rgba(255,255,255,.84);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      box-shadow: 0 18px 45px rgba(16,24,40,.07);
      padding:18px;
    }
    .pn-title, .partner-note-title{ font-weight:1000; color:#0b1220; font-size:16px; }
    .pn-desc, .partner-note-desc{ margin-top:10px; color:#334155; font-weight:720; line-height:1.7; font-size:13px; }
    .pn-list{ margin-top:14px; display:grid; gap:12px; }
    .pn-item{
      padding:12px;
      border-radius:20px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(2,6,23,.02);
      color:#0f172a;
      font-weight:950;
      font-size:13px;
      display:flex; gap:10px; align-items:center;
    }
    .pn-note{
      margin-top:14px;
      color:#334155;
      font-weight:760;
      line-height:1.7;
      font-size:13px;
    }

    .float-kefu{
      position:fixed;
      right:16px;
      bottom:92px;
      z-index:60;
      display:flex; align-items:center; gap:10px;
      text-decoration:none;
      padding:12px 14px;
      border-radius:18px;
      background: rgba(255,255,255,.86);
      border:1px solid rgba(15,23,42,.10);
      box-shadow: 0 18px 45px rgba(16,24,40,.12);
      color:#0f172a;
      font-weight:1000;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      max-width: 190px;
    }
    .float-kefu:hover{
      transform: translateY(-2px);
      border-color: rgba(37,99,235,.22);
      box-shadow: 0 26px 70px rgba(16,24,40,.18);
    }
    .float-kefu-ico{
      width:36px; height:36px;
      border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(37,99,235,.10);
      border:1px solid rgba(37,99,235,.18);
      box-shadow: 0 12px 26px rgba(37,99,235,.10);
    }
    .float-kefu-text{
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
      font-size:13px;
    }
    @media (max-width: 520px){
      .float-kefu{ bottom:82px; right:12px; max-width: 150px; }
      .float-kefu-text{ display:none; }
    }

    .back-to-top{
      position:fixed;
      right:16px;
      bottom:18px;
      z-index:60;
      width:46px; height:46px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.86);
      box-shadow: 0 18px 45px rgba(16,24,40,.12);
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
      color:#0f172a;
      font-weight:1000;
      transform: translateY(12px);
      opacity:0;
      pointer-events:none;
      transition: transform .18s ease, opacity .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .back-to-top.show{
      opacity:1;
      pointer-events:auto;
      transform: translateY(0);
    }
    .back-to-top:hover{
      border-color: rgba(37,99,235,.22);
      box-shadow: 0 26px 70px rgba(16,24,40,.18);
    }

    .links-card{
      background: rgba(255,255,255,.84);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      box-shadow: 0 18px 45px rgba(16,24,40,.07);
      padding:16px;
      overflow:hidden;
      position:relative;
    }
    .links-card::before{
      content:"";
      position:absolute; inset:-2px;
      background: var(--grad-c);
      opacity:.5;
      pointer-events:none;
      mask-image: radial-gradient(circle at 10% 0%, #000 0%, transparent 55%);
    }
    .links-head, .links-grid{ position:relative; }
    .links-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:12px; margin-bottom:12px; }
    .links-title{ font-weight:1000; color:#0b1220; font-size:16px; }
    .links-sub{ color:#334155; font-weight:720; font-size:13px; }

    .links-grid{
      display:grid;
      grid-template-columns: repeat(7, minmax(0, 1fr));
      gap:10px;
      margin-bottom:12px;
    }
    .links-grid a{
      text-decoration:none;
      padding:10px 10px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(2,6,23,.02);
      color:#0f172a;
      font-weight:950;
      font-size:12.5px;
      text-align:center;
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
      white-space:nowrap;
    }
    .links-grid a:hover{
      transform: translateY(-2px);
      border-color: rgba(37,99,235,.20);
      background: rgba(37,99,235,.05);
    }
    @media (max-width: 980px){
      .links-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
    }
    @media (max-width: 520px){
      .links-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    .site-footer{
      background: linear-gradient(180deg, rgba(2,6,23,.02), rgba(2,6,23,.04));
      border-top: 1px solid rgba(15,23,42,.08);
    }
    .footer-inner{ padding:26px 0 18px 0; }
    .footer-top{
      display:grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      gap:16px;
      align-items:start;
    }
    @media (max-width: 980px){
      .footer-top{ grid-template-columns: 1fr; }
    }

    .footer-brand{
      padding:14px;
      border-radius:22px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.70);
      box-shadow: 0 18px 45px rgba(16,24,40,.06);
    }
    .footer-logo-row{
      display:flex; gap:12px; align-items:center;
    }
    .footer-logo{
      width:42px; height:42px; border-radius:16px;
      object-fit:contain;
      padding:6px;
      border:1px solid rgba(15,23,42,.10);
      background:#fff;
      box-shadow: 0 12px 26px rgba(37,99,235,.10);
    }
    .footer-name{ font-weight:1000; color:#0b1220; font-size:16px; }
    .footer-sub{ margin-top:6px; color:#334155; font-weight:720; line-height:1.6; font-size:13px; }
    .footer-contact{ margin-top:12px; display:grid; gap:8px; color:#334155; font-weight:800; font-size:13px; }
    .footer-contact a{
      color:#1d4ed8; text-decoration:none;
      font-weight:950;
      border-bottom:1px solid rgba(29,78,216,.22);
      padding-bottom:2px;
    }
    .footer-ico{ margin-right:8px; }

    .footer-links, .footer-cta{
      padding:14px;
      border-radius:22px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.70);
      box-shadow: 0 18px 45px rgba(16,24,40,.06);
    }
    .footer-col-title{ font-weight:1000; color:#0b1220; font-size:15px; margin-bottom:12px; }
    .footer-link-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
    }
    .footer-link-grid a{
      text-decoration:none;
      color:#0f172a;
      font-weight:900;
      padding:10px 12px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(2,6,23,.02);
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
      font-size:13px;
    }
    .footer-link-grid a:hover{
      transform: translateY(-2px);
      border-color: rgba(37,99,235,.20);
      background: rgba(37,99,235,.05);
    }

    .footer-cta-actions{
      display:grid;
      gap:10px;
    }
    .footer-qrrow{ margin-top:12px; display:flex; align-items:center; justify-content:flex-start; }
    .footer-qr img{
      width:92px; height:auto; border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background:#fff;
      box-shadow: 0 18px 45px rgba(16,24,40,.06);
    }
    .footer-bottom{
      margin-top:14px;
      padding-top:14px;
      border-top:1px solid rgba(15,23,42,.08);
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      flex-wrap:wrap;
    }
    .footer-copy{ color:#334155; font-weight:800; font-size:13px; }
    .footer-legal{ display:flex; gap:14px; flex-wrap:wrap; }
    .footer-legal a{
      color:#1d4ed8; text-decoration:none; font-weight:950;
      border-bottom:1px solid rgba(29,78,216,.22);
      padding-bottom:2px;
      font-size:13px;
    }

    @media (prefers-reduced-motion: reduce){
      *{ scroll-behavior:auto !important; transition:none !important; animation:none !important; }
    }