:root {
  --bg: #fdf3ec;
  --bg-warm: #fbe7da;
  --ink: #3d1e5e;
  --ink-soft: #7e5a96;
  --peach: #f7b48a;
  --cheek: #ec8b6c;
  --magenta: #c8528f;
  --lavender: #a784d6;
  --gold: #e7a93e;
  --ring1: #fdc6c1;
  --ring2: #fcd9a2;
  --ring3: #fff0a8;
  --ring4: #cdeac6;
  --ring5: #bcd6f1;
  --ring6: #d4bff0;
  --card: #fffaf4;
  --line: rgba(167, 132, 214, .26);
  --shadow: 24px 30px 60px -28px rgba(126, 58, 138, .48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
}

.wrap {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 243, 236, .84);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.site-header,
main,
section,
.marquee,
.site-footer {
  max-width: 100vw;
  overflow-x: clip;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--peach) 0 24%, transparent 25%),
    radial-gradient(circle at center, transparent 0 41%, var(--ring5) 42% 48%, transparent 49%),
    radial-gradient(circle at center, transparent 0 58%, var(--ring3) 59% 66%, transparent 67%),
    radial-gradient(circle at center, transparent 0 75%, var(--ring1) 76% 84%, transparent 85%);
}

.brand-mark span {
  width: 15px;
  height: 8px;
  border-bottom: 3px solid var(--ink);
  border-radius: 0 0 999px 999px;
  transform: translateY(5px);
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(22px, 3vw, 30px);
  color: var(--magenta);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-soft);
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--magenta);
}

.nav-toggle {
  display: none;
  flex: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--card);
  padding: 10px;
  position: relative;
  z-index: 70;
}

.nav-toggle__bar {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(52px, 8vw, 108px) 0 clamp(58px, 8vw, 112px);
}

.hero-grid,
.split,
.audio-panel,
.shop-strip-inner {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
}

.eyebrow,
.kicker,
.blog-meta {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--magenta);
}

.eyebrow {
  display: inline-flex;
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  color: var(--ink-soft);
}

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

h1 {
  margin: 20px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 9vw, 112px);
  line-height: .9;
  color: var(--magenta);
}

h1 span {
  display: block;
  color: var(--lavender);
  font-style: italic;
  font-weight: 400;
}

h2 {
  margin: 8px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1;
}

h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.lead,
.section-head p,
.audio-panel p,
.shop-strip p,
.sources p,
.legal-card p,
.site-footer p {
  color: var(--ink-soft);
  line-height: 1.68;
}

