:root {
  --bg: #000000;
  --surface: #111111;
  --border: #2a2a2a;
  --text: #ffffff;
  --text-muted: #aaaaaa;
  --text-dim: #777777;
  --purple: #7b2fbe;
  --magenta: #c84b9e;
  --grad: linear-gradient(135deg, #7b2fbe, #c84b9e);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Screenshot images (frames already baked in) ---------- */
.shot {
  max-height: 600px;
  width: auto;
  border-radius: 8px;
  filter: drop-shadow(0 24px 50px rgba(0, 0, 0, 0.6));
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 1.9rem;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  background: var(--grad);
  color: #fff;
  border: none;
  box-shadow: 0 12px 30px rgba(200, 75, 158, 0.3);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(200, 75, 158, 0.45);
}

.btn-sm {
  padding: 0.6rem 1.4rem;
  font-size: 0.92rem;
}

/* ---------- Header / Nav ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 1rem 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.nav-links a {
  transition: color 0.18s ease;
}

.nav-links a:hover {
  color: #fff;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 160px 0 80px;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 40% at 50% 0%, rgba(123, 47, 190, 0.28), transparent 70%),
    radial-gradient(40% 35% at 80% 30%, rgba(200, 75, 158, 0.18), transparent 70%);
  z-index: -1;
}

.hero-title {
  font-size: clamp(3.2rem, 9vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero-subtitle {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 600;
  margin-top: 0.6rem;
}

.hero-desc {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 34rem;
  margin: 1.2rem auto 0;
}

/* ---------- Hero mockups ---------- */
.hero-mockups {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 3.5rem auto 2.5rem;
  min-height: 520px;
}

.hero-mockups .shot {
  max-height: 480px;
  transition: transform 0.4s ease;
}

.hero-mockups .shot-left {
  transform: rotate(-7deg) translateX(40px) scale(0.9);
  z-index: 1;
}

.hero-mockups .shot-center {
  transform: scale(1.05);
  z-index: 3;
  filter: drop-shadow(0 30px 60px rgba(123, 47, 190, 0.45));
}

.hero-mockups .shot-right {
  transform: rotate(7deg) translateX(-40px) scale(0.9);
  z-index: 1;
}

.hero-mockups:hover .shot-left {
  transform: rotate(-9deg) translateX(20px) scale(0.92);
}

.hero-mockups:hover .shot-right {
  transform: rotate(9deg) translateX(-20px) scale(0.92);
}

/* ---------- Store badges ---------- */
.store-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: #000;
  border: 1px solid #444;
  border-radius: 12px;
  padding: 0.6rem 1.3rem;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.store-badge:hover {
  transform: translateY(-2px);
  border-color: #888;
}

.store-badge svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.store-badge .label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.store-badge .label small {
  font-size: 0.68rem;
  color: #ccc;
  font-weight: 400;
}

.store-badge .label span {
  font-size: 1.15rem;
  font-weight: 600;
}

/* ---------- Sections ---------- */
section {
  padding: 80px 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ---------- Value cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.2rem 1.8rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--purple);
}

.card-icon {
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.card p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* ---------- Feature rows ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature-media {
  display: flex;
  justify-content: center;
}

.feature-text .eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 0.8rem;
}

.feature-text h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.feature-text p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.feature-divider {
  height: 1px;
  background: var(--border);
  border: none;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  padding: 3.5rem 0;
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.5rem;
}

.footer-brand img {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  object-fit: cover;
}

.footer-tag {
  color: var(--text-muted);
  margin: 0.6rem 0 1.5rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-copy {
  color: var(--text-dim);
  font-size: 0.85rem;
}

.footer-email {
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-top: 0.4rem;
}

.footer-email a {
  color: var(--magenta);
}

/* ---------- Legal / content pages ---------- */
.page {
  padding: 130px 0 80px;
}

.page-narrow {
  max-width: 760px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  transition: color 0.18s ease;
}

.back-link:hover {
  color: #fff;
}

.page h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.page .updated {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-bottom: 1.8rem;
}

.page .lead {
  color: var(--text);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.legal-section {
  margin-bottom: 2rem;
}

.legal-section h2 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.legal-section p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* ---------- FAQ ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.6rem 1.8rem;
}

.faq-item h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.faq-item p {
  color: var(--text-muted);
}

.faq-item a {
  color: var(--magenta);
}

.contact-box {
  background: radial-gradient(120% 120% at 50% 0%, rgba(123, 47, 190, 0.22), var(--surface));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
}

.contact-box h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.contact-box p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .feature-row.reverse .feature-media {
    order: -1;
  }

  .feature-text .eyebrow {
    margin-top: 0;
  }

  .nav-links {
    display: none;
  }

  .hero-mockups .shot-left,
  .hero-mockups .shot-right {
    display: none;
  }

  .hero-mockups .shot-center {
    transform: scale(1);
  }
}

@media (max-width: 600px) {
  section {
    padding: 40px 0;
  }

  .hero {
    padding: 120px 0 40px;
  }

  .page {
    padding: 110px 0 40px;
  }

  .shot,
  .hero-mockups .shot {
    max-height: 70vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
