﻿/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FLASHX â€” PREMIUM WEBSITE STYLESHEET
   Dark Â· Futuristic Â· Apple-level Animations
   Mobile-First Â· Neon Accents
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ TOKENS â”€â”€ */
:root {
  --bg:       #050510;
  --bg2:      #080816;
  --card:     #0d0d1f;
  --card2:    #111126;
  --border:   rgba(100,100,255,.11);
  --border2:  rgba(100,100,255,.18);
  --cyan:     #00BFFF;
  --purple:   #7B2FFF;
  --pink:     #FF1493;
  --gold:     #FFD700;
  --green:    #00FFAA;
  --text:     #EEEEFF;
  --muted:    #7777AA;
  --grad:     linear-gradient(135deg,#00BFFF,#7B2FFF);
  --grad2:    linear-gradient(135deg,#FF1493,#7B2FFF);
  --r:        22px;
  --rsm:      14px;
  --font:     'Inter',sans-serif;
  --font2:    'Space Grotesk',sans-serif;
}

/* â”€â”€ RESET â”€â”€ */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{font-family:var(--font);background:var(--bg);color:var(--text);overflow-x:hidden;line-height:1.6}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button{font-family:var(--font);cursor:pointer}

/* â”€â”€ UTILITY â”€â”€ */
.gradient-text{background:var(--grad);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.container{max-width:1160px;margin:0 auto;padding:0 20px}

/* â”€â”€ BUTTONS â”€â”€ */
.btn-primary{
  display:inline-flex;align-items:center;gap:10px;
  background:var(--grad);color:#fff;
  font-weight:700;font-size:1rem;padding:15px 30px;
  border-radius:50px;border:none;cursor:pointer;
  transition:transform .25s,box-shadow .25s;
  box-shadow:0 4px 24px rgba(0,191,255,.25);
  white-space:nowrap;
}
.btn-primary:hover{transform:translateY(-3px);box-shadow:0 10px 40px rgba(0,191,255,.45)}
.btn-primary:active{transform:translateY(0)}

.btn-outline{
  display:inline-flex;align-items:center;gap:8px;
  background:transparent;color:var(--text);
  font-weight:600;font-size:1rem;padding:14px 26px;
  border-radius:50px;border:1.5px solid var(--border2);
  transition:all .25s;white-space:nowrap;
}
.btn-outline:hover{border-color:var(--cyan);color:var(--cyan);background:rgba(0,191,255,.06)}

/* â”€â”€ SECTION COMMON â”€â”€ */
section{padding:90px 20px}
.section-label{
  display:inline-block;
  background:rgba(0,191,255,.08);
  border:1px solid rgba(0,191,255,.22);
  color:var(--cyan);font-size:.78rem;font-weight:700;
  padding:6px 18px;border-radius:50px;
  letter-spacing:.09em;text-transform:uppercase;margin-bottom:14px;
}
.section-h2{
  font-family:var(--font2);
  font-size:clamp(1.9rem,4.5vw,3rem);
  font-weight:800;letter-spacing:-.03em;line-height:1.1;
  margin-bottom:14px;
}
.section-p{
  font-size:1.05rem;color:var(--muted);
  max-width:560px;margin:0 auto 64px;line-height:1.75;
  text-align:center;
}
.section-h2.left,.section-p.left{text-align:left;margin-left:0}

/* â”€â”€ REVEAL ANIMATION â”€â”€ */
[data-reveal]{
  opacity:0;
  transform:translateY(36px);
  transition:opacity .75s cubic-bezier(.22,1,.36,1),
             transform .75s cubic-bezier(.22,1,.36,1);
}
[data-reveal].is-visible{opacity:1;transform:none}

/* â•â•â• PRELOADER â•â•â• */
#preloader{
  position:fixed;inset:0;z-index:9999;
  background:var(--bg);
  display:flex;align-items:center;justify-content:center;
  transition:opacity .6s ease,visibility .6s ease;
}
#preloader.done{opacity:0;visibility:hidden}
.pre-logo{position:relative;display:flex;align-items:center;justify-content:center}
.pre-logo img{width:72px;height:72px;border-radius:50%;animation:pre-pulse 1.2s ease-in-out infinite alternate}
.pre-ring{
  position:absolute;inset:-14px;border-radius:50%;
  border:2px solid transparent;
  border-top-color:var(--cyan);border-right-color:var(--purple);
  animation:spin 1s linear infinite;
}
@keyframes pre-pulse{from{transform:scale(.9);opacity:.7}to{transform:scale(1.05);opacity:1}}
@keyframes spin{to{transform:rotate(360deg)}}

/* â•â•â• NAVBAR â•â•â• */
#navbar{
  position:fixed;top:0;left:0;right:0;z-index:900;
  background:rgba(5,5,16,.65);
  backdrop-filter:blur(22px);-webkit-backdrop-filter:blur(22px);
  border-bottom:1px solid var(--border);
  transition:background .3s;
}
#navbar.scrolled{background:rgba(5,5,16,.96)}
.nav-wrap{
  max-width:1160px;margin:0 auto;padding:0 20px;
  height:64px;display:flex;align-items:center;gap:36px;
}
.nav-logo{display:flex;align-items:center;gap:10px;font-family:var(--font2);font-weight:700;font-size:1.2rem}
.nav-logo img{width:34px;height:34px;border-radius:50%}
.nav-links{display:flex;list-style:none;gap:28px;margin-left:auto}
.nav-a{font-size:.9rem;font-weight:500;color:var(--muted);transition:color .2s}
.nav-a:hover{color:var(--text)}
.nav-cta{
  background:var(--grad);color:#fff;font-weight:700;
  font-size:.88rem;padding:9px 22px;border-radius:50px;
  transition:opacity .2s,transform .2s;white-space:nowrap;
}
.nav-cta:hover{opacity:.85;transform:translateY(-1px)}
.hamburger{
  display:none;flex-direction:column;gap:5px;
  background:none;border:none;padding:4px;margin-left:auto;
}
.hamburger span{display:block;width:22px;height:2px;background:var(--text);border-radius:2px;transition:all .3s}
.hamburger.open span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
.hamburger.open span:nth-child(2){opacity:0;transform:scaleX(0)}
.hamburger.open span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}