.lead {
  max-width: 56ch;
  font-size: clamp(17px, 2vw, 20px);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button,
.laugh-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 15px 27px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover,
.laugh-button:hover {
  transform: translateY(-3px);
}

.button-primary,
.laugh-button {
  color: #fff;
  background: linear-gradient(120deg, var(--magenta), var(--lavender));
  box-shadow: 0 18px 34px -16px rgba(200, 82, 143, .8);
}

.button-ghost {
  border: 1.5px solid var(--line);
  color: var(--ink);
  background: var(--card);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.hero-facts li {
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 250, 244, .76);
  color: var(--ink-soft);
  font-weight: 700;
}

.hero-art {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-art svg {
  width: min(460px, 86vw);
  filter: drop-shadow(0 32px 36px rgba(126, 58, 138, .18));
  animation: floaty 7s ease-in-out infinite;
}

.sun-rings {
  transform-origin: 210px 210px;
  animation: spin 62s linear infinite;
}

.blob {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .48;
}

.blob-one {
  width: 340px;
  height: 340px;
  right: -80px;
  top: 20px;
  background: var(--ring1);
}

.blob-two {
  width: 300px;
  height: 300px;
  left: -90px;
  bottom: -70px;
  background: var(--ring6);
}

.marquee {
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-warm);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 52px;
  animation: slide 24s linear infinite;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.section {
  padding: clamp(58px, 8vw, 108px) 0;
}

.section-tint {
  background: linear-gradient(120deg, #fbe7da, #f3e4f6);
}

.section-head {
  align-self: start;
}

.section-head.centered {
  max-width: 760px;
  margin: 0 auto clamp(32px, 5vw, 56px);
  text-align: center;
}

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

.benefit-card,
.blog-card,
.audio-card,
.legal-card {
  border: 1px solid rgba(255, 255, 255, .86);
  border-radius: 24px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.benefit-card,
.blog-card,
.legal-card {
  padding: clamp(22px, 3vw, 30px);
}

.benefit-card span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .18em;
}

.benefit-card p,
.blog-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.62;
}

.audio-panel {
  grid-template-columns: 1fr minmax(280px, 430px);
}

.audio-card {
  padding: clamp(28px, 5vw, 46px);
  text-align: center;
}

.laugh-button {
  width: 100%;
}

.play-icon {
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid currentColor;
}

.laugh-button.is-playing .play-icon {
  width: 16px;
  height: 18px;
  border: 0;
  background: linear-gradient(90deg, currentColor 0 35%, transparent 35% 65%, currentColor 65% 100%);
}

.audio-status {
  margin: 18px 0 0;
  font-weight: 700;
}

.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-card a,
.sources a,
.legal-card a {
  color: var(--magenta);
  font-weight: 800;
}

.blog-card a {
  display: inline-flex;
  margin-top: 20px;
  text-decoration: none;
}

.shop-strip {
  padding-top: 0;
}

.shop-strip-inner {
  padding: clamp(32px, 5vw, 58px);
  border-radius: 32px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
}

.shop-strip-inner h2 {
  color: #fff;
}

.shop-strip-inner p {
  color: #dfcdec;
}

.shop-strip-inner .button {
  justify-self: end;
  background: linear-gradient(120deg, var(--gold), var(--peach));
  color: var(--ink);
}

.sources {
  padding-top: 0;
}

.sources .wrap {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.site-footer {
  padding: 48px 0 28px;
  background: var(--ink);
  color: #fff;
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 34px;
}

.footer-brand .brand-name {
  color: #fff;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.site-footer a {
  color: #eadff2;
  font-weight: 800;
  text-decoration: none;
}

.copy {
  width: min(1160px, 92vw);
  margin: 30px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  text-align: center;
}

.legal-page {
  padding: clamp(54px, 8vw, 100px) 0;
}

.legal-wrap {
  max-width: 880px;
}

.legal-wrap h1 {
  margin-bottom: 34px;
  font-size: clamp(46px, 7vw, 86px);
}

.legal-card {
  margin-bottom: 22px;
}

.legal-card h2 {
  font-size: clamp(25px, 3vw, 36px);
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes slide {
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

@media (max-width: 860px) {
  .nav {
    min-height: 66px;
  }

  .nav-toggle {
    display: block;
    box-shadow: 0 8px 18px -14px rgba(61, 30, 94, .8);
  }

  .nav-links:not(.nav-links-static) {
    position: absolute;
    top: 66px;
    left: 4vw;
    right: 4vw;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--card);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .hero-grid,
  .split,
  .audio-panel,
  .shop-strip-inner {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    text-align: center;
  }

  .hero-copy {
    display: grid;
    justify-items: center;
    width: 100%;
    min-width: 0;
  }

  .hero-art {
    order: -1;
  }

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

  .shop-strip-inner .button {
    justify-self: start;
  }

  .footer-grid {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }

  .nav {
    min-width: 0;
    gap: 10px;
  }

  .brand {
    min-width: 0;
  }

  .brand-name {
    font-size: 20px;
    white-space: nowrap;
  }

  .nav-toggle {
    position: fixed;
    top: 11px;
    right: 14px;
    background: #fffaf4;
  }

  .cta-row,
  .button,
  .laugh-button {
    width: 100%;
  }

  .cta-row,
  .lead,
  .hero-facts {
    max-width: min(100%, 340px);
  }

  h1 {
    width: 100%;
    font-size: clamp(46px, 14vw, 58px);
  }

  .hero {
    padding-top: 34px;
  }

  .hero-art svg {
    width: min(320px, 88vw);
  }

  .shop-strip-inner {
    border-radius: 24px;
  }
}
