 :root{
      --bg:#0b0f14;
      --card:#0f1722;
      --muted:#9fb0c4;
      --text:#eaf1fb;
      --line:rgba(255,255,255,.08);
      --accent:#7c5cff;
      --accent2:#22c55e;
      --shadow: 0 20px 60px rgba(0,0,0,.45);
      --radius: 18px;
    }
    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
      background: radial-gradient(1200px 600px at 20% -10%, rgba(124,92,255,.25), transparent 60%),
                  radial-gradient(900px 500px at 90% 10%, rgba(34,197,94,.18), transparent 55%),
                  var(--bg);
      color: var(--text);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    a{color:inherit}
    .wrap{max-width:1100px; margin:0 auto; padding: 18px 16px 56px;}
    header{
      display:flex; align-items:center; justify-content:space-between;
      padding: 8px 0 18px;
    }
    .brand{
      display:flex; align-items:center; gap:10px; text-decoration:none;
    }
    .logo{
      width:38px; height:38px; border-radius:12px;
      background: linear-gradient(135deg, rgba(124,92,255,1), rgba(34,197,94,1));
      box-shadow: 0 10px 30px rgba(124,92,255,.18);
    }
    .brand span{font-weight:700; letter-spacing:.2px}
    .toplinks{display:flex; gap:14px; color:var(--muted); font-size:14px}
    .toplinks a{opacity:.9; text-decoration:none}
    .toplinks a:hover{opacity:1; text-decoration:underline}

    .hero{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 18px;
      align-items:stretch;
      margin-top: 10px;
    }
    @media (max-width: 900px){
      .hero{grid-template-columns:1fr; }
      .toplinks{display:none}
    }

    .panel{
      background: rgba(15,23,34,.72);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      overflow:hidden;
    }
    .left{
      padding: 26px 22px;
      position:relative;
    }
    .badge{
      display:inline-flex; gap:8px; align-items:center;
      padding: 7px 10px;
      border: 1px solid var(--line);
      border-radius: 999px;
      color: var(--muted);
      font-size: 13px;
      background: rgba(0,0,0,.22);
    }
    .dot{
      width:8px;height:8px;border-radius:99px;background:var(--accent2);
      box-shadow: 0 0 0 4px rgba(34,197,94,.12);
    }
    h1{
      margin: 14px 0 10px;
      font-size: clamp(30px, 4vw, 44px);
      line-height:1.06;
      letter-spacing:-.4px;
    }
    .sub{
      color: var(--muted);
      font-size: 16px;
      line-height:1.55;
      margin: 0 0 18px;
      max-width: 56ch;
    }

    .ctaRow{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top: 12px;
    }
    .btn{
      appearance:none; border:1px solid var(--line); background: rgba(0,0,0,.28);
      color: var(--text);
      border-radius: 14px;
      padding: 12px 14px;
      font-weight: 650;
      font-size: 15px;
      cursor:pointer;
      display:inline-flex; align-items:center; gap:10px;
      transition: transform .08s ease, border-color .15s ease, background .15s ease;
      text-decoration:none;
    }
    .btn:hover{transform: translateY(-1px); border-color: rgba(255,255,255,.16)}
    .btn.primary{
      border-color: rgba(124,92,255,.35);
      background: linear-gradient(135deg, rgba(124,92,255,.18), rgba(124,92,255,.10));
    }
    .btn.green{
      border-color: rgba(34,197,94,.35);
      background: linear-gradient(135deg, rgba(34,197,94,.16), rgba(34,197,94,.08));
    }
    .btn .icon{
      width:18px; height:18px; display:inline-block;
    }

    /* Material Symbols fingerprint icon */
    .material-symbols-outlined{
      font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 24;
    }
    .biometric-icon{
      font-size: 20px;
      line-height: 1;
      color: #e3e3e3;
    }
    .btn:hover .biometric-icon{
      color:#ffffff;
    }

    .trust{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top: 16px;
      color: var(--muted);
      font-size: 13px;
    }
    .pill{
      padding: 8px 10px;
      border:1px solid var(--line);
      border-radius: 999px;
      background: rgba(0,0,0,.16);
    }

    .right{
      padding: 18px;
      display:flex; flex-direction:column; gap: 12px;
    }
    .card{
      padding: 16px;
      border:1px solid var(--line);
      background: rgba(0,0,0,.18);
      border-radius: 16px;
    }
    .card h3{
      margin:0 0 6px;
      font-size: 15px;
      letter-spacing:.1px;
    }
    .card p{
      margin:0;
      color: var(--muted);
      font-size: 14px;
      line-height:1.5;
    }

    .section{
      margin-top: 18px;
      padding: 18px 0 0;
      border-top: 1px solid rgba(255,255,255,.06);
    }
    .grid3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }
    @media (max-width: 900px){
      .grid3{grid-template-columns:1fr}
    }

    footer{
      margin-top: 28px;
      color: var(--muted);
      font-size: 13px;
      display:flex;
      gap:12px;
      align-items:center;
      justify-content:space-between;
      flex-wrap:wrap;
    }
    footer a{color: var(--muted); text-decoration:none}
    footer a:hover{text-decoration:underline}
    .tiny{opacity:.9}
 

  <!-- Structured data (basic) -->
.btn.solana{
  border-color: rgba(153,69,255,.35);
  background: linear-gradient(135deg, rgba(153,69,255,.18), rgba(20,241,149,.10));
}

.solMark{
  width:18px; height:18px; display:inline-block;
  background: linear-gradient(90deg, #9945FF, #14F195);
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(153,69,255,.12);
}

.walletStatus{
  margin-top: 12px;
  padding: 10px 12px;
  border:1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  background: rgba(0,0,0,.16);
  color: var(--muted);
  font-size: 14px;
}
.pw-spinner{
  width:32px;
  height:32px;
  border:3px solid rgba(255,255,255,.18);
  border-top-color:#7c5cff;
  border-radius:50%;
  animation:pwspin .8s linear infinite;
}

@keyframes pwspin{
  to { transform: rotate(360deg); }
}
