@import url('https://fonts.googleapis.com/css2?family=Epilogue:wght@400;500;600;700;800&family=Manrope:wght@400;500;600;700&display=swap');

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

:root {
  --pink: #FE89D3;
  --orange: #FB9B57;
  --cyan: #4FDAF2;
  --green: #AAF585;
  --dark: #2D2D2D;
  --white: #FFFFFF;
  --gray: #D4D4D4;
  --dark-60: #2D2D2D99;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  background-color: var(--dark);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Epilogue', sans-serif;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

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

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

/* ── Nav ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(45, 45, 45, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo img {
  height: 32px;
  width: auto;
}

.nav-logo span {
  font-family: 'Epilogue', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:not(.btn).active {
  font-weight: 600;
  position: relative;
}

.nav-links a:not(.btn).active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--pink);
}

/* ── Footer ── */
footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--gray);
  transition: color 0.2s;
}

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

footer p {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  border: none;
}

.btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--pink);
  color: #1a1a1a;
  font-weight: 700;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--white);
}

/* ── Store badges ── */
.store-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.store-badges a {
  transition: opacity 0.2s, transform 0.15s;
}

.store-badges a:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.store-badges img {
  height: 44px;
  width: auto;
}

/* ── Section helpers ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.75rem;
}

/* ── Pill / tag ── */
.pill {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(254, 137, 211, 0.15);
  color: var(--pink);
  border: 1px solid rgba(254, 137, 211, 0.3);
}

/* ── Gradient text (animated version lives in Animations section) ── */

/* ── Prose (for legal pages) ── */
.prose {
  max-width: 720px;
  margin: 0 auto;
}

.prose h2 {
  font-size: 1.4rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.prose h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.prose p {
  color: var(--gray);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.prose ul, .prose ol {
  color: var(--gray);
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.75;
}

.prose li {
  margin-bottom: 0.4rem;
}

.prose a {
  color: var(--pink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Page hero (legal pages) ── */
.page-hero {
  padding: 4rem 2rem 2rem;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--gray);
  font-size: 1rem;
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

@keyframes floatDelayed {
  0%, 100% { transform: translateY(-8px); }
  50%       { transform: translateY(8px); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Hero entrance stagger */
.hero-animate {
  opacity: 0;
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-animate:nth-child(1) { animation-delay: 0.05s; }
.hero-animate:nth-child(2) { animation-delay: 0.18s; }
.hero-animate:nth-child(3) { animation-delay: 0.30s; }
.hero-animate:nth-child(4) { animation-delay: 0.42s; }

/* Animated gradient text */
.gradient-text {
  background: linear-gradient(135deg, var(--pink) 0%, var(--orange) 40%, var(--cyan) 80%, var(--pink) 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s linear infinite;
}

/* Floating screenshots */
.float-a {
  animation: float 5s ease-in-out infinite;
}
.float-b {
  animation: floatDelayed 5.5s ease-in-out infinite;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Feature card 3D tilt */
.feature-card {
  transform-style: preserve-3d;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  cursor: default;
}
.feature-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  border-color: rgba(254, 137, 211, 0.3) !important;
}

/* Blob parallax targets */
.blob {
  transition: transform 0.12s ease-out;
  will-change: transform;
}

/* Store badge pulse on hover */
.store-badges a {
  display: inline-block;
}
.store-badges a:hover img {
  filter: brightness(1.1);
}

/* ── Responsive ── */
@media (max-width: 640px) {
  nav {
    padding: 1rem 1.25rem;
  }

  .nav-links {
    gap: 1.25rem;
  }

  .container {
    padding: 0 1.25rem;
  }

  .section {
    padding: 3.5rem 0;
  }
}
