:root {
  --brand: #ff4c29;
  --brand-dark: #e63900;
  --hero-bg-top: #fffefe;
  --hero-bg-bottom: #fff5f3;
  --accent-pink: rgba(255, 92, 184, 0.1);
  --accent-blue: rgba(39, 194, 255, 0.1);
  --accent-green: rgba(39, 206, 137, 0.08);
  --surface: #ffffff;
  --surface-soft: #fff5f3;
  --text: #1a1a1a;
  --text-muted: #555555;
  --border: #f0f0f0;
  --shadow-md: 0 14px 34px rgba(0, 0, 0, 0.1);
  --shadow-brand: 0 14px 36px rgba(255, 76, 41, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  width: 90px;
  display: block;
}

.main-nav {
  display: flex;
  gap: 1.4rem;
}

.main-nav a,
.footer-links a {
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.footer-links a:hover {
  color: var(--brand);
}

.btn {
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  padding: 0.76rem 1.3rem;
  font-size: 0.92rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: var(--brand);
  box-shadow: var(--shadow-brand);
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-soft {
  color: var(--text);
  background: #fff;
  border: 1.5px solid var(--border);
}

.playful-bg {
  background: linear-gradient(180deg, var(--hero-bg-top) 0%, var(--hero-bg-bottom) 100%);
  position: relative;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
  opacity: 0.85;
  animation: float 11s ease-in-out infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: var(--accent-pink);
  top: -120px;
  left: -120px;
}

.shape-2 {
  width: 260px;
  height: 260px;
  background: var(--accent-blue);
  top: 18%;
  right: -120px;
}

.shape-3 {
  width: 280px;
  height: 280px;
  background: var(--accent-green);
  bottom: -150px;
  right: 24%;
}

.hero {
  padding: 4rem 0 4.2rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: center;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.05rem, 5vw, 3.7rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
  max-width: 14ch;
}

.eyebrow {
  margin: 0 0 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.72rem;
  color: var(--brand-dark);
  font-weight: 800;
}

.hero-text {
  margin: 1rem 0 0;
  line-height: 1.65;
  max-width: 52ch;
  color: #3f3f3f;
  font-weight: 500;
}

.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.hero-phone {
  justify-self: center;
  width: 100%;
}

.phone-shell {
  margin: 0 auto;
  width: min(320px, 74vw);
  aspect-ratio: 828 / 1792;
  background: #1a1a1a;
  border-radius: 38px;
  padding: 11px;
  position: relative;
  box-shadow: var(--shadow-md), 0 0 0 4px rgba(255, 255, 255, 0.25);
  animation: phoneFloat 5s ease-in-out infinite;
}

.phone-notch {
  position: absolute;
  width: 33%;
  height: 24px;
  border-radius: 0 0 16px 16px;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: #1a1a1a;
  z-index: 3;
}

.phone-screen {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  background: #000;
}

.stats-section {
  padding: 2.4rem 0 1.2rem;
  background: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 1.15rem;
}

.stat-title {
  margin: 0;
  color: var(--brand);
  font-weight: 700;
}

.stat-copy {
  margin: 0.55rem 0 0;
  line-height: 1.55;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.section {
  padding: 4rem 0;
}

.section-head {
  text-align: center;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.45rem, 3.2vw, 2.3rem);
}

.features-grid {
  margin-top: 1.45rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 1.2rem;
  background: #fff;
}

.feature-card h3 {
  margin: 0;
  font-size: 1.03rem;
}

.feature-card p {
  margin: 0.6rem 0 0;
  color: var(--text-muted);
  line-height: 1.58;
  font-size: 0.9rem;
}

.flow-section {
  background: linear-gradient(180deg, var(--surface-soft) 0%, #fff 100%);
}

.flow-grid {
  list-style: none;
  padding: 0;
  margin: 1.35rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.flow-step {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 1.2rem;
}

.flow-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 76, 41, 0.1);
  border: 1px solid rgba(255, 76, 41, 0.28);
  color: var(--brand-dark);
  font-size: 0.86rem;
  font-weight: 700;
}

.flow-step h3 {
  margin: 0.75rem 0 0.34rem;
  font-size: 1rem;
}

.flow-step p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.55;
  font-size: 0.9rem;
}

.cta-section {
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}

.cta-card {
  border-radius: 26px;
  border: 1.5px solid var(--border);
  padding: clamp(1.3rem, 4vw, 2.2rem);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.4rem;
  align-items: center;
  background: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.cta-copy h2 {
  margin: 0;
  font-size: clamp(1.3rem, 2.7vw, 1.95rem);
}

.cta-copy p {
  margin: 0.6rem 0 0;
  max-width: 56ch;
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

.legal-consent {
  grid-column: 1 / -1;
  margin: 0.2rem 0 0;
  font-size: 0.82rem;
  line-height: 1.6;
  color: #6f6f6f;
}

.legal-consent a {
  color: var(--brand-dark);
  font-weight: 700;
  text-decoration: none;
}

.legal-consent a:hover {
  text-decoration: underline;
}

.cta-actions {
  display: grid;
  gap: 0.65rem;
}

.store-btn {
  border-radius: 16px;
  border: 1.5px solid var(--border);
  background: var(--surface-soft);
  padding: 0.82rem 1rem;
  text-decoration: none;
  color: var(--text);
  display: grid;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.store-btn:hover {
  transform: translateY(-2px);
  border-color: var(--brand);
}

.store-btn span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6a6a6a;
  font-weight: 700;
}

.store-btn strong {
  font-size: 1rem;
  margin-top: 0.08rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.65rem 0 2.3rem;
  background: #fff;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.86rem;
  color: #666;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-delay {
  transition-delay: 0.2s;
}

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(2deg);
  }
}

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

@media (max-width: 980px) {
  .main-nav,
  .nav-cta {
    display: none;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .stats-grid,
  .features-grid,
  .flow-grid,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .cta-card {
    text-align: center;
  }

  .cta-copy p {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 2.3rem;
  }

  .phone-shell {
    width: min(280px, 84vw);
  }

  .footer-wrap {
    flex-direction: column;
  }
}
