:root {
  --highlight: #ec4899;
  --highlight-dark: #db2777;
  --bg: #ffffff;
  --bg-soft: #fdf5f2;
  --text: #0a0a0a;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --card: #ffffff;
  --shadow: 0 20px 50px -12px rgba(236, 72, 153, 0.15);
  --radius: 1.25rem;
  --font: 'Outfit', system-ui, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0a0a0a;
    --bg-soft: #141414;
    --text: #fafafa;
    --text-muted: #a1a1a1;
    --border: #404040;
    --card: #171717;
    --shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.5);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 1.05rem;
}

a {
  color: var(--highlight);
}

a:focus-visible {
  outline: 2px solid var(--highlight);
  outline-offset: 3px;
}

.wrap {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4rem;
}

.wordmark {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--text);
}

.wordmark span {
  color: var(--highlight);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border-radius: 9999px;
  background: var(--highlight);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover {
  background: var(--highlight-dark);
  transform: translateY(-1px);
}

/* Hero */
.hero {
  padding: 3.5rem 0 4rem;
  background: linear-gradient(
    165deg,
    var(--bg-soft) 0%,
    var(--bg) 45%,
    var(--bg) 100%
  );
  border-bottom: 1px solid var(--border);
}

.hero__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

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

.hero__motto {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--highlight);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 2.85rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.hero__lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin: 0 0 1.75rem;
  max-width: 36ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__visual {
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: min(280px, 85vw);
  aspect-ratio: 9 / 19;
  border-radius: 2.25rem;
  border: 3px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--card);
}

.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section--alt {
  background: var(--bg-soft);
  border-block: 1px solid var(--border);
}

.section__title {
  font-size: clamp(1.65rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
  text-align: center;
}

.section__subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}

/* Features */
.features {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  border-color: color-mix(in srgb, var(--highlight) 35%, var(--border));
  box-shadow: var(--shadow);
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.feature-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: color-mix(in srgb, var(--highlight) 12%, transparent);
  color: var(--highlight);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

/* Screenshots */
.shots {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .shots {
    grid-template-columns: repeat(3, 1fr);
  }
}

.shot-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.shot-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.shot-card figcaption {
  padding: 1rem 1.1rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-top: 1px solid var(--border);
}

/* Download */
.download {
  text-align: center;
}

.download__stores {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.35rem;
  border-radius: 0.85rem;
  border: 2px solid var(--text);
  color: var(--text) !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-store:hover {
  background: var(--text);
  color: var(--bg) !important;
}

.btn-store--soon {
  opacity: 0.65;
  cursor: not-allowed;
  pointer-events: none;
  border-style: dashed;
}

.btn-store svg {
  flex-shrink: 0;
}

.soon-badge {
  display: inline-block;
  margin-left: 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  vertical-align: super;
  color: var(--highlight);
}

.qr-grid {
  display: grid;
  gap: 2rem;
  max-width: 28rem;
  margin: 0 auto;
}

@media (min-width: 520px) {
  .qr-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 36rem;
  }
}

.qr-block {
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px dashed var(--border);
  background: var(--card);
}

.qr-block p {
  margin: 0 0 0.75rem;
  font-weight: 700;
  font-size: 0.9rem;
}

.qr-block img {
  width: 180px;
  height: 180px;
  display: block;
  margin: 0 auto;
  border-radius: 0.5rem;
}

/* Footer */
.site-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.site-footer .wordmark {
  justify-content: center;
  display: inline-flex;
  margin-bottom: 0.5rem;
}

.site-footer__legal {
  margin-top: 1rem;
  margin-bottom: 0;
  font-size: 0.85rem;
}
