:root {
  --ink: #1a1220;
  --ink-soft: #3d3348;
  --paper: #fff8fb;
  --paper-muted: rgba(255, 248, 251, 0.72);
  --rose: #e11d68;
  --rose-deep: #be1255;
  --coral: #ff6b6b;
  --amber: #f5a524;
  --lime: #7bc67e;
  --sky: #5bb8e8;
  --violet: #9b6dff;
  --magenta: #d946ef;
  --header-h: 4.25rem;
  --demo-h: 2.25rem;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 24px 60px rgba(88, 28, 68, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 95% 65% at 8% -5%, rgba(255, 107, 107, 0.48), transparent 58%),
    radial-gradient(ellipse 80% 55% at 92% 0%, rgba(155, 109, 255, 0.42), transparent 52%),
    radial-gradient(ellipse 70% 50% at 55% 8%, rgba(91, 184, 232, 0.32), transparent 55%),
    radial-gradient(ellipse 65% 45% at 15% 38%, rgba(245, 165, 36, 0.28), transparent 52%),
    radial-gradient(ellipse 55% 40% at 85% 42%, rgba(123, 198, 126, 0.26), transparent 50%),
    radial-gradient(ellipse 50% 35% at 48% 55%, rgba(217, 70, 239, 0.14), transparent 55%),
    linear-gradient(165deg, #ffe4ef 0%, #fff1e4 26%, #e8f5ff 52%, #efe6ff 76%, #fff4f7 100%);
  background-attachment: fixed;
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0;
}

p {
  margin: 0;
}

.demo-banner {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  min-height: var(--demo-h);
  padding: 0.4rem 1rem;
  background: var(--ink);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.demo-banner a {
  color: #ffb4d4;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.site-header {
  position: sticky;
  top: var(--demo-h);
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: var(--header-h);
  padding: 0.75rem clamp(1.25rem, 4vw, 3rem);
  background: rgba(255, 248, 251, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(26, 18, 32, 0.06);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  line-height: 1;
}

.brand-mark__logo {
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 0.6rem;
  box-shadow: 0 6px 18px rgba(88, 28, 68, 0.12);
  background: #fff;
  margin-right: 0.55rem;
}

.brand-mark__heart {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: linear-gradient(135deg, var(--coral), var(--rose), var(--violet));
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.55);
  flex-shrink: 0;
}

.brand-mark__text {
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: 1.35rem;
  margin-left: auto;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.nav a {
  position: relative;
  transition: color 0.25s var(--ease);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.3rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--coral), var(--violet), var(--sky));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--ink);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-header > .header-actions {
  margin-left: 0.5rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.cart-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  color: var(--ink);
  border: 1px solid rgba(26, 18, 32, 0.1);
  background: rgba(255, 255, 255, 0.55);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.cart-link:hover,
.cart-link:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(190, 18, 85, 0.25);
  color: var(--rose-deep);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 2px;
  margin: 0.35rem auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s var(--ease);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(120deg, var(--rose) 0%, #c026d3 55%, var(--violet) 100%);
  background-size: 160% 160%;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(190, 18, 85, 0.28);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background-position 0.4s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  background-position: 100% 50%;
  box-shadow: 0 16px 36px rgba(190, 18, 85, 0.35);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
  box-shadow: none;
  border: 1px solid rgba(26, 18, 32, 0.1);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.btn--small {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--demo-h) - var(--header-h));
  display: grid;
  place-items: center;
  padding: clamp(2.5rem, 7vw, 5rem) clamp(1.25rem, 4vw, 3rem) clamp(3rem, 8vw, 5.5rem);
  overflow: visible;
}

.hero__atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.85;
  animation: drift 18s var(--ease) infinite alternate;
}

.hero__orb--1 {
  width: min(55vw, 420px);
  height: min(55vw, 420px);
  top: 8%;
  left: -6%;
  background: radial-gradient(circle, rgba(255, 107, 107, 0.7), transparent 70%);
}

