
   :root {
  --bg: #000000;
  --bg-2: #050505;
  --bg-3: #0a0a0a;
  --card: rgba(255, 255, 255, 0.04);
  --card-2: rgba(255,255,255,0.03);
  --stroke: rgba(255,255,255,0.08);
  --text: #f5f7ff;
  --muted: #a3acc2;
  --cyan: #66f7ff;
  --teal: #21e6c1;
  --violet: #8d5cff;
  --pink: #ff4fd8;
  --gold-1: #fff3b0;
  --gold-2: #ffd700;
  --gold-3: #cfae2b;
  --gold-4: #b8860b;
  --radius: 28px;
  --shadow: 0 20px 70px rgba(0,0,0,.55);
  --max: 1220px;
}

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(141, 92, 255, 0.10), transparent 24%),
    radial-gradient(circle at 80% 15%, rgba(102, 247, 255, 0.07), transparent 24%),
    radial-gradient(circle at 50% 85%, rgba(255, 79, 216, 0.06), transparent 22%),
    linear-gradient(180deg, #000000 0%, #030303 30%, #060606 65%, #090909 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.08));
}

body::after {
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.03), transparent 34%);
  opacity: .8;
}

#bgCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
}

    .wrap {
      position: relative;
      z-index: 1;
    }

    .container {
      width: min(var(--max), calc(100% - 32px));
      margin: 0 auto;
    }

    .glass {
      background: linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.025));
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border: 1px solid var(--stroke);
      box-shadow: var(--shadow);
    }

    .nav {
      position: sticky;
      top: 14px;
      z-index: 50;
      margin-top: 18px;
    }

    .nav-inner {
      /*display: flex;*/
      align-items: center;
      text-align: center;
      justify-content: space-between;
      gap: 16px;
      padding: 14px 18px;
      border-radius: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      text-decoration: none;
      color: var(--text);
    }

    .brand-mark {
      width: 46px;
      height: 46px;
      border-radius: 16px;
      position: relative;
      background: linear-gradient(135deg, rgba(20,231,197,.22), rgba(141,92,255,.2));
      border: 1px solid rgba(255,255,255,.08);
      display: grid;
      place-items: center;
      overflow: hidden;
    }

    .brand-mark::before,
    .brand-mark::after {
      content: "";
      position: absolute;
      border: 2px solid rgba(255,255,255,.88);
      clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
      border-radius: 6px;
    }

    .brand-mark::before {
      inset: 9px;
    }

    .brand-mark::after {
      inset: 16px 14px 12px;
      border-color: rgba(89, 241, 255, .95);
      opacity: .75;
    }

    .brand-copy strong {
      display: block;
      font-family: "Space Grotesk", Inter, sans-serif;
      font-size: 1.08rem;
      letter-spacing: .02em;
    }

    .btn,
    .ghost {
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.04);
      color: var(--text);
      padding: 12px 18px;
      border-radius: 16px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-weight: 700;
      transition: .28s ease;
      cursor: pointer;
    }

    .ghost:hover {
      transform: translateY(-2px);
      background: rgba(255,255,255,.08);
    }

    .btn {
      background: linear-gradient(135deg, var(--gold-1), var(--gold-2) 25%, var(--gold-3) 58%, #fff0a6 78%, var(--gold-4));
      color: #08101d;
      border: none;
      box-shadow: 0 14px 36px rgba(255, 215, 0, .18);
    }

    .btn:hover {
      transform: translateY(-3px) scale(1.01);
      box-shadow: 0 20px 46px rgba(141, 92, 255, .25);
    }

    .hero {
      min-height: calc(100vh - 110px);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 56px 0 28px;
    }

    .hero-content {
      width: min(900px, 100%);
      margin: 0 auto;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 14px;
      border-radius: 999px;
      color: #dffcff;
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.1);
      font-size: .88rem;
      margin-bottom: 18px;
    }

    .pulse {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--teal);
      box-shadow: 0 0 0 0 rgba(20,231,197,.65);
      animation: pulse 1.8s infinite;
    }
    
  
