
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --p: #ee2b6c;
  --p2: #ff5c90;
  --p-dim: rgba(238,43,108,.12);
  --p-glow: rgba(238,43,108,.30);
  --bg: #f7f5f5;
  --white: #ffffff;
  --dark: #0e0e0e;
  --muted: #7a7a8a;
  --border: rgba(0,0,0,.07);
  --font: 'Poppins', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
@media(min-width:768px){ .container { padding: 0 40px; } }

/* HEADER */
header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(247,245,245,.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 64px; padding: 0 20px;
  max-width: 1160px; margin: 0 auto;
}
@media(min-width:768px){ .nav { height: 72px; padding: 0 40px; } }

.logo { display:flex; align-items:center; gap:6px; text-decoration:none; }
.logo-icon { font-size:30px; color:var(--p); }
.logo-text { font-size:22px; font-weight:900; color:var(--dark); letter-spacing:-1px; }

.nav-links { display:none; gap:32px; align-items:center; }
@media(min-width:768px){ .nav-links { display:flex; } }
.nav-links a { font-size:13px; font-weight:600; color:var(--dark); text-decoration:none; transition:color .2s; }
.nav-links a:hover { color:var(--p); }

.btn-pill {
  background:var(--p); color:#fff; border:none; border-radius:999px;
  padding:10px 22px; font-family:var(--font); font-weight:700; font-size:13px;
  cursor:pointer; white-space:nowrap;
  box-shadow: 0 4px 18px var(--p-glow);
  transition: transform .15s, box-shadow .15s;
}
.btn-pill:hover { transform:translateY(-1px); box-shadow:0 8px 28px var(--p-glow); }

.ham { display:flex; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:4px; }
.ham span { display:block; width:22px; height:2.5px; background:var(--dark); border-radius:3px; }
@media(min-width:768px){ .ham { display:none; } }

.mob-menu {
  position:fixed; inset:0; background:rgba(247,245,245,.97);
  backdrop-filter:blur(16px); z-index:300;
  display:none; flex-direction:column; align-items:center; justify-content:center; gap:28px;
}
.mob-menu.open { display:flex; }
.mob-close { position:absolute; top:22px; right:22px; background:none; border:none; font-size:28px; cursor:pointer; color:var(--dark); line-height:1; }
.mob-menu a { font-size:30px; font-weight:800; color:var(--dark); text-decoration:none; transition:color .2s; }
.mob-menu a:hover { color:var(--p); }
.mob-menu .btn-pill { font-size:17px; padding:14px 36px; margin-top:8px; }

