:root {
  --bg: #fff8ee;
  --panel: #ffffff;
  --panel-soft: #fff0df;
  --text: #312833;
  --muted: #766775;
  --pink: #f25b9f;
  --rose: #d43d86;
  --blue: #65c9f3;
  --yellow: #ffd66b;
  --orange: #ff9f45;
  --line: rgba(212, 61, 134, 0.18);
  --shadow: 0 24px 68px rgba(147, 73, 117, 0.14);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Verdana, Arial, Helvetica, sans-serif;
  line-height: 1.72;
  background:
    linear-gradient(135deg, rgba(255, 214, 107, 0.28), transparent 32%),
    linear-gradient(225deg, rgba(101, 201, 243, 0.2), transparent 36%),
    linear-gradient(180deg, #fff8ee 0%, #fffefd 52%, #fff3ec 100%);
}

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

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

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

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

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  font-weight: 950;
}

.brand strong {
  color: var(--rose);
  font-size: 1.16rem;
}

.brand span {
  color: #9a6320;
  font-size: 0.9rem;
}

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

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

.play,
.primary,
.mobile-cta a {
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--pink));
  box-shadow: 0 16px 34px rgba(212, 61, 134, 0.24);
}

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

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

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

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

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

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

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.4rem, 4.7vw, 4.9rem);
  line-height: 1.02;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  line-height: 1.08;
  overflow-wrap: break-word;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.34rem;
}

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

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

.hero-card,
.feature-layout figure,
.cards-three article {
  margin: 0;
  overflow: hidden;
  border: 10px solid #fff;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.metrics {
  padding: 18px 0 48px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.metrics-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
}

.metrics-grid span {
  display: block;
  color: var(--rose);
  font-size: 1.6rem;
  font-weight: 950;
  line-height: 1;
}

.metrics-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.section {
  padding: 74px 0;
}

.feature-layout,
.rtp-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.9fr);
  align-items: center;
  gap: 42px;
}

.feature-layout figure img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.pastel {
  background:
    linear-gradient(90deg, rgba(255, 214, 107, 0.16), rgba(242, 91, 159, 0.12)),
    rgba(255, 255, 255, 0.45);
  border-block: 1px solid var(--line);
}

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

.cards-three article {
  padding: 12px 12px 22px;
}

.cards-three img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 18px;
}

.cards-three h3,
.cards-three p {
  padding-inline: 8px;
}

.cards-three h3 {
  margin-top: 18px;
}

.text-column {
  max-width: 900px;
}

.text-column p,
.rtp-grid p {
  font-size: 1.04rem;
}

.rtp-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(101, 201, 243, 0.18), transparent 32%),
    #fffdfa;
}

.rtp-grid {
  align-items: start;
}

.rtp-grid aside {
  position: sticky;
  top: 104px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow);
}

.rtp-grid aside strong {
  display: block;
  margin-bottom: 14px;
  color: var(--rose);
  font-size: 1.22rem;
}

.rtp-grid ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.rtp-grid li + li {
  margin-top: 10px;
}

.cta-block {
  padding: 42px 0 76px;
}

.cta {
  padding: 42px;
  border-radius: 30px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 214, 107, 0.34), rgba(242, 91, 159, 0.2)),
    #fff;
  box-shadow: var(--shadow);
}

.cta h2 {
  max-width: 820px;
  margin-inline: auto;
}

.faq {
  padding-top: 12px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(147, 73, 117, 0.08);
}

.faq details + details {
  margin-top: 12px;
}

.faq summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
}

.faq details p {
  padding: 0 20px 20px;
}

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

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

.footer strong {
  color: var(--rose);
}

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

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

  .hero-grid,
  .feature-layout,
  .rtp-grid {
    grid-template-columns: 1fr;
  }

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

  .cards-three {
    grid-template-columns: 1fr;
  }

  .rtp-grid aside {
    position: static;
  }
}

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

  .header-inner {
    min-height: 68px;
  }

  .nav {
    display: none;
  }

  .mobile-cta {
    top: 68px;
  }

  .hero {
    padding: 36px 0 30px;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  h2 {
    font-size: clamp(1.8rem, 9vw, 2.55rem);
  }

  .section {
    padding: 54px 0;
  }

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

  .hero-card,
  .feature-layout figure,
  .cards-three article {
    border-width: 6px;
    border-radius: 22px;
  }

  .cta {
    padding: 28px 18px;
    border-radius: 24px;
  }

  .footer-inner {
    display: block;
  }
}
