:root {
  --bg: #1a0714;
  --card: #2a0e22;
  --rose-gold: #d8a76a;
  --burnt: #c65b7c;
  --light-gold: #e6b86a;
  --text: #fff6f8;
  --muted: #d8bfc9;
  --line: rgba(216, 167, 106, 0.38);
  --shadow: rgba(198, 91, 124, 0.24);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: "Segoe UI", Arial, sans-serif;
  background: var(--bg);
}
a { color: inherit; }
.section-stars {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(198, 91, 124, 0.16), transparent 35%),
    radial-gradient(circle at 20% 30%, rgba(216, 167, 106, 0.08), transparent 28%),
    var(--bg);
}
.section-stars::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(216, 167, 106, 0.58) 1px, transparent 1px),
    radial-gradient(circle, rgba(255, 246, 248, 0.18) 1px, transparent 1px);
  background-size: 88px 88px, 140px 140px;
  opacity: 0.45;
  pointer-events: none;
}
.section-stars > * { position: relative; z-index: 1; }
.offer-banner {
  min-height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(216, 167, 106, 0.25);
  background: rgba(42, 14, 34, 0.78);
  color: var(--rose-gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.offer-banner strong { color: var(--text); }
.hero {
  min-height: 860px;
  display: grid;
  align-items: center;
  text-align: center;
}
.hero-inner {
  width: min(980px, calc(100% - 30px));
  margin: 0 auto;
  padding: 80px 0 120px;
}
.planet-mark {
  width: 88px;
  height: 88px;
  margin: 0 auto 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--rose-gold);
  font-size: 52px;
  box-shadow: 0 0 60px var(--shadow);
}
.pill, .micro, .offer-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rose-gold);
  border-radius: 999px;
  color: var(--rose-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pill { padding: 8px 18px; }
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
}
.hero h1 {
  margin: 28px 0 16px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.05;
  text-transform: uppercase;
}
.hero h1 span, .section h2 span, .final-cta h2 span, .offer h2 span { color: var(--rose-gold); }
.hero h2 {
  margin: 0;
  color: var(--rose-gold);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 500;
}
.hero-copy {
  max-width: 760px;
  margin: 28px auto 34px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}
