:root{
  --bg:#0b1220;
  --bg2:#0f172a;
  --surface:rgba(255,255,255,.06);
  --surface2:rgba(255,255,255,.10);
  --border:rgba(255,255,255,.12);
  --text:#eaf0ff;
  --muted:rgba(234,240,255,.72);
  --muted2:rgba(234,240,255,.58);
  --primary:#2ecc71;
  --secondary:#2c3e50;
  --accent:#ff7e5f;
  --shadow:0 18px 45px rgba(0,0,0,.35);
  --radius-lg:28px;
  --radius-md:18px;
  --radius-sm:14px;
  --container:1120px
}

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

body{
  font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
  line-height:1.45;
  color:var(--text);
  background:
    radial-gradient(1200px 800px at 80% 10%, rgba(46,204,113,.18), transparent 55%),
    radial-gradient(950px 650px at 10% 20%, rgba(255,126,95,.16), transparent 50%),
    linear-gradient(180deg,var(--bg),var(--bg2));
  overflow-x:hidden
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button{font:inherit}
::selection{background:rgba(46,204,113,.28)}

.container{
  width:min(var(--container),calc(100% - 48px));
  margin:0 auto
}

.nav{
  position:sticky;
  top:0;
  z-index:20;
  background:linear-gradient(180deg,rgba(11,18,32,.82),rgba(11,18,32,.40));
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,.08)
}

.navInner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 0;
  gap:18px
}

.brand{
  display:flex;
  align-items:center;
  gap:12px
}

.brandLogo{
  height:48px;
  width:auto;
  display:block;
  filter:drop-shadow(0 12px 20px rgba(0,0,0,.35))
}

.brandMark{
  width:36px;
  height:36px;
  border-radius:12px;
  background:linear-gradient(135deg,rgba(46,204,113,.22),rgba(255,126,95,.18));
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.10)
}

.brandMark img{
  width:24px;
  height:24px;
  object-fit:contain;
  filter:drop-shadow(0 12px 20px rgba(0,0,0,.35))
}

.brandName{
  font-weight:750;
  letter-spacing:.2px
}

.navLinks{
  display:flex;
  align-items:center;
  gap:18px
}

.navLinks a{
  color:var(--muted);
  font-size:14px
}

.navLinks a:hover{color:var(--text)}

.ctaRow{
  display:flex;
  align-items:center;
  gap:10px
}

.pill{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:var(--text);
  font-weight:650;
  font-size:14px
}

.pill:hover{background:rgba(255,255,255,.09)}

.pillPrimary{
  border:none;
  background:linear-gradient(135deg,var(--primary),#23b863);
  color:#06110a;
  box-shadow:0 14px 35px rgba(46,204,113,.25)
}

.pillPrimary:hover{
  filter:saturate(1.05);
  transform:translateY(-1px)
}

.hero{padding:64px 0 26px}

.heroGrid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:26px;
  align-items:center
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:var(--muted);
  font-size:13px
}

.kdot{
  width:8px;
  height:8px;
  border-radius:999px;
  background:var(--accent);
  box-shadow:0 0 0 6px rgba(255,126,95,.14)
}

h1{
  margin:16px 0 12px;
  font-size:54px;
  line-height:1.06;
  letter-spacing:-.02em
}

h1 .grad{
  background:linear-gradient(135deg,var(--primary),var(--accent));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent
}

p.lead{
  margin:0 0 18px;
  color:var(--muted);
  font-size:18px;
  max-width:52ch
}

.storeRow{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
  margin-top:10px
}

.storeBadge{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14)
}

.storeBadge:hover{background:rgba(255,255,255,.09)}

.storeBadge small{
  display:block;
  color:var(--muted2);
  font-size:11px;
  line-height:1.1
}

.storeBadge strong{
  display:block;
  font-size:14px;
  letter-spacing:.2px
}

.badgeIcon{
  width:20px;
  height:20px;
  border-radius:6px;
  background:rgba(255,255,255,.10);
  display:grid;
  place-items:center
}

.heroCard{
  position:relative;
  border-radius:var(--radius-lg);
  background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.05));
  border:1px solid rgba(255,255,255,.12);
  box-shadow:var(--shadow);
  overflow:hidden
}

.heroCardInner{padding:20px}

