:root{
  --bg:#0b0b12;
  --bg-elevated:#151520;
  --card:#181822;
  --border:#26263a;
  --text:#f5f5fa;
  --muted:#a3a3b8;
  --cyan:#22d3ee;
  --purple:#7c3aed;
  --pink:#ec21ec;
  --orange:#f7a927;
  --gradient:linear-gradient(120deg,var(--cyan),var(--purple) 35%,var(--pink) 65%,var(--orange));
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
a{color:var(--pink)}
a:hover{color:var(--orange)}
img{max-width:100%}
.container{max-width:1040px;margin:0 auto;padding:0 24px}

/* ---- Header / nav ---- */
header.site-header{padding:24px 0}
.nav{display:flex;justify-content:space-between;align-items:center;gap:16px;flex-wrap:wrap}
.brand{display:flex;align-items:center;gap:10px;font-weight:800;font-size:1.15rem;color:var(--text);text-decoration:none}
.brand img{width:32px;height:32px;border-radius:8px}
.nav-links{display:flex;gap:24px;flex-wrap:wrap}
.nav-links a{color:var(--muted);text-decoration:none;font-weight:600;font-size:.95rem}
.nav-links a:hover{color:var(--text)}

/* ---- Hero ---- */
.hero{padding:56px 0 72px;text-align:center}
.hero .wordmark{width:min(320px,70vw);margin:0 auto 28px;display:block}
.hero h1{
  font-size:clamp(1.9rem,4vw,3rem);
  line-height:1.15;
  margin:0 0 18px;
  font-weight:800;
  letter-spacing:-.01em;
}
.hero p.lede{
  font-size:1.15rem;
  color:var(--muted);
  max-width:560px;
  margin:0 auto 36px;
}
.button-row{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}
.button{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:14px 28px;
  border-radius:999px;
  font-weight:800;
  font-size:1rem;
  text-decoration:none;
  transition:transform .15s ease;
}
.button:hover{transform:translateY(-2px)}
.button.primary{background:var(--gradient);color:#000}
.button.secondary{background:transparent;color:var(--text);border:1px solid var(--border)}
.button.secondary:hover{color:var(--text);border-color:var(--muted)}

/* ---- Sections ---- */
main{padding:0 0 80px}
.section{margin:80px 0}
.section-head{text-align:center;max-width:600px;margin:0 auto 44px}
.section-head .eyebrow{
  display:inline-block;
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  background:var(--gradient);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  margin-bottom:10px;
}
.section-head h2{font-size:clamp(1.5rem,3vw,2.1rem);margin:0 0 12px;font-weight:800}
.section-head p{color:var(--muted);margin:0}

/* Steps */
.steps{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:20px}
.step{background:var(--card);border:1px solid var(--border);border-radius:20px;padding:28px}
.step .num{
  width:36px;height:36px;border-radius:999px;background:var(--gradient);
  display:flex;align-items:center;justify-content:center;font-weight:800;color:#000;margin-bottom:16px;
}
.step h3{margin:0 0 8px;font-size:1.1rem}
.step p{margin:0;color:var(--muted);font-size:.95rem}

/* Feature grid */
.features{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:20px}
.feature{background:var(--card);border:1px solid var(--border);border-radius:20px;padding:26px}
.feature .emoji{font-size:1.8rem;margin-bottom:12px;display:block}
.feature h3{margin:0 0 8px;font-size:1.05rem}
.feature p{margin:0;color:var(--muted);font-size:.92rem}

/* ---- Screenshots / phone mockups ----
   These are CSS recreations of the real app screens (same copy, same accent
   #ED21EC as Assets.xcassets/AccentColor), not exported simulator PNGs — so they
   stay crisp at any density and can be updated in place when a screen changes.
   The photos inside are AI-generated stand-ins, not real users' Hi-Jacks — see the
   section's own subhead, which says so. Originals live in Brand Images/; the earlier
   procedurally-generated emoji placeholders they replaced are kept in
   BrandAssets/website-shots-backup-emoji/. */
.phones{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:36px 20px;
  align-items:start;
}
.phone-card{margin:0;text-align:center}
.phone-card figcaption{margin-top:18px;color:var(--muted);font-size:.9rem;max-width:240px;margin-inline:auto}
.phone-card figcaption b{display:block;color:var(--text);font-size:.98rem;margin-bottom:4px;font-weight:700}

.phone{
  width:242px;
  margin:0 auto;
  background:#000;
  border:2px solid #2c2c38;
  border-radius:38px;
  padding:7px;
  box-shadow:0 22px 50px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.04) inset;
}
.screen{
  position:relative;
  aspect-ratio:9/19.3;
  border-radius:31px;
  overflow:hidden;
  background:#000;
  color:#fff;
  display:flex;
  flex-direction:column;
  font-size:11px;
  text-align:left;
}
.island{
  position:absolute;top:8px;left:50%;transform:translateX(-50%);
  width:62px;height:17px;border-radius:999px;background:#000;z-index:5;
}
.status-bar{
  display:flex;justify-content:space-between;align-items:center;
  padding:9px 16px 2px;font-size:9.5px;font-weight:700;letter-spacing:.02em;flex:0 0 auto;
}
.status-bar .sig{display:flex;gap:3px;align-items:center;opacity:.95}
.status-bar .sig i{display:block;width:3px;background:#fff;border-radius:1px}
.status-bar .sig i:nth-child(1){height:4px}
.status-bar .sig i:nth-child(2){height:6px}
.status-bar .sig i:nth-child(3){height:8px}
.status-bar .batt{width:17px;height:9px;border:1px solid rgba(255,255,255,.65);border-radius:3px;position:relative}
.status-bar .batt::after{content:"";position:absolute;inset:1.5px;right:5px;background:#fff;border-radius:1px}

/* App chrome */
.app-nav{
  display:flex;align-items:center;gap:6px;padding:8px 14px 10px;flex:0 0 auto;
  border-bottom:1px solid rgba(255,255,255,.07);
}
.app-nav img{width:17px;height:17px;border-radius:5px}
.app-nav .t{font-weight:800;font-size:12px;letter-spacing:-.01em}
.app-nav .bell{margin-left:auto;opacity:.75;font-size:11px}
.app-nav .back{font-size:17px;line-height:1;color:#ed21ec;font-weight:700;margin-right:2px}
.head{display:flex;align-items:center;gap:6px}
.head .title{font-weight:800;font-size:9.5px;letter-spacing:.01em}
.app-body{flex:1 1 auto;padding:12px 12px 6px;display:flex;flex-direction:column;gap:9px;overflow:hidden}
.app-body.center{justify-content:center;align-items:center;text-align:center;gap:14px;padding-bottom:20px}

.ui-btn{
  display:block;width:100%;text-align:center;border:0;
  padding:9px 10px;border-radius:13px;font-weight:800;font-size:10.5px;letter-spacing:.01em;
}
.ui-btn.primary{background:#ed21ec;color:#fff}
.ui-btn.secondary{background:rgba(255,255,255,.1);color:#fff}

.ui-card{background:#1c1c1e;border-radius:15px;padding:10px;display:flex;flex-direction:column;gap:8px}
.ui-card .head{display:flex;align-items:center;gap:6px}
.ui-card .title{font-weight:800;font-size:9.5px;letter-spacing:.01em}
.avatar{
  width:20px;height:20px;border-radius:999px;background:#3a3a3e;
  display:flex;align-items:center;justify-content:center;
  font-size:9px;font-weight:800;color:#c9c9cf;flex:0 0 auto;
}
.avatar.lg{width:34px;height:34px;font-size:14px}
.avatar.ring{box-shadow:0 0 0 2px #ed21ec}
.photo{width:100%;border-radius:11px;object-fit:cover;display:block}
.photo.sm{height:96px}
.photo.md{height:168px}
.sub{color:#9a9aa2;font-size:9px;line-height:1.45}

/* Segmented control ("Who can see this?") */
.seg{display:flex;background:rgba(255,255,255,.1);border-radius:8px;padding:2px;gap:2px}
.seg span{flex:1;text-align:center;font-size:8.5px;font-weight:700;padding:4px 2px;border-radius:6px;color:#b9b9c2}
.seg span.on{background:#5b5b63;color:#fff}

/* Tab bar */
.tab-bar{
  display:flex;justify-content:space-around;align-items:center;
  padding:8px 6px 14px;border-top:1px solid rgba(255,255,255,.08);
  background:rgba(20,20,22,.9);flex:0 0 auto;
}
.tab-bar svg{width:17px;height:17px;fill:#6c6c76;display:block;margin:0 auto 2px}
.tab-bar .tab{text-align:center;font-size:7px;color:#6c6c76;font-weight:600}
.tab-bar .tab.on svg{fill:#ed21ec}
.tab-bar .tab.on{color:#ed21ec}

/* Lock Screen mockup */
.screen.lock{justify-content:flex-start}
.lock-wall{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.lock-scrim{position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.45),rgba(0,0,0,0) 32%,rgba(0,0,0,0) 62%,rgba(0,0,0,.5))}
.lock-top{position:relative;z-index:2;text-align:center;padding-top:34px}
.lock-top .lk{font-size:12px;opacity:.9}
.lock-top .date{font-size:10px;font-weight:600;opacity:.92;margin-top:5px}
.lock-top .time{font-size:52px;font-weight:300;letter-spacing:-.02em;line-height:1;margin-top:-2px}
.lock-mark{position:absolute;right:11px;bottom:66px;width:38%;opacity:.92;z-index:2}
.lock-bottom{position:absolute;left:0;right:0;bottom:12px;z-index:2;display:flex;justify-content:space-between;padding:0 26px;align-items:center}
.lock-bottom .pill{width:28px;height:28px;border-radius:999px;background:rgba(255,255,255,.2);display:flex;align-items:center;justify-content:center;font-size:12px}
.lock-bar{position:absolute;left:50%;transform:translateX(-50%);bottom:6px;width:96px;height:4px;border-radius:999px;background:rgba(255,255,255,.85);z-index:2}

/* Group reveal mystery box */
.mystery{
  width:132px;height:132px;border-radius:20px;
  background:linear-gradient(135deg,#ed21ec,rgba(237,33,236,.55));
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:2px;
  box-shadow:0 12px 30px rgba(237,33,236,.3);
}
.mystery .gift{font-size:40px;line-height:1}
.mystery .q{font-size:20px;font-weight:900;color:#fff;line-height:1}
.shout{font-size:15px;font-weight:900;letter-spacing:-.01em}
.member-row{display:flex;justify-content:center;gap:5px}
.member-row .avatar{width:18px;height:18px;font-size:8px}
.member-row .avatar.dim{opacity:.4}

@media (max-width:520px){
  .phone{width:min(242px,74vw)}
}

/* CTA band */
.cta-band{
  background:var(--bg-elevated);
  border:1px solid var(--border);
  border-radius:28px;
  padding:56px 32px;
  text-align:center;
}
.cta-band h2{margin:0 0 12px;font-size:clamp(1.4rem,3vw,2rem);font-weight:800}
.cta-band p{color:var(--muted);margin:0 0 28px}

/* ---- Footer ---- */
footer.site-footer{border-top:1px solid var(--border);padding:36px 0;color:var(--muted);font-size:.9rem}
footer.site-footer .foot-row{display:flex;justify-content:space-between;align-items:center;gap:16px;flex-wrap:wrap}
footer.site-footer a{color:var(--muted);text-decoration:none}
footer.site-footer a:hover{color:var(--text)}
.foot-links{display:flex;gap:20px;flex-wrap:wrap}

/* ---- Legal pages ---- */
.legal{background:var(--card);border:1px solid var(--border);border-radius:20px;padding:36px;margin:40px 0}
.legal h1{margin-top:0;font-size:1.8rem}
.legal h2{margin-top:32px;font-size:1.2rem}
.legal .small{color:var(--muted);font-size:.9rem;font-style:italic}
.legal ul{padding-left:22px}
.legal p, .legal li{color:#d4d4e0}

@media (max-width:640px){
  .foot-row{flex-direction:column;align-items:flex-start}
}