/* mobile drawer */
.nav-drawer{
  display:none;flex-direction:column;
  padding:16px 20px 20px;border-top:1px solid var(--border);
  gap:4px;background:rgba(5,5,16,.98);
}
.nav-drawer.open{display:flex}
.nav-drawer a{font-size:1rem;font-weight:500;color:var(--muted);padding:12px 0;border-bottom:1px solid var(--border);transition:color .2s}
.nav-drawer a:last-child{border:none}
.nav-drawer a:hover{color:var(--text)}

/* â•â•â• HERO â•â•â• */
#hero{
  min-height:100svh;position:relative;
  display:flex;align-items:center;
  padding:80px 20px 60px;overflow:hidden;
}
#stars-canvas{position:absolute;inset:0;z-index:0;pointer-events:none}

.hero-orbs{position:absolute;inset:0;pointer-events:none;z-index:0}
.orb{position:absolute;border-radius:50%;filter:blur(110px);will-change:transform}
.orb-1{width:55vw;height:55vw;max-width:600px;max-height:600px;background:radial-gradient(circle,rgba(123,47,255,.35),transparent);top:-15%;right:-10%;animation:orbFloat 10s ease-in-out infinite}
.orb-2{width:40vw;height:40vw;max-width:420px;max-height:420px;background:radial-gradient(circle,rgba(0,191,255,.25),transparent);bottom:-10%;left:-8%;animation:orbFloat 13s ease-in-out infinite reverse}
.orb-3{width:30vw;height:30vw;max-width:340px;max-height:340px;background:radial-gradient(circle,rgba(255,20,147,.18),transparent);top:40%;left:40%;animation:orbFloat 8s ease-in-out infinite 3s}
@keyframes orbFloat{0%,100%{transform:translate(0,0)}50%{transform:translate(24px,-36px)}}

.hero-inner{
  position:relative;z-index:2;
  max-width:1160px;margin:0 auto;width:100%;
  display:grid;grid-template-columns:1fr auto;
  align-items:center;gap:60px;
}
.hero-text{display:flex;flex-direction:column;align-items:flex-start}
.hero-badge{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(0,191,255,.09);border:1px solid rgba(0,191,255,.24);
  color:var(--cyan);font-size:.82rem;font-weight:600;
  padding:7px 18px;border-radius:50px;margin-bottom:28px;
  letter-spacing:.03em;
}
.dot-pulse{width:8px;height:8px;background:var(--cyan);border-radius:50%;animation:dpulse 2s ease-in-out infinite}
@keyframes dpulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.4;transform:scale(1.4)}}

.hero-h1{
  font-family:var(--font2);
  font-size:clamp(2.6rem,6vw,5.2rem);
  font-weight:900;letter-spacing:-.035em;
  line-height:1.02;margin-bottom:22px;
}
.line-wrap{display:block;overflow:hidden}
.line{display:block;animation:lineUp .9s cubic-bezier(.22,1,.36,1) both}
.line-wrap:nth-child(1) .line{animation-delay:.1s}
.line-wrap:nth-child(2) .line{animation-delay:.25s}
.line-wrap:nth-child(3) .line{animation-delay:.4s}
@keyframes lineUp{from{transform:translateY(110%);opacity:0}to{transform:none;opacity:1}}

.hero-p{font-size:1.05rem;color:var(--muted);line-height:1.78;max-width:500px;margin-bottom:36px;animation:fadeUp .8s .55s both}
.hero-btns{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:44px;animation:fadeUp .8s .65s both}
@keyframes fadeUp{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:none}}

.hero-stats{display:flex;align-items:center;gap:20px;animation:fadeUp .8s .75s both}
.stat{display:flex;flex-direction:column;gap:2px}
.stat-n{font-family:var(--font2);font-size:1.55rem;font-weight:800;color:var(--text)}
.stat-l{font-size:.72rem;color:var(--muted);text-transform:uppercase;letter-spacing:.07em}
.s-div{width:1px;height:36px;background:var(--border2)}

/* HERO PHONE */
.hero-phone-col{animation:fadeUp .9s .3s both}
.phone-float{position:relative;animation:phoneFloat 7s ease-in-out infinite}
@keyframes phoneFloat{0%,100%{transform:rotate(-2.5deg) translateY(0)}50%{transform:rotate(2deg) translateY(-22px)}}

.phone-glow-ring{
  position:absolute;inset:-18px;border-radius:50%;
  background:radial-gradient(ellipse,rgba(123,47,255,.3),transparent 70%);
  animation:glowBreath 4s ease-in-out infinite;
  pointer-events:none;
}
@keyframes glowBreath{0%,100%{opacity:.5}50%{opacity:1}}