.cta {
  width: min(520px, 100%);
  min-height: 58px;
  margin: 0 auto;
  padding: 18px 28px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--burnt), var(--light-gold));
  color: #190713;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 16px 40px rgba(198, 91, 124, 0.34);
}
.section {
  padding: 82px 18px;
  border-top: 1px solid rgba(216, 167, 106, 0.12);
  text-align: center;
}
.section h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.05;
  text-transform: uppercase;
}
.section-subtitle {
  margin: 18px auto 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
}
.unlock-list {
  width: min(980px, 100%);
  margin: 56px auto 0;
  display: grid;
  gap: 16px;
}
.unlock-list article, .audience-grid article, .gift-card, .offer-card, .faq details, .dimension-grid article {
  border: 1px solid var(--line);
  background: rgba(42, 14, 34, 0.78);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
}
.unlock-list article {
  min-height: 88px;
  padding: 22px;
  display: flex;
  gap: 20px;
  align-items: center;
  border-radius: 18px;
  text-align: left;
}
.unlock-list span { font-size: 30px; }
.unlock-list h3 { margin: 0; font-size: 18px; text-transform: uppercase; }
.unlock-list p { margin: 8px 0 0; color: var(--rose-gold); font-weight: 900; text-transform: uppercase; }
.dimension-grid {
  width: min(1080px, 100%);
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.dimension-grid article {
  min-height: 145px;
  padding: 28px 18px;
  border-radius: 14px;
  font-size: 34px;
}
.dimension-grid h3 {
  margin: 18px 0 0;
  color: var(--muted);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.audience-grid {
  width: min(980px, 100%);
  margin: 58px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.audience-grid article {
  padding: 36px;
  border-radius: 18px;
  text-align: left;
}
.audience-grid h3 { margin: 0 0 26px; color: var(--rose-gold); font-size: 22px; text-transform: uppercase; }
.audience-grid p { color: var(--muted); font-size: 17px; line-height: 1.55; }
.gifts-grid {
  width: min(1120px, 100%);
  margin: 58px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.gift-card { border-radius: 16px; overflow: hidden; text-align: left; }
.gift-cover {
  min-height: 178px;
  position: relative;
  display: grid;
  place-items: center;
  padding: 26px;
  background:
    radial-gradient(circle at 50% 45%, rgba(230, 184, 106, 0.16), transparent 46%),
    linear-gradient(135deg, rgba(42, 14, 34, 0.94), rgba(60, 16, 48, 0.88));
  text-align: center;
}
.bonus-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 10px;
  border: 1px solid var(--rose-gold);
  border-radius: 999px;
  color: var(--rose-gold);
  font-size: 9px;
  font-weight: 900;
}
.cover-symbol { color: var(--rose-gold); font-size: 44px; }
.gift-cover strong { color: var(--text); font-family: Georgia, "Times New Roman", serif; font-size: 17px; line-height: 1.1; }
.gift-copy { padding: 22px; }
.gift-copy h3 { margin: 0; font-size: 19px; }
.gift-copy p { color: var(--muted); line-height: 1.5; }
.gift-value { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.gift-value del { color: rgba(216, 191, 201, 0.75); }
.gift-value strong { color: var(--rose-gold); }
.testimonial-carousel {
  width: min(460px, 100%);
  margin: 44px auto 0;
  overflow: hidden;
  border: 1px solid rgba(216, 167, 106, 0.26);
  border-radius: 16px;
}
.testimonial-track { display: flex; transition: transform 0.55s ease; touch-action: pan-y; }
.testimonial-track figure { min-width: 100%; margin: 0; padding: 16px; }
.testimonial-track img { width: 100%; display: block; border-radius: 12px; }
.carousel-dots { display: flex; justify-content: center; gap: 8px; padding: 16px; }
.carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 246, 248, 0.42);
}
.carousel-dots button.is-active { width: 22px; border-radius: 999px; background: var(--rose-gold); }
.offer .micro {
  margin-bottom: 18px;
  border: 0;
}
.offer-card {
  width: min(620px, 100%);
  margin: 42px auto 0;
  padding: 42px;
  position: relative;
  border-radius: 20px;
  text-align: left;
}
.offer-card .offer-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 24px;
  background: var(--bg);
}
.old-price { text-align: center; color: var(--muted); }
.price {
  margin: 8px 0 28px;
  color: var(--rose-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 8vw, 76px);
  font-weight: 800;
  text-align: center;
}
.offer-card ul {
  margin: 0 0 34px;
  padding: 0;
  display: grid;
  gap: 16px;
  list-style: none;
  font-weight: 800;
}
.offer-card li::before { content: "✦"; color: var(--rose-gold); margin-right: 12px; }
.timer {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}
.timer div {
  width: 76px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.timer strong { font-family: Georgia, "Times New Roman", serif; font-size: 26px; }
.timer span { color: var(--muted); font-size: 9px; font-weight: 900; text-transform: uppercase; }
.safe-note { margin: 18px 0 0; color: var(--muted); font-size: 12px; text-align: center; }
.seal {
  width: 88px;
  height: 88px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  border: 1px solid var(--rose-gold);
  border-radius: 50%;
  color: var(--rose-gold);
  font-size: 12px;
  font-weight: 900;
}
.guarantee p {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}
.faq-list {
  width: min(760px, 100%);
  margin: 42px auto 0;
  display: grid;
  gap: 14px;
  text-align: left;
}
.faq details {
  border-radius: 14px;
  overflow: hidden;
}
.faq summary {
  padding: 24px 28px;
  cursor: pointer;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
  text-transform: uppercase;
}
.faq summary::marker { color: var(--rose-gold); }
.faq details p {
  margin: 0;
  padding: 0 28px 24px;
  color: var(--muted);
  line-height: 1.6;
}
.final-cta {
  padding: 86px 18px;
  text-align: center;
}
.final-cta h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 54px);
  text-transform: uppercase;
}
.final-cta p {
  max-width: 660px;
  margin: 18px auto 30px;
  color: var(--muted);
  font-size: 18px;
}
footer {
  padding: 34px 18px;
  color: rgba(216, 191, 201, 0.72);
  background: #09030a;
  text-align: center;
  font-size: 13px;
}

@media (max-width: 820px) {
  .dimension-grid, .gifts-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .offer-banner {
    padding: 10px 14px;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-align: center;
  }
  .hero { min-height: auto; }
  .hero-inner { padding: 58px 0 76px; }
  .planet-mark { width: 72px; height: 72px; font-size: 40px; }
  .pill { font-size: 10px; }
  .hero-copy { font-size: 16px; }
  .section { padding: 62px 12px; }
  .unlock-list article { padding: 18px; align-items: flex-start; }
  .dimension-grid { grid-template-columns: 1fr; gap: 16px; }
  .gifts-grid { grid-template-columns: 1fr; gap: 18px; }
  .gift-cover { min-height: 210px; }
  .gift-copy { padding: 22px 20px 19px; }
  .gift-copy h3 { font-size: 20px; }
  .audience-grid article, .offer-card { padding: 28px 20px; }
  .offer-card .cta { font-size: 12px; }
  .testimonial-carousel { width: min(390px, 100%); }
}