.hero__orb--2 {
  width: min(50vw, 380px);
  height: min(50vw, 380px);
  top: 5%;
  right: -4%;
  background: radial-gradient(circle, rgba(155, 109, 255, 0.65), transparent 70%);
  animation-delay: -4s;
}

.hero__orb--3 {
  width: min(45vw, 340px);
  height: min(45vw, 340px);
  bottom: 10%;
  left: 25%;
  background: radial-gradient(circle, rgba(91, 184, 232, 0.55), transparent 70%);
  animation-delay: -8s;
}

.hero__orb--4 {
  width: min(40vw, 300px);
  height: min(40vw, 300px);
  bottom: 18%;
  right: 18%;
  background: radial-gradient(circle, rgba(245, 165, 36, 0.45), transparent 70%);
  animation-delay: -2s;
}

.hero__sheen {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      transparent 20%,
      rgba(255, 255, 255, 0.35) 45%,
      transparent 70%
    );
  background-size: 200% 200%;
  animation: sheen 12s ease-in-out infinite;
  mix-blend-mode: soft-light;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 44rem;
  text-align: center;
  animation: rise 0.9s var(--ease) both;
}

.brand-lockup {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.5vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1.1rem;
  background: linear-gradient(
    100deg,
    var(--rose) 0%,
    #c026d3 28%,
    var(--violet) 52%,
    var(--sky) 78%,
    var(--lime) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: spectrum 8s ease-in-out infinite alternate;
}

.brand-lockup--footer {
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
  display: inline-block;
}

.hero h1 {
  font-size: clamp(1.85rem, 5.2vw + 0.55rem, 4.6rem);
  margin-bottom: 1.15rem;
  color: var(--ink);
  max-width: 100%;
  line-height: 1.18;
  text-wrap: balance;
}

.hero__lede {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 34rem;
  margin: 0 auto 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.hero__affirm {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.85;
}

.section {
  padding: clamp(3.5rem, 9vw, 6.5rem) clamp(1.25rem, 4vw, 3rem);
}

.section__inner {
  max-width: 68rem;
  margin: 0 auto;
}

.section__inner.narrow {
  max-width: 40rem;
  text-align: center;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 0.85rem;
}

.eyebrow--hero {
  margin-bottom: 0.75rem;
}

.section-kicker {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
}

.section--audience .hero__actions {
  justify-content: center;
  margin-top: 1.5rem;
}

.section h2 em,
.hero h1 em,
.store-hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: #c026d3;
  background: none;
  -webkit-text-fill-color: #c026d3;
  display: inline-block;
  padding-right: 0.18em;
  margin-right: -0.08em;
}

.section h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 38rem;
}

.section--shift .lead {
  margin: 0 auto;
}

.section--paths {
  padding-top: 0;
}

.paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.path {
  display: block;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.path:hover,
.path:focus-visible {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.82);
}

.path--alt {
  background: linear-gradient(
    145deg,
    rgba(255, 232, 242, 0.85),
    rgba(238, 246, 255, 0.85),
    rgba(243, 233, 255, 0.85)
  );
}

.path__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 0.75rem;
}

.path h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.path p {
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}

.path__cta {
  font-weight: 600;
  font-size: 0.95rem;
  background: linear-gradient(90deg, var(--rose), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section__intro {
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

.topic-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.topic-grid li {
  padding: 0;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.55);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}

.topic-grid a {
  display: block;
  padding: 1.35rem 1.25rem;
  height: 100%;
}

.topic-grid li:nth-child(8n + 1) {
  border-top: 3px solid var(--coral);
}
.topic-grid li:nth-child(8n + 2) {
  border-top: 3px solid var(--amber);
}
.topic-grid li:nth-child(8n + 3) {
  border-top: 3px solid var(--lime);
}
.topic-grid li:nth-child(8n + 4) {
  border-top: 3px solid var(--sky);
}
.topic-grid li:nth-child(8n + 5) {
  border-top: 3px solid var(--violet);
}
.topic-grid li:nth-child(8n + 6) {
  border-top: 3px solid var(--magenta);
}
.topic-grid li:nth-child(8n + 7) {
  border-top: 3px solid var(--rose);
}
.topic-grid li:nth-child(8n + 8) {
  border-top: 3px solid #38bdf8;
}

.topic-grid li:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.75);
}

