* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0e0e0e;
  --surface: #1a1a1a;
  --text: #f0f0f0;
  --text-muted: #888;
  --accent: #ffd633;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Nav */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 1.25rem;
}

.logo img {
  border-radius: 10px;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.nav-links a:hover {
  color: var(--text);
}

/* Accent */
.accent {
  color: var(--accent);
}

/* Hero */
.hero {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  width: 100%;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.7;
}

.badges {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero-phone {
  flex-shrink: 0;
}

/* Phone screenshots */
.phone-screenshot {
  width: 260px;
  border-radius: 36px;
  display: block;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

/* Waitlist */
.waitlist {
  background: var(--surface);
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  padding: 4rem 2rem;
  text-align: center;
}

.waitlist-inner {
  max-width: 520px;
  margin: 0 auto;
}

.waitlist h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.waitlist p {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
}

.waitlist-form {
  display: flex;
  gap: 0.75rem;
}

.waitlist-form input {
  flex: 1;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  border: 1px solid #333;
  background: #111;
  color: var(--text);
  font-size: 1rem;
  outline: none;
}

.waitlist-form input:focus {
  border-color: var(--accent);
}

.waitlist-form button {
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.waitlist-form button:disabled {
  opacity: 0.6;
  cursor: default;
}

.waitlist-note {
  margin-top: 1rem;
  font-size: 0.95rem;
  min-height: 1.4rem;
}

@media (max-width: 480px) {
  .waitlist-form {
    flex-direction: column;
  }
}

/* Features */
.features {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 7rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.feature-reverse {
  flex-direction: row-reverse;
}

.feature-phone {
  flex-shrink: 0;
}

.feature-text {
  flex: 1;
}

.feature-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.feature-text h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.feature-text p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 440px;
}

/* Callout */
.callout {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
  text-align: center;
}

.callout-quote {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.4;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.callout-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* CTA */
.cta {
  text-align: center;
  padding: 5rem 2rem;
  border-top: 1px solid #1e1e1e;
}

.cta h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.cta p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.cta .badges {
  justify-content: center;
}

/* Legal pages */
.legal {
  flex: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem;
}

.legal h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  text-align: left;
}

.legal .updated {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.legal h2 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--accent);
}

.legal p,
.legal li {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.legal ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal a {
  color: var(--accent);
}

/* Footer */
footer {
  padding: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  border-top: 1px solid #1e1e1e;
}

.footer-links {
  margin-top: 0.5rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text);
}

.attribution {
  margin-top: 0.75rem;
  color: #444;
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 3rem 1.5rem 2rem;
    text-align: center;
    gap: 3rem;
  }

  .hero-text h1 {
    font-size: 2.25rem;
  }

  .subtitle {
    margin: 0 auto 2rem;
  }

  .badges {
    justify-content: center;
  }

  .feature,
  .feature-reverse {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.5rem;
  }

  .feature-text p {
    max-width: 100%;
  }

  .features {
    gap: 5rem;
    padding: 3rem 1.5rem;
  }

  .phone-screenshot {
    width: 220px;
  }

  .feature-text h2 {
    font-size: 1.6rem;
  }

  .cta h2 {
    font-size: 1.75rem;
  }
}
