:root {
  color-scheme: light;
  --ink: #241721;
  --ink-soft: #493441;
  --muted: #746771;
  --paper: #fff8fb;
  --surface: #ffffff;
  --line: rgba(91, 55, 81, 0.15);
  --lotus: #c33f77;
  --lotus-deep: #882f5b;
  --petal: #f7c6dc;
  --blush: #fde9f1;
  --moss: #677d61;
  --teal: #477988;
  --clay: #bb725f;
  --gold: #bb9148;
  --shadow: 0 24px 70px rgba(80, 47, 69, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::selection {
  color: #fff;
  background: var(--lotus);
}

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

button,
input,
select {
  font: inherit;
}

button,
a,
input,
select {
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: #fff;
}

.site-header.is-solid {
  color: var(--ink);
  background: rgba(255, 248, 251, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
nav,
.hero-actions,
.button,
.channel-link,
footer {
  display: flex;
  align-items: center;
}

.brand {
  min-width: 0;
  gap: 11px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  background: var(--lotus);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  font-size: 0.78rem;
}

.brand-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

nav {
  gap: clamp(12px, 2.2vw, 26px);
  font-size: 0.88rem;
  font-weight: 800;
}

nav a {
  opacity: 0.84;
}

nav a:hover,
nav a:focus-visible {
  opacity: 1;
}

.header-action {
  flex: 0 0 auto;
  padding: 10px 16px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 900;
}

.header-action:hover,
.header-action:focus-visible {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}

.site-header.is-solid .header-action:hover,
.site-header.is-solid .header-action:focus-visible {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.hero {
  position: relative;
  min-height: 96svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 124px clamp(18px, 6vw, 84px) clamp(58px, 8vw, 96px);
  background: #262024;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.98) contrast(1.05);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(37, 17, 31, 0.84) 0%, rgba(37, 17, 31, 0.48) 50%, rgba(37, 17, 31, 0.1) 100%),
    linear-gradient(0deg, rgba(37, 17, 31, 0.62) 0%, rgba(37, 17, 31, 0.04) 54%);
}

.hero-content {
  position: relative;
  width: min(880px, 100%);
  color: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 13px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow {
  color: #f8c8dc;
}

.section-kicker {
  color: var(--lotus);
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(4.1rem, 10vw, 8.6rem);
  line-height: 0.92;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  line-height: 0.98;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.16rem;
  line-height: 1.22;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.89);
  font-size: clamp(1.1rem, 2vw, 1.42rem);
  line-height: 1.58;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 900;
  cursor: pointer;
}

.button-primary {
  color: #fff;
  background: var(--lotus);
  border-color: var(--lotus);
}

.button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.46);
  backdrop-filter: blur(12px);
}

.ink-button {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.button:hover,
.button:focus-visible,
.need-card:hover,
.need-card:focus-visible,
.channel-link:hover,
.channel-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.play-dot {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.play-dot::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 8px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #fff;
}

.proof-band,
.manifesto,
.needs-band,
.journey-band,
.profile-band,
.content-band,
.editorial-band,
.book-band,
.ecosystem-band,
.community-band,
.newsletter-band,
.brands-band,
.closing {
  padding: clamp(58px, 8vw, 106px) clamp(18px, 6vw, 84px);
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: var(--max);
  margin: -34px auto 0;
  position: relative;
  z-index: 2;
  padding-top: 0;
  padding-bottom: clamp(42px, 7vw, 76px);
}

.proof-band div {
  min-height: 122px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.proof-band strong,
.proof-band span {
  display: block;
}

.proof-band strong {
  color: var(--lotus-deep);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.proof-band span {
  margin-top: 9px;
  color: var(--muted);
  font-weight: 800;
}

.manifesto,
.editorial-band,
.ecosystem-band,
.community-band,
.newsletter-band,
.brands-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 6vw, 84px);
  max-width: calc(var(--max) + 168px);
  margin: 0 auto;
}

.manifesto {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.manifesto-list {
  display: grid;
  gap: 14px;
  align-self: end;
}

.manifesto-list p {
  margin: 0;
  padding: 0 0 14px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.5;
}

.section-head {
  max-width: var(--max);
  margin: 0 auto 38px;
}

.section-head p,
.profile-card p,
.journey-card p,
.content-band p,
.book-copy p,
.ecosystem-band p,
.community-band p,
.newsletter-band p,
.brands-band p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.74;
}

.needs-band,
.profile-band {
  background: #fff;
}

.journey-band {
  background: var(--paper);
}

.needs-grid,
.journey-grid,
.content-grid,
.guide-grid,
.favorite-grid,
.package-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: var(--max);
  margin: 0 auto;
  background: var(--line);
  border: 1px solid var(--line);
}

.need-card,
.journey-card,
.content-card,
.guide-card,
.package-list article {
  min-height: 230px;
  padding: clamp(22px, 3.5vw, 36px);
  background: #fff;
}

.need-card span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 50%;
  color: #fff;
  background: var(--moss);
  font-size: 0.78rem;
  font-weight: 900;
}

.need-card:nth-child(2) span {
  background: var(--clay);
}

.need-card:nth-child(3) span {
  background: var(--teal);
}

.need-card:nth-child(4) span {
  background: var(--lotus-deep);
}

.need-card:nth-child(5) span {
  background: var(--gold);
}

.need-card:nth-child(6) span {
  background: var(--ink-soft);
}

.need-card p,
.journey-card p,
.content-card p,
.guide-card p,
.favorite-feature p,
.favorite-grid p,
.package-list p {
  margin-bottom: 0;
}

.journey-grid {
  gap: 18px;
  background: transparent;
  border: 0;
}

.journey-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(80, 47, 69, 0.08);
}

.journey-label {
  margin-bottom: 16px;
  color: var(--lotus-deep);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.journey-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.58;
}

.journey-card li::marker {
  color: var(--lotus);
}

.journey-card a {
  display: inline-flex;
  color: var(--lotus-deep);
  font-weight: 900;
  line-height: 1.4;
}

.journey-picks {
  display: grid;
  gap: 10px;
  margin: 22px 0 16px;
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.journey-picks p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journey-picks a,
.view-all-link {
  overflow-wrap: anywhere;
}

.view-all-link {
  margin-top: auto;
}

.content-grid {
  gap: 18px;
  background: transparent;
  border: 0;
}

.content-card {
  overflow: hidden;
  min-height: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(80, 47, 69, 0.08);
}

.content-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.content-card div {
  padding: 22px;
}

.content-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--lotus-deep);
  font-weight: 900;
}