.topic-grid h3 {
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}

.topic-grid p {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.audience {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.audience .lead {
  margin-bottom: 1.5rem;
}

.audience__panel {
  padding: 1.75rem;
  border-radius: 1.5rem;
  background: linear-gradient(
    160deg,
    rgba(255, 107, 107, 0.18),
    rgba(155, 109, 255, 0.2),
    rgba(91, 184, 232, 0.18)
  );
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow-soft);
}

.audience__quote {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

.audience__panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.audience__panel li {
  position: relative;
  padding-left: 1.35rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.audience__panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--violet));
}

.about {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.about__visual {
  display: flex;
  justify-content: center;
}

.about__photo {
  width: min(100%, 300px);
  height: auto;
  display: block;
  border-radius: 1.5rem;
  box-shadow: 0 20px 50px rgba(190, 18, 85, 0.22);
  border: 3px solid rgba(255, 255, 255, 0.75);
}

#about {
  scroll-margin-top: calc(var(--demo-h) + var(--header-h) + 1rem);
}

.about__portrait {
  width: min(100%, 260px);
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.55), transparent 45%),
    linear-gradient(145deg, var(--coral), var(--rose), var(--violet), var(--sky));
  box-shadow: 0 20px 50px rgba(190, 18, 85, 0.25);
  animation: pulse 6s ease-in-out infinite;
}

.about__initials {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 8px 24px rgba(26, 18, 32, 0.25);
}

.about__copy .lead {
  margin-bottom: 1rem;
}

.about__creds {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

.section--cta {
  padding-bottom: clamp(4rem, 10vw, 7rem);
}

.cta-band {
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  border-radius: 2rem;
  background:
    linear-gradient(
      120deg,
      rgba(255, 107, 107, 0.22),
      rgba(245, 165, 36, 0.18),
      rgba(123, 198, 126, 0.16),
      rgba(91, 184, 232, 0.2),
      rgba(155, 109, 255, 0.22)
    );
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-soft);
}

.cta-band h2 {
  max-width: 22ch;
  margin: 0 auto 0.85rem;
}

.cta-band p {
  max-width: 34rem;
  margin: 0 auto 1.5rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.site-footer {
  padding: 2.5rem clamp(1.25rem, 4vw, 3rem) 3rem;
  border-top: 1px solid rgba(26, 18, 32, 0.08);
  background: rgba(255, 248, 251, 0.55);
}

.site-footer__inner {
  max-width: 68rem;
  margin: 0 auto;
  text-align: center;
}

.site-footer__note {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.site-footer__note a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  margin-top: 1.25rem;
  font-size: 0.85rem;
}

.site-footer__legal a {
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  transition: color 0.2s var(--ease);
}

.site-footer__legal a:hover {
  color: var(--rose-deep);
}

.site-footer__copy {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(24px, -30px, 0) scale(1.08);
  }
}

@keyframes sheen {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes spectrum {
  from {
    background-position: 0% center;
  }
  to {
    background-position: 100% center;
  }
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}

@media (max-width: 960px) {
  .topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience,
  .about {
    grid-template-columns: 1fr;
  }

  .about__visual {
    order: -1;
  }

  .about__photo {
    width: min(100%, 240px);
  }

  .about__portrait {
    width: 180px;
  }
}

@media (max-width: 720px) {
  .nav,
  .header-actions .btn--small {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .header-actions {
    margin-left: auto;
    margin-right: 0.15rem;
  }

  .site-header.nav-open .nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    padding: 1.25rem 1.5rem 1.5rem;
    background: rgba(255, 248, 251, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(26, 18, 32, 0.08);
    gap: 1rem;
  }

  .site-header.nav-open .nav-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .site-header.nav-open .nav-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

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

  .hero {
    min-height: auto;
    padding-top: 3.5rem;
  }
}

@media (max-width: 520px) {
  .topic-grid {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }
}

/* —— Store page —— */
.store-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.75rem, 7vw, 4.5rem) clamp(1.25rem, 4vw, 3rem)
    clamp(2rem, 5vw, 3rem);
  text-align: center;
}

