:root {
  color: #332333;
  background: #fff7fb;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 190, 118, 0.72), transparent 25rem),
    radial-gradient(circle at 88% 5%, rgba(255, 118, 190, 0.42), transparent 27rem),
    linear-gradient(135deg, #fff7fb 0%, #ffe1ed 48%, #ffc079 100%);
}

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

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 24px;
  backdrop-filter: blur(18px);
}

.brand img {
  width: 118px;
  height: 118px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
}

.nav nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 800;
  color: #803056;
}

.nav-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  font-weight: 900;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.nav-button {
  min-height: 42px;
  padding: 0 22px;
  color: #fff;
  background: #e91672;
  box-shadow: 0 12px 24px rgba(233, 22, 114, 0.26);
}

.button {
  padding: 0 28px;
}

.button:hover,
.nav-button:hover {
  transform: translateY(-2px);
}

.primary {
  color: #fff;
  background: linear-gradient(135deg, #ff8f1f, #e91672);
  box-shadow: 0 18px 34px rgba(233, 22, 114, 0.28);
}

.secondary {
  color: #e91672;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 2px rgba(233, 22, 114, 0.12);
}

main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 470px);
  gap: 58px;
  align-items: center;
  min-height: calc(100vh - 118px);
}

.eyebrow {
  margin: 0 0 18px;
  color: #e91672;
  font-size: 15px;
  font-weight: 1000;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 26px;
  color: #e91672;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.94;
  letter-spacing: -0.075em;
  text-shadow: 0 5px 0 #fff;
}

.hero-text {
  max-width: 610px;
  margin-bottom: 34px;
  color: #794561;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.55;
  font-weight: 700;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-card {
  position: relative;
  transform: rotate(4deg);
  filter: drop-shadow(0 34px 34px rgba(137, 43, 86, 0.25));
}

.hero-card::before {
  position: absolute;
  inset: 12% -9% auto auto;
  width: 150px;
  height: 150px;
  content: "";
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  filter: blur(2px);
}

.hero-card img,
.screen-grid img {
  width: 100%;
  display: block;
  border-radius: 36px;
}

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

.features article,
.cta {
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 24px 60px rgba(164, 56, 105, 0.12);
  backdrop-filter: blur(18px);
}

.features article {
  padding: 30px;
}

.features span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  border-radius: 18px;
  color: #fff;
  background: #ff9c25;
  font-size: 18px;
  font-weight: 1000;
}

.features h2,
.section-title h2,
.cta h2 {
  color: #e91672;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.features h2 {
  margin-bottom: 14px;
  font-size: 32px;
}

.features p {
  margin-bottom: 0;
  color: #7a4b62;
  line-height: 1.7;
  font-weight: 650;
}

.screens {
  padding: 42px 0 84px;
}

.section-title {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-title h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 5.6vw, 72px);
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.screen-grid img {
  box-shadow: 0 24px 50px rgba(108, 39, 73, 0.18);
}

.screen-grid img:nth-child(even) {
  margin-top: 44px;
}

.cta {
  display: grid;
  place-items: center;
  margin-bottom: 46px;
  padding: 64px 24px;
  text-align: center;
}

.cta img {
  width: 138px;
  height: 138px;
  margin-bottom: 20px;
  border-radius: 50%;
  object-fit: cover;
}

.cta h2 {
  max-width: 650px;
  margin-bottom: 30px;
  font-size: clamp(36px, 5vw, 64px);
}

footer {
  padding: 0 24px 34px;
  color: #8f5871;
  text-align: center;
  font-weight: 700;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 12px;
}

@media (max-width: 900px) {
  .nav nav a:not(.nav-button) {
    display: none;
  }

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

  .hero {
    gap: 34px;
    min-height: auto;
    padding-top: 30px;
  }

  .hero-card {
    max-width: 410px;
    margin: 0 auto;
  }

  .screen-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .nav,
  main {
    padding-right: 16px;
    padding-left: 16px;
  }

  .brand img {
    width: 94px;
    height: 94px;
  }

  .nav-button {
    min-height: 38px;
    padding: 0 16px;
    font-size: 14px;
  }

  .hero-card {
    transform: rotate(2deg);
  }

  .screen-grid {
    grid-template-columns: 1fr;
  }

  .screen-grid img {
    max-width: 360px;
    margin: 0 auto;
  }

  .screen-grid img:nth-child(even) {
    margin-top: 0;
  }
}
