:root {
  --cream: #fffaf1;
  --paper: #ffffff;
  --pink: #ff6aa9;
  --rose: #e23b8f;
  --blue: #56c7f5;
  --mint: #71dfc7;
  --yellow: #ffe17a;
  --text: #2f2330;
  --muted: #756472;
  --line: rgba(226, 59, 143, 0.18);
  --shadow: 0 24px 70px rgba(148, 45, 100, 0.15);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(135deg, rgba(255, 106, 169, 0.1), transparent 34%),
    linear-gradient(225deg, rgba(86, 199, 245, 0.16), transparent 38%),
    var(--cream);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.72;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 250, 241, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.topbar-row {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 1.25rem;
  font-weight: 950;
}

.brand span {
  color: var(--rose);
}

.brand b {
  color: #ffb000;
}

.nav {
  display: flex;
  gap: 18px;
  font-weight: 850;
  color: var(--muted);
}

.play-link,
.primary,
.outline,
.mobile-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 900;
}

.play-link,
.primary,
.mobile-cta a {
  background: linear-gradient(135deg, var(--rose), var(--pink));
  color: #fff;
  box-shadow: 0 14px 30px rgba(226, 59, 143, 0.22);
}

.outline {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--rose);
}

.mobile-cta {
  display: none;
  padding: 12px 18px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.mobile-cta a {
  width: 100%;
}

.hero {
  padding: 72px 0 46px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(390px, 1.06fr);
  align-items: center;
  gap: 38px;
}

.kicker {
  margin: 0 0 12px;
  color: var(--rose);
  font-size: 0.83rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 4.7vw, 4.8rem);
  line-height: 1;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.05;
}

p {
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-media,
.magazine-grid figure,
.image-led figure,
.bonus-grid figure {
  margin: 0;
  overflow: hidden;
  border: 10px solid #fff;
  border-radius: 26px;
  box-shadow: var(--shadow);
  background: #fff;
}

.hero-media img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.snapshot {
  padding: 24px 0 54px;
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.snapshot-grid div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.snapshot-grid strong {
  display: block;
  color: var(--rose);
}

.snapshot-grid span {
  color: var(--muted);
}

.section {
  padding: 76px 0;
}

.magazine-grid,
.image-led,
.bonus-grid {
  display: grid;
  align-items: center;
  gap: 42px;
}

.magazine-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
}

.image-led,
.bonus-grid {
  grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1.1fr);
}

.soft {
  background:
    linear-gradient(100deg, rgba(113, 223, 199, 0.14), transparent 38%),
    linear-gradient(280deg, rgba(255, 225, 122, 0.16), transparent 40%);
}

.bonus-panel {
  background: #fff2f7;
}

.long-copy {
  max-width: 920px;
}

.cta-section {
  padding: 32px 0 82px;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow);
}

.faq details {
  margin-top: 12px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
}

.faq details p {
  margin: 12px 0 0;
}

.footer {
  padding: 30px 0;
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
}

@media (max-width: 1000px) {
  .play-link {
    display: none;
  }

  .mobile-cta {
    display: block;
    position: sticky;
    top: 78px;
    z-index: 22;
  }

  .nav {
    overflow-x: auto;
    max-width: 58vw;
    white-space: nowrap;
  }

  .hero-layout,
  .snapshot-grid,
  .magazine-grid,
  .image-led,
  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
  }
}

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

  .topbar-row {
    min-height: 66px;
  }

  .nav {
    display: none;
  }

  .mobile-cta {
    top: 66px;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-actions,
  .cta,
  .footer-row {
    flex-direction: column;
    align-items: stretch;
  }

  .primary,
  .outline {
    width: 100%;
  }
}
