:root { color-scheme: dark; }
* { box-sizing: border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
  margin: 0; background: #0a0a0e; color: #f2f2f5; line-height: 1.6;
}
a { color: #7aa7ff; text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: 1040px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 680px; }

nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
}
nav .brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 18px; color: #fff; }
nav .brand img { width: 34px; height: 34px; border-radius: 8px; }
nav .links { display: flex; gap: 22px; font-size: 14px; }
nav .links a { color: #b8b8c2; }

.badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; padding: 7px 14px; border-radius: 999px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
}
.badge svg { flex: 0 0 auto; }

.hero {
  text-align: center; padding: 72px 0 30px; position: relative;
  background:
    radial-gradient(90% 48% at 50% -6%, rgba(250,17,79,.28), transparent 62%),
    radial-gradient(60% 30% at 82% 20%, rgba(94,92,230,.16), transparent 70%);
}
.hero h1 {
  font-size: clamp(34px, 6vw, 58px); font-weight: 800; letter-spacing: -0.02em;
  line-height: 1.08; margin: 20px auto 14px; max-width: 780px;
}
.hero p.sub { color: #b8b8c2; font-size: clamp(16px, 2.4vw, 19px); max-width: 620px; margin: 0 auto 28px; }
.cta {
  display: inline-block; background: #fff; color: #0a0a0e; font-weight: 700;
  padding: 13px 26px; border-radius: 999px; font-size: 16px;
}
.cta:hover { text-decoration: none; opacity: .9; }
.cta-note { display: block; margin-top: 12px; color: #86868f; font-size: 13px; }
#waitlist { max-width: 460px; margin: 0 auto; }
.wl-row { display: none; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; justify-content: center;
         opacity: 0; transform: translateY(-6px); transition: opacity .25s ease, transform .25s ease; }
.wl-row.open { display: flex; opacity: 1; transform: none; }
#wl-email {
  flex: 1 1 200px; min-width: 200px; padding: 12px 16px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.07);
  color: #fff; font-size: 15px; outline: none;
}
#wl-email:focus { border-color: rgba(255,255,255,.45); }
#wl-email::placeholder { color: #7d7d87; }
.wl-platform { display: inline-flex; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; overflow: hidden; }
.wl-platform label { display: inline-flex; }
.wl-platform input { position: absolute; opacity: 0; pointer-events: none; }
.wl-platform span {
  padding: 12px 18px; font-size: 14px; font-weight: 600; color: #b8b8c2; cursor: pointer;
}
.wl-platform input:checked + span { background: #fff; color: #0a0a0e; }
.cta { border: none; cursor: pointer; }
.cta:disabled { opacity: .6; cursor: default; }
.wl-done { color: #30D158; font-weight: 600; font-size: 15px; }

.logo-row {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
  padding: 34px 0 10px;
}
.logo-row img {
  width: 46px; height: 46px; border-radius: 11px;
  box-shadow: 0 8px 22px rgba(0,0,0,.5);
}
.logo-caption { text-align: center; color: #86868f; font-size: 13px; margin: 10px 0 0; }

.shots {
  display: flex; gap: 18px; overflow-x: auto; padding: 44px 24px 20px;
  scroll-snap-type: x mandatory; max-width: 1200px; margin: 0 auto;
}
.shots img {
  width: 262px; border-radius: 22px; scroll-snap-align: center; flex: 0 0 auto;
  box-shadow: 0 24px 60px rgba(0,0,0,.55);
}

section.block { padding: 56px 0; }
section.block h2 { font-size: clamp(24px, 3.6vw, 34px); font-weight: 800; letter-spacing: -0.02em; text-align: center; margin: 0 0 8px; }
section.block p.lead { color: #b8b8c2; text-align: center; max-width: 640px; margin: 0 auto 34px; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.card {
  background: #131318; border: 1px solid rgba(255,255,255,.08); border-radius: 18px;
  padding: 22px;
}
.card h3 { margin: 0 0 6px; font-size: 17px; }
.card p { margin: 0; color: #a9a9b4; font-size: 14.5px; }

.pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; max-width: 820px; margin: 0 auto; }
.price-card {
  background: #131318; border: 1px solid rgba(255,255,255,.1); border-radius: 20px;
  padding: 26px 22px; text-align: center;
}
.price-card.featured { border-color: rgba(250,17,79,.55); background: linear-gradient(180deg, rgba(250,17,79,.10), rgba(19,19,24,1) 55%); }
.price-card .plan { font-weight: 700; font-size: 15px; color: #b8b8c2; }
.price-card .price { font-size: 30px; font-weight: 800; margin: 8px 0 2px; }
.price-card .per { color: #86868f; font-size: 13px; }
.price-card ul { list-style: none; padding: 0; margin: 16px 0 0; color: #a9a9b4; font-size: 14px; text-align: left; }
.price-card li { padding: 4px 0 4px 22px; position: relative; }
.price-card li::before { content: '✓'; position: absolute; left: 2px; color: #30D158; font-weight: 700; }

footer { border-top: 1px solid rgba(255,255,255,.08); margin-top: 40px; padding: 30px 0 44px; color: #86868f; font-size: 14px; }
footer .cols { display: flex; flex-wrap: wrap; gap: 18px; justify-content: space-between; align-items: center; }
footer a { color: #b8b8c2; }

/* article pages (privacy, terms, support) */
article { padding: 40px 0 20px; }
article h1 { font-size: 30px; letter-spacing: -0.02em; margin-bottom: 4px; }
article h2 { font-size: 19px; margin-top: 34px; }
article .updated { color: #86868f; font-size: 14px; }
article p, article li { color: #c9c9d2; font-size: 15.5px; }
article strong { color: #fff; }