.store-hero__content {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin: 0 auto;
  animation: rise 0.9s var(--ease) both;
}

.store-hero h1 {
  font-size: clamp(2.35rem, 7vw, 4rem);
  margin-bottom: 1rem;
}

.store-hero .hero__lede {
  margin-bottom: 1.25rem;
}

.filter-bar {
  position: sticky;
  top: calc(var(--demo-h) + var(--header-h));
  z-index: 80;
  padding: 0.85rem clamp(1rem, 3vw, 2rem);
  background: rgba(255, 248, 251, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(26, 18, 32, 0.06);
}

.filter-bar__inner {
  display: flex;
  gap: 0.55rem;
  max-width: 68rem;
  margin: 0 auto;
  overflow-x: auto;
  padding-bottom: 0.15rem;
  scrollbar-width: thin;
}

.filter-chip {
  flex: 0 0 auto;
  border: 1px solid rgba(26, 18, 32, 0.1);
  background: rgba(255, 255, 255, 0.65);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.filter-chip:hover,
.filter-chip:focus-visible {
  transform: translateY(-1px);
  color: var(--ink);
  border-color: rgba(190, 18, 85, 0.25);
}

.filter-chip.is-active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(120deg, var(--rose), #c026d3 55%, var(--violet));
  box-shadow: 0 8px 20px rgba(190, 18, 85, 0.22);
}

.section--catalog {
  padding-top: clamp(2rem, 5vw, 3rem);
}

.catalog {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4rem);
}

.category-block.is-hidden {
  display: none;
}

.category-block__header {
  max-width: 36rem;
  margin-bottom: 1.35rem;
}

.category-block__header h2 {
  font-size: clamp(1.55rem, 3vw, 2.1rem);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.product {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.4rem 1.35rem 1.25rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.product:hover,
.product:focus-within {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.82);
}

.product__accent {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--violet));
}

