:root {
   --background-gradient: linear-gradient(#0f1727, #161e5c);
   --light: #fafafa;
   --blue: #1f2856;
   --purple-gradient-stroke: linear-gradient(to right, #5c67ff, #be31ff);
   --purple-gradient-fill: linear-gradient(to right, #1e295c, #593eb5);
   --light-gradient: linear-gradient(to right, #ac9c94, #b6c5ff, #9cffff);
   --gradient-green: linear-gradient(#00edbd, #00c578);
   --dark-purple: #1f2856;
   --light-purple: #293b80;
   --purple-gray: #b6c5ff;
   --cyan : #9CFFFF;
 }
 
 html {
   background: #010f1a;
 }

 
 /* ---------------- Navbar ---------------- */
 nav{
  position: sticky;
  top: 0;
 }
 .navbar {
   border-bottom: 4px solid transparent;
   border-image: var(--purple-gradient-stroke);
   border-image-slice: 1;
   background: var(--dark-purple);
   color: var(--light);
   padding: 1rem 2rem;
 }
 
 .navbar-brand {
   color: var(--light) !important;
 }
 
 .nav-link {
   color: var(--purple-gray);
   transition: color 0.3s ease;
 }
 
 .nav-link.active,
 .nav-link:hover {
   background: var(--cyan);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text; 
   color: transparent;
 }
 
 /* ---------------- Hero Section ---------------- */
.hero {
   position: relative;
   background: var(--background-gradient);
   display: flex;
   align-items: center;
   min-height: 80vh;                 /* fix: use viewport height, not % */
   padding: 6rem 2rem;
   border-bottom: 4px solid transparent;
   border-image: var(--purple-gradient-stroke);
   border-image-slice: 1;
   overflow: hidden;                  /* for background glows */
 }
 
 /* Soft background glows */
 .hero::before,
 .hero::after {
   content: "";
   position: absolute;
   pointer-events: none;
   filter: blur(42px);
   opacity: .35;
 }
 .hero::before {                      /* left glow behind copy */
   width: 420px; height: 420px;
   left: -120px; top: -60px;
   background: var(--light-gradient);
   mix-blend-mode: screen;
 }
 .hero::after {                       /* right glow behind phone */
   width: 520px; height: 520px;
   right: -140px; top: 60px;
   background: var(--purple-gradient-stroke);
   mix-blend-mode: screen;
 }
 
 /* Headline & sub */
 .hero-title {
   font-weight: 800;
   letter-spacing: 0.4px;
   line-height: 1.15;
   font-size: clamp(2rem, 4vw + 0.5rem, 3.25rem);
   background: var(--light);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   margin-top: .25rem;
 }
 .hero-sub {
   color: var(--purple-gray);
   max-width: 52ch;
   font-size: clamp(1rem, 1.2vw + .6rem, 1.125rem);
   opacity: .95;
 }
 
 /* Download button */
 .btn-download {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;

  width: 500px;
  height: 60px;

  border: none;
  border-radius: 1rem;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  color: #0f1727;

  background: var(--light-gradient);
  background-size: 200% 100%;
  background-position: center;
  
  box-shadow: 
    0 18px 40px rgba(0, 237, 189, 0.35),
    0 0 20px rgba(94, 77, 255, 0.45);


  transition: transform 0.25s ease, 
              box-shadow 0.35s ease, 
              background 0.6s ease;
  overflow: hidden;
}

.btn-download::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background: var(--light-gradient);
  box-shadow: inset 0 0 12px rgba(0,0,0,0.3),
              inset 0 0 20px rgba(0,0,0,0.25);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Hover = darker purple look */
.btn-download:hover {
  transform: translateY(-4px) scale(1.05);
  background: var(--purple-gradient-fill);
  color: var(--light);
  background-position: right center;

  /* glowing purple shadow */
  box-shadow: 
    0 18px 40px rgba(94, 77, 255, 0.45),   /* outer glow purple */
    0 0 28px rgba(190, 49, 255, 0.55),     /* neon purple glow */
    0 0 12px rgba(94, 77, 255, 0.35);      /* softer inner spread */
}

.btn-download:hover::before {
  background: var(--purple-gradient-stroke);
  box-shadow: none;
}

 
 /* Learn features link */
 .hero-link {
   position: relative;
   font-weight: 600;
   font-size: 1.05rem;
   color: var(--purple-gray);
   text-decoration: none;
   transition: color .25s ease;
 }
 .hero-link::after {
   content: "";
   position: absolute; left: 0; bottom: -3px;
   width: 100%; height: 3px;
   background: var(--purple-gradient-stroke);
   transform: scaleX(0);
   transform-origin: left;
   transition: transform .3s ease;
   border-radius: 2px;
 }
 .hero-link:hover { color: var(--cyan); }
 .hero-link:hover::after { transform: scaleX(1); }
 .hero-link .chev { display: inline-block; margin-left: .35rem; transition: transform .2s ease; }
 .hero-link:hover .chev { transform: translateX(4px); }
 
 /* Value chips */
 .hero-chips {
   display: flex;
   flex-wrap: wrap;
   gap: .6rem .8rem;
   padding: 0; margin: 0;
   list-style: none;
 }
 .hero-chips li {
   display: inline-flex;
   align-items: center;
   gap: .5rem;
   padding: .5rem .8rem;
   border-radius: 999px;
   font-weight: 700;
   font-size: .95rem;
   color: var(--light);
   background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
   border: 1px solid rgba(182,197,255,.18);
   box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
   backdrop-filter: blur(4px);
 }
 .hero-chips i {
   background: var(--cyan);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
 }
 
 /* Screenshot frame + subtle radial */
 .shot-frame {
   position: relative;
   max-width: 560px;                 /* tuned for balance */
   width: 100%;
   border-radius: 3rem;
   animation: floatY 6s ease-in-out infinite;
   z-index: 1;
   overflow: hidden;
   display: flex;
   justify-content: center;
 }
 .shot-frame img {
   width: 50%;                      /* fix: show phone at intended size */
   height: auto;
   display: block;
   border-radius: 2rem;
 }
 /* faint radial behind phone for depth */
 .shot-frame::after {
   content: "";
   position: absolute;
   inset: -20% -30% -10% -30%;
   background: radial-gradient(60% 60% at 60% 40%, rgba(92,103,255,.18) 0%, rgba(0,0,0,0) 70%);
   z-index: -2;
 }
 
 /* Optional ripples (kept subtle) */
 .shot-frame::before {
   content: "";
   position: absolute;
   inset: 50%;
   width: 220px; height: 220px;
   border-radius: 50%;
   transform: translate(-50%, -50%);
   background: var(--purple-gradient-fill);
   opacity: 0.22;
   z-index: -1;
   animation: ripple 6s linear infinite;
 }
 
 /* Scroll cue */
 .scroll-cue {
   position: absolute;
   left: 50%; bottom: .75rem;
   transform: translateX(-50%);
   width: 26px; height: 42px;
   border-radius: 20px;
   border: 2px solid rgba(182,197,255,.35);
   display: grid; place-items: center;
   opacity: .7; text-decoration: none;
 }
 .scroll-cue span {
   width: 6px; height: 10px;
   border-radius: 3px;
   background: var(--gradient-green);
   animation: cue 1.6s ease-in-out infinite;
 }
 
 /* Animations */
 @keyframes ripple {
   0%   { transform: translate(-50%, -50%) scale(0.6); opacity: 0.35; }
   70%  { opacity: 0.1; }
   100% { transform: translate(-50%, -50%) scale(3);  opacity: 0; }
 }
 @keyframes floatY {
   0%, 100% { transform: translateY(0); }
   50%      { transform: translateY(-6px); }
 }
 @keyframes cue {
   0%   { transform: translateY(-6px); opacity: .2; }
   40%  { opacity: 1; }
   100% { transform: translateY(8px);  opacity: .2; }
 }
 
 /* ---------------- Media Queries ---------------- */
 @media (max-width: 1200px) {
   .hero { padding: 3rem 1rem; }
   .hero-title { font-size: 2.5rem; }
   .shot-frame { max-width: 500px; }
   .hero::before { width: 340px; height: 340px; left: -140px; top: -80px; }
   .hero::after  { width: 420px; height: 420px; right: -160px; top: 40px; }
 }
 
 @media (max-width: 992px) {
   .hero { flex-direction: column; text-align: center; min-height: auto; }
   .btn-download { font-size: 1.1rem; padding: 0.75rem 2rem; }
   .hero-sub { margin-left: auto; margin-right: auto; }
   .shot-frame { margin-top: 2rem; max-width: 420px; }
   .scroll-cue { display: none; }    /* avoid overlap on small screens */
 }
 
 @media (max-width: 768px) {
   .hero-title { font-size: 2rem; }
   .btn-download { width: 100%; font-size: 1rem; padding: 0.75rem 1.5rem; }
   .shot-frame { max-width: 340px; }
 }
 
 @media (max-width: 576px) {
   .hero { padding: 2rem 1rem; }
   .hero-title { font-size: 1.8rem; }
   .hero-sub { font-size: 0.95rem; }
   .shot-frame { max-width: 280px; }
 }
 
 /* keep hero effects isolated so blend doesn't leak */
.hero { isolation: isolate; }

/* replace the RIGHT glow: use a radial blob instead of a boxy fill */
.hero::after {
  content: "";
  position: absolute;
  right: -12vw;      /* push a bit off-canvas */
  top: 6vh;
  width: 60vw; 
  height: 60vh;
  pointer-events: none;
  filter: blur(32px);
  opacity: .35;
  mix-blend-mode: screen;
  /* soft blob — no visible rectangle */
  background: radial-gradient(
    45% 55% at 65% 40%,
    rgba(92,103,255,0.35) 0%,
    rgba(190,49,255,0.22) 30%,
    rgba(0,0,0,0) 70%
  );
}
/* LEFT glow - subtle, not washing text */
.hero::before {
   content: "";
   position: absolute;
   left: -12vw;
   top: 20vh;                  /* move it lower so it's not behind text */
   width: 40vw;
   height: 40vh;
   pointer-events: none;
   filter: blur(42px);
   opacity: 0.15;              /* much softer */
   mix-blend-mode: screen;
   background: radial-gradient(
     45% 55% at 40% 40%,
     rgba(92,103,255,0.25) 0%,   /* purple tint */
     rgba(190,49,255,0.18) 25%,  /* magenta */
     rgba(0,0,0,0) 65%           /* fade quickly */
   );
 }
 

/* phone frame: no background fill, just the image + subtle radial */
.shot-frame {
  max-width: 520px;          /* adjust as you like (500–560px sweet spot) */
  margin-right: 1rem;        /* keeps it off the edge */
  overflow: visible;         /* allow the radial to breathe */
}
/* softer radial behind phone (no hard box) */
.shot-frame::after {
  content: "";
  position: absolute;
  inset: -25% -35% -15% -35%;
  z-index: -1;
  background: radial-gradient(
    50% 55% at 55% 45%,
    rgba(92,103,255,.16) 0%,
    rgba(190,49,255,.10) 30%,
    rgba(0,0,0,0) 70%
  );
}

/* optional: tone down ripples so they don't read as a shape */
.shot-frame::before {
  opacity: 0.15;
  width: 200px; height: 200px;
}

/* spacing polish for chips under CTA */
.hero-chips { margin-top: 0.75rem; }

 
/* -------- Features Section -------- */
.features-section {
   background: var(--background-gradient);
   color: var(--light);
   border-bottom: 4px solid transparent;
   border-image: var(--purple-gradient-stroke);
   border-image-slice: 1;
   padding: 6rem 2rem;
 }
 
 .section-title {
   font-weight: 800;
   background: var(--light-gradient);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   margin: 0 0 1rem;
   font-size: 4rem;
   text-align: center;
 }
 
 .section-kicker {
   color: var(--purple-gray);
   opacity: 0.9;
   font-size: 1.4rem;
   text-align: center;
   margin-bottom: 3rem;
 }
 
 /* -------- Features Grid -------- */
 .features-grid {
   display: flex;
   gap: 2rem;
   justify-content: center;
   flex-wrap: wrap; /* wrap on smaller screens */
 }
 
 /* -------- Feature Card -------- */
 .feature-card {
   flex: 1 1 320px;  /* grows/shrinks nicely */
   max-width: 380px;
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
   padding: 2rem;
   border-radius: 2rem;
   position: relative;
 
   /* glass + gradient edge */
   background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
   border: 1px solid rgba(182,197,255,0.18);
   box-shadow:
     0 20px 50px rgba(0,0,0,0.35),
     inset 0 0 0 1px rgba(255,255,255,0.04);
 
   transition: transform .25s ease;
 }
 .feature-card:hover {
   transform: translateY(-2px);
 }
 
 /* -------- Media Box -------- */
 .feature-media {
   position: relative;
   border-radius: 1.5rem;
   overflow: hidden;
   background: var(--light-gradient);
   box-shadow: 0 18px 40px rgba(0,0,0,0.45);
 }
 
 .feature-media lottie-player,
 .feature-media .gif-fallback {
   width: 100%;
   height: 100%;
   display: block;
   object-fit: contain;
   border-radius: 1.5rem;
 }
 
 /* -------- Content -------- */
 .feature-body {
   position: relative;
 }
 
 .feature-tag {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 46px; height: 46px;
   border-radius: 12px;
   font-weight: 800;
   background: var(--gradient-green);
   color: #0f1727;
   box-shadow: 0 10px 24px rgba(0, 237, 189, 0.18);
   margin-bottom: 0.75rem;
 }
 
 .feature-title {
   margin: 0 0 .25rem 0;
   font-weight: 800;
   letter-spacing: 0.3px;
   background: var(--light);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   font-size: clamp(1.25rem, 1.1rem + 1.2vw, 2rem);
 }
 
 .feature-desc {
   color: var(--purple-gray);
   opacity: 0.95;
   margin-bottom: 0.75rem;
   max-width: 60ch;
 }
 
 .feature-bullets {
   list-style: none;
   padding: 0; margin: 0;
 }
 .feature-bullets li {
   position: relative;
   padding-left: 1.25rem;
   margin: .35rem 0;
   color: var(--light);
   opacity: 0.9;
 }
 .feature-bullets li::before {
   content: "";
   position: absolute;
   left: 0; top: 0.55rem;
   width: 8px; height: 8px; border-radius: 50%;
   background: var(--purple-gradient-stroke);
 }
 
 /* -------- CTA link -------- */
 .feature-link {
   font-weight: 700;
   color: var(--cyan);
   text-decoration: none;
   position: relative;
 }
 .feature-link::after {
   content: "";
   position: absolute; left: 0; bottom: -3px;
   width: 100%; height: 3px;
   background: var(--purple-gradient-stroke);
   transform: scaleX(0);
   transform-origin: left;
   transition: transform .3s ease;
   border-radius: 2px;
 }
 .feature-link:hover::after { transform: scaleX(1); }
 .feature-link .chev { display: inline-block; transition: transform .2s ease; }
 .feature-link:hover .chev { transform: translateX(4px); }
 
 /* -------- Media Queries -------- */
 @media (max-width: 1200px) {
   .features-grid { gap: 1.5rem; }
   .feature-card { max-width: 340px; }
 }
 @media (max-width: 992px) {
   .features-grid { justify-content: center; }
   .feature-card { max-width: 100%; }
   .feature-body { text-align: center; }
   .feature-bullets li { text-align: left; display: inline-block; }
 }
 @media (max-width: 576px) {
   .feature-card { padding: 1.25rem; border-radius: 1.25rem; }
   .feature-media { border-radius: 1rem; }
 }
 

 /* -------- Download Section -------- */
.download-section {
   background: linear-gradient(135deg, #332551, #2A2A82, #161D62);
   padding: 6rem 1rem;
   color: var(--light);
   text-align: center;
   border-bottom: 4px solid transparent;
   border-image: var(--purple-gradient-stroke);
   border-image-slice: 1;
   padding-bottom: 0;
 }
 
 .download-title {
   font-size: 3rem;
   font-weight: 800;
   background: var(--cyan);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   margin-bottom: 0.5rem;
 }
 
 .download-sub {
   font-size: 1.3rem;
   color: var(--purple-gray);
   margin-bottom: 2.5rem;
 }
 
 /* Button group */
 .download-buttons {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 1.25rem;
 }
 
 /* Platform buttons */
 .btn-download-alt {
   position: relative;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 0.85rem 2rem;
   font-weight: 700;
   font-size: 1.1rem;
   border-radius: 1rem;
   background: var(--light-gradient);
   color: #0f1727;
   text-decoration: none;
   transition: transform 0.25s ease, box-shadow 0.3s ease;
 
   /* inner shadow → pressed look */
   box-shadow: inset 0 4px 8px rgba(0,0,0,0.25),
               inset 0 -2px 4px rgba(255,255,255,0.15);
 }
 
 /* Gradient border using pseudo-element */
 .btn-download-alt::before {
   content: "";
   position: absolute;
   inset: 0;
   border-radius: inherit;
   padding: 3px; /* border thickness */
   background: var(--light-gradient);
   -webkit-mask: 
     linear-gradient(#fff 0 0) content-box, 
     linear-gradient(#fff 0 0);
   -webkit-mask-composite: xor;
           mask-composite: exclude;
   pointer-events: none;
 }

 .btn-download-alt:hover {
   transform: translateY(-4px) scale(1.05);
   box-shadow: 0 0 25px rgba(172,156,148,0.4),
               0 0 40px rgba(182,197,255,0.35),
               0 0 55px rgba(156,255,255,0.25);
   color: #0f1727; /* keep readable text */
 }

 .download-mockup {
   margin-top: 3rem;
   display: flex;
   justify-content: center;
 }
 
 .download-mockup .mockup-img {
   max-width: 900px;   /* adjust depending on your design */
   width: 100%;
   height: auto;
   border-radius: 1.5rem;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
 }
/* FAQ Section Wrapper */
.faq-section {
  background: var(--background-gradient);
  color: var(--light);
  padding: 6rem 2rem;
  border-bottom: 4px solid transparent;
  border-image: var(--purple-gradient-stroke);
  border-image-slice: 1;
  position: relative;
  overflow: hidden;
}

/* add faint background glow */
.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    40% 50% at 50% 30%,
    rgba(94,77,255,.2) 0%,
    rgba(190,49,255,.12) 30%,
    rgba(0,0,0,0) 70%
  );
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}

/* FAQ Headings */
.faq-title {
  font-weight: 800;
  background: var(--light-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  font-size: clamp(2rem, 1.2rem + 2vw, 3rem);
  text-align: center;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.faq-sub {
  color: var(--purple-gray);
  opacity: .9;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

/* Accordion Glass Cards */
.accordion-item.glass {
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid rgba(182,197,255,.18);
  border-radius: 1rem;
  box-shadow: 0 18px 40px rgba(0,0,0,.25), inset 0 0 0 1px rgba(255,255,255,.04);
  overflow: hidden;
  margin-bottom: 1.2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accordion-item.glass:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(0,0,0,.35), 0 0 20px rgba(94,77,255,.25);
}

/* Accordion Button */
.accordion-button {
  background: transparent;
  color: var(--light);
  font-weight: 700;
  padding: 1.1rem 1.25rem;
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .3s ease, color .3s ease;
}
.accordion-button:focus { box-shadow: none; }
.accordion-button:not(.collapsed) {
  color: var(--light);
  background: rgba(255,255,255,.05);
  box-shadow: inset 0 -1px 0 rgba(255,255,255,.08);
}

/* Chevron Rotation */
.accordion-button::after {
  transition: transform .3s ease;
  color: var(--purple-gray) !important;
}
.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

/* Body text */
.accordion-body {
  color: var(--purple-gray);
  padding: 1rem 1.25rem;
  border-top: 1px solid rgba(255,255,255,.08);
  line-height: 1.6;
  font-size: 0.98rem;
}

/* FAQ Link — Neon cyan hover */
.faq-link {
  font-weight: 700;
  color: var(--cyan);
  text-decoration: none;
  position: relative;
  display: inline-block;
  margin-top: 1.5rem;
  transition: color .3s ease;
}
.faq-link::after {
  content: "";
  position: absolute; left: 0; bottom: -3px;
  width: 100%; height: 3px;
  background: var(--purple-gradient-stroke);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
  border-radius: 2px;
}
.faq-link:hover::after { transform: scaleX(1); }

/* cyan glow on hover */
.faq-link:hover {
  color: -cyan; /* var(--cyan substitute) */
  /* text-shadow: 0 0 12px rgba(156,255,255,.6), 0 0 24px rgba(94,77,255,.4); */
}

.faq-link .chev {
  display: inline-block;
  transition: transform .25s ease;
}
.faq-link:hover .chev { transform: translateX(5px); }

.contact-section {
   background: var(--background-gradient);
   color: var(--light);
   padding: 6rem 2rem;
   border-bottom: 4px solid transparent;
   border-image: var(--purple-gradient-stroke);
   border-image-slice: 1;
 }
 
 .contact-title {
   font-weight: 800;
   background: var(--light-gradient);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   font-size: clamp(2rem, 1.2rem + 2vw, 3rem);
 }
 
 .contact-sub {
   color: var(--purple-gray);
   opacity: .9;
 }
 
 .contact-card {
   background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
   border: 1px solid rgba(182,197,255,.18);
   border-radius: 1rem;
   padding: 2rem 1.5rem;
   box-shadow: 0 16px 36px rgba(0,0,0,.25), inset 0 0 0 1px rgba(255,255,255,.04);
   transition: transform .25s ease, box-shadow .3s ease;
 }
 
 .contact-card:hover {
   transform: translateY(-4px);
   box-shadow: 0 20px 45px rgba(0,0,0,.35);
 }
 
 .contact-icon {
   font-size: 2rem;
   margin-bottom: .75rem;
   background: var(--gradient-green);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
 }
 
 .contact-card h5 {
   font-weight: 700;
   margin-bottom: .35rem;
 }
 
 .contact-card p {
   margin: 0;
   color: var(--purple-gray);
 }
 
 .contact-card a {
   color: var(--purple-gray);
   text-decoration: none;
   transition: color .25s ease;
 }
 
 .contact-card a:hover {
   color: var(--cyan);
 }
 
 .contact-link {
   font-weight: 700;
   color: var(--cyan);
   text-decoration: none;
   position: relative;
   display: inline-block;
 }
 
 .contact-link::after {
   content: "";
   position: absolute; left: 0; bottom: -3px;
   width: 100%; height: 3px;
   background: var(--purple-gradient-stroke);
   transform: scaleX(0);
   transform-origin: left;
   transition: transform .3s ease;
   border-radius: 2px;
 }
 
 .contact-link:hover::after { transform: scaleX(1); }
 .contact-link .chev { display: inline-block; transition: transform .2s ease; }
 .contact-link:hover .chev { transform: translateX(4px); }
 

 .site-footer {
   background: var(--dark-purple);
   color: var(--purple-gray);
   border-top: 4px solid transparent;
   border-image: var(--purple-gradient-stroke);
   border-image-slice: 1;
 }
 
 .footer-brand {
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 800;
   font-size: 1.25rem;
   color: var(--light);
 }
 
 .footer-logo {
   width: 40px;
   height: auto;
 }
 
 .footer-links a {
   color: var(--purple-gray);
   text-decoration: none;
   font-weight: 600;
   transition: color 0.25s ease;
 }
 
 .footer-links a:hover {
   background: var(--cyan);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   color: transparent;
 }
 
 .footer-copy {
   font-size: 0.9rem;
   opacity: 0.8;
 }
 

 /* soften the left glow so text stays dominant */
.hero::before{
  left:-12vw; top:20vh; width:40vw; height:40vh; opacity:.15;
  background:radial-gradient(45% 55% at 40% 40%,
    rgba(92,103,255,.25) 0%, rgba(190,49,255,.18) 25%, rgba(0,0,0,0) 65%);
  filter:blur(42px); mix-blend-mode:screen;
}

/* Chips: grid fills the center nicely */
.hero-chips{
  display:grid;
  grid-template-columns:repeat(3, minmax(200px,1fr));
  gap:.75rem .9rem;
  max-width: 60rem;
  padding:0; margin:0;
  list-style:none;
}
.hero-chips li{
  display:flex; align-items:center; gap:.55rem;
  padding:.55rem .85rem;
  border-radius:999px;
  font-weight:700; font-size:.97rem; color:var(--light);
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border:1px solid rgba(182,197,255,.18);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.04);
  backdrop-filter:blur(4px);
}
.hero-chips i{
  width:18px; text-align:center;
  background:var(--cyan);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}

/* Right phone tweaks so layout balances */
.shot-frame{ max-width:520px; margin-right: .5rem; overflow:visible; }
.shot-frame img{ width:50%; max-width:520px; }

/* Responsive: reduce to 2 columns / 1 column */
@media (max-width: 1200px){
  .hero-chips{ grid-template-columns:repeat(2, minmax(200px,1fr)); }
}
@media (max-width: 768px){
  .hero-chips{ grid-template-columns:1fr; }
}


/* Jump dropdown */
.faq-dropdown-wrap{display:flex;flex-direction:column;align-items:center;gap:.5rem}
.faq-label{font-weight:700;text-transform:uppercase;font-size:.9rem;color:var(--purple-gray);letter-spacing:.5px}
.faq-select{
  background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.03));
  border:1px solid rgba(182,197,255,.25);
  color:var(--light);font-weight:600;padding:.65rem 1rem;border-radius:.75rem;min-width:280px;appearance:none;
  box-shadow:0 8px 18px rgba(0,0,0,.25), inset 0 0 0 1px rgba(255,255,255,.04);
  background-image:url("data:image/svg+xml;charset=UTF-8,<svg width='20' height='20' xmlns='http://www.w3.org/2000/svg'><path fill='%23B6C5FF' d='M5 7l5 6 5-6z'/></svg>");
  background-repeat:no-repeat;background-position:right 1rem center;background-size:1rem;text-align:center
}
.faq-select:focus{outline:none;border-color:rgba(94,77,255,.5);box-shadow:0 0 0 3px rgba(94,77,255,.35)}

/* Category headings */
.faq-cat-title{
  margin:4rem 2rem 1rem 0rem;font-weight:800;letter-spacing:.3px;
  background:var(--cyan);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;
}

/* Optional: highlight flash when jumping */
@keyframes faqFlash{0%{box-shadow:0 0 0 0 rgba(94,77,255,.0)}30%{box-shadow:0 0 0 8px rgba(94,77,255,.25)}100%{box-shadow:0 0 0 0 rgba(94,77,255,.0)}}
.faq-cat-anchor.flash{animation:faqFlash 1.2s ease}


/* ===== Download Section ===== */
.dl-wrap {
  position: relative;
  background: linear-gradient(135deg, #332551, #2A2A82, #161D62);
  color: #fafafa;
  padding: clamp(3rem, 6vw, 6rem) 1rem;
  border-bottom: 4px solid transparent;
  border-image: linear-gradient(to right, #5c67ff, #be31ff) 1;
  overflow: hidden;
  isolation: isolate;
}

.dl-title {
  font-weight: 800;
  font-size: clamp(2rem, 1.2rem + 3vw, 3rem);
  margin: 0 0 .25rem;
  background: linear-gradient(to right, #ac9c94, #b6c5ff, #9cffff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.dl-sub {
  color: #b6c5ff;
  margin-bottom: 1.5rem;
}

.dl-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
}

/* Store buttons */
.btn-store {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 1.6rem;
  border-radius: 1rem;
  text-decoration: none;
  font-weight: 700;
  color: #0f1727;
  background: linear-gradient(to right, #ac9c94, #b6c5ff, #9cffff);
  box-shadow:
    0 18px 40px rgba(0,237,189,.35),
    0 0 24px rgba(94,77,255,.45);
  transition: transform .25s ease, box-shadow .35s ease, background .5s ease;
}

.btn-store::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 3px;
  background: linear-gradient(to right, #ac9c94, #b6c5ff, #9cffff);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  box-shadow: inset 0 0 12px rgba(0,0,0,.25), inset 0 0 20px rgba(0,0,0,.18);
  pointer-events: none;
}

.btn-store:hover {
  transform: translateY(-3px) scale(1.03);
  background: linear-gradient(to right, #5c67ff, #be31ff);
  color: #fff;
  box-shadow:
    0 20px 46px rgba(94,77,255,.45),
    0 0 36px rgba(190,49,255,.55),
    0 0 14px rgba(94,77,255,.35);
}

/* Floating badges */
.dl-badges {
  list-style: none;
  padding: 0;
  margin: .25rem 0 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem .8rem;
  justify-content: center;
}

.dl-badges li {
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  padding: .5rem .9rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border: 1px solid rgba(182,197,255,.18);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
  backdrop-filter: blur(4px);
  animation: floatUp 8s ease-in-out infinite;
}

.dl-badges li:nth-child(2) { animation-delay: .6s; }
.dl-badges li:nth-child(3) { animation-delay: 1.2s; }
.dl-badges li:nth-child(4) { animation-delay: 1.8s; }

@keyframes floatUp {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}

/* --- soften / fix overlay so it never blocks clicks --- */
.dl-mock { position: relative; margin-top: 1rem; display: flex; justify-content: center; z-index: 1; }
.dl-mock .mock { width: min(100%, 900px); border-radius: 1.25rem; display: block; }

/* halo: lighter + behind everything + not clickable */
.dl-mock .halo{
  position: absolute;
  inset: auto 0 -8% 0;
  height: 28vh;                    /* shorter */
  z-index: -2;                     /* push way back */
  pointer-events: none;            /* never intercepts clicks */
  filter: blur(22px);
  opacity: .28;                    /* lower intensity */
  background:
    radial-gradient(50% 60% at 50% 0%, rgba(156,255,255,.22), rgba(182,197,255,.10) 40%, rgba(0,0,0,0) 70%),
    conic-gradient(from 0deg, rgba(94,77,255,.28), rgba(190,49,255,.20), rgba(0,237,189,.18), rgba(94,77,255,.28));
  animation: spin 22s linear infinite;
  border-radius: 50%;
}

/* shine: narrower sweep, masked away from the top area, not clickable */
.dl-mock .shine{
  position: absolute;
  inset: 10% 0 0 0;               /* keep it lower on the image */
  border-radius: 1.25rem;
  background: linear-gradient(120deg, transparent 15%, rgba(255,255,255,.10) 40%, transparent 65%);
  transform: translateX(-120%);
  filter: blur(.4px);
  opacity: .9;
  animation: sweep 5s ease-in-out 1.2s infinite;
  pointer-events: none;            /* <-- critical so links stay clickable */
  mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 100%);
}

/* (same keyframes you already have) */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes sweep { 0%{transform:translateX(-120%)}50%{transform:translateX(0)}100%{transform:translateX(120%)} }

/* Features link */
.dl-link {
  position: relative;
  font-weight: 700;
  color: #b6c5ff;
  text-decoration: none;
}

.dl-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  height: 3px;
  width: 100%;
  background: linear-gradient(to right, #5c67ff, #be31ff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
  border-radius: 2px;
}

.dl-link:hover::after { transform: scaleX(1); }

.dl-link .chev {
  display: inline-block;
  transition: transform .2s ease;
}

.dl-link:hover .chev { transform: translateX(4px); }

/* Responsive */
@media (max-width: 576px) {
  .btn-store { width: 100%; }
  .dl-badges { gap: .5rem; }
}

.downloads::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(15,23,39,0.9) 100%);
  pointer-events: none;
  z-index: 0;
}

.dl-trust {
  margin-top: 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  color: #b6c5ff;
  text-align: center;
}
.dl-trust span {
  background: var(--light-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* ========== Features Page ========== */
.features-page {
  background: var(--background-gradient);
  color: var(--light);
  padding: 6rem 2rem;
  position: relative;
  z-index: 1;
}

.fx-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Intro */
.fx-hero {
  text-align: center;
  margin-bottom: 5rem;
}
.fx-kicker {
  color: var(--purple-gray);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.fx-title {
  font-size: clamp(2rem, 1rem + 3vw, 3rem);
  font-weight: 800;
  margin: 0.5rem 0 1rem;
  background: var(--light-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.fx-sub {
  color: var(--purple-gray);
  opacity: 0.95;
  max-width: 60ch;
  margin: 0 auto 2rem;
}
.fx-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.fx-chips li {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--light);
}

/* Each feature row */
.fx-row {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 5rem;
}
.fx-row.reverse {
  flex-direction: row-reverse;
}
.fx-copy {
  flex: 1 1 50%;
}
.fx-media {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
}
.fx-media-frame {
  background: var(--light-gradient);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 1.5rem;
  padding: 1rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 320px;
}
.fx-media-frame img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  display: block;
}
.fx-media-frame:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

/* Copy */
.fx-tag {
  display: inline-block;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  padding: 0.3rem 0.8rem;
  border-radius: 0.75rem;
  background: var(--purple-gradient-fill);
  color: #0f1727;
}
.fx-tag.green { background: var(--gradient-green); }
.fx-tag.purple { background: var(--gradient-purple); }
.fx-tag.blue { background: var(--gradient-blue); }
.fx-tag.teal { background: var(--gradient-teal); }
.fx-tag.slate { background: var(--gradient-slate); }
.fx-tag.gold { background: var(--gradient-gold); }

.fx-copy h3 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 1rem + 1.2vw, 2rem);
  font-weight: 800;
  background: var(--light);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.fx-copy p {
  color: var(--purple-gray);
  opacity: 0.95;
  margin-bottom: 1rem;
}
.fx-copy ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.fx-copy ul li {
  position: relative;
  padding-left: 1.25rem;
  margin: 0.4rem 0;
  color: var(--light);
  opacity: 0.9;
}
.fx-copy ul li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple-gradient-stroke);
}

/* CTA */
/* --- Bottom Download Section --- */
.features-download {
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(145deg, #332551, #2A2A82, #161D62);
  border-image-slice: 1;
  position: relative;
  overflow: hidden;
}

/* Subtle animated glow */
.features-download::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(190,49,255,0.2), transparent 70%),
              radial-gradient(circle at 70% 70%, rgba(0,237,189,0.15), transparent 70%);
  animation: glowMove 10s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes glowMove {
  from { transform: scale(1); opacity: 0.6; }
  to   { transform: scale(1.2); opacity: 0.9; }
}

.features-download .container {
  position: relative;
  z-index: 1;
}

.dl-title {
  font-size: clamp(1.8rem, 1rem + 2vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  background: var(--light-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dl-sub {
  color: var(--purple-gray);
  opacity: 0.95;
  margin-bottom: 2rem;
  font-size: 1.15rem;
}

/* Button */
.dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.25rem;
  border-radius: 1rem;
  font-weight: 700;
  font-size: 1.1rem;
  background: var(--light-gradient);
  color: #0f1727;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0,0,0,0.35),
              0 0 18px rgba(190,49,255,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dl-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 40px rgba(0,0,0,0.45),
              0 0 28px rgba(94,77,255,0.55);
}


/* Responsive */
@media (max-width: 992px) {
  .fx-row, .fx-row.reverse {
    flex-direction: column;
    text-align: center;
  }
  .fx-media {
    margin-top: 1.5rem;
  }
}
.goog-te-gadget-simple{
  border-radius: 12px !important;
}


.contact-hero {
  background: var(--background-gradient);
  color: var(--light);
  padding: 4rem 2rem;
  border-bottom: 4px solid transparent;
  border-image: var(--purple-gradient-stroke);
  border-image-slice: 1;
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content:""; position:absolute; inset:0;
  background: radial-gradient(40% 50% at 20% 20%, rgba(94,77,255,.24), transparent 70%),
              radial-gradient(35% 45% at 90% 40%, rgba(190,49,255,.18), transparent 70%);
  filter: blur(60px); pointer-events:none;
}
.contact-hero-title {
  font-weight: 800;
  background: var(--light-gradient);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  margin: 0 0 .5rem;
  font-size: clamp(2rem, 1rem + 3vw, 3rem);
}
.contact-hero-sub { color: var(--purple-gray); opacity: .95; max-width: 60ch; }
.contact-hero-chips { list-style:none; padding:0; margin:1rem 0 0; display:flex; flex-wrap:wrap; gap:.6rem .8rem; }
.contact-hero-chips li{
  display:inline-flex; align-items:center; gap:.5rem;
  padding:.5rem .8rem; border-radius:999px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border: 1px solid rgba(182,197,255,.18); color: var(--light); font-weight:700;
}
.contact-hero-art{ display:flex; justify-content:center }
.contact-hero-art img{ width:100%; max-width:420px; border-radius:1.25rem; }

/* ===== Compact Contact form ===== */
.contact-form-wrap { background: var(--background-gradient); padding: 6rem 2rem; }

/* Smaller, centered card */
.contact-card.compact{
  max-width: 720px;   /* less stretched */
  margin: 0 auto;
  padding: 1.25rem 1.25rem 1rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(182,197,255,.18);
  box-shadow: 0 18px 40px rgba(0,0,0,.25), inset 0 0 0 1px rgba(255,255,255,.04);
}

/* Head */
.contact-card-head{ margin-bottom: .75rem; text-align: center; }
.contact-card-title{
  font-weight: 800; margin: 0;
  background: var(--light-gradient);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  font-size: clamp(1.25rem, .8rem + 1.2vw, 1.6rem);
}
.contact-card-sub{ margin: .25rem 0 0; color: var(--purple-gray); }

/* Grid (2 cols -> 1 on mobile) */
.contact-grid{
  display: grid; gap: .9rem;
  grid-template-columns: 1fr 1fr;
}
.field{ display: grid; gap: .35rem; }
.field-full{ grid-column: 1 / -1; }
@media (max-width: 768px){ .contact-grid{ grid-template-columns: 1fr; } }

/* Inputs */
.contact-label{ color: var(--light); font-weight: 700; font-size: .92rem; }
.contact-input, .contact-textarea{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(182,197,255,.18);
  color: var(--light);
  border-radius: 12px;
  height: 46px;
}
.contact-textarea{ height: 140px; resize: vertical; }
.contact-input::placeholder, .contact-textarea::placeholder{ color:#c9d3ff88; }
.contact-input:focus, .contact-textarea:focus{
  outline: none; box-shadow: 0 0 0 3px rgba(94,77,255,.35); border-color: rgba(94,77,255,.5);
}

/* Actions row */
.contact-actions{
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  margin-top: .5rem;
  justify-content: center;
}
.btn-send{
  position: relative; display: flex; justify-content: center; align-items:center; gap:.55rem;
  padding: .85rem 1.35rem; border-radius: 14px; border: 0;
  background: var(--light-gradient); color: #0f1727; font-weight: 800;
  box-shadow: 0 14px 30px rgba(0,237,189,.28), 0 0 20px rgba(94,77,255,.35);
  transition: transform .2s ease, box-shadow .3s ease; width: 50%;
}
.btn-send:hover{ transform: translateY(-1px); }
.btn-send.loading .btn-label{ opacity:.65 }
.btn-send.loading .btn-spinner{
  width: 16px; height: 16px; border: 2px solid #0f1727; border-right-color: transparent;
  border-radius: 50%; display: inline-block; animation: spin .8s linear infinite;
}
@keyframes spin{ to{ transform: rotate(360deg);} }

.contact-mailto{ color: var(--cyan); font-weight: 700; text-decoration: none; }
.contact-mailto:hover{ text-decoration: underline; }
.contact-disclaimer{
  margin: .75rem 0 0; text-align: center; color: var(--purple-gray); opacity: .9;
  font-size: .92rem;
}

/* Status bars (ids unchanged) */
.alert-bar{
  display:none; align-items:center; gap:.5rem; margin: 0 auto 1rem; max-width: 720px;
  padding: .6rem .9rem; border-radius: 12px; font-weight:700;
  border:1px solid rgba(182,197,255,.18);
}
.alert-bar.active{ display:flex; }
.alert-bar.success{ background: rgba(0, 237, 189, .1); color:#9CFFFF; }
.alert-bar.danger { background: rgba(255, 82, 82, .12); color:#ffd2d2; }
.alert-bar i{ font-size: 1rem; }

/* Social strip */
.contact-social{
  max-width: 720px; margin: 0.25rem auto 0;
  display:flex; flex-wrap:wrap; justify-content:center; gap:.6rem;
}
.social-pill{
  display:inline-flex; align-items:center; gap:.5rem;
  padding:.55rem .9rem; border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border: 1px solid rgba(182,197,255,.18);
  color: var(--light); font-weight:700; text-decoration:none;
}
.social-pill:hover{ box-shadow: 0 0 0 3px rgba(94,77,255,.25) inset; }