:root {
  color-scheme: dark;
  --bg: #0e0a0a;
  --bg-2: #171012;
  --ink: #f4ede7;
  --ink-dim: rgba(244, 237, 231, 0.72);
  --amber-a: #f5b96b;
  --amber-b: #ff8c73;
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 40px 80px rgba(0, 0, 0, 0.45), 0 8px 20px rgba(0, 0, 0, 0.35);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background:
    radial-gradient(1200px 800px at 50% -10%, rgba(255, 140, 115, 0.14), transparent 60%),
    radial-gradient(900px 600px at 80% 30%, rgba(245, 185, 107, 0.10), transparent 55%),
    var(--bg);
  min-height: 100dvh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(255,255,255,0.35); }
a:hover, a:focus { text-decoration-color: var(--amber-a); }
h1, h2 { font-weight: 600; letter-spacing: -0.01em; margin: 0; }

.wordmark {
  font-size: clamp(72px, 12vw, 128px);
  line-height: 1;
  background: linear-gradient(135deg, var(--amber-a), var(--amber-b));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tagline {
  font-size: clamp(28px, 4.4vw, 46px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0.6em 0 0.4em;
  max-width: 15ch;
}
.lede {
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--ink-dim);
  max-width: 34ch;
  margin: 0 0 1.6em;
}
.fineprint {
  font-size: 14px;
  color: var(--ink-dim);
  margin: 0.6em 0 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4vw;
  align-items: center;
  max-width: 1200px;
  padding: 8vh 6vw 6vh;
  margin: 0 auto;
}
.hero-shot img {
  border-radius: 44px;
  box-shadow: var(--shadow);
  max-height: 78vh;
  width: auto;
  margin-inline: auto;
}

.store-badge img { height: 60px; width: auto; }
.cta { margin: 1.2em 0 0.4em; }

.phones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4vw;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6vh 6vw;
}
.phones figure { margin: 0; text-align: center; }
.phones img {
  border-radius: 36px;
  box-shadow: var(--shadow);
  margin: 0 auto 1.4em;
}
.phones h2 {
  font-size: clamp(20px, 2vw, 26px);
  margin-bottom: 0.35em;
  background: linear-gradient(135deg, var(--amber-a), var(--amber-b));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.phones p {
  color: var(--ink-dim);
  font-size: 16px;
  max-width: 30ch;
  margin: 0 auto;
}

.private {
  max-width: 780px;
  margin: 0 auto;
  padding: 8vh 6vw 4vh;
  text-align: center;
}
.private h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  margin-bottom: 0.8em;
}
.private p {
  color: var(--ink-dim);
  font-size: clamp(17px, 1.6vw, 19px);
  margin: 0 auto 1.1em;
  max-width: 55ch;
}

.waitlist {
  max-width: 620px;
  margin: 0 auto;
  padding: 6vh 6vw 2vh;
  text-align: center;
}
.waitlist h2 {
  font-size: clamp(22px, 2.6vw, 30px);
  margin-bottom: 0.6em;
}
.waitlist p { color: var(--ink-dim); margin: 0 auto 1.4em; max-width: 42ch; }
#android-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 480px;
}
#android-form input[type="email"] {
  flex: 1 1 240px;
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  min-width: 0;
}
#android-form input[type="email"]:focus {
  outline: 2px solid var(--amber-a);
  outline-offset: 2px;
}
#android-form button {
  padding: 14px 22px;
  font: inherit;
  font-weight: 600;
  color: #201412;
  background: linear-gradient(135deg, var(--amber-a), var(--amber-b));
  border: 0;
  border-radius: 12px;
  cursor: pointer;
}
#android-form button:hover { filter: brightness(1.05); }
.thanks {
  color: var(--amber-a);
  font-weight: 500;
  margin-top: 1.2em;
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

footer {
  text-align: center;
  padding: 6vh 6vw 8vh;
  color: var(--ink-dim);
  font-size: 14px;
  border-top: 1px solid var(--line);
  margin-top: 6vh;
}
footer a { color: var(--ink-dim); }
footer a:hover, footer a:focus { color: var(--ink); }

@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; padding-top: 5vh; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .tagline, .lede { margin-inline: auto; }
  .hero-shot img { max-height: 60vh; margin-top: 2rem; }
  .phones { grid-template-columns: 1fr; gap: 6vh; padding: 4vh 6vw; }
  .phones img { max-height: 60vh; width: auto; }
}
@media (prefers-reduced-motion: no-preference) {
  .hero-copy > * { animation: rise 0.7s ease-out both; }
  .hero-copy > *:nth-child(2) { animation-delay: 0.05s; }
  .hero-copy > *:nth-child(3) { animation-delay: 0.10s; }
  .hero-copy > *:nth-child(4) { animation-delay: 0.15s; }
  .hero-copy > *:nth-child(5) { animation-delay: 0.20s; }
  @keyframes rise { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
}