.newsletter-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 38px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 900;
}

.checkbox-label {
  grid-template-columns: 20px 1fr;
  align-items: start;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 750;
  line-height: 1.45;
}

.checkbox-label input {
  width: 18px;
  min-height: 18px;
  margin: 2px 0 0;
}

input,
select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.profile-card {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 64px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(247, 198, 220, 0.58), rgba(255, 255, 255, 0.95) 44%),
    #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.profile-card h2,
.profile-card p,
.profile-card .section-kicker,
.profile-card .text-link {
  position: relative;
}

.profile-card p {
  max-width: 760px;
  margin-top: 22px;
}

.profile-video {
  position: relative;
  max-width: 760px;
  margin-top: 28px;
  overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow);
}

.profile-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.text-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--lotus-deep);
  font-weight: 900;
}

.lotus-mark {
  position: absolute;
  right: clamp(20px, 5vw, 70px);
  bottom: clamp(12px, 4vw, 42px);
  width: 180px;
  height: 130px;
  opacity: 0.18;
}

.lotus-mark,
.lotus-mark::before,
.lotus-mark::after {
  border-radius: 60% 60% 20% 20%;
  background: var(--lotus);
  transform-origin: bottom center;
}

.lotus-mark::before,
.lotus-mark::after {
  content: "";
  position: absolute;
  inset: 0;
}

.lotus-mark::before {
  transform: rotate(-34deg);
}

.lotus-mark::after {
  transform: rotate(34deg);
}

.content-band {
  background: var(--paper);
}

.editorial-band {
  align-items: center;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.guide-card {
  min-height: 198px;
}

.guide-card h3::before,
.package-list h3::before {
  content: "";
  display: block;
  width: 34px;
  height: 4px;
  margin-bottom: 24px;
  background: var(--lotus);
  border-radius: 999px;
}

.health-note,
.disclosure {
  max-width: var(--max);
  margin: 28px auto 0;
  padding: 18px 20px;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  line-height: 1.6;
}

.health-note a {
  color: var(--lotus-deep);
  font-weight: 900;
}

.book-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.48fr) minmax(0, 0.9fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  max-width: none;
  margin: 0 auto;
  background:
    linear-gradient(135deg, #fff8fb 0%, #fce2ee 48%, #f7f8ef 100%);
}

.book-cover {
  display: grid;
  align-content: end;
  min-height: 430px;
  padding: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.36), transparent 34%),
    linear-gradient(145deg, var(--lotus-deep), var(--lotus) 54%, #d99ab5);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.book-cover span,
.book-cover strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 0.96;
}

.book-cover span {
  opacity: 0.84;
}

