:root{
  --bg0:#05010a;
  --black-2: #171717;
  --bg1:#0b0316;
  --panel:rgba(255,255,255,.06);
  --border:rgba(255,255,255,.14);
  --text:#ffffff;
  --muted:rgba(255,255,255,.72);
  --cyan:#00e5ff;
  --magenta:#ff2bd6;
  --lime:#39ff14;
  --shadowC:0 0 18px rgba(0,229,255,.35);
  --shadowM:0 0 18px rgba(255,43,214,.35);
      --white: #fff;
    --white-2: #efefef;
    --white-3: #e9e9e9;
    --white-4: #f0f0f0;
    --white-5: #fbfbfb;
    --white-6: #d7d7d7;
    --white-7: #F5F5F5;
	--gray: #c2c2c2;
    --gray-2: #999;
    --gray-3: #a8a8a8;
    --gray-4: #f6f6f6;
    --gray-5: #bbb;
    --gray-6: #2b2b2b;
    --gray-7: #b9b9b9;
    --gray-8: #8E8E8E;
    --gray-9: #aaa;
    --gray-10: #7c7c7c;
    --gray-11: #D9D9D9;
    --gray-12: #383838;
    --gray-13: #ccc;
    --gray-14: #dfdfdf;
    --gray-15: #C0C0C0;
    --gray-16: #939393;
}

*{ box-sizing:border-box; }

html,body{ 
  min-height:100%; /* Changed from height to allow scrolling on mobile if content overflows */
}

body{
  margin:0;
  background:
    radial-gradient(1200px 600px at 20% 10%, rgba(255,43,214,.12), transparent 60%),
    radial-gradient(900px 500px at 80% 20%, rgba(0,229,255,.12), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  color:var(--text);
  font-family:system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* NEW RESPONSIVE CONTAINER: Wrap your panels inside this in HTML */
.container {
  width: 100%;
  max-width: 1300px;
  margin: 5px;
  padding: 10px;
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 2fr));
  
  /*flex-wrap: wrap; /* Allows panels to wrap to the next line on mobile */
}

.panel{
  background:radial-gradient(900px 460px at 12% -6%, rgba(255,74,199,.16), transparent 95%),
    radial-gradient(800px 420px at 8% 4%, rgba(82,232,255,.14), transparent 85%),
    linear-gradient(140deg, var(--bg0), var(--bg1));
  border:1px solid rgba(255,255,255,.16);
  border-radius:22px;
  box-shadow:var(--shadowC);
  backdrop-filter: blur(16px);
  position:relative;
  overflow:hidden;
}
.panel::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(120deg, transparent, rgba(255,255,255,.10), transparent);
  transform:translateX(-110%);
  
  pointer-events:none;
}


.muted{ color:var(--muted); }

.page-shell{ max-width:1280px; margin:0 auto; padding:24px; }
.page-header{ display:flex; justify-content:space-between; align-items:center; gap:16px; flex-wrap:wrap; margin-bottom:18px; }
.page-title{ margin:0; font-size:clamp(1.5rem, 2.3vw, 2.2rem); letter-spacing:.02em; }
.page-subtitle{ margin-top:6px; color:var(--muted); }
.page-kicker{ display:inline-flex; align-items:center; gap:8px; padding:8px 12px; border-radius:9px; border:1px solid rgba(255,255,255,.44); background:rgba(255,255,255,.06); color:var(--muted); font-size:12px; letter-spacing:.08em; text-transform:uppercase; font-weight:750;}

.card{ padding:8px; border-radius:20px; }
.section-card{ padding:22px; border-radius:24px; }
.hero-card{ position:relative; overflow:hidden; }
.hero-card::after{ content:''; position:absolute; inset:auto -20% -60px auto; width:220px; height:220px; background:radial-gradient(circle, rgba(82,232,255,.22), transparent 70%); filter:blur(20px); pointer-events:none; }


	
	.panel-card{ padding:18px;  border-radius:20px;}
.section-card{ padding:22px; border-radius:24px; }
.hero-card{ position:relative; overflow:hidden; }
.hero-card::after{ content:''; position:absolute; inset:auto -20% -60px auto; width:220px; height:220px; background:radial-gradient(circle, rgba(82,232,255,.22), transparent 70%); filter:blur(20px); pointer-events:none; }


.muted{ color:var(--muted); }

.neon-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 16px;
  border-radius:9px;
  border:1px solid rgba(55,229,255,.45);
  background:rgba(111,229,255,.34);
  color:var(--text);
  font-weight:800;
  cursor:pointer;
}
.neon-btn:hover{ box-shadow:var(--shadowC); }

.neon-btn.magenta{
  border-color:rgba(255,43,214,.45);
  background:rgba(255,43,214,.52);
  text-transform: uppercase;
}
.neon-btn.magenta:hover{ box-shadow:var(--shadowM); }