/* â”€â”€ PHONE MOCKUP â”€â”€ */
.phone-mockup{
  position:relative;
  background:linear-gradient(180deg,#1a1a2e,#0d0d1a);
  border-radius:44px;
  border:2px solid rgba(120,120,255,.22);
  box-shadow:0 0 0 1px rgba(255,255,255,.04),0 40px 100px rgba(0,0,0,.85),inset 0 0 0 1px rgba(255,255,255,.03);
  overflow:hidden;padding-top:14px;padding-bottom:24px;
  display:flex;flex-direction:column;
}
.phone-mockup.large{width:260px}
.phone-mockup.med{width:210px}

.pm-speaker{width:56px;height:6px;border-radius:3px;background:#222;margin:0 auto 6px;border:1px solid #333}
.pm-speaker.sm{width:44px;height:5px}
.pm-cam{width:10px;height:10px;border-radius:50%;background:#111;border:2px solid #2a2a3a;margin:0 auto 8px;position:relative}
.pm-cam::after{content:'';position:absolute;inset:2px;border-radius:50%;background:radial-gradient(circle,#222,#111)}
.pm-cam.sm{width:8px;height:8px}

.pm-screen{flex:1;overflow:hidden;margin:0 6px;border-radius:14px;position:relative;background:#000}
.pm-screen img{width:100%;height:100%;object-fit:cover;object-position:top}
.pm-screen.full-h{height:500px}

.pm-home{width:100px;height:5px;border-radius:3px;background:rgba(255,255,255,.18);margin:14px auto 0}
.pm-home.sm{width:80px;margin:10px auto 0}

/* SCROLL CUE */
.scroll-cue{
  position:absolute;bottom:28px;left:50%;transform:translateX(-50%);
  z-index:2;display:flex;flex-direction:column;align-items:center;gap:8px;
  color:var(--muted);font-size:.72rem;letter-spacing:.09em;text-transform:uppercase;
  animation:fadeUp 1s 1.2s both;
}
.scroll-mouse{
  width:22px;height:34px;border-radius:11px;
  border:2px solid var(--muted);
  display:flex;align-items:flex-start;justify-content:center;padding-top:6px;
}
.scroll-dot{width:4px;height:8px;border-radius:2px;background:var(--muted);animation:scrollDown 2s ease-in-out infinite}
@keyframes scrollDown{0%,100%{transform:translateY(0);opacity:1}60%{transform:translateY(10px);opacity:0}}

/* â•â•â• FEATURES â•â•â• */
#features{background:var(--bg2);padding:90px 20px}
#features .section-label,#features .section-h2,#features .section-p{display:block;text-align:center;margin-left:auto;margin-right:auto}
#features .section-h2{margin-bottom:12px}

.feat-row{
  max-width:1160px;margin:0 auto 100px;
  display:grid;grid-template-columns:1fr 1fr;
  gap:60px;align-items:center;
}
.feat-row:last-child{margin-bottom:0}
.feat-row.reverse .feat-phone-col{order:2}
.feat-row.reverse .feat-info{order:1}

/* phone col */
.feat-phone-col{display:flex;justify-content:center;align-items:center}
.feat-phone-wrap{position:relative;display:flex;justify-content:center}
.feat-phone-glow{
  position:absolute;inset:-30px;border-radius:50%;
  background:radial-gradient(ellipse,color-mix(in srgb,var(--gc) 22%,transparent),transparent 70%);
  pointer-events:none;filter:blur(20px);
}

/* feat info */
.feat-info{display:flex;flex-direction:column;gap:14px}
.feat-icon{
  width:52px;height:52px;border-radius:15px;
  background:linear-gradient(135deg,var(--c1),var(--c2));
  display:flex;align-items:center;justify-content:center;
  color:#fff;box-shadow:0 8px 24px rgba(0,0,0,.35);
}
.feat-icon svg{width:24px;height:24px}
.feat-tag{font-size:.74rem;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:var(--cyan)}
.feat-info h3{font-family:var(--font2);font-size:clamp(1.5rem,2.5vw,2rem);font-weight:800;letter-spacing:-.025em;line-height:1.15}
.feat-info>p{font-size:.95rem;color:var(--muted);line-height:1.75}
.feat-info strong{color:var(--text)}
.feat-info em{color:var(--cyan);font-style:normal}

/* how list */
.how-list{list-style:none;display:flex;flex-direction:column;gap:9px;margin-top:4px}
.how-list li{display:flex;align-items:flex-start;gap:11px;font-size:.88rem;color:var(--muted);line-height:1.55}
.how-list li strong{color:var(--text)}
.how-list li span{
  flex-shrink:0;width:20px;height:20px;border-radius:50%;
  background:var(--grad);color:#fff;font-size:.65rem;font-weight:700;
  display:flex;align-items:center;justify-content:center;margin-top:1px;
}

/* feat chips */
.feat-chips{display:flex;flex-wrap:wrap;gap:7px;margin-top:4px}
.feat-chips span{
  background:rgba(0,191,255,.07);border:1px solid rgba(0,191,255,.18);
  color:var(--cyan);font-size:.72rem;font-weight:600;
  padding:4px 13px;border-radius:50px;
}

/* AI chat overlay */
.ai-chat-overlay{
  position:absolute;bottom:12px;left:8px;right:8px;
  display:flex;flex-direction:column;gap:7px;
}
.ai-bubble{padding:7px 11px;border-radius:12px;font-size:.65rem;line-height:1.45;backdrop-filter:blur(6px)}
.ai-bubble.user{background:rgba(123,47,255,.88);color:#fff;margin-left:auto;max-width:78%;border-bottom-right-radius:3px}
.ai-bubble.bot{background:rgba(0,0,0,.82);color:var(--text);border:1px solid rgba(0,191,255,.2);border-bottom-left-radius:3px}

/* â•â•â• HOW TO USE â•â•â• */
#how-to-use{background:var(--bg)}
.how-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(310px,1fr));
  gap:18px;
}
.how-card{
  background:var(--card);border:1px solid var(--border);
  border-radius:var(--r);padding:26px 24px;
  transition:transform .3s,border-color .3s,box-shadow .3s;
}
.how-card:hover{transform:translateY(-6px);border-color:rgba(0,191,255,.28);box-shadow:0 20px 48px rgba(0,0,0,.35)}
.hc-icon{font-size:1.9rem;margin-bottom:14px}
.how-card h4{font-family:var(--font2);font-size:1.05rem;font-weight:700;margin-bottom:9px}
.how-card p{font-size:.86rem;color:var(--muted);line-height:1.65}
.how-card p strong{color:var(--text)}

/* â•â•â• DOWNLOAD â•â•â• */
#download{position:relative;overflow:hidden;background:var(--bg2)}
.dl-bg{position:absolute;inset:0;pointer-events:none}
.dl-orb{position:absolute;border-radius:50%;filter:blur(90px);opacity:.18}
.dl1{width:500px;height:500px;background:radial-gradient(circle,#7B2FFF,transparent);top:-200px;left:-200px}
.dl2{width:400px;height:400px;background:radial-gradient(circle,#00BFFF,transparent);bottom:-150px;right:-100px}
.dl-grid-line{
  position:absolute;inset:0;
  background-image:linear-gradient(rgba(0,191,255,.03) 1px,transparent 1px),linear-gradient(90deg,rgba(0,191,255,.03) 1px,transparent 1px);
  background-size:50px 50px;
}
.dl-inner{
  position:relative;z-index:2;
  display:flex;gap:70px;align-items:center;
}
.dl-splash{
  flex-shrink:0;width:240px;border-radius:26px;overflow:hidden;
  box-shadow:0 30px 80px rgba(0,0,0,.7);border:1px solid var(--border2);
  position:relative;
}
.dl-splash img{width:100%;height:auto}
.dl-splash-glow{
  position:absolute;inset:0;
  background:radial-gradient(ellipse at 50% 30%,rgba(123,47,255,.22),transparent 70%);
  pointer-events:none;
}
.dl-content{flex:1}
.dl-btns{display:flex;gap:14px;flex-wrap:wrap;margin:24px 0}
.dl-meta{display:flex;flex-wrap:wrap;gap:14px;font-size:.83rem;color:var(--muted)}

/* â•â•â• INSTALL GUIDE â•â•â• */
#install-guide{background:var(--bg)}
.install-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(480px,1fr));
  gap:20px;
}
.install-card{
  background:var(--card);border:1px solid var(--border);
  border-radius:var(--r);overflow:hidden;display:flex;
  cursor:pointer;transition:transform .3s,border-color .3s,box-shadow .3s;
}
.install-card:hover{transform:translateY(-6px);border-color:rgba(0,191,255,.28);box-shadow:0 20px 50px rgba(0,0,0,.4)}
.ic-img{position:relative;width:150px;flex-shrink:0;overflow:hidden;background:#000}
.ic-img img{width:100%;height:100%;object-fit:cover;object-position:top}
.ic-badge{
  position:absolute;top:10px;left:10px;
  width:30px;height:30px;border-radius:50%;
  background:var(--grad);color:#fff;font-size:.9rem;font-weight:800;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 12px rgba(0,0,0,.5);
}
.ic-body{padding:22px 20px;display:flex;flex-direction:column;gap:9px;flex:1}
.ic-body h4{font-family:var(--font2);font-size:1.05rem;font-weight:700}
.ic-body p{font-size:.85rem;color:var(--muted);line-height:1.6}
.ic-body strong{color:var(--text)}
.ic-body code{background:rgba(0,191,255,.1);color:var(--cyan);padding:2px 6px;border-radius:4px;font-size:.8rem}
.ic-btn{
  margin-top:auto;background:none;border:1.5px solid var(--border2);
  color:var(--cyan);font-size:.8rem;font-weight:600;
  padding:7px 15px;border-radius:50px;transition:all .2s;
  align-self:flex-start;
}
.ic-btn:hover{border-color:var(--cyan);background:rgba(0,191,255,.08)}

/* â•â•â• MODAL â•â•â• */
.modal-overlay{
  display:none;position:fixed;inset:0;z-index:9000;
  background:rgba(0,0,0,.88);
  align-items:center;justify-content:center;
  padding:16px;backdrop-filter:blur(10px);
}
.modal-overlay.open{display:flex}
.modal-card{
  background:var(--card2);border:1px solid var(--border2);
  border-radius:26px;max-width:780px;width:100%;
  max-height:92vh;overflow-y:auto;
  padding:36px 32px;position:relative;
  box-shadow:0 40px 100px rgba(0,0,0,.85);
  animation:modalIn .35s cubic-bezier(.22,1,.36,1);
}
@keyframes modalIn{from{opacity:0;transform:scale(.92) translateY(20px)}to{opacity:1;transform:none}}
.modal-x{
  position:absolute;top:18px;right:18px;
  width:34px;height:34px;border-radius:50%;
  background:rgba(255,255,255,.07);border:1px solid var(--border);
  color:var(--text);font-size:.9rem;display:flex;align-items:center;justify-content:center;
  transition:background .2s;
}
.modal-x:hover{background:rgba(255,60,60,.2)}
.modal-slide{display:flex;gap:28px;align-items:flex-start}
.modal-slide img{width:200px;flex-shrink:0;border-radius:14px;border:1px solid var(--border);object-fit:cover;object-position:top;max-height:360px}
.modal-info{}
.modal-step-tag{font-size:.74rem;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:var(--cyan);margin-bottom:8px}
.modal-info h3{font-family:var(--font2);font-size:1.5rem;font-weight:700;margin-bottom:16px}
.modal-info ol{padding-left:18px;display:flex;flex-direction:column;gap:10px}
.modal-info ol li{font-size:.92rem;color:var(--muted);line-height:1.6}
.modal-info ol li strong{color:var(--text)}
.modal-note{margin-top:14px;padding:11px 14px;background:rgba(255,200,0,.07);border-left:3px solid var(--gold);border-radius:6px;font-size:.83rem;color:var(--gold)}
.modal-footer{display:flex;align-items:center;justify-content:space-between;margin-top:28px;padding-top:22px;border-top:1px solid var(--border)}
.m-nav-btn{background:var(--card);border:1.5px solid var(--border);color:var(--text);font-size:.88rem;font-weight:600;padding:9px 22px;border-radius:50px;transition:all .2s}
.m-nav-btn:hover,.m-nav-btn.next{border-color:var(--cyan);color:var(--cyan)}
.m-nav-btn.next{background:rgba(0,191,255,.07)}
.m-dots{display:flex;gap:7px}
.m-dot{width:9px;height:9px;border-radius:50%;background:var(--border2);border:none;transition:all .3s;padding:0}
.m-dot.active{background:var(--cyan);transform:scale(1.35)}

/* â•â•â• CONTACT â•â•â• */
#contact{background:var(--bg2)}
.contact-wrap{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:40px;align-items:flex-start;
}
.contact-cards{display:flex;flex-direction:column;gap:14px}
.contact-card{
  display:flex;align-items:center;gap:16px;
  background:var(--card);border:1px solid var(--border);
  border-radius:var(--r);padding:20px;
  transition:transform .3s,border-color .3s,box-shadow .3s;cursor:pointer;
}
.contact-card:hover{transform:translateY(-4px);border-color:rgba(0,191,255,.28);box-shadow:0 16px 40px rgba(0,0,0,.35)}
.cc-icon-wrap{
  width:48px;height:48px;flex-shrink:0;border-radius:14px;
  background:linear-gradient(135deg,var(--c1),var(--c2));
  display:flex;align-items:center;justify-content:center;color:#fff;
  box-shadow:0 6px 18px rgba(0,0,0,.3);
}
.cc-body{display:flex;flex-direction:column;gap:2px;flex:1;min-width:0}
.cc-label{font-size:.72rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:var(--muted)}
.cc-value{font-size:.95rem;font-weight:700;color:var(--text);word-break:break-all}
.cc-sub{font-size:.78rem;color:var(--muted)}
.cc-arrow{font-size:1.1rem;color:var(--muted);transition:transform .2s,color .2s;flex-shrink:0}
.contact-card:hover .cc-arrow{transform:translateX(4px);color:var(--cyan)}

/* Contact Form */
.contact-form-wrap{
  background:var(--card);border:1px solid var(--border);
  border-radius:var(--r);padding:32px;
}
.cf-header{margin-bottom:24px}
.cf-header h3{font-family:var(--font2);font-size:1.4rem;font-weight:700;margin-bottom:6px}
.cf-header p{font-size:.88rem;color:var(--muted)}
.cf-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.cf-field{display:flex;flex-direction:column;gap:7px;margin-bottom:14px}
.cf-field label{font-size:.82rem;font-weight:600;color:var(--muted);letter-spacing:.03em}
.cf-field input,.cf-field select,.cf-field textarea{
  background:var(--bg);border:1.5px solid var(--border2);
  border-radius:var(--rsm);color:var(--text);
  font-family:var(--font);font-size:.92rem;
  padding:13px 16px;outline:none;
  transition:border-color .25s,box-shadow .25s;
  width:100%;resize:vertical;
}
.cf-field select{appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237777AA' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 14px center;cursor:pointer}
.cf-field input::placeholder,.cf-field textarea::placeholder{color:rgba(119,119,170,.5)}
.cf-field input:focus,.cf-field select:focus,.cf-field textarea:focus{border-color:var(--cyan);box-shadow:0 0 0 3px rgba(0,191,255,.1)}
.cf-submit{width:100%;justify-content:center;margin-top:4px}
.cf-success{
  display:none;margin-top:14px;padding:14px 18px;
  background:rgba(0,255,170,.08);border:1px solid rgba(0,255,170,.25);
  border-radius:var(--rsm);font-size:.88rem;color:var(--green);
  gap:8px;align-items:center;
}
.cf-success.show{display:flex}
.cf-direct{
  margin-top:18px;padding-top:18px;border-top:1px solid var(--border);
  display:flex;align-items:center;gap:10px;
  font-size:.83rem;color:var(--muted);flex-wrap:wrap;
}
.cf-direct a{color:var(--cyan);font-weight:600;word-break:break-all}
.cf-direct a:hover{text-decoration:underline}

/* â•â•â• FOOTER â•â•â• */
#footer{background:#030310;border-top:1px solid var(--border);padding:70px 20px 0}
.footer-top{
  max-width:1160px;margin:0 auto;
  display:grid;grid-template-columns:1.4fr 1fr;
  gap:60px;padding-bottom:50px;
}
.footer-brand{display:flex;flex-direction:column;gap:10px}
.footer-brand img{width:42px;height:42px;border-radius:50%}
.fb-name{font-family:var(--font2);font-size:1.2rem;font-weight:700}
.footer-brand p{font-size:.88rem;color:var(--muted);line-height:1.65;max-width:280px}
.footer-cols{display:grid;grid-template-columns:1fr 1fr;gap:40px}
.fcol{display:flex;flex-direction:column;gap:10px}
.fcol h5{font-size:.76rem;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:var(--muted);margin-bottom:4px}
.fcol a{font-size:.88rem;color:var(--muted);transition:color .2s}
.fcol a:hover{color:var(--text)}
.footer-bottom{max-width:1160px;margin:0 auto;border-top:1px solid var(--border);padding:22px 0}
.footer-bottom p{font-size:.82rem;color:var(--muted);text-align:center}

/* â•â•â• STAGGER CARDS ANIMATION â•â•â• */
[data-stagger]{opacity:0;transform:translateY(30px);transition:opacity .65s cubic-bezier(.22,1,.36,1),transform .65s cubic-bezier(.22,1,.36,1)}
[data-stagger].is-visible{opacity:1;transform:none}

/* â•â•â• RESPONSIVE â•â•â• */
@media(max-width:900px){
  .hero-inner{grid-template-columns:1fr;gap:48px;text-align:left}
  .hero-phone-col{display:flex;justify-content:center}
  .feat-row{grid-template-columns:1fr;gap:40px;margin-bottom:72px}
  .feat-row.reverse .feat-phone-col{order:0}
  .feat-row.reverse .feat-info{order:1}
  .dl-inner{flex-direction:column;gap:40px}
  .dl-splash{width:100%;max-width:260px}
  .install-grid{grid-template-columns:1fr}
  .contact-wrap{grid-template-columns:1fr}
  .footer-top{grid-template-columns:1fr;gap:40px}
  .footer-cols{grid-template-columns:1fr 1fr}
}
@media(max-width:640px){
  section{padding:70px 16px}
  .nav-links,.nav-cta{display:none}
  .hamburger{display:flex}
  .hero-h1{font-size:2.4rem}
  .hero-btns,.hero-stats{flex-wrap:wrap}
  .s-div{display:none}
  .phone-mockup.large{width:220px}
  .phone-mockup.med{width:190px}
  .modal-card{padding:24px 18px}
  .modal-slide{flex-direction:column}
  .modal-slide img{width:100%;max-width:220px;margin:0 auto}
  .cf-row{grid-template-columns:1fr}
  .install-card{flex-direction:column}
  .ic-img{width:100%;height:180px}
  .how-grid{grid-template-columns:1fr}
  .footer-cols{grid-template-columns:1fr}
}
@media(max-width:380px){
  .hero-h1{font-size:2rem}
  .btn-primary,.btn-outline{font-size:.9rem;padding:13px 20px}
}

/* -------------------------------------------
   TOUCH / CLICK ANIMATIONS
   ------------------------------------------- */

/* All touch elements are fixed so they stay at pointer position */
.touch-ring,
.touch-particle,
.touch-shockwave,
.touch-flash {
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
}

/* -- Expanding neon rings -- */
.touch-ring {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #00BFFF;
  animation: touchRingExpand 700ms cubic-bezier(0.2, 0.6, 0.4, 1) forwards;
}
@keyframes touchRingExpand {
  0%   { width: 10px;  height: 10px;  opacity: 1;   border-width: 2px; }
  100% { width: 120px; height: 120px; opacity: 0;   border-width: 1px; }
}

/* -- Particle burst -- */
.touch-particle {
  border-radius: 50%;
  animation: touchParticleFly var(--dur, 600ms) cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}
@keyframes touchParticleFly {
  0%   { transform: translate(-50%, -50%) translate(0, 0)           scale(1);   opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translate(-50%, -50%) translate(var(--tx), var(--ty)) scale(0.2); opacity: 0; }
}

/* -- Shockwave (fast big ring) -- */
.touch-shockwave {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  border: 2px solid #00BFFF;
  animation: touchShockwave 400ms ease-out forwards;
}
@keyframes touchShockwave {
  0%   { width: 4px;   height: 4px;   opacity: 0.9; }
  100% { width: 180px; height: 180px; opacity: 0;   border-width: 1px; }
}

/* -- Trailing cursor glow (desktop) -- */
#cursor-trail {
  position: fixed;
  top: 0; left: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,191,255,0.5) 0%, transparent 70%);
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
  mix-blend-mode: screen;
  will-change: transform;
  animation: trailPulse 2s ease-in-out infinite;
}
@keyframes trailPulse {
  0%,100% { box-shadow: 0 0 8px rgba(0,191,255,0.3);  }
  50%      { box-shadow: 0 0 20px rgba(123,47,255,0.5); }
}

/* Make cursor invisible when cursor-trail is present */
@media (pointer: fine) {
  body { cursor: none; }
  a, button, [role="button"], input, textarea, select { cursor: none; }
}

/* -------------------------------------------
   BACKGROUND ANIMATIONS — ALL SECTIONS
   ------------------------------------------- */

/* Section canvas base */
.section-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}

/* All sections need relative + overflow hidden */
section { position: relative; overflow: hidden; }

/* Ensure content sits above canvas */
section > .container,
section > .section-label,
section > .section-h2,
section > .section-p,
section > .feat-row,
section > .dl-inner,
section > .install-grid,
section > .contact-wrap,
section > .how-grid { position: relative; z-index: 2; }

/* -- Floating DOM particles -- */
.floating-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.fp {
  position: absolute;
  border-radius: 50%;
  animation: fpRise linear infinite;
  will-change: transform, opacity;
}
@keyframes fpRise {
  0%   { transform: translateY(100%) scale(1);   opacity: 0; }
  8%   { opacity: 0.9; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-120%) scale(0.3); opacity: 0; }
}

/* -- Scrolling mesh grid -- */
.mesh-bg {
  position: absolute;
  inset: -56px;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(0,191,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,191,255,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  animation: meshScroll 22s linear infinite;
}
@keyframes meshScroll {
  0%   { transform: translate(0,0); }
  100% { transform: translate(56px, 56px); }
}

/* -- Body-wide Aurora (fixed, behind all) -- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at 15% 10%, rgba(123,47,255,.09), transparent),
    radial-gradient(ellipse 70% 50% at 85% 90%, rgba(0,191,255,.08), transparent),
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(255,20,147,.04), transparent);
  animation: auroraShift 20s ease-in-out infinite alternate;
}
@keyframes auroraShift {
  0%   { opacity: .6; transform: scale(1) rotate(0deg);   }
  50%  { opacity: 1;  transform: scale(1.07) rotate(2deg); }
  100% { opacity: .7; transform: scale(.96) rotate(-1deg); }
}

/* -- Neon vertical beams on features -- */
#features::before,
#features::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 130%;
  top: -15%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0,191,255,.22) 40%, rgba(123,47,255,.18) 70%, transparent 100%);
  pointer-events: none;
  z-index: 0;
  animation: beamSweepX 9s ease-in-out infinite;
}
#features::before { left: 8%; }
#features::after  { right: 8%; animation-delay: -4.5s; animation-duration: 12s; background: linear-gradient(to bottom, transparent, rgba(123,47,255,.2), transparent); }
@keyframes beamSweepX {
  0%,100% { transform: translateX(0);   opacity: .5; }
  50%      { transform: translateX(30px); opacity: 1;  }
}

/* -- Moving neon top-border lines -- */
#how-to-use::before,
#install-guide::before,
#contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #00BFFF 35%, #7B2FFF 65%, transparent 100%);
  background-size: 200% 100%;
  animation: neonLineSweep 4s linear infinite;
  z-index: 2;
}
@keyframes neonLineSweep {
  0%   { background-position:  200% 0; }
  100% { background-position: -200% 0; }
}

/* -- Contact pulsing rings -- */
.contact-bg-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}
.cbr {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: cbrPulse linear infinite;
}
.cbr1 { width: 280px; height: 280px; border-color: rgba(0,191,255,.14);  animation-duration: 5s;  }
.cbr2 { width: 520px; height: 520px; border-color: rgba(123,47,255,.10); animation-duration: 7s;  animation-delay: -2s; }
.cbr3 { width: 780px; height: 780px; border-color: rgba(255,20,147,.07); animation-duration: 10s; animation-delay: -4s; }
@keyframes cbrPulse {
  0%   { transform: scale(.55); opacity: 0;   }
  15%  {                        opacity: 1;   }
  85%  {                        opacity: .45; }
  100% { transform: scale(1.55); opacity: 0;  }
}

