: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: 'Manrope', 'Avenir Next', 'Segoe UI', sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fbfdff 0%, var(--bg) 100%);
}

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;
  background: linear-gradient(145deg, var(--brand), #22d3ee);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: 'DM Serif Display', serif;
}

.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: 'DM Serif Display', 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: 12px;
}

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

.screen-label {
  min-height: 360px;
  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);
}

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

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

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

.feature-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}

.carousel-window {
  overflow: hidden;
}

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

.feature-slide {
  min-width: 100%;
  padding: 18px;
}

.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 var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.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: 12px;
}

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

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

.shot-placeholder {
  min-height: 280px;
  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;
}

.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 {
    min-height: 280px;
  }

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

  .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: 'DM Serif Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
}

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