:root {
  --bg: #f6f8fc;
  --surface: #ffffff;
  --ink: #111827;
  --ink-soft: #4b5563;
  --line: #e5e7eb;
  --brand: #0ea5e9;
  --brand-dark: #0369a1;
  --radius: 16px;
  --shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', 'Avenir Next', 'Segoe UI', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 4%, #ffe1d7 0%, transparent 34%),
    radial-gradient(circle at 88% 2%, #dfe5ff 0%, transparent 32%),
    radial-gradient(circle at 14% 52%, #ffe9e0 0%, transparent 36%),
    radial-gradient(circle at 84% 56%, #e6ebff 0%, transparent 34%),
    radial-gradient(circle at 18% 92%, #ffe7de 0%, transparent 34%),
    radial-gradient(circle at 82% 96%, #e4e9ff 0%, transparent 32%),
    linear-gradient(180deg, #fcfdff 0%, var(--bg) 52%, #f3f5ff 100%);
  background-attachment: fixed;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.page {
  max-width: 1040px;
  margin: 0 auto;
  padding: 20px 16px 56px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  position: sticky;
  top: 10px;
  backdrop-filter: blur(8px);
  z-index: 10;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}

.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  gap: 12px;
}

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

.hero {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 20px;
  align-items: center;
}

.eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-dark);
  font-weight: 800;
}

h1 {
  margin-top: 8px;
  font-family: 'Syne', 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 6vw, 3.8rem);
  line-height: 1.02;
}

.lead {
  margin-top: 12px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 52ch;
}

.cta,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 999px;
  padding: 10px 14px;
}

.cta {
  background: linear-gradient(140deg, var(--brand), #22d3ee);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.28);
}

.ghost-btn {
  border: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.phone-frame {
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.phone-frame p {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.screen-label {
  width: min(100%, 330px);
  aspect-ratio: 9 / 19.5;
  border: 2px dashed #cbd5e1;
  border-radius: 12px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #64748b;
  font-size: 0.9rem;
  padding: 12px;
  background: linear-gradient(180deg, #f8fbff, #f1f5f9);
  margin: 0 auto;
  overflow: hidden;
}

.screen-label img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shot {
  position: relative;
  border: 0;
  width: min(100%, 300px);
  padding: 10px;
  border-radius: 34px;
  background: linear-gradient(160deg, #121826, #2a3447);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 20px 40px rgba(17, 24, 39, 0.28);
}

.hero-shot img {
  border-radius: 26px;
}

.hero-shot::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 38%;
  height: 22px;
  border-radius: 0 0 14px 14px;
  background: #0b1220;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.section-block {
  margin-top: 30px;
}

.section-head {
  margin-bottom: 12px;
}

.section-head p {
  margin-top: 6px;
  color: var(--ink-soft);
}

.waitlist-card {
  padding: 18px;
}

.waitlist-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.waitlist-form input[type='email'] {
  flex: 1 1 260px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 12px;
  font: inherit;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
}

.waitlist-form .cta {
  border: 0;
  cursor: pointer;
}

.waitlist-form .cta:disabled {
  opacity: 0.7;
  cursor: default;
}

.waitlist-message {
  margin-top: 8px;
  min-height: 20px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.hp-field {
  display: none;
}

.feature-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.32));
  box-shadow: 0 18px 40px rgba(14, 165, 233, 0.12);
  backdrop-filter: blur(10px);
}

.carousel-window {
  overflow: hidden;
  border-radius: 14px;
}

.carousel-track {
  display: flex;
  transition: transform 320ms ease;
  will-change: transform;
}

.feature-slide {
  flex: 0 0 100%;
  padding: 18px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.feature-slide p {
  margin-top: 8px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.88), rgba(240, 245, 255, 0.7));
  color: var(--brand-dark);
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(14, 165, 233, 0.12);
}

.carousel-dots {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: #cbd5e1;
  cursor: pointer;
}

.carousel-dot.active {
  background: var(--brand);
}

.shot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.shot {
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.shot h3 {
  margin-top: 10px;
}

.shot p {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.shot-placeholder {
  width: min(100%, 300px);
  aspect-ratio: 9 / 19.5;
  border: 2px dashed #cbd5e1;
  border-radius: 12px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #64748b;
  font-size: 0.88rem;
  background: #f8fbff;
  padding: 10px;
  margin: 0 auto;
  overflow: hidden;
}

.shot-phone {
  border: 0;
  padding: 10px;
  border-radius: 32px;
  background: linear-gradient(160deg, #121826, #2a3447);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 16px 34px rgba(17, 24, 39, 0.24);
  position: relative;
}

.shot-phone::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 38%;
  height: 20px;
  border-radius: 0 0 12px 12px;
  background: #0b1220;
}

.shot-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.review {
  padding: 16px;
}

.review p {
  color: var(--ink);
  line-height: 1.55;
}

.review span {
  display: block;
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
}

.faq-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  font: inherit;
  font-weight: 700;
  padding: 14px;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 14px 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.faq-item.open .faq-answer {
  display: block;
}

.legal-links {
  margin-top: 30px;
  padding: 16px;
}

.legal-links p {
  margin-top: 8px;
  color: var(--ink-soft);
}

.legal-actions {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate] {
  opacity: 0;
  transform: translateY(10px);
  animation: rise 420ms ease forwards;
}

[data-animate='2'] {
  animation-delay: 90ms;
}

[data-animate='3'] {
  animation-delay: 180ms;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .nav {
    position: static;
    border-radius: 14px;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .screen-label {
    width: min(100%, 300px);
  }

  .shot-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .waitlist-form .cta,
  .waitlist-form input[type='email'] {
    width: 100%;
  }

  .footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.legal-page {
  min-height: 100vh;
}

.legal-shell {
  max-width: 840px;
  margin: 0 auto;
  padding: 20px 16px 52px;
}

.legal-nav {
  margin-bottom: 12px;
}

.legal-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.9rem;
}

.legal-content {
  padding: 20px;
}

.legal-content h1 {
  font-family: 'Syne', 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
}

.legal-content p {
  margin-top: 10px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.legal-content ul {
  margin: 8px 0 0 20px;
  padding: 0;
  color: var(--ink-soft);
}

.legal-content li {
  margin-top: 6px;
}
