/* ─── RESET ─── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
img{display:block;max-width:100%}
button{font:inherit;border:none;cursor:pointer}
a{text-decoration:none}

/* ─── TOKENS ─── */
:root{
  --blue:#0047FF;
  --black:#0A0A0A;
  --white:#FFFFFF;
  --grey:rgba(10,10,10,0.4);
  --border:rgba(0,0,0,0.05);
  --grid:rgba(0,0,0,0.04);
  --display:'Shrikhand',cursive;
  --body:'DM Sans',sans-serif;
  --mono:'DM Mono',monospace;
  --ease:cubic-bezier(0.16,1,0.3,1);
}

/* ─── BASE ─── */
html{scroll-behavior:smooth}
body{
  font-family:var(--body);
  background:var(--white);
  color:var(--black);
  overflow-x:hidden;
  cursor:none;
  background-size:40px 40px;
  background-image:
    linear-gradient(to right,var(--grid) 1px,transparent 1px),
    linear-gradient(to bottom,var(--grid) 1px,transparent 1px);
  -webkit-font-smoothing:antialiased;
}

/* ════ SCROLL PROGRESS ════ */
#scroll-progress{
  position:fixed;top:0;left:0;height:2px;
  background:var(--blue);z-index:9999;width:0%;
  box-shadow:0 0 8px rgba(0,71,255,0.6);
  transition:width 0.08s linear;
}

/* ════ CUSTOM CURSOR ════ */
#c-dot,#c-ring{
  position:fixed;top:0;left:0;
  border-radius:50%;pointer-events:none;
  z-index:99999;
  transform:translate(-50%,-50%);
  will-change:transform;
}
#c-dot{
  width:6px;height:6px;
  background:var(--blue);
  transition:transform 0.15s var(--ease),opacity 0.2s;
}
#c-ring{
  width:36px;height:36px;
  border:1.5px solid var(--blue);
  background:transparent;
  transition:
    width 0.28s var(--ease),
    height 0.28s var(--ease),
    border-radius 0.28s var(--ease),
    background 0.28s ease,
    border-color 0.25s ease,
    opacity 0.2s;
}
body.c-hover #c-ring{
  width:58px;height:58px;
  background:rgba(0,71,255,0.07);
}
body.c-active #c-dot{transform:translate(-50%,-50%) scale(0.4)}
body.c-text #c-ring{
  width:3px;height:44px;
  border-radius:2px;
  background:var(--black);
  border-color:transparent;
}
body.c-text #c-dot{opacity:0}
body.c-white #c-dot{background:var(--white)}
body.c-white #c-ring{border-color:var(--white)}
body.c-white.c-hover #c-ring{background:rgba(255,255,255,0.15)}
body.c-white.c-text #c-ring{background:var(--white)}

/* ════ NAV ════ */
nav{
  position:fixed;top:0;left:0;right:0;z-index:200;
  display:flex;align-items:center;justify-content:space-between;
  padding:20px 60px;
  background:rgba(255,255,255,0.86);
  backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);
  border-bottom:1px solid var(--border);
  transition:padding 0.4s var(--ease),background 0.35s ease;
}
nav.scrolled{padding-top:13px;padding-bottom:13px;background:rgba(255,255,255,0.97)}
.logo{display:flex;align-items:center;gap:8px;color:var(--black)}
.logo-sq{
  width:8px;height:8px;background:var(--blue);flex-shrink:0;
  transition:transform 0.45s var(--ease);
}
.logo:hover .logo-sq{transform:rotate(90deg) scale(1.3)}
.logo-text{font-family:var(--display);font-size:18px;font-weight:700;letter-spacing:-0.02em}
.nav-cta{
  font-size:12px;font-weight:500;
  letter-spacing:0.1em;text-transform:uppercase;
  color:var(--black);
  display:flex;align-items:center;gap:5px;
  position:relative;padding-bottom:2px;
}
.nav-cta::after{
  content:'';position:absolute;bottom:0;left:0;right:0;
  height:1px;background:var(--black);
  transform:scaleX(0);transform-origin:left;
  transition:transform 0.3s var(--ease);
}
.nav-cta:hover::after{transform:scaleX(1)}
.nav-cta .arrow{transition:transform 0.3s var(--ease);display:inline-block}
.nav-cta:hover .arrow{transform:translateX(5px)}