/* HERO */
.hero-outer {
  overflow: hidden;
  background: linear-gradient(160deg, #fff 0%, var(--bg) 60%);
  position: relative;
}
.hero-outer::before {
  content:'';
  position:absolute;
  top:-200px; right:-200px;
  width:700px; height:700px;
  background:radial-gradient(circle, rgba(238,43,108,.10) 0%, transparent 65%);
  border-radius:50%;
  pointer-events:none;
}
.hero {
  padding: 48px 20px 56px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 32px;
  position: relative;
  max-width: 1160px; margin: 0 auto;
}
@media(min-width:768px){
  .hero {
    padding: 96px 40px 112px;
    flex-direction: row;
    text-align: left;
    gap: 80px;
    align-items: center;
  }
}

.hero-blob {
  position:absolute; width:440px; height:440px;
  background:radial-gradient(circle,rgba(238,43,108,.18) 0%,transparent 70%);
  border-radius:50%; top:-60px; left:50%; transform:translateX(-50%);
  pointer-events:none; z-index:0;
}
@media(min-width:768px){ .hero-blob { display:none; } }

.hero-content { position:relative; z-index:1; flex:1; min-width:0; display:flex; flex-direction:column; gap:20px; align-items:center; }
@media(min-width:768px){ .hero-content { align-items:flex-start; gap:28px; } }

.badge {
  display:inline-flex; align-items:center; gap:6px;
  background:var(--p-dim); color:var(--p);
  padding:6px 14px; border-radius:999px;
  font-size:11px; font-weight:700; letter-spacing:.07em; text-transform:uppercase;
}
.badge .material-symbols-outlined { font-size:13px; }

.hero-title {
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight:900; line-height:1.06; letter-spacing:-2px;
}
.hero-title .accent { color:var(--p); font-style:italic; }

.hero-sub {
  font-size:clamp(15px, 1.5vw, 18px); color:var(--muted); line-height:1.75; max-width:460px;
}

.stores { display:flex; flex-wrap:wrap; gap:12px; justify-content:center; }
@media(min-width:768px){ .stores { justify-content:flex-start; } }

.store-btn {
  display:flex; align-items:center; gap:10px;
  background:#111; color:#fff; border:none; border-radius:14px;
  padding:10px 18px; cursor:pointer; min-width:150px;
  transition: transform .15s, background .2s;
}
.store-btn:hover { background:#222; transform:translateY(-2px); }
.store-btn svg { width:26px; height:26px; flex-shrink:0; }
.store-sub { font-size:9px; font-weight:500; opacity:.65; display:block; line-height:1; }
.store-main { font-size:17px; font-weight:700; display:block; line-height:1.3; }

.stats { display:flex; gap:24px; justify-content:center; }
@media(min-width:768px){ .stats { justify-content:flex-start; } }
.stat { display:flex; flex-direction:column; align-items:center; gap:2px; }
@media(min-width:768px){ .stat { align-items:flex-start; } }
.stat-num { font-size:22px; font-weight:900; letter-spacing:-1px; }
.stat-num span { color:var(--p); }
.stat-label { font-size:11px; color:var(--muted); font-weight:500; }
.stat-divider { width:1px; background:var(--border); align-self:stretch; }

.phone-wrap {
  position:relative; z-index:1; flex-shrink:0; display:flex; justify-content:center;
  /* give room for floating cards */
  padding: 20px 40px 20px 40px;
}
.phone-ring {
  position:absolute; inset:-24px; border-radius:50%;
  background:conic-gradient(from 0deg, var(--p-glow), transparent 60%, var(--p-glow));
  filter:blur(40px); animation:spin 8s linear infinite; pointer-events:none;
}
@keyframes spin { to { transform:rotate(360deg); } }

.phone {
  width: 240px;
  background:#1a1a1a; border-radius:40px;
  padding:12px; border:8px solid #1a1a1a;
  box-shadow:0 60px 120px rgba(0,0,0,.35),0 0 0 1px rgba(255,255,255,.05) inset;
  aspect-ratio:9/19;
}
@media(max-width:767px){ .phone { width: clamp(180px, 50vw, 240px); border-radius:clamp(26px,7vw,40px); padding:clamp(8px,2vw,12px); border-width:clamp(5px,1.3vw,8px); } }
.phone img { width:100%; height:100%; object-fit:cover; border-radius:30px; display:block; }
@media(max-width:767px){ .phone img { border-radius:clamp(18px,5vw,30px); } }

.float-card {
  position:absolute; bottom:-8px; left:-28px;
  background:#fff; border-radius:18px; padding:14px 16px;
  box-shadow:0 20px 60px rgba(0,0,0,.14); width:160px;
  border:1px solid rgba(0,0,0,.05); display:none; flex-direction:column; gap:10px;
}
@media(min-width:520px){ .float-card { display:flex; } }
.fc-row { display:flex; align-items:center; gap:8px; }
.fc-avatar { width:28px; height:28px; border-radius:50%; background:var(--p); display:flex; align-items:center; justify-content:center; color:#fff; flex-shrink:0; }
.fc-avatar .material-symbols-outlined { font-size:15px; }
.fc-lines { flex:1; display:flex; flex-direction:column; gap:5px; }
.fc-line { height:6px; border-radius:3px; background:#ebebeb; }
.fc-badge { background:linear-gradient(135deg,#22c55e,#16a34a); color:#fff; font-size:10px; font-weight:700; text-align:center; padding:6px 10px; border-radius:9px; letter-spacing:.04em; }

.float-rating {
  position:absolute; top:12px; right:-20px;
  background:#fff; border-radius:14px; padding:10px 14px;
  box-shadow:0 12px 40px rgba(0,0,0,.12);
  display:none; flex-direction:column; align-items:center; gap:2px;
  border:1px solid rgba(0,0,0,.05);
}
@media(min-width:520px){ .float-rating { display:flex; } }
.fr-stars { color:#f59e0b; font-size:13px; letter-spacing:1px; }
.fr-num { font-size:14px; font-weight:800; }
.fr-label { font-size:9px; color:var(--muted); font-weight:600; }

/* STEPS */
.section-steps { background:#fff; padding:72px 20px; }
@media(min-width:768px){ .section-steps { padding:104px 40px; } }

.sec-eyebrow { color:var(--p); font-weight:700; font-size:11px; letter-spacing:.12em; text-transform:uppercase; text-align:center; display:block; margin-bottom:12px; }
.sec-title { font-size:clamp(26px,4vw,52px); font-weight:900; letter-spacing:-1.5px; text-align:center; line-height:1.1; margin-bottom:14px; }
.sec-sub { text-align:center; color:var(--muted); font-size:clamp(14px,1.4vw,17px); line-height:1.7; max-width:560px; margin:0 auto 52px; }

.steps-scroll-wrap {
  overflow-x:auto; -webkit-overflow-scrolling:touch; scrollbar-width:none;
  padding-left:20px; padding-right:20px; padding-bottom:8px; margin:0 -20px;
}
.steps-scroll-wrap::-webkit-scrollbar { display:none; }

.steps-track { display:flex; gap:16px; width:max-content; }
@media(min-width:768px){
  .steps-scroll-wrap { overflow:visible; margin:0; padding:0; max-width:1160px; margin-left:auto; margin-right:auto; }
  .steps-track { display:grid; grid-template-columns:repeat(3,1fr); width:auto; gap:28px; }
}

.step-card {
  background:var(--bg); border-radius:24px; padding:28px 24px;
  width:240px; flex-shrink:0; border:1.5px solid transparent;
  transition:border-color .3s,transform .3s,box-shadow .3s;
}
@media(min-width:768px){ .step-card { width:auto; } }
.step-card:hover { border-color:rgba(238,43,108,.25); transform:translateY(-5px); box-shadow:0 24px 60px rgba(0,0,0,.08); }

.step-num { font-size:11px; font-weight:800; color:var(--p); letter-spacing:.1em; text-transform:uppercase; margin-bottom:16px; display:block; }
.step-icon-wrap {
  width:56px; height:56px; border-radius:16px;
  background:var(--p-dim); color:var(--p);
  display:flex; align-items:center; justify-content:center; margin-bottom:18px;
  transition:background .3s,color .3s;
}
.step-card:hover .step-icon-wrap { background:var(--p); color:#fff; }
.step-icon-wrap .material-symbols-outlined { font-size:26px; }
.step-card h4 { font-size:17px; font-weight:800; margin-bottom:8px; }
.step-card p { font-size:13px; color:var(--muted); line-height:1.65; }

.scroll-dots { display:flex; justify-content:center; gap:6px; margin-top:20px; }
@media(min-width:768px){ .scroll-dots { display:none; } }
.dot { width:6px; height:6px; border-radius:50%; background:var(--border); transition:background .2s,width .2s; }
.dot.active { background:var(--p); width:18px; border-radius:3px; }

/* SHOWCASE */
.section-showcase { padding:72px 20px; }
@media(min-width:768px){ .section-showcase { padding:104px 40px; } }
.section-showcase .container { max-width:1160px; }

.showcase-header { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:36px; gap:16px; flex-wrap:wrap; }
.showcase-header h3 { font-size:clamp(24px,3.5vw,44px); font-weight:900; letter-spacing:-1px; }
.showcase-header p { font-size:14px; color:var(--muted); margin-top:6px; }

.arrows { display:flex; gap:10px; }
.arrow { width:44px; height:44px; border-radius:50%; border:1.5px solid var(--border); background:#fff; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:background .2s,transform .15s; }
.arrow:hover { background:#f0f0f0; transform:scale(1.05); }
.arrow .material-symbols-outlined { font-size:19px; }

.showcase-scroll { overflow-x:auto; -webkit-overflow-scrolling:touch; scrollbar-width:none; margin:0 -20px; padding:0 20px 16px; }
.showcase-scroll::-webkit-scrollbar { display:none; }

.showcase-track { display:flex; gap:16px; width:max-content; }
@media(min-width:768px){
  .showcase-scroll { overflow:visible; margin:0; padding:0; max-width:1160px; margin-left:auto; margin-right:auto; }
  .showcase-track { display:grid; grid-template-columns:repeat(3,1fr); width:auto; gap:28px; }
}

.sc-card { background:#fff; border-radius:24px; padding:24px; border:1.5px solid var(--border); width:240px; flex-shrink:0; transition:border-color .3s,transform .3s,box-shadow .3s; }
@media(min-width:768px){ .sc-card { width:auto; } }
.sc-card:hover { border-color:rgba(238,43,108,.35); transform:translateY(-5px); box-shadow:0 24px 60px rgba(0,0,0,.08); }
@media(min-width:768px){ .sc-card.lift { transform:translateY(-28px); } .sc-card.lift:hover { transform:translateY(-33px); } }

.sc-card h5 { font-size:17px; font-weight:800; margin-bottom:6px; }
.sc-card p { font-size:12px; color:var(--muted); line-height:1.6; margin-bottom:18px; }
.sc-screen { border-radius:16px; overflow:hidden; aspect-ratio:9/16; background:#eee; }
.sc-screen img { width:100%; height:100%; object-fit:cover; display:block; }

/* CTA */
.section-cta { padding:48px 20px 64px; }
@media(min-width:768px){ .section-cta { padding:80px 40px; } }

.cta-inner {
  background:var(--p); border-radius:clamp(24px,6vw,48px);
  padding:clamp(44px,8vw,96px) clamp(24px,5vw,80px);
  text-align:center; color:#fff; position:relative; overflow:hidden;
  max-width:1160px; margin:0 auto;
}
.cta-blob1,.cta-blob2 { position:absolute; border-radius:50%; background:rgba(255,255,255,.12); filter:blur(60px); pointer-events:none; }
.cta-blob1 { width:320px; height:320px; top:-100px; right:-100px; }
.cta-blob2 { width:320px; height:320px; bottom:-100px; left:-100px; }
.cta-inner h3 { position:relative; font-size:clamp(26px,5.5vw,64px); font-weight:900; letter-spacing:-1.5px; line-height:1.08; max-width:780px; margin:0 auto 18px; }
.cta-inner > p { position:relative; color:rgba(255,255,255,.8); font-size:clamp(14px,2vw,19px); max-width:460px; margin:0 auto 32px; line-height:1.7; }

.cta-waitlist {
  position:relative;
  display:flex; gap:10px; justify-content:center; flex-wrap:wrap;
  margin-bottom:18px;
}
.cta-input {
  background:rgba(255,255,255,.15); border:1.5px solid rgba(255,255,255,.3);
  color:#fff; border-radius:14px; padding:14px 20px;
  font-family:var(--font); font-size:15px; font-weight:500;
  outline:none; width:clamp(220px,40vw,320px);
  transition: border-color .2s, background .2s;
}
.cta-input::placeholder { color:rgba(255,255,255,.55); }
.cta-input:focus { border-color:rgba(255,255,255,.7); background:rgba(255,255,255,.22); }
.cta-btn {
  position:relative; background:#fff; color:var(--p);
  border:none; border-radius:14px;
  padding:14px clamp(20px,3vw,36px);
  font-family:var(--font); font-weight:900;
  font-size:clamp(14px,1.8vw,17px);
  cursor:pointer; white-space:nowrap;
  box-shadow:0 8px 32px rgba(0,0,0,.2);
  transition:transform .15s, box-shadow .15s;
}
.cta-btn:hover { transform:translateY(-2px) scale(1.02); box-shadow:0 16px 40px rgba(0,0,0,.25); }
.cta-small { position:relative; font-size:12px; color:rgba(255,255,255,.65); }
.cta-small strong { color:rgba(255,255,255,.9); }

/* Feature pills */
.feature-pills { display:flex; flex-wrap:wrap; gap:10px; justify-content:center; }
@media(min-width:768px){ .feature-pills { justify-content:flex-start; } }
.fp {
  display:inline-flex; align-items:center; gap:6px;
  background:#fff; border:1.5px solid var(--border);
  border-radius:999px; padding:7px 14px;
  font-size:12px; font-weight:600; color:var(--dark);
  box-shadow:0 2px 10px rgba(0,0,0,.05);
}
.fp .material-symbols-outlined { font-size:15px; color:var(--p); }

/* Waitlist form */
.waitlist-form { width:100%; max-width:440px; }
@media(min-width:768px){ .waitlist-form { max-width:420px; } }
.wf-inner {
  display:flex; gap:0;
  background:#fff; border-radius:14px;
  border:1.5px solid var(--border);
  overflow:hidden;
  box-shadow:0 4px 24px rgba(0,0,0,.08);
  transition: box-shadow .2s;
}
.wf-inner:focus-within { box-shadow:0 4px 24px var(--p-glow); border-color:rgba(238,43,108,.3); }
.wf-input {
  flex:1; border:none; outline:none; padding:14px 16px;
  font-family:var(--font); font-size:14px; font-weight:500;
  background:transparent; color:var(--dark); min-width:0;
}
.wf-input::placeholder { color:#bbb; }
.wf-btn {
  background:var(--p); border:none; cursor:pointer;
  width:48px; display:flex; align-items:center; justify-content:center;
  color:#fff; flex-shrink:0;
  transition: background .2s;
}
.wf-btn:hover { background:#d41f5e; }
.wf-btn .material-symbols-outlined { font-size:20px; }
.wf-note { font-size:11px; color:var(--muted); margin-top:8px; text-align:center; }
@media(min-width:768px){ .wf-note { text-align:left; } }

/* FOOTER */
footer { background:#f0eeee; border-top:1px solid var(--border); padding:clamp(48px,7vw,80px) 20px clamp(24px,3vw,40px); }
@media(min-width:768px){ footer { padding-left:40px; padding-right:40px; } }
.footer-inner { max-width:1160px; margin:0 auto; }
.footer-grid { display:grid; grid-template-columns:1fr 1fr; gap:32px 24px; margin-bottom:40px; }
@media(min-width:768px){ .footer-grid { grid-template-columns:2fr 1fr 1fr; } }
.footer-brand { grid-column:1/-1; }
@media(min-width:768px){ .footer-brand { grid-column:auto; } }
.footer-logo { display:flex; align-items:center; gap:6px; text-decoration:none; margin-bottom:12px; }
.footer-logo .material-symbols-outlined { font-size:26px; color:var(--p); }
.footer-logo-text { font-size:19px; font-weight:900; color:var(--dark); }
.footer-brand p { color:var(--muted); font-size:13px; line-height:1.65; max-width:260px; }
.footer-col h6 { font-weight:700; font-size:11px; letter-spacing:.1em; text-transform:uppercase; margin-bottom:16px; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-col ul a { text-decoration:none; color:var(--muted); font-size:13px; transition:color .2s; }
.footer-col ul a:hover { color:var(--p); }
.footer-bottom { border-top:1px solid var(--border); padding-top:24px; display:flex; flex-wrap:wrap; justify-content:space-between; align-items:center; gap:14px; color:var(--muted); font-size:12px; }
.socials { display:flex; gap:16px; }
.socials a { color:var(--muted); transition:color .2s; }
.socials a:hover { color:var(--p); }
.socials .material-symbols-outlined { font-size:21px; }

/* MOBILE BOTTOM NAV */
.bottom-nav {
  position:fixed; bottom:0; left:0; right:0; z-index:150;
  background:rgba(255,255,255,.92); backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px);
  border-top:1px solid var(--border);
  display:flex; justify-content:space-around; align-items:center;
  height:64px; padding-bottom:env(safe-area-inset-bottom);
}
@media(min-width:768px){ .bottom-nav { display:none; } }
@media(max-width:767px){ body { padding-bottom:72px; } }

.bnav-item { display:flex; flex-direction:column; align-items:center; gap:2px; text-decoration:none; color:var(--muted); font-size:10px; font-weight:600; padding:8px 16px; border-radius:12px; transition:color .2s; }
.bnav-item .material-symbols-outlined { font-size:22px; transition:color .2s; font-variation-settings:'FILL' 0; }
.bnav-item.active { color:var(--p); }
.bnav-item.active .material-symbols-outlined { font-variation-settings:'FILL' 1; }
