
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

    * { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
  --purple: #A78BFA;
  --green: #34D399;
  --blue: #60A5FA;

  --bg-main: #F7F8FC;
  --bg-soft: #EEF1F7;

  --text-dark: #1F2937;
  --text-light: #6B7280;

  --white: #FFFFFF;
}
html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

#three-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;          /* behind content */
  pointer-events: none; /* don't block clicks */
}

/* Make sure content stays above */
.content {
      position: relative;
      z-index: 1;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #f8f6ff 0%, #ede9fe 30%, #e0f2fe 70%, #f0fdf4 100%);
  color: var(--text-dark);
  overflow-x: hidden;
  cursor: default;
}



   /* REPLACE hero section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 48px 80px;
  position: relative;
  overflow: hidden;
  /* background: linear-gradient(135deg, 
    rgba(248,246,255,1) 0%, 
    rgba(237,233,254,0.8) 25%, 
    rgba(224,242,254,0.6) 60%, 
    rgba(240,253,244,0.4) 100%
  ); */
}

/* REPLACE hero::before */
.hero::before {
  content: "";
  position: absolute;
  right: -100px;
  top: -150px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(167,139,250,0.35) 0%, rgba(196,181,253,0.2) 40%, transparent 70%);
  filter: blur(60px);
  z-index: 0;
}

/* REPLACE hero::after */
.hero::after {
  content: "";
  position: absolute;
  right: 100px;
  bottom: -50px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(125,211,252,0.3) 0%, rgba(167,139,250,0.15) 50%, transparent 70%);
  filter: blur(80px);
  z-index: 0;
}