/* ════ HERO — centered ════ */
#hero{
  min-height:80svh;
  padding-top:130px;padding-bottom:80px;
  display:flex;flex-direction:column;
  align-items:center;justify-content:center;
  position:relative;text-align:center;
  overflow:hidden;
}
.hero-glow{
  position:absolute;top:15%;left:50%;
  transform:translateX(-50%);
  width:700px;height:700px;border-radius:50%;
  background:radial-gradient(circle,rgba(0,71,255,0.1) 0%,transparent 68%);
  filter:blur(50px);pointer-events:none;
  animation:pulseGlow 5s ease-in-out infinite alternate;
}
@keyframes pulseGlow{
  from{opacity:0.55;transform:translateX(-50%) scale(1)}
  to  {opacity:1;   transform:translateX(-50%) scale(1.1)}
}
.hero-inner{
  position:relative;z-index:2;
  max-width:920px;margin:0 auto;padding:0 24px;
}

/* Eyebrow */
.eyebrow{
  font-size:11px;font-weight:600;
  letter-spacing:0.15em;text-transform:uppercase;
  color:var(--blue);
  display:flex;align-items:center;justify-content:center;gap:7px;
  margin-bottom:32px;
  opacity:0;animation:fadeUp 0.7s ease forwards 0.1s;
}
.green-dot{
  width:7px;height:7px;background:#00C853;border-radius:50%;flex-shrink:0;
  box-shadow:0 0 7px rgba(0,200,83,0.7);
  animation:dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse{
  0%,100%{box-shadow:0 0 5px rgba(0,200,83,0.6)}
  50%    {box-shadow:0 0 12px rgba(0,200,83,0.9)}
}

/* H1 */
.hero-h1{
  font-family:var(--display);
  font-size:clamp(52px,8.5vw,72px);font-weight:800;
  line-height:0.95;letter-spacing:-0.04em;
  margin-bottom:36px;
  opacity:0;animation:fadeUp 0.9s ease forwards 0.25s;
}
.hero-h1 .line-dark {color:var(--black);display:block;padding-bottom:6px}
.hero-h1 .line-faded{color:var(--grey); display:block;padding-bottom:6px}
.hero-h1 .word-blue {color:var(--blue);font-style:italic}

/* Sub */
.hero-sub{
  font-size:clamp(16px,1.8vw,20px);line-height:1.65;
  color:rgba(10,10,10,0.6);
  max-width:660px;margin:0 auto 48px;
  opacity:0;animation:fadeUp 0.9s ease forwards 0.4s;
}

/* CTA */
.hero-cta-wrap{
  display:flex;justify-content:center;
  margin-bottom:32px;
  opacity:0;animation:fadeUp 0.9s ease forwards 0.55s;
}
.btn{
  display:inline-flex;align-items:center;gap:8px;
  padding:16px 28px;font-size:15px;font-weight:500;
  border-radius:6px;position:relative;overflow:hidden;
  transition:transform 0.25s var(--ease),box-shadow 0.25s ease;
}
.btn::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(255,255,255,0.16) 0%,transparent 60%);
  opacity:0;transition:opacity 0.3s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn:hover::after{opacity:1}
.btn:active{transform:translateY(0)}
.btn svg{transition:transform 0.3s var(--ease);flex-shrink:0}
.btn:hover svg{transform:translate(2px,-2px)}
.btn-blue{
  background:var(--blue);color:var(--white);
  box-shadow:0 10px 30px rgba(0,71,255,0.22);
}
.btn-blue:hover{box-shadow:0 18px 44px rgba(0,71,255,0.32)}
.btn-white{
  background:var(--white);color:var(--black);
  box-shadow:0 4px 20px rgba(0,0,0,0.12);
}
.btn-white:hover{box-shadow:0 10px 32px rgba(0,0,0,0.18)}

