:root {
  --plum: #241333;
  --plum-soft: #43245f;
  --violet: #7756cf;
  --orchid: #b476d6;
  --coral: #ef9a72;
  --cream: #fff8f1;
  --shell: #f7eef7;
  --white: #ffffff;
  --ink: #1b1720;
  --muted: #6e6574;
  --line: rgba(36, 19, 51, 0.12);
  --shadow: 0 24px 70px rgba(36, 19, 51, 0.16);
  --radius: 12px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -90px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--white);
  color: var(--plum);
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

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

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

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--plum);
  box-shadow: 0 12px 28px rgba(36, 19, 51, 0.18);
}

.brand img {
  width: 158px;
  height: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--plum);
  font-size: 0.94rem;
  font-weight: 800;
}

.nav-menu a {
  padding: 10px 0;
}

.nav-menu a:hover {
  color: var(--violet);
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-btn {
  border: 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--plum), var(--violet) 58%, var(--coral));
  box-shadow: 0 16px 36px rgba(119, 86, 207, 0.26);
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(119, 86, 207, 0.32);
}

.secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.14);
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  background: var(--plum);
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 92px 0 76px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 18%, rgba(239, 154, 114, 0.34), transparent 28%),
    radial-gradient(circle at 24% 78%, rgba(180, 118, 214, 0.22), transparent 26%),
    linear-gradient(135deg, #20102e 0%, #3c1f58 54%, #6d4bcc 100%);
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: auto -10% -48% -10%;
  height: 58%;
  background: rgba(255, 255, 255, 0.08);
  transform: rotate(-4deg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: 54px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 690px;
  font-size: clamp(2.15rem, 5.2vw, 4.25rem);
  line-height: 1.12;
}

h2 {
  font-size: clamp(2rem, 4.6vw, 3.75rem);
}

h3 {
  color: var(--plum);
  font-size: 1.12rem;
}

.hero-lead {
  max-width: 680px;
  margin: 24px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.04rem, 2vw, 1.24rem);
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  font-size: 0.86rem;
}

.hero-media {
  display: grid;
  place-items: center;
}

.product-orbit {
  position: relative;
  width: min(100%, 440px);
  padding: 30px;
}

.product-orbit::before {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(239, 154, 114, 0.2));
  filter: blur(2px);
}

.product-orbit img {
  position: relative;
  margin: 0 auto;
  filter: drop-shadow(0 32px 42px rgba(0, 0, 0, 0.32));
}

.marquee-strip {
  background: var(--white);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.strip-grid div {
  padding: 28px;
  background: var(--white);
}

.strip-grid strong,
.strip-grid span {
  display: block;
}

.strip-grid strong {
  color: var(--plum);
  font-size: 1.1rem;
}

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

.section {
  padding: 90px 0;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading p:not(.eyebrow),
.editorial-copy p,
.editorial-card p,
.package-card p,
.ingredient-grid p,
.story-grid p,
.check-list,
.review-card p,
.offer-grid p,
.faq-answer p,
.site-footer p {
  color: var(--muted);
}

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

.editorial-grid,
.story-grid,
.offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  align-items: center;
  gap: 48px;
}

.editorial-copy {
  max-width: 570px;
}

.editorial-copy .primary-btn {
  margin-top: 12px;
}

.editorial-card,
.package-card,
.ingredient-grid article,
.review-card,
.offer-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(36, 19, 51, 0.08);
}

.editorial-card {
  overflow: hidden;
}

.editorial-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.editorial-card div {
  padding: 24px;
}

.product-section {
  background: var(--shell);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.package-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 26px;
  text-align: center;
}

.package-card img {
  height: 245px;
  object-fit: contain;
  margin: 0 auto;
}

.featured-card {
  transform: translateY(-14px);
  border-color: rgba(119, 86, 207, 0.32);
  box-shadow: var(--shadow);
}

.card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--plum);
  background: #ffe6c7;
  font-size: 0.78rem;
  font-weight: 900;
}

.ingredient-section {
  background: var(--white);
}

.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.ingredient-grid article {
  padding: 24px;
}