/* REPLACE hero-gradient */
.hero-gradient {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 75%;
  height: 130%;
  background:
    radial-gradient(circle at 60% 30%, rgba(167,139,250,0.4) 0%, transparent 45%),
    radial-gradient(circle at 85% 60%, rgba(125,211,252,0.3) 0%, transparent 45%),
    radial-gradient(circle at 40% 80%, rgba(196,181,253,0.25) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* UPDATE hero-tag border color */
.hero-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #7c3aed;
  margin-bottom: 28px;
  padding: 8px 16px;
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 20px;
  background: rgba(167,139,250,0.1);
}

/* UPDATE highlight color */
.hero h1 .highlight {
  background: linear-gradient(135deg, #7c3aed, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all 0.4s ease;
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1F2937;   /* ← DARK not white */
}

    nav {
      display: flex;
      gap: 36px;
      align-items: center;
    }

nav a {
  color: #6B7280;   /* ← visible gray */
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s;
}

nav a:hover { color: #7c3aed; }

    .cta-btn {
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  color: white;
  padding: 12px 28px;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
  box-shadow: 0 4px 15px rgba(124,58,237,0.3);
}

    .cta-btn:hover {
      background: var(--green);
      color: var(--dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(0, 245, 147, 0.3);
    }




/* 🔥 HERO MODEL FIXED ON SCREEN */
#hero-canvas {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}



    .hero-content {
      max-width: 680px;
      position: relative;
      z-index: 2;
    }



    .hero h1 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(42px, 5.5vw, 72px);
      font-weight: 700;
      line-height: 1.05;
      letter-spacing: -2px;
      margin-bottom: 28px;
    }



    .hero p {
      font-size: 18px;
      line-height: 1.7;
      color: var(--text-light);
      max-width: 500px;
      margin-bottom: 44px;
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
      align-items: center;
    }

.btn-primary {
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  color: white;
  box-shadow: 0 10px 30px rgba(124,58,237,0.35);
  padding: 16px 36px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.5px;
}

    .btn-primary:hover {
      background: var(--green);
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(0, 245, 147, 0.25);
    }

    .btn-secondary {
      background: transparent;
      padding: 16px 36px;
      border: 1px solid rgba(0,0,0,0.1);
      color: var(--text-dark);
      border-radius: 6px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      font-family: 'Inter', sans-serif;
    }

    .btn-secondary:hover {
      border-color: var(--purple);
      color: var(--purple);
    }

    .hero-gradient {
      position: absolute;
      top: -20%;
      right: -10%;
      width: 70%;
      height: 120%;
      background:
        radial-gradient(circle at 70% 40%, rgba(167,139,250,0.25), transparent 50%),
        radial-gradient(circle at 90% 60%, rgba(52,211,153,0.25), transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(96,165,250,0.2), transparent 60%);
      pointer-events: none;
      z-index: -1;
    }

    /* STATS */
.stats-bar {
  margin: -60px auto 80px;
  width: 90%;
  max-width: 1100px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 22px 30px;

  border-radius: 20px;

  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(18px);

  border: 1px solid rgba(255,255,255,0.5);

  box-shadow:
    0 10px 30px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.6);
}

/* each block */
.stat {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  position: relative;
}

/* divider */
.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 38px;
  /* background: rgba(0,0,0,0.08); */
}

/* icon box */
.stat-left {
  width: 38px;
  height: 38px;
  border-radius: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 16px;
}

/* text */
.stat-text {
  display: flex;
  flex-direction: column;
}

/* numbers */
.stat-number {
  font-size: 20px;
  font-weight: 700;
}

/* labels */
.stat-label {
  font-size: 13px;
  color: #6b7280;
}

/* COLORS (exact feel) */
.purple { color:#6366f1; }
.green  { color:#10b981; }
.blue   { color:#3b82f6; }
.pink   { color:#ec4899; }

.stat-left.purple { background: rgba(99,102,241,0.12); }
.stat-left.green  { background: rgba(16,185,129,0.12); }
.stat-left.blue   { background: rgba(59,130,246,0.12); }
.stat-left.pink   { background: rgba(236,72,153,0.12); }

    /* SECTION COMMON */
    section {
      padding: 120px 48px;
    }

    .section-label {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 20px;
    }

    .section-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 700;
      letter-spacing: -1.5px;
      line-height: 1.1;
      margin-bottom: 20px;
    }

    .section-desc {
      font-size: 17px;
      color: var(--gray);
      line-height: 1.7;
      max-width: 520px;
    }

    /* PRODUCTS */
    .product-3d {
      position: absolute;   /* 🔥 IMPORTANT */
      top: 30px;
      right: 20px;
      width: 180px;
      height: 180px;
      pointer-events: auto;
      z-index: 2;
    }
    .products {
      position: relative;
    }

    .products-header {
      margin-bottom: 72px;
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .product-card {
      background: var(--white);
      border: 1px solid rgba(0,0,0,0.05);
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      border-radius: 20px;

      padding: 60px 40px;        /* 👈 MORE SPACE */
      padding-right: 220px;      /* 👈 space for model */

      min-height: 200px;         /* 👈 taller cards */

      transition: all 0.4s ease;
      position: relative;
      overflow: visible;
   }

    .product-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 3px;
      background: linear-gradient(90deg, var(--purple), var(--green));
      opacity: 0;
      transition: opacity 0.4s;
    }

    .product-card:hover {
      background: rgba(255,255,255,0.06);
      border-color: rgba(255,255,255,0.12);
      transform: translateY(-8px);
      box-shadow: 0 30px 100px rgba(0, 245, 147, 0.2);
      z-index: 10;
    }
    .product-card:hover h3,
    .product-card:hover p {
      transform: translateX(6px);
      transition: 0.3s ease;
    }

    .product-card:hover::after {
      content: '';
      position: absolute;
      bottom: 10px;
      left: 50%;
      width: 60%;
      height: 20px;
      background: radial-gradient(ellipse, rgba(0,0,0,0.4), transparent);
      transform: translateX(-50%);
      filter: blur(10px);
    }

    .product-card:hover .product-3d {
      transform: translateY(-20px) scale(1.35);
      z-index: 50;
   }



.product-card canvas {
  transition: transform 0.4s ease;
}

.product-card:hover canvas {
 transform: translateY(-5px); 
}

    .product-card:hover::before { opacity: 1; }

    .product-icon {
      width: 56px;
      height: 56px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      margin-bottom: 28px;
    }

    .product-icon.purple { background: rgba(155, 93, 229, 0.15); color: var(--purple); }
    .product-icon.green { background: rgba(0, 245, 147, 0.12); color: var(--green); }
    .product-icon.white { background: rgba(255,255,255,0.08); color: var(--white); }

    .product-card h3 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 14px;
      letter-spacing: -0.5px;
    }

    .product-card p {
      font-size: 15px;
      color: var(--gray);
      line-height: 1.65;
    }

    .product-card .arrow {
      margin-top: 28px;
      font-size: 20px;
      color: rgba(255,255,255,0.2);
      transition: all 0.3s;
    }

    .product-card:hover .arrow {
      color: var(--green);
      transform: translateX(6px);
    }

    /* HOW IT WORKS */
    .how-it-works {
      position: relative;
      overflow: hidden;
    }

    .how-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .steps {
      display: flex;
      flex-direction: column;
      gap: 40px;
    }

    .step {
      display: flex;
      gap: 24px;
      align-items: flex-start;
      padding: 28px;
      border-radius: 14px;
      transition: all 0.3s;
      cursor: default;
    }

    .step:hover {
      background: rgba(255,255,255,0.03);
    }

    .step-num {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 36px;
      font-weight: 700;
      color: rgba(155, 93, 229, 0.3);
      line-height: 1;
      min-width: 48px;
    }

    .step:hover .step-num {
      color: var(--green);
    }

    .step h3 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .step p {
      font-size: 14px;
      color: var(--gray);
      line-height: 1.6;
    }

    #how-canvas {
     width: 100%;
     height: 800px;
     display: block;
    }

    .phone-mockup {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .phone-frame {
      width: 300px;
      height: 600px;
      background: linear-gradient(145deg, #1a1a2e, #16162a);
      border-radius: 40px;
      border: 3px solid rgba(255,255,255,0.08);
      padding: 16px;
      position: relative;
      box-shadow: 0 40px 100px rgba(0,0,0,0.5),
                  0 0 80px rgba(155, 93, 229, 0.1);
    }

    .phone-screen {
      width: 100%;
      height: 100%;
      background: linear-gradient(180deg, #1E1E30, #141425);
      border-radius: 28px;
      overflow: hidden;
      padding: 24px 20px;
    }

    .phone-notch {
      width: 120px;
      height: 28px;
      background: #0A0A0F;
      border-radius: 0 0 16px 16px;
      margin: -24px auto 20px;
    }

    .phone-balance-label {
      font-size: 12px;
      color: var(--gray);
      margin-bottom: 6px;
    }

    .phone-balance {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 24px;
    }

    .phone-balance .cents {
      font-size: 20px;
      color: var(--gray);
    }

    .phone-actions {
      display: flex;
      gap: 10px;
      margin-bottom: 28px;
    }

    .phone-action-btn {
      flex: 1;
      padding: 10px;
      border-radius: 10px;
      text-align: center;
      font-size: 11px;
      font-weight: 600;
    }

    .phone-action-btn.primary-act {
      background: var(--green);
      color: var(--dark);
    }

    .phone-action-btn.secondary-act {
      background: rgba(255,255,255,0.06);
      color: var(--white);
    }

    .phone-action-btn.tertiary-act {
      background: rgba(155, 93, 229, 0.2);
      color: var(--purple);
    }

    .phone-transactions {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .phone-tx {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 14px;
      background: rgba(255,255,255,0.03);
      border-radius: 12px;
    }

    .phone-tx-left {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .phone-tx-icon {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
    }

    .phone-tx-name {
      font-size: 13px;
      font-weight: 600;
    }

    .phone-tx-date {
      font-size: 10px;
      color: var(--gray);
    }

    .phone-tx-amount {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 14px;
      font-weight: 700;
    }

    .phone-tx-amount.positive { color: var(--green); }
    .phone-tx-amount.negative { color: #ff6b6b; }

    .phone-glow {
      position: absolute;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: radial-gradient(circle, rgba(0, 245, 147, 0.12) 0%, rgba(155, 93, 229, 0.08) 40%, transparent 70%);
      pointer-events: none;
      z-index: -1;
    }

    /* BENEFITS */
    .benefits {
      background: rgba(255,255,255,0.01);
      border-top: 1px solid rgba(255,255,255,0.04);
    }

    .benefits-header {
      text-align: center;
      margin-bottom: 72px;
    }

    .benefits-header .section-desc {
      margin: 0 auto;
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      max-width: 960px;
      margin: 0 auto;
    }

    .benefit-item {
      padding: 40px 36px;
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 16px;
      transition: all 0.3s;
      position: relative;
    }

    .benefit-item:hover {
      border-color: rgba(155, 93, 229, 0.3);
      background: rgba(155, 93, 229, 0.04);
    }

    .benefit-item .benefit-num {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 64px;
      font-weight: 800;
      color: rgba(255,255,255,0.03);
      position: absolute;
      top: 16px;
      right: 24px;
    }

    .benefit-item h3 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .benefit-item p {
      font-size: 14px;
      color: var(--gray);
      line-height: 1.65;
    }

    /* CTA */
    .cta-section {
      text-align: center;
      position: relative;
      padding: 160px 48px;
    }

    .cta-section .section-title {
      max-width: 600px;
      margin: 0 auto 20px;
    }

    .cta-section .section-desc {
      margin: 0 auto 48px;
      text-align: center;
    }

    .cta-glow {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(155, 93, 229, 0.15) 0%, rgba(0, 245, 147, 0.08) 40%, transparent 70%);
      pointer-events: none;
      z-index: -1;
    }

    .email-form {
      display: flex;
      gap: 12px;
      justify-content: center;
      max-width: 480px;
      margin: 0 auto;
    }

    .email-form input {
      flex: 1;
      padding: 16px 24px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 8px;
      color: var(--white);
      font-size: 14px;
      font-family: 'Inter', sans-serif;
      outline: none;
      transition: border-color 0.3s;
    }

    .email-form input::placeholder { color: var(--gray); }
    .email-form input:focus { border-color: var(--purple); }

    /* FOOTER */
    footer {
      padding: 48px;
      border-top: 1px solid rgba(255,255,255,0.06);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-left {
      font-size: 13px;
      color: var(--gray);
    }

    .footer-links {
      display: flex;
      gap: 32px;
    }

    .footer-links a {
      font-size: 13px;
      color: var(--gray);
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-links a:hover { color: var(--white); }

    /* ANIMATIONS */
    .fade-up {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* SCROLLBAR */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--dark); }
    ::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }
    ::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.2); }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
      .products-grid { grid-template-columns: repeat(2, 1fr); }
      .how-grid { grid-template-columns: 1fr; gap: 48px; }
      .phone-mockup { order: -1; }
    }

    @media (max-width: 768px) {
      header { padding: 16px 24px; }
      nav { display: none; }
      section { padding: 80px 24px; }
      .hero { padding: 120px 24px 60px; }
      .products-grid { grid-template-columns: 1fr; }
      .stats-bar { grid-template-columns: repeat(2, 1fr); padding: 40px 24px; }
      .benefits-grid { grid-template-columns: 1fr; }
      .hero-buttons { flex-direction: column; align-items: flex-start; }
      .email-form { flex-direction: column; }
      footer { flex-direction: column; gap: 24px; text-align: center; }
      .footer-links { flex-wrap: wrap; justify-content: center; }
    }