/* Trust */
.hero-trust{
  display:flex;flex-direction:column;align-items:center;gap:20px;
  opacity:0;animation:fadeUp 0.9s ease forwards 0.7s;
}
.store-badges{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}
.store-badge{
  background:var(--black);color:var(--white);
  border-radius:10px;padding:9px 16px;
  display:flex;align-items:center;gap:9px;
  font-size:11px;line-height:1.3;
  transition:transform 0.25s var(--ease),box-shadow 0.25s ease;
}
.store-badge:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(0,0,0,0.25)}
.store-badge small{display:block;font-size:9px;opacity:0.5;letter-spacing:0.05em;text-transform:uppercase}
.store-badge strong{font-size:12px;font-weight:600}
.social-proof{display:flex;align-items:center;gap:14px;font-size:12px}
.sp-left{display:flex;align-items:center;gap:6px;font-weight:500}
.sp-divider{width:1px;height:16px;background:rgba(0,0,0,0.12)}
.sp-right{color:var(--grey)}

/* ─── THREE THINGS ─── */
#three-things{padding:160px 0}
.container{max-width:1280px;margin:0 auto;padding:0 60px}
.three-grid{display:grid;grid-template-columns:1fr 1.5fr;gap:80px;align-items:start}
.sticky-left{position:sticky;top:120px}
.section-eyebrow{
  font-size:11px;font-weight:600;
  letter-spacing:0.15em;text-transform:uppercase;
  color:var(--blue);margin-bottom:24px;
}
.section-heading{
  font-family:var(--display);
  font-size:clamp(36px,4vw,54px);font-weight:800;
  line-height:1.05;letter-spacing:-0.03em;color:var(--black);
}
.feature-list{display:flex;flex-direction:column}
.feature-item{
  padding:32px 0;
  border-bottom:1px solid var(--border);
  position:relative;overflow:hidden;
  transition:padding 0.35s var(--ease);
}
.feature-item:first-child{border-top:1px solid var(--border)}
.feature-bg{
  position:absolute;inset:0;
  background:linear-gradient(to right,rgba(0,71,255,0.04),transparent);
  opacity:0;transition:opacity 0.35s ease;pointer-events:none;
}
.feature-item:hover .feature-bg,
.feature-item.fi-active .feature-bg{opacity:1}
.feature-item:hover,
.feature-item.fi-active{padding-left:20px;padding-right:20px;margin:0 -20px}
.feature-inner{
  display:flex;align-items:flex-start;justify-content:space-between;
  gap:16px;position:relative;z-index:1;
}
.feature-num{
  font-family:var(--mono);font-size:12px;font-weight:500;
  color:var(--blue);margin-bottom:12px;
  display:inline-flex;align-items:center;justify-content:center;
  width:28px;height:28px;border-radius:50%;
  transition:all 0.35s var(--ease);
}
.feature-item:hover .feature-num,
.feature-item.fi-active .feature-num{
  background:rgba(0,71,255,0.08);
  border:1.5px solid rgba(0,71,255,0.25);
}
.feature-title{
  font-family:var(--body);font-size:24px;font-weight:800;
  color:var(--black);letter-spacing:-0.01em;line-height:1.3;margin-bottom:12px;
}
.feature-desc{font-size:15px;line-height:1.65;color:var(--grey)}
.feature-arrow{
  color:var(--blue);font-size:18px;align-self:center;flex-shrink:0;
  opacity:0;transform:translateX(-8px);
  transition:opacity 0.3s ease,transform 0.3s var(--ease);
}
.feature-item:hover .feature-arrow,
.feature-item.fi-active .feature-arrow{opacity:1;transform:translateX(0)}
.section-footer{margin-top:40px}
.section-footer-note{font-size:12px;color:var(--grey);margin-top:12px}

/* ─── SHOWCASE ─── */
#showcase{padding:120px 0 0}
.showcase-header{
  display:grid;grid-template-columns:1fr 1fr;
  gap:80px;margin-bottom:80px;align-items:end;
}
.showcase-heading{
  font-family:var(--display);
  font-size:clamp(40px,5vw,64px);font-weight:800;
  line-height:1.02;letter-spacing:-0.04em;color:var(--black);
}
.showcase-heading .wb{color:var(--blue)}
.showcase-para{font-size:17px;line-height:1.7;color:rgba(10,10,10,0.6)}
.stats-row{
  display:grid;grid-template-columns:repeat(3,1fr);
  border-top:1px solid var(--border);
  padding-top:36px;margin-top:36px;
}
.stat{padding-right:32px}
.stat-num{
  font-family:var(--body);
  font-size:clamp(36px,3.5vw,52px);font-weight:800;
  line-height:1;letter-spacing:-0.02em;
  color:var(--black);margin-bottom:8px;
}
.stat-num.blue{color:var(--blue)}
.stat-label{font-size:10px;font-weight:600;letter-spacing:0.12em;text-transform:uppercase;color:var(--grey)}

