@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700&family=Inter:wght@400;500;600;700&family=Pacifico&display=swap');

:root {
  --purple-dark: #653483;
  --purple: #8147a6;
  --purple-light: #a86bc4;
  --gold: #c89b4b;
  --cream: #fff9f0;
  --pink: #f7e9f6;
  --ink: #281b2e;
  --muted: #675d6d;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: auto;
}

/* Hidden in case the announcement element still exists in the HTML */
.announcement {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #eadfee;
  backdrop-filter: blur(10px);
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo img {
  width: 330px;
  max-width: 45vw;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 600;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--purple);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 13px 24px;
  font-weight: 700;
  background: var(--purple);
  color: #fff;
  border: 2px solid var(--purple);
  transition: 0.2s;
}

.btn:hover {
  background: var(--purple-dark);
  border-color: var(--purple-dark);
  transform: translateY(-1px);
}

.btn.light {
  background: #fff;
  color: var(--purple);
  border-color: #fff;
}

.menu-btn {
  display: none;
  background: none;
  border: 0;
  font-size: 1.7rem;
}

.hero {
  position: relative;
  background: #dfd0f2;
}

.hero picture img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: 42%;
  text-align: center;
}

.hero-copy h1 {
  font-family: Pacifico, cursive;
  color: #fff;
  font-size: clamp(2rem, 4vw, 4.6rem);
  line-height: 1.15;
  text-shadow: 0 3px 8px rgba(62, 31, 91, 0.35);
  margin: 0 0 28px;
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: var(--cream);
}

.section.pink {
  background: var(--pink);
}

h2,
h3,
h4 {
  font-family: 'Barlow Condensed', sans-serif;
  line-height: 1.1;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin: 0 0 20px;
  color: var(--purple-dark);
}

h3 {
  font-size: 2rem;
  margin: 0 0 12px;
}

.lead {
  font-size: 1.15rem;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: center;
  gap: 0;
  background: var(--purple);
  color: #fff;
}

.split video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-copy {
  padding: 48px;
}

.split-copy h2 {
  color: #fff;
}

.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 5px 13px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: center;
}

.feature {
  padding: 22px;
}

.feature .icon {
  font-size: 2.5rem;
}

.components {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.component {
  text-align: center;
}

.component img {
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 20px;
  background: #fff;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: step;
}

.step {
  background: #fff;
  border: 1px solid #eadfee;
  border-radius: 18px;
  padding: 25px;
  position: relative;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  font-weight: 700;
  margin-bottom: 14px;
}

.press {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 45px;
  align-items: center;
}

.press img {
  border-radius: 20px;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #eadfee;
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
}

.faq details {
  border-bottom: 1px solid #ddd;
  padding: 18px 0;
}

.faq summary {
  font-weight: 700;
  cursor: pointer;
  font-size: 1.05rem;
}

.newsletter {
  background: var(--purple);
  color: #fff;
  text-align: center;
}

.newsletter h2 {
  color: #fff;
}

.placeholder {
  border: 2px dashed rgba(255, 255, 255, 0.55);
  border-radius: 14px;
  padding: 24px;
  max-width: 650px;
  margin: 24px auto 0;
}

.footer {
  background: #241729;
  color: #fff;
  padding: 48px 0 25px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 35px;
}

.footer a {
  display: block;
  text-decoration: none;
  color: #e9ddec;
  margin: 7px 0;
}

.footer small {
  display: block;
  border-top: 1px solid #49384f;
  margin-top: 35px;
  padding-top: 20px;
  color: #c8b9ce;
}

.page-hero {
  padding: 70px 0;
  background: var(--pink);
  text-align: center;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.download-card {
  border: 1px solid #eadfee;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.download-card img {
  width: 100%;
  aspect-ratio: 1 / 1.414;
  object-fit: cover;
  object-position: top;
}

.download-card .card-body {
  padding: 18px;
}

.download-card h3 {
  font-size: 1.45rem;
}

.notice {
  background: #fff8dc;
  border: 1px solid #e7d27c;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 28px;
}

@media (max-width: 800px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .nav {
    height: 66px;
  }

  .logo img {
    max-width: 230px;
  }

  .menu-btn {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 66px;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    border-bottom: 1px solid #ddd;
  }

  .nav-links.open {
    display: flex;
  }

  .hero picture img {
    min-height: 620px;
  }

  .hero-copy {
    width: 100%;
    align-self: flex-start;
    padding-top: 50px;
  }

  .hero-copy h1 {
    font-size: 2.65rem;
  }

  .split,
  .product,
  .press {
    grid-template-columns: 1fr;
  }

  .split-copy {
    padding: 35px 24px;
  }

  .features,
  .components,
  .steps,
  .reviews,
  .download-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 52px 0;
  }

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

  .components {
    gap: 40px;
  }
}