/* -- Twinkling star dots on download section -- */
#download::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 22%, rgba(0,191,255,.7)  0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 78% 18%, rgba(123,47,255,.7) 0%, transparent 100%),
    radial-gradient(1px   1px   at 45% 65%, rgba(255,20,147,.5) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 88% 55%, rgba(0,255,170,.5)  0%, transparent 100%),
    radial-gradient(1px   1px   at 28% 82%, rgba(0,191,255,.4)  0%, transparent 100%),
    radial-gradient(1px   1px   at 62% 38%, rgba(123,47,255,.5) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 91% 80%, rgba(255,215,0,.5)  0%, transparent 100%),
    radial-gradient(1px   1px   at 5%  50%, rgba(0,191,255,.4)  0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 55% 90%, rgba(255,20,147,.4) 0%, transparent 100%);
  animation: starTwinkle 3.5s ease-in-out infinite alternate;
}
@keyframes starTwinkle {
  0%   { opacity: .35; }
  50%  { opacity: 1;   }
  100% { opacity: .5;  }
}

/* -- Shimmer sweep on all section labels -- */
.section-label { position: relative; overflow: hidden; }
.section-label::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  animation: labelShimmer 3s ease-in-out infinite;
}
@keyframes labelShimmer {
  0%   { left: -80%; }
  100% { left: 140%; }
}