/* Phones */
.phones-outer{position:relative;padding:40px 0 80px; display:flex; justify-content:center;}
.phones-glow{
  position:absolute;top:50%;left:50%;
  transform:translate(-50%,-50%);
  width:70%;height:60%;
  background:rgba(0,71,255,0.05);
  filter:blur(80px);border-radius:50%;pointer-events:none;
}
.phones-container{
  display:flex;align-items:flex-end;justify-content:center;
  position:relative;
}
.phone-item{
  flex-shrink:0;position:relative;
}
.phone-item img{
  filter:drop-shadow(0 24px 48px rgba(0,0,0,0.16));
  transition:filter 0.4s ease,transform 0.4s var(--ease);
  height: 500px;
}
.phone-item:nth-child(3) img{filter:drop-shadow(0 32px 64px rgba(0,71,255,0.18))}
.phone-item:hover{z-index:50!important}
.phone-item:hover img{transform:translateY(-14px);filter:drop-shadow(0 44px 64px rgba(0,0,0,0.24))}
@keyframes floatBob{0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}
.float-bob img{animation:floatBob 3.2s ease-in-out infinite}

/* ─── MARQUEE ─── */
.marquee-wrap{
  background:var(--black);overflow:hidden;
  padding:20px 0;margin-top:80px;white-space:nowrap;
}
.marquee-track{
  display:inline-flex;
  animation:marquee 22s linear infinite;
}
.marquee-wrap:hover .marquee-track{animation-play-state:paused}
.marquee-item{
  font-family:var(--body);font-size:16px;font-weight:600;
  text-transform:uppercase;letter-spacing:0.08em;
  color:var(--white);
  padding:0 24px;
  display:flex;align-items:center;gap:24px;
  transition:color 0.3s ease;
}
.marquee-item:hover{color:rgba(255,255,255,0.65)}
.mdot{color:var(--blue);font-size:10px}
@keyframes marquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}

/* ─── CTA ─── */
#cta{background:#0051CD;color:var(--white);padding:140px 0 0}
#cta .container{position:relative}
.cta-topbar{
  display:flex;align-items:center;justify-content:center;
  gap: 10px;
  margin-bottom:40px;
}
.cta-eyebrow{font-size:11px;font-weight:600;letter-spacing:0.15em;text-transform:uppercase;color:var(--white)}
.cta-logo{display:flex;align-items:center;gap:8px}
.cta-logo-sq{width:8px;height:8px;background:var(--blue)}
.cta-logo-text{font-family:var(--display);font-size:18px;font-weight:700;color:var(--white)}
.cta-headline{
  font-family:var(--display);
  font-size:clamp(48px,7.5vw,82px);font-weight:800;
  line-height:0.97;letter-spacing:-0.04em;
  color:var(--white);margin:0 auto 36px;max-width:920px;position:relative;
  text-align:center;
}

@keyframes cPulse{from{transform:scale(1);opacity:.8}to{transform:scale(1.18);opacity:1}}
.cta-sub{
  font-size:18px;line-height:1.6;color:rgba(255,255,255,0.55);
  max-width:620px;margin:0 auto 60px;text-align:center;
}
.cta-actions{
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:32px;margin-bottom:100px;
}
.cta-actions .btn{
  padding:22px 48px;font-size:18px;border-radius:12px;
}
.cta-right{text-align:center;display:flex;gap:24px}
.cta-link{
  display:block;font-size:13px;color:rgba(255,255,255,0.38);
  margin-bottom:6px;
  transition:color 0.25s ease,letter-spacing 0.25s ease;
}
.cta-link:hover{color:rgba(255,255,255,0.85);letter-spacing:0.01em}
.cta-footer{
  border-top:1px solid rgba(255,255,255,0.08);
  padding:24px 0;
  display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:8px;
}
.cta-footer-text{font-size:12px;color:rgba(227, 227, 227, 1)}