.logo img {
  width: 190px;
  height: auto;
   
}

@media (max-width: 768px) {
  .logo img {
    width: 120px;
  }
}

    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(20,231,197,.65); }
      70% { box-shadow: 0 0 0 14px rgba(20,231,197,0); }
      100% { box-shadow: 0 0 0 0 rgba(20,231,197,0); }
    }

    .eyebrow {
      display: block;
      font-size: clamp(1rem, 2.2vw, 1.3rem);
      color: var(--muted);
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      margin-bottom: 16px;
      animation: slideUp .9s ease .08s both;
    }

    .hero h1 {
      font-family: "Space Grotesk", Inter, sans-serif;
      font-size: clamp(2.8rem,);
      line-height: .95;
      margin: 0;
      letter-spacing: -0.05em;
      font-size: 40px;
    }

    .gradient-text {
      display: block;
      background: #fff;
      background-size: 200% auto;
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      animation: shimmer 8s linear infinite, slideUp 1s ease both;
    }

    .gradient-line {
      display: block;
      margin-top: 10px;
      background: #fff;
      background-size: 200% auto;
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      animation: shimmer 9s linear infinite, slideUp 1.1s ease .12s both;
    }

    @keyframes shimmer {
      0% { background-position: 0% center; }
      100% { background-position: 200% center; }
    }

    @keyframes slideUp {
      from { opacity: 0; transform: translateY(22px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .hero p {
      font-size: 1.05rem;
      line-height: 1.85;
      color: var(--muted);
      max-width: 720px;
      margin: 24px auto 30px;
      animation: slideUp 1.15s ease .22s both;
    }

    .hero-actions {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
      animation: slideUp 1.2s ease .28s both;
    }

    .mini-stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin-top: 28px;
      animation: slideUp 1.22s ease .34s both;
    }

    .mini-card {
      padding: 18px;
      border-radius: 22px;
      text-align: center;
    }

    .mini-card strong {
      display: block;
      font-size: clamp(1.15rem, 3vw, 1.45rem);
      margin-bottom: 8px;
    }

    .mini-card span {
      color: var(--muted);
      font-size: .92rem;
    }

    .section {
      padding: 72px 0;
    }

    .section-head {
      text-align: center;
      max-width: 860px;
      margin: 0 auto 30px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 10px 14px;
      border-radius: 999px;
      margin-bottom: 16px;
      border: 1px solid rgba(255,255,255,.1);
      background: rgba(255,255,255,.04);
      color: #defaff;
      font-size: .88rem;
    }

    .section-head h2 {
      font-family: "Space Grotesk", Inter, sans-serif;
      font-size: clamp(2rem, 5vw, 4rem);
      line-height: 1.04;
      margin: 0 0 14px;
      letter-spacing: -0.04em;
    }

    .section-head p {
      color: var(--muted);
      font-size: 1rem;
      line-height: 1.8;
      margin: 0 auto;
      max-width: 760px;
    }

    .wallet-strip {
      display: grid;
      gap: 22px;
    }

    .wallet-window {
      overflow: hidden;
      position: relative;
      border-radius: 32px;
      padding: 20px 0;
    }

    .wallet-window::before,
    .wallet-window::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      width: 120px;
      z-index: 2;
      pointer-events: none;
    }

    .wallet-window::before {
      left: 0;
      background: linear-gradient(90deg, rgba(4,8,20,1), rgba(4,8,20,0));
    }

    .wallet-window::after {
      right: 0;
      background: linear-gradient(270deg, rgba(4,8,20,1), rgba(4,8,20,0));
    }

    .wallet-track {
      display: flex;
      gap: 18px;
      width: max-content;
      padding-left: 22px;
      animation: marquee 26s linear infinite;
    }

    .wallet-window:hover .wallet-track {
      animation-play-state: paused;
    }

    @keyframes marquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .wallet-card {
      width: 180px;
      min-height: 190px;
      padding: 22px 18px;
      border-radius: 28px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
      text-align: center;
      background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
      border: 1px solid rgba(255,255,255,.09);
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .wallet-card::before {
      content: "";
      position: absolute;
      inset: auto -40px -40px auto;
      width: 100px;
      height: 100px;
      background: radial-gradient(circle, rgba(141,92,255,.22), transparent 70%);
      border-radius: 50%;
    }

    .wallet-icon {
      width: 68px;
      height: 68px;
      border-radius: 22px;
      display: grid;
      place-items: center;
      font-weight: 900;
      letter-spacing: -0.03em;
      font-size: 1.05rem;
      background: #fff;
       
    }

    .wallet-card b {
      font-size: 1rem;
    }

    .wallet-card span {
      color: var(--muted);
      font-size: .86rem;
    }

    .feature-grid,
    .text-grid {
      display: grid;
      gap: 20px;
    }

    .feature-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .text-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .card {
      padding: 28px;
      border-radius: 28px;
      position: relative;
      overflow: hidden;
    }

    .card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top right, rgba(77,242,255,.09), transparent 35%);
      pointer-events: none;
    }

    .icon-badge {
      width: 58px;
      height: 58px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      font-size: 1.35rem;
      margin-bottom: 18px;
      background: linear-gradient(135deg, rgba(20,231,197,.15), rgba(141,92,255,.22));
      border: 1px solid rgba(255,255,255,.08);
    }

    .feature-grid h3,
    .text-card h3 {
      margin: 0 0 12px;
      font-size: clamp(1.35rem, 3vw, 1.9rem);
      letter-spacing: -0.03em;
    }

    .feature-grid p,
    .text-card p,
    .text-card li {
      color: var(--muted);
      font-size: 1rem;
      line-height: 1.75;
      margin: 0;
    }

    .list {
      margin: 18px 0 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 12px;
    }

    .list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .list li::before {
      content: "";
      width: 10px;
      height: 10px;
      margin-top: 9px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--teal), var(--violet));
      box-shadow: 0 0 0 6px rgba(77,242,255,.07);
      flex: 0 0 10px;
    }

    .cta-box {
      padding: 38px;
      border-radius: 34px;
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    .cta-box::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 20% 20%, rgb(12 12 12), transparent 28%), radial-gradient(circle at 80% 30%, rgba(141, 92, 255, .18), transparent 26%), linear-gradient(135deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
    }

    .cta-box > * {
      position: relative;
      z-index: 1;
    }

    .cta-box h2 {
      margin: 0 0 14px;
      font-size: 40px;
      line-height: 1.04;
      font-family: "Space Grotesk", Inter, sans-serif;
      letter-spacing: -0.04em;
    }

    .cta-box p {
      max-width: 760px;
      margin: 0 auto 24px;
      color: var(--muted);
      line-height: 1.8;
      font-size: 1rem;
    }

    .footer {
      padding: 26px 0 56px;
      text-align: center;
      color: var(--muted);
    }

    .footer a {
      color: #defcff;
      text-decoration: none;
    }

    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .75s ease, transform .75s ease;
    }

    .reveal.in {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 992px) {
      .feature-grid {
        grid-template-columns: 1fr 1fr;
      }

      .text-grid {
        grid-template-columns: 1fr;
      }

      .mini-stats {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .nav-inner {
        padding: 12px 14px;
      }

      .feature-grid {
        grid-template-columns: 1fr;
      }

      .wallet-card {
        width: 150px;
        min-height: 174px;
      }

      .section {
        padding: 58px 0;
      }

      .cta-box,
      .card {
        padding: 24px;
      }
    }

    @media (max-width: 560px) {
      .container {
        width: min(var(--max), calc(100% - 20px));
      }

      .nav {
        top: 8px;
        margin-top: 10px;
      }

      .nav-inner {
        border-radius: 20px;
      }

      .btn,
      .ghost {
        width: -webkit-fill-available;
      }

      .hero {
        min-height: auto;
        padding: 42px 0 18px;
      }

      .hero p,
      .section-head p,
      .cta-box p,
      .feature-grid p,
      .text-card p,
      .text-card li {
        font-size: .95rem;
      }

      .wallet-window::before,
      .wallet-window::after {
        width: 52px;
      }
    }
 