/* -- Glow corner on card hover -- */
.how-card,
.install-card,
.contact-card,
.feat-info { position: relative; overflow: hidden; }

.how-card::after,
.install-card::after,
.contact-card::after {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,191,255,.13), transparent 70%);
  opacity: 0;
  transition: opacity .4s ease, transform .5s ease;
  pointer-events: none;
  z-index: 0;
}
.how-card:hover::after,
.install-card:hover::after,
.contact-card:hover::after {
  opacity: 1;
  transform: scale(1.5);
}

/* -- Animated gradient border on feature phone wrap -- */
.feat-phone-wrap {
  position: relative;
}
.feat-phone-wrap::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50px;
  background: conic-gradient(from 0deg, #00BFFF, #7B2FFF, #FF1493, #FFD700, #00BFFF);
  animation: conicSpin 4s linear infinite;
  opacity: 0;
  transition: opacity .4s;
  z-index: -1;
  pointer-events: none;
}
.feat-phone-wrap:hover::before { opacity: 1; }
@keyframes conicSpin {
  to { transform: rotate(360deg); }
}

/* -- Floating neon orbs in features section (CSS only, lightweight) -- */
#features .floating-particles .fp:nth-child(1)  { left:5%;  width:4px; height:4px; background:#00BFFF; box-shadow:0 0 8px #00BFFF; animation-duration:9s;  animation-delay:0s;   }
#features .floating-particles .fp:nth-child(2)  { left:15%; width:6px; height:6px; background:#7B2FFF; box-shadow:0 0 10px #7B2FFF; animation-duration:11s; animation-delay:-3s;  }
#features .floating-particles .fp:nth-child(3)  { left:28%; width:3px; height:3px; background:#FF1493; box-shadow:0 0 7px #FF1493; animation-duration:8s;  animation-delay:-1s;  }
#features .floating-particles .fp:nth-child(4)  { left:42%; width:5px; height:5px; background:#00FFAA; box-shadow:0 0 9px #00FFAA; animation-duration:13s; animation-delay:-5s;  }
#features .floating-particles .fp:nth-child(5)  { left:58%; width:4px; height:4px; background:#FFD700; box-shadow:0 0 8px #FFD700; animation-duration:10s; animation-delay:-2s;  }
#features .floating-particles .fp:nth-child(6)  { left:70%; width:6px; height:6px; background:#00BFFF; box-shadow:0 0 10px #00BFFF; animation-duration:12s; animation-delay:-7s; }
#features .floating-particles .fp:nth-child(7)  { left:82%; width:3px; height:3px; background:#7B2FFF; box-shadow:0 0 7px #7B2FFF; animation-duration:9s;  animation-delay:-4s;  }
#features .floating-particles .fp:nth-child(8)  { left:92%; width:5px; height:5px; background:#FF1493; box-shadow:0 0 9px #FF1493; animation-duration:11s; animation-delay:-6s;  }
#features .floating-particles .fp:nth-child(9)  { left:35%; width:4px; height:4px; background:#B24BF3; box-shadow:0 0 8px #B24BF3; animation-duration:14s; animation-delay:-8s;  }
#features .floating-particles .fp:nth-child(10) { left:75%; width:3px; height:3px; background:#00BFFF; box-shadow:0 0 7px #00BFFF; animation-duration:8s;  animation-delay:-9s;  }