/* ─── REVEAL ─── */
.reveal{
  opacity:0;transform:translateY(32px);
  transition:opacity 0.75s var(--ease),transform 0.75s var(--ease);
}
.reveal.visible{opacity:1;transform:translateY(0)}
.rd1{transition-delay:0.1s}
.rd2{transition-delay:0.2s}
.rd3{transition-delay:0.3s}

/* ─── KEYFRAMES ─── */
@keyframes fadeUp{
  from{opacity:0;transform:translateY(28px)}
  to  {opacity:1;transform:translateY(0)}
}

/* ─── RESPONSIVE ─── */
@media(max-width:1024px){
  nav{padding:18px 32px}
  .container{padding:0 32px}
  .three-grid{grid-template-columns:1fr;gap:48px}
  .sticky-left{position:static}
  .showcase-header{grid-template-columns:1fr;gap:32px}
}
@media(max-width:768px){
  nav{padding:16px 20px}
  .container{padding:0 20px}
  #hero{padding-top:110px}
  
  /* Hero typography weight adjustment */
  .hero-h1{
    font-size:clamp(44px,10vw,64px);
    font-weight:500 !important;
  }
  
  /* Hero CTA button full width and centered */
  .hero-cta-wrap {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }
  .hero-cta-wrap .btn {
    width: 100% !important;
    justify-content: center !important;
  }
  
  /* Showcase section centering */
  .showcase-header {
    text-align: center !important;
  }
  .showcase-para {
    text-align: center !important;
  }
  .stats-row{
    grid-template-columns:repeat(3,1fr) !important;
  }
  .stat{
    text-align: center !important;
    padding-right:0 !important;
  }
  
  /* What You Get section centering & full width CTA button */
  .sticky-left {
    text-align: center !important;
  }
  .feature-item {
    text-align: center !important;
  }
  .feature-inner {
    justify-content: center !important;
  }
  .feature-inner > div {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .feature-num {
    margin: 0 auto 12px !important;
  }
  .section-footer {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .section-footer .btn {
    width: 100% !important;
    justify-content: center !important;
  }
  
  /* Phone Fan: 3 images, centered, overflow layout, no horizontal scroll */
  .phones-outer {
    overflow: hidden !important;
    width: 100% !important;
  }
  .phone-item:nth-child(1),
  .phone-item:nth-child(5) {
    display: none !important;
  }
  .phones-container{
    overflow: visible !important;
    overflow-x: visible !important;
    justify-content: center !important;
    display: flex !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 0 !important;
    align-items: flex-end !important;
    margin-top: 40px !important;
  }
  .phone-item{
    transform: none !important;
    scroll-snap-align: none !important;
    flex-shrink: 0 !important;
  }
  .phone-item img {
    height: 360px !important;
    width: auto !important;
  }
  .phone-item:nth-child(3) img {
    height: 420px !important;
    width: auto !important;
  }
  /* Perfect overlaps and 3D depth layers for mobile with clean overflow */
  .phone-item:nth-child(2) {
    margin-right: -30px !important;
    z-index: 20 !important;
    transform: scale(0.85) translateY(20px) !important;
    transform-origin: bottom right !important;
    opacity: 0.9 !important;
  }
  .phone-item:nth-child(3) {
    z-index: 30 !important;
    transform: scale(1.05) !important;
    transform-origin: bottom center !important;
  }
  .phone-item:nth-child(4) {
    margin-left: -30px !important;
    z-index: 20 !important;
    transform: scale(0.85) translateY(20px) !important;
    transform-origin: bottom left !important;
    opacity: 0.9 !important;
  }
  
  #three-things,#showcase,#cta{padding:80px 0}
  
  /* One Last Thing section centering & full width CTA button */
  .cta-headline {
    font-weight: 500 !important;
  }
  .cta-actions {
    align-items: center !important;
    width: 100% !important;
  }
  .cta-actions .btn {
    width: 100% !important;
    justify-content: center !important;
  }
  .cta-right {
    text-align: center !important;
    justify-content: center !important;
    width: 100% !important;
    display: flex !important;
    gap: 24px !important;
  }
  .cta-footer {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    gap: 16px;
  }
}
@media(pointer:coarse){
  body{cursor:auto}
  #c-dot,#c-ring{display:none}
}

.validation {
  background-color: var(--blue);
  color: var(--white);
}
.validation .section-heading {
  color: var(--white);
}