.book-copy p {
  max-width: 760px;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
  font-weight: 750;
  line-height: 1.5;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 14px;
  height: 8px;
  border-bottom: 3px solid var(--moss);
  border-left: 3px solid var(--moss);
  transform: rotate(-45deg);
}

.book-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 30px 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.book-meta div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.75);
}

.book-meta dt {
  margin-bottom: 5px;
  color: var(--lotus-deep);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.book-meta dd {
  margin: 0;
  font-weight: 900;
}

.ecosystem-band {
  background: var(--paper);
}

.channel-list {
  display: grid;
  gap: 12px;
  justify-self: end;
  width: min(100%, 560px);
}

.channel-link {
  min-width: 0;
  gap: 18px;
  width: 100%;
  min-height: 112px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.youtube-icon {
  position: relative;
  flex: 0 0 auto;
  width: 60px;
  height: 42px;
  border-radius: 12px;
  background: #ff0033;
}

.youtube-icon::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 24px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 15px solid #fff;
}

.channel-link strong,
.channel-link small {
  display: block;
}

.channel-link strong {
  overflow-wrap: anywhere;
  font-size: clamp(1rem, 2vw, 1.24rem);
  line-height: 1.25;
}

.channel-link small {
  margin-top: 6px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.45;
}

.package-list article {
  min-height: 178px;
}

.community-band {
  align-items: center;
  background: var(--blush);
}

.story-panel {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.story-panel p {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 850;
}

.newsletter-band {
  align-items: center;
  background: #fff;
}

.newsletter-form {
  box-shadow: none;
}

.newsletter-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.brands-band {
  align-items: center;
  background: var(--paper);
}

.brands-band > .button {
  justify-self: end;
}

.package-list {
  grid-template-columns: 1fr;
  align-self: start;
}

.package-list article {
  min-height: auto;
}

.closing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background: var(--ink);
  color: #fff;
}

.closing .section-kicker {
  color: var(--petal);
}

.closing .button {
  white-space: nowrap;
}

footer {
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 6vw, 84px);
  color: var(--muted);
  font-size: 0.9rem;
}

.collab-page {
  background: #fff;
}

.collab-page .site-header {
  position: sticky;
}

.collab-hero,
.collab-section {
  padding: clamp(72px, 9vw, 120px) clamp(18px, 6vw, 84px);
}

.collab-hero {
  max-width: calc(var(--max) + 168px);
  margin: 0 auto;
  padding-top: clamp(86px, 10vw, 140px);
}

.collab-hero h1 {
  max-width: 920px;
  color: var(--ink);
  font-size: clamp(3rem, 7.8vw, 7rem);
}

.collab-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.68;
}

.collab-section {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 6vw, 84px);
  max-width: calc(var(--max) + 168px);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.collab-copy {
  display: grid;
  gap: 18px;
  align-self: end;
}

.collab-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.74;
}

@media (max-width: 980px) {
  nav {
    display: none;
  }

  .proof-band,
  .needs-grid,
  .journey-grid,
  .content-grid,
  .guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .manifesto,
  .editorial-band,
  .collab-section,
  .book-band,
  .ecosystem-band,
  .community-band,
  .newsletter-band,
  .brands-band,
  .closing {
    grid-template-columns: 1fr;
  }

  .channel-list {
    justify-self: start;
  }

  .favorite-feature,
  .favorite-columns {
    grid-template-columns: 1fr;
  }

  .brands-band > .button {
    justify-self: start;
  }

  .closing .button {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-block: 14px;
  }

  .brand-name {
    max-width: 44vw;
  }

  .header-action {
    padding-inline: 13px;
  }

  .hero {
    min-height: 88svh;
    padding-top: 96px;
  }

  .hero-image {
    object-position: 57% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(37, 17, 31, 0.82) 0%, rgba(37, 17, 31, 0.34) 100%),
      linear-gradient(0deg, rgba(37, 17, 31, 0.68) 0%, rgba(37, 17, 31, 0.08) 54%);
  }

  h1 {
    font-size: clamp(3.6rem, 17vw, 5.2rem);
  }

  h2 {
    font-size: clamp(2.05rem, 10.5vw, 3.2rem);
  }

  .button {
    width: 100%;
  }

  .proof-band,
  .needs-grid,
  .journey-grid,
  .content-grid,
  .guide-grid,
  .book-meta {
    grid-template-columns: 1fr;
  }

  .proof-band {
    margin-top: 0;
  }

  .need-card,
  .journey-card,
  .content-card,
  .guide-card {
    min-height: auto;
  }

  .channel-link {
    align-items: flex-start;
  }

  .book-cover {
    min-height: 330px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