.ingredient-grid img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  margin-bottom: 18px;
}

.image-story {
  background: linear-gradient(135deg, #fff8f1 0%, #f6ecfb 100%);
}

.story-grid {
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
}

.story-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.story-grid figure img {
  width: 100%;
  height: 410px;
  object-fit: cover;
}

.story-grid figcaption {
  padding: 16px 18px;
  color: var(--plum);
  font-weight: 900;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  width: 10px;
  height: 16px;
  border-right: 3px solid var(--violet);
  border-bottom: 3px solid var(--violet);
  transform: rotate(45deg);
}

.reviews-section {
  background: var(--white);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.review-card {
  padding: 24px;
}

.review-card img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
}

.review-card strong,
.review-card span {
  display: block;
}

.review-card strong {
  color: var(--plum);
}

.review-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.offer-section {
  padding: 88px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 22%, rgba(239, 154, 114, 0.3), transparent 28%),
    linear-gradient(135deg, var(--plum), var(--plum-soft));
}

.offer-section h2,
.offer-section p {
  color: var(--white);
}

.offer-card {
  padding: 28px;
  text-align: center;
}

.offer-card img:first-child {
  max-height: 340px;
  object-fit: contain;
  margin: 0 auto 18px;
}

.offer-note {
  display: grid;
  gap: 2px;
  margin-bottom: 16px;
}

.offer-note strong {
  color: var(--plum);
  font-size: 1.2rem;
}

.offer-note span {
  color: var(--muted);
}

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

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 64px;
  padding: 18px 54px 18px 20px;
  border: 0;
  background: var(--white);
  color: var(--plum);
  text-align: left;
  font-weight: 900;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--violet);
  font-size: 1.5rem;
}

.faq-question[aria-expanded="true"]::after {
  content: "-";
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  padding: 0 20px;
  overflow: hidden;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.active .faq-answer p {
  padding-bottom: 20px;
}

.site-footer {
  padding: 58px 0 94px;
  background: #170b22;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.7fr 0.82fr 0.95fr;
  gap: 32px;
}

.footer-grid img {
  width: 168px;
  height: auto;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.site-footer h3 {
  margin: 0 0 14px;
  color: var(--white);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.66);
}

.site-footer a,
.footer-link {
  display: block;
  width: fit-content;
  margin: 8px 0;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.site-footer a:hover,
.footer-link:hover {
  color: var(--white);
}

.footer-btn {
  margin-top: 14px !important;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 85;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: rgba(255, 248, 241, 0.96);
  box-shadow: 0 -18px 38px rgba(36, 19, 51, 0.14);
}

.mobile-cta span {
  color: var(--plum);
  font-weight: 900;
}

.modal-layer {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(19, 8, 29, 0.68);
}

.modal-layer.show {
  display: flex;
}

.policy-modal {
  position: relative;
  width: min(100%, 620px);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.policy-modal h2 {
  margin-bottom: 14px;
  color: var(--plum);
}

.policy-modal p {
  color: var(--muted);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--shell);
  color: var(--plum);
  cursor: pointer;
  font-weight: 900;
}

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

  .menu-toggle {
    display: grid;
  }

  .nav-menu {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 84px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .nav-menu a {
    padding: 14px;
  }

  .hero-grid,
  .editorial-grid,
  .story-grid,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .strip-grid,
  .package-grid,
  .ingredient-grid,
  .review-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-card {
    transform: none;
  }
}

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

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

  .brand img {
    width: 128px;
  }

  .brand {
    padding: 8px 12px;
  }

  .hero-section {
    padding: 58px 0 52px;
  }

  .hero-actions a {
    width: 100%;
  }

  .section {
    padding: 66px 0;
  }

  .strip-grid,
  .package-grid,
  .ingredient-grid,
  .review-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .package-card img {
    height: 220px;
  }

  .editorial-card img,
  .story-grid figure img {
    height: 300px;
  }

  .footer-bottom {
    display: grid;
  }

  .mobile-cta {
    display: flex;
  }

  .site-footer {
    padding-bottom: 120px;
  }
}
