:root{
--bg:#0a1628;
--bg-alt:#0c1a30;
--card:#0f2038;
--card-border:rgba(255,255,255,.07);
--cyan:#22c5e8;
--cyan-soft:rgba(34,197,232,.15);
--text:#e9edf2;
--muted:#8b95a3;
--muted-2:#6c7684;
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
background:var(--bg);
color:var(--text);
font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
line-height:1.5;
-webkit-font-smoothing:antialiased;
}
.wrap{max-width:1140px;margin:0 auto;padding:0 24px}
a{color:inherit;text-decoration:none}
.eyebrow{
color:var(--cyan);
font-size:12px;
font-weight:700;
letter-spacing:.18em;
text-transform:uppercase;
}
h1,h2,h3{letter-spacing:-.02em;line-height:1.1}

/* NAV */
nav{
position:sticky;top:0;z-index:50;
background:rgba(10,22,40,.75);
backdrop-filter:blur(12px);
border-bottom:1px solid var(--card-border);
}
.nav-inner{display:flex;align-items:center;justify-content:space-between;height:64px}
.brand{display:flex;align-items:center;gap:10px;font-weight:700;font-size:17px}
.logo{
width:30px;height:30px;border-radius:8px;
background:linear-gradient(135deg,#3fd0ee,#1a9cc4);
display:flex;align-items:center;justify-content:center;
color:#04222b;font-weight:800;font-size:16px;
}
.nav-links{display:flex;gap:32px;font-size:14px;color:var(--muted)}
.nav-links a:hover{color:var(--text)}

/* HERO */
.hero{padding:28px 0 40px}
.hero-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:48px;align-items:center}
.hero .eyebrow{display:inline-block;margin-bottom:18px}
.hero-download{display:flex;flex-direction:column;align-items:flex-start;gap:10px;margin:0 0 26px}
.appstore-badge{display:inline-block;line-height:0}
.appstore-badge img{height:52px;width:auto;display:block}
/* "Available soon" variant — matches the App Store badge shape/color so the
   hero still reads as an app-launch page, but signals pre-launch instead
   of a live download. Not a link (no href) since there's nothing to
   download yet. */
.appstore-badge--soon{
  display:inline-flex;align-items:center;gap:10px;
  background:#000;color:#fff;
  padding:10px 18px;border-radius:12px;
  height:52px;box-sizing:border-box;
  border:1px solid rgba(255,255,255,.15);
  line-height:1.1;
}
.appstore-badge--soon .appstore-glyph{width:22px;height:22px;flex-shrink:0}
.appstore-badge--soon .appstore-copy{display:flex;flex-direction:column}
.appstore-badge--soon .appstore-lead{font-size:10px;letter-spacing:.4px;opacity:.85}
.appstore-badge--soon .appstore-brand{font-size:18px;font-weight:600;letter-spacing:.2px}
.launching{font-size:13px;color:var(--muted)}
/* Status line under the notify form — success in cyan, error in red-ish. */
.notify-status{font-size:13px;color:var(--muted);margin-top:14px;min-height:18px;text-align:center}
.notify-status.is-success{color:var(--cyan)}
.notify-status.is-error{color:#f47b7b}
.hero h1{font-size:56px;font-weight:800;margin:8px 0 22px}
.hero p.lead{color:var(--muted);font-size:15px;max-width:440px}
.hero-visual{display:flex;justify-content:center}
.hero-logo{
width:340px;height:340px;max-width:100%;
border-radius:50%;
box-shadow:0 24px 64px rgba(0,0,0,.45);
}

/* SECTION HEADER */
section{padding:70px 0}
.sec-head{text-align:center;max-width:760px;margin:0 auto 54px}
.sec-head h2{font-size:40px;font-weight:800;margin:16px 0 18px}
.sec-head p{color:var(--muted);font-size:15px;max-width:620px;margin:0 auto}

/* CARDS */
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.card{
background:linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,0));
border:1px solid var(--card-border);
border-radius:16px;
padding:20px 20px 28px;
display:flex;
flex-direction:column;
}
.card h3{font-size:19px;font-weight:700;margin-bottom:12px}
.card p{color:var(--muted);font-size:14px;margin-bottom:22px}
.card-media{
height:600px;
margin-top:auto;
border-radius:14px;
overflow:hidden;
background:transparent;
display:flex;align-items:center;justify-content:center;
}
.card-media img{
height:100%;width:auto;max-width:100%;
object-fit:contain;display:block;
}

/* SELLERS */
.sellers{
background:linear-gradient(180deg,rgba(34,197,232,.05),rgba(255,255,255,0));
border:1px solid var(--card-border);
border-radius:20px;
padding:48px;
display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center;
}
.sellers h2{font-size:36px;font-weight:800;margin:16px 0 20px}
.sellers .lead{color:var(--muted);font-size:15px}
.seller-list{display:flex;flex-direction:column;gap:14px}
.seller-item{
display:flex;align-items:center;gap:14px;
background:rgba(255,255,255,.03);
border:1px solid var(--card-border);
border-radius:12px;padding:16px 18px;font-weight:600;font-size:15px;
}
.seller-item .dot{color:var(--cyan);font-size:18px}
.pills{display:flex;flex-wrap:wrap;gap:12px;justify-content:center;margin-top:44px}
.pill{
display:inline-flex;align-items:center;gap:8px;
background:rgba(255,255,255,.03);
border:1px solid var(--card-border);
border-radius:999px;padding:10px 18px;font-size:13px;font-weight:600;
}
.pill .dot{color:var(--cyan)}

