:root {
  --ink: #241634;
  --muted: #6f617e;
  --paper: #fdfaff;
  --soft: #f4ecfb;
  --soft-strong: #eadcf6;
  --line: #dfd0ee;
  --purple: #6f35b5;
  --purple-dark: #3d1c62;
  --purple-deep: #26123f;
  --berry: #a92278;
  --gold: #f0b35e;
  --mint: #2a9076;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(36, 22, 52, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  padding-bottom: 84px;
}

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

button,
a {
  font: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 56px;
  background: rgba(253, 250, 255, 0.92);
  border-bottom: 1px solid rgba(223, 208, 238, 0.9);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--purple-deep);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 8px 0 0 var(--gold);
}

.nav-cta,
.primary-cta,
.secondary-cta,
.sticky-cta button {
  border: 0;
  cursor: pointer;
  font-weight: 800;
  border-radius: 999px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.nav-cta {
  padding: 10px 16px;
  color: var(--white);
  background: var(--purple-deep);
}

.primary-cta,
.secondary-cta {
  min-height: 52px;
  padding: 15px 24px;
  box-shadow: 0 12px 26px rgba(111, 53, 181, 0.25);
}

.primary-cta {
  color: var(--white);
  background: var(--purple);
}

.secondary-cta {
  color: var(--purple-dark);
  background: var(--soft-strong);
}

.large {
  min-width: min(100%, 310px);
}

button:hover {
  transform: translateY(-1px);
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(240, 179, 94, 0.55);
  outline-offset: 3px;
}

.section {
  padding: 92px 56px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  gap: 64px;
  align-items: center;
  min-height: calc(100vh - 68px);
  padding-top: 54px;
  background: var(--paper);
}

.hero-copy,
.split,
.section-heading,
.final-inner,
.how-section,
.review-highlight {
  max-width: 1140px;
  margin: 0 auto;
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--berry);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: 4.85rem;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 3.25rem;
  line-height: 1.05;
  letter-spacing: 0;
}

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

.subheadline {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.22rem;
}

.hero-actions,
.center-action {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.text-link {
  color: var(--purple-dark);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid rgba(111, 53, 181, 0.3);
}

.mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.94rem;
}

.mini-proof span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

.hero-media img {
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.how-media img {
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.pain-section,
.trust-section,
.faq-section {
  background: var(--soft);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 70px;
}

.copy-stack p,
.section-heading p,
.final-inner p,
.how-copy p,
.faq-list p,
.benefit-card p,
.testimonial p {
  color: var(--muted);
  font-size: 1.05rem;
}

.benefits-section,
.testimonials-section {
  background: var(--white);
}

.section-heading {
  text-align: center;
}

.section-heading p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.benefit-grid,
.testimonial-grid,
.trust-row,
.faq-list {
  max-width: 1140px;
  margin: 34px auto 0;
}

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

.benefit-card,
.testimonial {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.benefit-card {
  border-top: 5px solid rgba(111, 53, 181, 0.5);
}

.benefit-icon {
  display: grid;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--purple);
  font-weight: 800;
}

.center-action {
  justify-content: center;
}

.how-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.steps {
  display: grid;
  gap: 14px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.steps li {
  padding: 18px 18px 18px 22px;
  border-left: 4px solid var(--gold);
  background: #fff8ee;
}

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

.trust-row div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.75);
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row span {
  margin-top: 5px;
  color: var(--muted);
}

.review-highlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: 44px;
  align-items: center;
  padding-top: 76px;
  padding-bottom: 76px;
}

.highlight-copy {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 36px rgba(36, 22, 52, 0.08);
}

.rating-pill {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--purple-dark);
  background: var(--soft-strong);
  font-size: 0.88rem;
  font-weight: 800;
}

blockquote {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.28;
}

.cup-media {
  justify-self: end;
  width: min(100%, 390px);
}

.cup-media img {
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.stars {
  margin-bottom: 14px;
  color: var(--berry);
  font-size: 0.96rem;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 22px 20px;
}

.final-section {
  background: var(--purple-deep);
  color: var(--white);
  text-align: center;
}

.final-section .eyebrow {
  color: var(--gold);
}

.final-inner p {
  color: rgba(255, 255, 255, 0.78);
}

.final-section .primary-cta {
  background: var(--gold);
  color: var(--purple-deep);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  max-width: 760px;
  margin: 0 auto;
  padding: 12px 12px 12px 18px;
  border: 1px solid rgba(223, 208, 238, 0.92);
  border-radius: 8px;
  background: rgba(253, 250, 255, 0.97);
  box-shadow: 0 12px 38px rgba(36, 22, 52, 0.18);
  backdrop-filter: blur(16px);
}

.sticky-cta span {
  color: var(--purple-dark);
  font-weight: 800;
}

.sticky-cta button {
  min-height: 44px;
  padding: 10px 18px;
  color: var(--white);
  background: var(--purple);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .topbar {
    padding-right: 24px;
    padding-left: 24px;
  }

  .section {
    padding: 72px 24px;
  }

  .hero,
  .split,
  .how-section,
  .trust-row,
  .review-highlight {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 34px;
  }

  .hero-media {
    order: -1;
  }

  h1 {
    font-size: 3.45rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .benefit-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cup-media {
    justify-self: start;
    width: min(100%, 430px);
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 96px;
  }

  .topbar {
    padding: 12px 14px;
  }

  .brand {
    font-size: 0.96rem;
  }

  .nav-cta {
    padding: 9px 12px;
    font-size: 0.84rem;
  }

  .section {
    padding: 58px 16px;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 2rem;
  }

  blockquote {
    font-size: 1.25rem;
  }

  .benefit-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .center-action {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-cta,
  .secondary-cta {
    width: 100%;
  }

  .sticky-cta {
    align-items: stretch;
  }

  .sticky-cta span {
    align-self: center;
    font-size: 0.88rem;
  }

  .sticky-cta button {
    padding-right: 14px;
    padding-left: 14px;
    font-size: 0.92rem;
  }
}
