:root {
  --ink: #151722;
  --muted: #697080;
  --line: #ecdceb;
  --paper: #fffafd;
  --soft: #fff0fa;
  --pink: #ff2fb3;
  --rose: #f00678;
  --violet: #8726f4;
  --lavender: #8a8cff;
  --blue: #4668ff;
  --graphite: #211b2b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(255, 250, 253, 0.88);
  border-bottom: 1px solid rgba(236, 220, 235, 0.8);
  display: flex;
  height: 76px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(20px, 5vw, 72px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 20px;
  font-weight: 800;
  gap: 10px;
}

.brand img {
  border-radius: 10px;
  height: 38px;
  width: 38px;
}

.site-nav {
  align-items: center;
  color: #4b3f55;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  gap: 30px;
}

.site-nav a:hover {
  color: var(--rose);
}

.menu-button {
  align-items: center;
  background: transparent;
  border: 0;
  display: none;
  flex-direction: column;
  gap: 6px;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 44px;
}

.menu-button span {
  background: var(--ink);
  border-radius: 999px;
  height: 2px;
  width: 22px;
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(34px, 6vw, 84px);
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 1.08fr);
  min-height: calc(100vh - 76px);
  overflow: hidden;
  padding: 58px clamp(20px, 5vw, 72px) 72px;
  position: relative;
}

.hero::before {
  background:
    linear-gradient(130deg, rgba(255, 47, 179, 0.13), transparent 28%),
    linear-gradient(315deg, rgba(138, 140, 255, 0.17), transparent 34%),
    linear-gradient(180deg, #fffafd 0%, #fff3fb 48%, #f5f7ff 100%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: -2;
}

.eyebrow {
  background: linear-gradient(90deg, var(--pink), var(--blue));
  background-clip: text;
  color: transparent;
  font-size: 13px;
  font-weight: 800;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.moments h2,
.app-showcase h2,
.download h2 {
  letter-spacing: 0;
  line-height: 1.04;
  margin: 0;
}

.hero h1 {
  font-size: clamp(46px, 6.1vw, 86px);
  max-width: 760px;
}

.hero-text {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  margin: 24px 0 0;
  max-width: 620px;
}

.hero-actions,
.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary-action,
.secondary-action {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 800;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
}

.primary-action {
  background: linear-gradient(90deg, var(--rose), var(--violet));
  box-shadow: 0 16px 32px rgba(240, 6, 120, 0.22);
  color: #fff;
}

.primary-action:hover {
  filter: saturate(1.08) brightness(1.02);
}

.secondary-action {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  color: var(--ink);
}

.secondary-action:hover {
  border-color: var(--pink);
  color: var(--rose);
}

.hero-stats {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 44px 0 0;
  max-width: 650px;
}

.hero-stats div {
  border-top: 1px solid rgba(240, 6, 120, 0.2);
  padding-top: 18px;
}

.hero-stats dt {
  font-size: 24px;
  font-weight: 800;
}

.hero-stats dd {
  color: var(--muted);
  font-size: 14px;
  margin: 4px 0 0;
}

.hero-media {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 650px;
  position: relative;
}

.hero-carousel {
  aspect-ratio: 9 / 16;
  background: linear-gradient(145deg, #f00678, #8726f4);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(33, 27, 43, 0.24);
  margin-left: auto;
  overflow: hidden;
  position: relative;
  width: min(27vw, 360px);
  z-index: 3;
}

.hero-carousel-track {
  height: 100%;
  position: relative;
  width: 100%;
}

.hero-carousel-track img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  opacity: 0;
  position: absolute;
  transition: opacity 480ms ease;
  width: 100%;
}

.hero-carousel-track img.is-active {
  opacity: 1;
}

.carousel-control {
  align-items: center;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(236, 220, 235, 0.92);
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(33, 27, 43, 0.18);
  color: var(--rose);
  cursor: pointer;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  z-index: 4;
}

.carousel-control:hover {
  background: #fff;
  color: var(--violet);
}

.carousel-control span {
  font-size: 34px;
  line-height: 1;
  margin-top: -3px;
}

.carousel-control-prev {
  left: 14px;
}

.carousel-control-next {
  right: 14px;
}

.carousel-dots {
  bottom: 18px;
  display: flex;
  gap: 8px;
  justify-content: center;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 4;
}

.carousel-dot {
  background: rgba(255, 255, 255, 0.5);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  height: 8px;
  padding: 0;
  width: 8px;
}

.carousel-dot.is-active {
  background: #fff;
  width: 24px;
}

.feature-band,
.moments,
.app-showcase,
.faq-section,
.download,
.site-footer {
  padding: 86px clamp(20px, 5vw, 72px);
}

.section-heading {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 34px;
}

.section-heading h2,
.moments h2,
.app-showcase h2,
.download h2 {
  font-size: clamp(34px, 4vw, 54px);
  max-width: 720px;
}

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

.feature-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
}

.feature-icon {
  align-items: center;
  background: #ffe4f6;
  border-radius: 8px;
  color: var(--rose);
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  height: 38px;
  justify-content: center;
  margin-bottom: 24px;
  width: 44px;
}

h3 {
  font-size: 21px;
  letter-spacing: 0;
  margin: 0 0 10px;
}

article p,
.moments-copy p,
.app-copy p,
.faq-grid p,
.download p {
  color: var(--muted);
  margin: 0;
}

.moments {
  align-items: center;
  background: #fff;
  display: grid;
  gap: clamp(34px, 5vw, 84px);
  grid-template-columns: minmax(320px, 1fr) minmax(0, 0.86fr);
  overflow: hidden;
}

.moments-gallery {
  min-height: 610px;
  position: relative;
}

.moment-photo {
  background: #fff;
  border: 10px solid #fff;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(33, 27, 43, 0.16);
  object-fit: cover;
  position: absolute;
}

.moment-photo-main {
  aspect-ratio: 1;
  left: 0;
  top: 16px;
  transform: rotate(-4deg);
  width: min(72%, 520px);
}

.moment-photo-side {
  aspect-ratio: 1;
  bottom: 10px;
  right: 0;
  transform: rotate(5deg);
  width: min(52%, 390px);
}

.moments-copy p,
.app-copy p {
  font-size: 18px;
  margin-top: 22px;
  max-width: 670px;
}

.check-list {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
}

.check-list li {
  align-items: center;
  color: #403749;
  display: flex;
  font-weight: 700;
  gap: 12px;
}

.check-list li::before {
  background: linear-gradient(180deg, var(--pink), var(--violet));
  border-radius: 999px;
  content: "";
  height: 9px;
  width: 9px;
}

.app-showcase {
  align-items: center;
  background:
    linear-gradient(135deg, #ffe1f4 0%, #fff7fc 46%, #eef1ff 100%);
  display: grid;
  gap: clamp(34px, 5vw, 84px);
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.72fr);
  overflow: hidden;
}

.app-screen-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(236, 220, 235, 0.95);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(33, 27, 43, 0.18);
  justify-self: center;
  max-height: 720px;
  overflow: hidden;
  padding: 10px;
  width: min(100%, 330px);
}