.heroMock{
  max-height:80vh;              /* 👈 key fix */
  border-radius:22px;
  background:linear-gradient(180deg,rgba(255,255,255,.10),rgba(255,255,255,.05));
  border:1px solid rgba(255,255,255,.14);
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:8px;
}

.heroMock img{
  width:100%;
  height:100%;
  object-fit:cover;          /* 👈 back to cover ONLY for hero */
  object-position:top;       /* 👈 keeps top UI visible */
  opacity:.92;
}

.floating{
  position:absolute;
  inset:auto;
  right:16px;
  bottom:16px;
  padding:12px 12px;
  border-radius:16px;
  background:rgba(11,18,32,.72);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(10px);
  max-width:260px
}

.floating strong{
  display:block;
  font-size:13px
}

.floating span{
  display:block;
  color:var(--muted);
  font-size:12px;
  margin-top:4px
}

.section{padding:58px 0}

.sectionHead{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:22px
}

.sectionTitle{
  margin:0;
  font-size:34px;
  letter-spacing:-.01em
}

.sectionSub{
  margin:0;
  color:var(--muted);
  max-width:60ch
}

.featureGrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px
}

.feature{
  border-radius:var(--radius-lg);
  background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.12);
  overflow:hidden
}

.featureInner{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:14px;
  align-items:center;
  padding:18px
}

.feature h3{
  margin:0 0 8px;
  font-size:20px
}

.feature p{
  margin:0;
  color:var(--muted);
  font-size:14px
}

.chipRow{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:12px
}

.chip{
  padding:8px 10px;
  border-radius:999px;
  font-size:12px;
  color:var(--muted);
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06)
}

.shot{
  border-radius:20px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:8px
}

.shot img{
  width:100%;
  height:auto;
  display:block;
  object-fit:contain;
  object-position:center
}

.stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:18px
}

.stat{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  padding:14px
}

.stat strong{
  display:block;
  font-size:18px
}

.stat span{
  display:block;
  color:var(--muted);
  font-size:12px;
  margin-top:4px
}

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

.quote{
  border-radius:var(--radius-lg);
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.04));
  padding:18px
}

.quote p{
  margin:0;
  color:var(--text);
  font-size:14px
}

.quote .who{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:14px;
  color:var(--muted);
  font-size:12px
}

.avatar{
  width:34px;
  height:34px;
  border-radius:12px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.12);
  overflow:hidden
}

.avatar img{
  width:100%;
  height:100%;
  object-fit:cover
}

.faq{
  border-radius:var(--radius-lg);
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  overflow:hidden
}

.faqItem{
  border-top:1px solid rgba(255,255,255,.10)
}

.faqItem:first-child{border-top:none}

.faqBtn{
  width:100%;
  text-align:left;
  background:transparent;
  border:0;
  cursor:pointer;
  padding:16px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  color:var(--text)
}

.faqBtn span{font-weight:650}

.faqBtn i{
  width:28px;
  height:28px;
  border-radius:10px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:var(--muted)
}

.faqPanel{
  max-height:0;
  overflow:hidden;
  transition:max-height .25s ease
}

.faqPanelInner{
  padding:0 18px 16px;
  color:var(--muted);
  font-size:14px;
  max-width:86ch
}

.callout{
  border-radius:var(--radius-lg);
  border:1px solid rgba(255,255,255,.12);
  background:radial-gradient(1000px 320px at 40% 0%, rgba(46,204,113,.20), rgba(255,255,255,.04) 55%);
  padding:22px;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:12px
}

.callout h3{
  margin:0;
  font-size:20px
}

.callout p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  max-width:62ch
}

.footer{
  padding:26px 0 40px;
  color:var(--muted);
  font-size:13px
}

.footerGrid{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap
}

.footer a{color:var(--muted)}
.footer a:hover{color:var(--text)}

.legalRow{
  display:flex;
  gap:14px;
  flex-wrap:wrap
}

@media (max-width:960px){
  h1{font-size:44px}
  .heroGrid{grid-template-columns:1fr}
  .featureGrid{grid-template-columns:1fr}
  .featureInner{grid-template-columns:1fr}
  .testimonials{grid-template-columns:1fr}
  .stats{grid-template-columns:1fr}
}

@media (max-width:520px){
  .container{width:min(var(--container),calc(100% - 32px))}
  h1{font-size:38px}
  .navLinks{display:none}
  .navInner{justify-content:center;flex-wrap:wrap}
  .ctaRow{width:100%;justify-content:center}
}