/* Install section particles */
#install-guide .floating-particles .fp:nth-child(1)  { left:10%; width:4px; height:4px; background:#00BFFF; box-shadow:0 0 8px #00BFFF; animation-duration:10s; animation-delay:0s;   }
#install-guide .floating-particles .fp:nth-child(2)  { left:30%; width:5px; height:5px; background:#7B2FFF; box-shadow:0 0 9px #7B2FFF; animation-duration:12s; animation-delay:-3s;  }
#install-guide .floating-particles .fp:nth-child(3)  { left:55%; width:3px; height:3px; background:#00FFAA; box-shadow:0 0 7px #00FFAA; animation-duration:9s;  animation-delay:-5s;  }
#install-guide .floating-particles .fp:nth-child(4)  { left:72%; width:6px; height:6px; background:#FFD700; box-shadow:0 0 10px #FFD700; animation-duration:11s; animation-delay:-2s;  }
#install-guide .floating-particles .fp:nth-child(5)  { left:88%; width:4px; height:4px; background:#FF1493; box-shadow:0 0 8px #FF1493; animation-duration:13s; animation-delay:-7s;  }

/* -- Neon footer border -- */
#footer { position: relative; }
#footer::before {
  content: '';
  position: absolute;
  top: 0; left: 5%; right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--purple), var(--pink), transparent);
  opacity: .35;
  animation: footerLineGlow 4s ease-in-out infinite alternate;
}
@keyframes footerLineGlow {
  0%   { opacity: .2; }
  100% { opacity: .6; }
}