/* ANDROID CTA */
.cta{
background:linear-gradient(180deg,#122733,#0c141d);
border:1px solid var(--card-border);
border-radius:20px;
padding:52px;text-align:center;max-width:840px;margin:0 auto;
}
.cta h2{font-size:38px;font-weight:800;margin:16px 0 18px}
.cta p{color:var(--muted);font-size:15px;max-width:560px;margin:0 auto 30px}
.cta-form{display:flex;gap:12px;justify-content:center;max-width:520px;margin:0 auto}
.cta-form input{
flex:1;background:rgba(0,0,0,.35);
border:1px solid var(--card-border);
border-radius:12px;padding:14px 18px;color:var(--text);font-size:14px;
}
.cta-form input::placeholder{color:var(--muted-2)}
.btn-cyan{
background:var(--cyan);color:#04222b;border:none;
border-radius:12px;padding:14px 24px;font-weight:700;font-size:14px;cursor:pointer;
}
.btn-cyan:hover{background:#3fd0ee}

/* FOOTER */
footer{border-top:1px solid var(--card-border);padding:44px 0 40px;margin-top:30px}
.foot-top{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:20px}
.foot-links{display:flex;gap:30px;font-size:14px;color:var(--muted)}
.foot-links a:hover{color:var(--text)}
.foot-bottom{display:flex;justify-content:space-between;align-items:center;margin-top:28px;flex-wrap:wrap;gap:16px}
.copyright{color:var(--muted-2);font-size:13px}
.socials{display:flex;gap:10px}
.socials a{
width:32px;height:32px;border-radius:8px;
background:rgba(255,255,255,.05);
display:flex;align-items:center;justify-content:center;
color:var(--muted);font-size:14px;
}
.socials a:hover{color:var(--text);background:rgba(255,255,255,.1)}

/* LEGAL PAGES */
.legal{padding:44px 0 80px}
.legal-wrap{max-width:820px}
.legal-back{display:inline-block;color:var(--cyan);font-size:14px;margin-bottom:26px}
.legal-back:hover{opacity:.75}
.legal h1{font-size:40px;font-weight:800;letter-spacing:-.02em;margin-bottom:10px}
.legal-meta{color:var(--muted-2);font-size:14px;margin-bottom:30px}
.legal h2{font-size:22px;font-weight:700;color:var(--text);margin:38px 0 14px;padding-top:22px;border-top:1px solid var(--card-border)}
.legal h3{font-size:17px;font-weight:700;color:var(--text);margin:24px 0 10px}
.legal p{color:var(--muted);font-size:15px;line-height:1.75;margin-bottom:14px}
.legal ul{margin:0 0 16px;padding-left:22px}
.legal li{color:var(--muted);font-size:15px;line-height:1.7;margin-bottom:8px}
.legal a{color:var(--cyan);text-decoration:underline;overflow-wrap:anywhere}
.legal strong{color:var(--text);font-weight:700}
.legal table{width:100%;border-collapse:collapse;margin:6px 0 20px;font-size:14px}
.legal th,.legal td{border:1px solid var(--card-border);padding:10px 12px;text-align:left;vertical-align:top;color:var(--muted);line-height:1.6}
.legal th{background:rgba(255,255,255,.04);color:var(--text);font-weight:700}
.legal th:first-child,.legal td:first-child{width:26%}
.legal td:first-child{color:var(--text);font-weight:600}
.legal-placeholder{color:var(--cyan);background:var(--cyan-soft);padding:1px 6px;border-radius:4px;font-size:.92em}

/* RESPONSIVE — tablet & down: single column, stacked tiles */
@media(max-width:900px){
.hero-grid,.sellers{grid-template-columns:1fr;gap:36px}
.cards{grid-template-columns:1fr;gap:22px}
.nav-links{display:none}
.hero{padding:24px 0 32px}
.hero h1{font-size:40px}
.sec-head h2,.cta h2,.sellers h2{font-size:30px}
.hero-logo{width:260px;height:260px}
.cta-form{flex-direction:column}
.sellers{padding:36px}
.cta{padding:40px 28px}
/* stacked cards centered; screenshots sized to card, text stays above */
.card{max-width:520px;width:100%;margin:0 auto}
.card-media{height:auto;margin-top:18px}
.card-media img{width:100%;height:auto;max-width:340px;margin:0 auto}
}

/* RESPONSIVE — phone */
@media(max-width:600px){
.wrap{padding:0 18px}
section{padding:44px 0}
.hero{padding:14px 0 28px}
.hero h1{font-size:32px}
.hero p.lead{font-size:14px}
.hero-logo{width:210px;height:210px}
.appstore-badge img{height:46px}
.sec-head{margin-bottom:34px}
.sec-head h2,.cta h2,.sellers h2{font-size:24px}
.sec-head p,.sellers .lead,.cta p{font-size:14px}
.card{padding:18px 16px 22px}
.card h3{font-size:18px}
.sellers{padding:26px 20px}
.cta{padding:32px 20px}
.foot-top,.foot-bottom{flex-direction:column;align-items:flex-start;gap:16px}
}

/* RESPONSIVE — legal pages on phones */
@media(max-width:600px){
.legal{padding:28px 0 56px}
.legal h1{font-size:28px}
.legal h2{font-size:19px}
.legal table,.legal th,.legal td{font-size:13px}
.legal th:first-child,.legal td:first-child{width:36%}
}