/* NEW RESPONSIVE BUTTON CONTAINER: For side-by-side buttons */
.btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer {
  text-align: center;
  padding: 20px;
  background-color: var(--bg1);
  color: var(--muted);
  margin-top: auto; /* Pushes footer to bottom if page content is short */
}

/* MOBILE MEDIA QUERY (Screens smaller than 768px) */
@media (max-width: 768px) {
  .container {
    flex-direction: column; /* Stacks layout elements vertically */
    padding: 16px;
  }
  
  .panel {
    flex: 1 1 100%; /* Panels take full available width on mobile */
  }

  .neon-btn {
    width: 100%; /* Optional: Makes buttons full-width on mobile for easier tapping */
  }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { background: linear-gradient(135deg, #0a0612 0%, #1a0f2e 100%); color: #fff; font-family: 'Manrope', sans-serif; overflow-x: hidden; }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
    
    /* Navigation */
    nav { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; border-bottom: 1px solid rgba(0,229,255,.1); }
    nav .logo { font-size: 24px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
    nav .logo-text { color: #24d9a9; font-family: 'Outfit', sans-serif; }
    nav .nav-links { display: flex; gap: 40px; }
    nav a { text-decoration: none; color: rgba(255,255,255,.7); transition: color 200ms; }
    nav a:hover { color: #24d9a9; }
    
    /* Hero Section */
    .hero { padding: 80px 0; text-align: center; }
    .hero h1 { font-size: 3.5rem; line-height: 1.2; margin-bottom: 20px; background: linear-gradient(135deg, #24d9a9, #0ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-family: 'Outfit', sans-serif; font-weight: 700; }
    .hero p { font-size: 1.3rem; color: rgba(255,255,255,.8); margin-bottom: 30px; max-width: 700px; margin-left: auto; margin-right: auto; }
    .hero-cta { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 50px; }
    .btn { display: inline-block; padding: 14px 32px; border-radius: 999px; font-weight: 600; cursor: pointer; text-decoration: none; transition: all 300ms; border: none; font-size: 16px; }
    .btn-primary { background: linear-gradient(135deg, #24d9a9, #1db88f); color: #fff; box-shadow: 0 8px 24px rgba(36, 217, 169, 0.3); }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(36, 217, 169, 0.4); }
    .btn-secondary { background: rgba(0,229,255,.12); border: 2px solid rgba(0,229,255,.35); color: #fff; }
    .btn-secondary:hover { background: rgba(0,229,255,.22); box-shadow: 0 0 20px rgba(0,229,255,.35); }
    
    /* FIX: Changed fixed height to aspect-ratio for auto scaling */
    .hero-video { width: 100%; max-width: 800px; aspect-ratio: 16/9; background: rgba(0,229,255,.08); border: 2px solid rgba(0,229,255,.2); border-radius: 20px; margin: 0 auto; display: flex; align-items: center; justify-content: center; font-size: 18px; color: rgba(255,255,255,.5); }
    
    /* Features Grid */
    .features { padding: 80px 0; }
    .section-title { font-size: 2.5rem; text-align: center; margin-bottom: 50px; font-family: 'Outfit', sans-serif; font-weight: 700; }
    .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
    .feature-card { background: rgba(255,255,255,.05); border: 1px solid rgba(0,229,255,.2); border-radius: 16px; padding: 40px; text-align: center; transition: all 300ms; }
    .feature-card:hover { transform: translateY(-8px); border-color: rgba(0,229,255,.5); background: rgba(0,229,255,.1); }
    .feature-icon { font-size: 48px; margin-bottom: 20px; }
    .feature-card h3 { font-size: 1.3rem; margin-bottom: 15px; font-family: 'Outfit', sans-serif; }
    .feature-card p { color: rgba(255,255,255,.7); line-height: 1.6; }
    
    /* How It Works */
    .how-it-works { padding: 80px 0; }
    .steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; margin-top: 50px; }
    .step { text-align: center; }
    .step-number { width: 60px; height: 60px; background: linear-gradient(135deg, #24d9a9, #0ff); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 700; margin: 0 auto 20px; color: #0a0612; }
    .step h3 { font-size: 1.2rem; margin-bottom: 15px; font-family: 'Outfit', sans-serif; }
    .step p { color: rgba(255,255,255,.7); line-height: 1.6; }
    
    /* Why It Works */
    .why-section { padding: 80px 0; background: rgba(0,229,255,.05); border-top: 1px solid rgba(0,229,255,.1); border-bottom: 1px solid rgba(0,229,255,.1); margin: 40px 0; }
    .why-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .why-text h3 { font-size: 1.8rem; margin-bottom: 30px; font-family: 'Outfit', sans-serif; }
    .why-list { list-style: none; }
    .why-list li { padding: 15px 0; padding-left: 40px; position: relative; color: rgba(255,255,255,.8); line-height: 1.6; font-size: 1.05rem; }
    .why-list li:before { content: "✓"; position: absolute; left: 0; color: #24d9a9; font-weight: 700; font-size: 20px; }
    .why-stats { display: grid; gap: 20px; }
    .stat { background: rgba(0,229,255,.1); border: 1px solid rgba(0,229,255,.2); border-radius: 12px; padding: 25px; }
    .stat-number { font-size: 2.5rem; font-weight: 700; color: #24d9a9; }
    .stat-label { color: rgba(255,255,255,.7); margin-top: 5px; }
    
    /* Pricing */
    .pricing { padding: 80px 0; }
    .pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }
    .pricing-card { background: rgba(255,255,255,.08); border: 2px solid rgba(0,229,255,.2); border-radius: 16px; padding: 40px; text-align: center; position: relative; transition: all 300ms; }
    .pricing-card.featured { transform: scale(1.05); border-color: #24d9a9; background: rgba(36, 217, 169, .1); }
    .pricing-card.featured:before { content: "BEST VALUE"; position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: #24d9a9; color: #0a0612; padding: 5px 15px; border-radius: 20px; font-size: 12px; font-weight: 700; }
    .pricing-card h3 { font-size: 1.3rem; margin-bottom: 10px; font-family: 'Outfit', sans-serif; }
    .pricing-card .price { font-size: 2.5rem; font-weight: 700; color: #24d9a9; margin: 20px 0; }
    .pricing-card .price span { font-size: 0.9rem; opacity: 0.8; }
    .pricing-features { list-style: none; text-align: left; margin: 30px 0; border-top: 1px solid rgba(0,229,255,.2); border-bottom: 1px solid rgba(0,229,255,.2); padding: 30px 0; }
    .pricing-features li { padding: 10px 0; color: rgba(255,255,255,.8); }
    .pricing-features li:before { content: "✓"; color: #24d9a9; margin-right: 10px; font-weight: 700; }
    
    /* CTA Section */
    .cta-section { padding: 80px 0; text-align: center; }
    .cta-section h2 { font-size: 2.5rem; margin-bottom: 20px; font-family: 'Outfit', sans-serif; font-weight: 700; }
    .cta-section p { font-size: 1.2rem; color: rgba(255,255,255,.8); margin-bottom: 40px; }
    
    /* Footer */
    footer { border-top: 1px solid rgba(0,229,255,.1); padding: 40px 0; margin-top: 80px; text-align: center; color: rgba(255,255,255,.6); }
    
    /* Modal Overlay and Completed Styles */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(4px);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity 300ms ease, visibility 300ms ease;
      z-index: 1000;
    }
    .modal-overlay.active {
      opacity: 1;
      visibility: visible;
    }
    .modal {
      background: linear-gradient(165deg, rgba(13, 18, 35, 0.95), rgba(5, 7, 15, 0.98));
      border: 1px solid rgba(0,229,255,.2);
      border-radius: 24px;
      padding: 40px;
      max-width: 480px;
      width: 100%;
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 1px rgba(0, 234, 254, 0.3);
      animation: modalSlideIn 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
      position: relative;
    }
    @keyframes modalSlideIn {
      from { opacity: 0; transform: scale(0.9) translateY(20px); }
      to { opacity: 1; transform: scale(1) translateY(0); }
    }
    .modal-close {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 36px;
      height: 36px;
      border: 1px solid rgba(0,229,255,.2);
      background: transparent;
      color: white;
      cursor: pointer;
      border-radius: 50%;
    }

    /* ==========================================================================
       MOBILE RESPONSIVE MEDIA QUERIES (Screens under 768px wide)
       ========================================================================== */
    @media (max-width: 768px) {
      /* General Global Spacing Fixes */
      .hero, .features, .how-it-works, .why-section, .pricing, .cta-section {
        padding: 40px 0;
      }
      .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
      }

      /* Navigation Adjustment */
      nav {
        flex-direction: column;
        gap: 15px;
        padding: 15px 0;
      }
      nav .nav-links {
        gap: 20px;
        font-size: 14px;
      }

      /* Hero Section Elements */
      .hero h1 {
        font-size: 2.2rem;
      }
      .hero p {
        font-size: 1rem;
      }
      .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 12px;
      }
      .btn {
        width: 100%;
        text-align: center;
      }

      /* Features & Steps (Grid Fallback overrides) */
      .features-grid, .steps, .pricing-grid {
        grid-template-columns: 1fr; /* Force 1 item per row */
        gap: 20px;
      }
      .feature-card, .pricing-card {
        padding: 24px;
      }

      /* Why It Works Section */
      .why-content {
        grid-template-columns: 1fr; /* Stack columns vertically instead of side-by-side */
        gap: 30px;
      }
      .why-text h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
      }

      /* Pricing Scaled Down */
      .pricing-card.featured {transform: scale(1); /* Disable desktop zoom transformation to prevent overlaps */margin: 15px 0;}/* CTA Text Scaling */.cta-section h2 {font-size: 1.8rem;}.cta-section p {font-size: 1rem;}/* Modal Sizing for Small Viewports */.modal {padding: 24px;max-width: 90%;}}
   }
   }
   