/* -- cards-only layout (contact without form) -- */
.contact-wrap.cards-only {
  grid-template-columns: 1fr;
  max-width: 680px;
  margin: 0 auto;
}
.contact-wrap.cards-only .contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) {
  .contact-wrap.cards-only .contact-cards {
    grid-template-columns: 1fr;
  }
}

/* --- CONTACT CARDS — PROPER 2x2 LAYOUT --- */

/* Override the base flex-column for cards-only mode */
.contact-wrap.cards-only {
  grid-template-columns: 1fr !important;
  max-width: 860px !important;
  margin: 0 auto !important;
}

/* 2x2 grid — two cards per row */
.contact-wrap.cards-only .contact-cards {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 20px !important;
}

/* Cards stack vertically (icon on top, text below) */
.contact-wrap.cards-only .contact-card {
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 14px !important;
  padding: 28px 26px !important;
  border-radius: 20px !important;
}

/* Icon bigger in vertical layout */
.contact-wrap.cards-only .cc-icon-wrap {
  width: 54px !important;
  height: 54px !important;
  border-radius: 16px !important;
}

/* Value text bigger */
.contact-wrap.cards-only .cc-value {
  font-size: 1rem !important;
  word-break: break-word !important;
}

.contact-wrap.cards-only .cc-label {
  font-size: .8rem !important;
}