.category-block[data-category="self-love"] .product__accent {
  background: linear-gradient(90deg, #5bb8e8, #7bc67e);
}
.category-block[data-category="relationships"] .product__accent {
  background: linear-gradient(90deg, var(--rose), #ff6b6b);
}
.category-block[data-category="boundaries"] .product__accent {
  background: linear-gradient(90deg, #f5a524, #ff6b6b);
}
.category-block[data-category="healing"] .product__accent {
  background: linear-gradient(90deg, #f5a524, #7bc67e);
}
.category-block[data-category="confidence"] .product__accent {
  background: linear-gradient(90deg, #7bc67e, #5bb8e8);
}
.category-block[data-category="dating"] .product__accent {
  background: linear-gradient(90deg, #ff6b9d, var(--violet));
}
.category-block[data-category="intimacy"] .product__accent {
  background: linear-gradient(90deg, var(--violet), #d946ef);
}
.category-block[data-category="adhd"] .product__accent {
  background: linear-gradient(90deg, #94a3b8, #5bb8e8);
}

.product__type {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin: 0.35rem 0 0.55rem;
}

.product h3 {
  font-size: 1.25rem;
  margin-bottom: 0.55rem;
}

.product > p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  flex: 1;
  margin-bottom: 1.25rem;
}

.product__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
}

.product__price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.product__price--muted {
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.product--soon {
  background: linear-gradient(
    145deg,
    rgba(255, 232, 242, 0.55),
    rgba(238, 246, 255, 0.55),
    rgba(243, 233, 255, 0.55)
  );
}

.nav a[aria-current="page"] {
  color: var(--ink);
}

.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

@media (max-width: 960px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

/* —— About page —— */
.page-intro {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.25rem, 4vw, 3rem)
    clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
}

.page-intro__content {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin: 0 auto;
  animation: rise 0.9s var(--ease) both;
}

.page-intro h1 {
  font-size: clamp(2.4rem, 6vw, 3.75rem);
}

.page-about .page-intro__creds {
  margin: 0.85rem auto 0;
  max-width: 34rem;
  color: var(--ink-soft);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  line-height: 1.45;
}

.about-block__inner {
  max-width: 42rem;
}

.about-block h2 {
  margin-bottom: 1rem;
}

.about-block .lead {
  margin-bottom: 1rem;
}

.about-block p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.about-block p:last-child {
  margin-bottom: 0;
}

.about-block--alt {
  background: rgba(255, 255, 255, 0.28);
}

.about-credentials .eyebrow {
  margin-bottom: 1.5rem;
}

.credential-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: center;
}

.credential-row li {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 12.5rem;
  padding: 1.25rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-soft);
}

.credential-row img {
  width: 180px;
  height: 180px;
  object-fit: contain;
}

.testimonials-intro {
  margin-bottom: 2rem;
  max-width: min(100%, 56rem);
}

.testimonial-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.testimonial-grid li {
  height: 100%;
}

.testimonial-grid blockquote {
  height: 100%;
  margin: 0;
  padding: 1.5rem 1.4rem;
  border: 0;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.testimonial-grid blockquote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--ink);
  flex: 1;
}

.testimonial-grid footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
}

.testimonial-grid cite {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}

.testimonial-rating {
  color: var(--rose-deep);
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

@media (max-width: 860px) {
  .credential-row {
    grid-template-columns: 1fr;
    max-width: 220px;
    margin-inline: auto;
  }

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

/* —— Coaches / Mentors page —— */
.page-mentors .page-intro__lede {
  margin: 0.85rem auto 0;
  max-width: 36rem;
  color: var(--ink-soft);
}

.mentors__intro {
  text-align: center;
  margin-bottom: 2rem;
}

.mentor-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

.mentor {
  display: grid;
  grid-template-columns: minmax(9rem, 11.5rem) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
  padding: 1.35rem 1.4rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
  animation: rise 0.9s var(--ease) both;
}

.mentor-list li:nth-child(2) .mentor {
  animation-delay: 0.1s;
}

.mentor__photo {
  margin: 0;
  border-radius: 1.15rem;
  overflow: hidden;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.5);
}

.mentor__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.mentor__body h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.6vw, 1.85rem);
  line-height: 1.15;
  color: var(--ink);
}

.mentor__body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .mentor {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.25rem;
  }

  .mentor__photo {
    width: min(100%, 14rem);
    margin-inline: auto;
  }
}

/* —— Free Resources page —— */
.page-free-resources .page-intro .eyebrow {
  margin-bottom: 0.65rem;
}

.free-resources .section__intro {
  text-align: center;
  margin-bottom: 1.75rem;
}

.free-resource-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.free-resource {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.6rem 1.45rem 1.5rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
  animation: rise 0.9s var(--ease) both;
}

.free-resource-grid li:nth-child(2) .free-resource {
  animation-delay: 0.08s;
}

.free-resource-grid li:nth-child(3) .free-resource {
  animation-delay: 0.16s;
}

.free-resource-grid li:nth-child(4) .free-resource {
  animation-delay: 0.24s;
}

.free-resource h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  line-height: 1.2;
  color: var(--ink);
}

.free-resource__tagline {
  margin: 0;
  color: var(--rose-deep);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.35;
}

.free-resource p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.45;
}

.free-resource p:not(.free-resource__tagline) {
  flex: 1;
}

.free-resource .btn {
  align-self: flex-start;
  margin-top: 0.35rem;
}

@media (max-width: 720px) {
  .free-resource-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero__content,
  .store-hero__content,
  .reveal {
    opacity: 1;
    transform: none;
  }
}