.app-screen-card img {
  border-radius: 6px;
  width: 100%;
}

.faq-section {
  background: #fff;
}

.faq-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-grid article {
  background: linear-gradient(180deg, #fffafd 0%, #ffffff 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
}

.download {
  align-items: center;
  background: linear-gradient(100deg, #211b2b 0%, #7f16ce 54%, #f00678 100%);
  color: #fff;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.download .eyebrow {
  background: none;
  color: #ffd5f2;
}

.download p {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 18px;
  max-width: 620px;
}

.download .download-actions {
  gap: 18px;
}

.download .primary-action,
.download .secondary-action {
  font-size: 18px;
  min-height: 70px;
  min-width: 176px;
  padding: 0 34px;
}

.download .secondary-action {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
}

.site-footer {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr auto auto;
  padding-bottom: 38px;
  padding-top: 38px;
}

.footer-links {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 700;
  gap: 22px;
}

.site-footer p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

@media (max-width: 1020px) {
  .hero,
  .moments,
  .app-showcase {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 680px;
  }

  .hero-carousel {
    margin: 0 auto;
    width: min(64vw, 360px);
  }
}

@media (max-width: 920px) {
  .menu-button {
    display: inline-flex;
  }

  .site-nav {
    background: #fff;
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    left: 0;
    padding: 18px 20px 22px;
    position: absolute;
    right: 0;
    top: 76px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .feature-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .download,
  .section-heading,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    height: 66px;
  }

  .site-nav {
    top: 66px;
  }

  .hero {
    padding-top: 38px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: auto;
  }

  .hero-carousel {
    width: min(82vw, 315px);
  }

  .carousel-control {
    height: 38px;
    width: 38px;
  }

  .carousel-control-prev {
    left: 10px;
  }

  .carousel-control-next {
    right: 10px;
  }

  .moments-gallery {
    min-height: 500px;
  }

  .moment-photo-main {
    width: 78%;
  }

  .moment-photo-side {
    width: 58%;
  }

  .app-screen-card {
    max-height: 590px;
    width: min(86vw, 300px);
  }

  .feature-band,
  .moments,
  .app-showcase,
  .faq-section,
  .download,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}