.contact-wrap.cards-only .cc-sub {
  font-size: .82rem !important;
}

/* Arrow floats to bottom right */
.contact-wrap.cards-only .cc-arrow {
  margin-top: auto !important;
  font-size: 1.2rem !important;
  align-self: flex-end !important;
}

/* cc-body fills full width */
.contact-wrap.cards-only .cc-body {
  width: 100% !important;
}

/* Mobile — single column */
@media (max-width: 640px) {
  .contact-wrap.cards-only .contact-cards {
    grid-template-columns: 1fr !important;
  }
  .contact-wrap.cards-only .contact-card {
    flex-direction: row !important;
    align-items: center !important;
  }
  .contact-wrap.cards-only .cc-arrow {
    align-self: center !important;
    margin-top: 0 !important;
  }
}


/* ═══════════════════════════════════════════
   PROMO NOTIFICATION POPUP STYLING
   ═══════════════════════════════════════════ */
.promo-popup {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 340px;
  background: rgba(13, 13, 31, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(123, 47, 255, 0.28);
  border-radius: 20px;
  padding: 20px 24px;
  display: none; /* Controlled by JS flex */
  align-items: flex-start;
  gap: 16px;
  z-index: 999999;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 20px rgba(123, 47, 255, 0.15);
  transform: translateY(150px) scale(0.9);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
  will-change: transform, opacity;
}

.promo-popup.show {
  display: flex;
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Close button (top right X) */
.pp-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 0.85rem;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s, transform 0.2s;
  z-index: 10;
}
.pp-close:hover {
  color: var(--text);
  transform: scale(1.1);
}

/* Icon Wrap */
.pp-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 191, 255, 0.25);
}
.pp-icon-wrap svg {
  width: 20px;
  height: 20px;
}

/* Content Area */
.pp-body {
  flex: 1;
  padding-right: 12px;
}
.pp-body h5 {
  font-family: var(--font2);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.35;
}
.pp-body p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
}
.pp-body a {
  color: var(--cyan);
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.2s;
}
.pp-body a:hover {
  color: #fff;
}

/* Mobile responsive constraints */
@media (max-width: 640px) {
  .promo-popup {
    bottom: 16px;
    left: 16px;
    right: 16px;
    width: auto;
    padding: 16px 20px;
    transform: translateY(120px) scale(0.95);
  }
}

/* ═══ MOBILE FULL SCREEN PROMO NOTIFICATION OVERLAY ═══ */
@media (max-width: 640px) {
  .promo-popup {
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    bottom: 0 !important;
    right: 0 !important;
    left: 0 !important;
    border-radius: 0 !important;
    padding: 40px 24px !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    background: rgba(5, 5, 16, 0.97) !important; /* completely hides mobile screen */
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    box-shadow: none !important;
    border: none !important;
    transform: translateY(100%) !important; /* enter animation from bottom */
    transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.4s ease !important;
  }

  .promo-popup.show {
    transform: translateY(0) !important;
    opacity: 1 !important;
  }

  /* Close button (top right X) - highly visible */
  .pp-close {
    top: 28px !important;
    right: 28px !important;
    font-size: 1.6rem !important;
    color: #fff !important;
    padding: 10px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 50% !important;
    width: 44px !important;
    height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Icon Wrap - big glowing brand icon */
  .pp-icon-wrap {
    width: 90px !important;
    height: 90px !important;
    border-radius: 24px !important;
    margin-bottom: 24px !important;
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.4) !important;
  }
  .pp-icon-wrap svg {
    width: 40px !important;
    height: 40px !important;
  }

  /* Content area adjustments */
  .pp-body {
    padding-right: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .pp-body h5 {
    font-size: 1.45rem !important;
    margin-bottom: 12px !important;
    font-family: var(--font2) !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em !important;
  }

  .pp-body p {
    font-size: 0.95rem !important;
    color: var(--muted) !important;
    line-height: 1.6 !important;
    max-width: 300px !important;
    margin-bottom: 28px !important;
  }

  /* Turn link into a large premium Call-To-Action button */
  .pp-body a {
    display: inline-block !important;
    background: var(--grad) !important;
    color: #fff !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    padding: 16px 36px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    box-shadow: 0 8px 30px rgba(0, 191, 255, 0.35) !important;
    transition: transform 0.2s !important;
    width: 100% !important;
    max-width: 280px !important;
  }
  .pp-body a:active {
    transform: scale(0.96) !important;
  }
}
