* {
  box-sizing: border-box;
}

html {
  color: var(--brand-color-text);
  background: var(--brand-color-cream);
  font-family:
    var(--brand-font-family-sans),
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--brand-color-cream);
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgb(232 222 210 / 76%);
  background: rgb(255 248 241 / 90%);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  width: min(100% - 32px, 1180px);
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--brand-color-landing-primary);
  font-family:
    var(--brand-font-family-display), var(--brand-font-family-sans), serif;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-link img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 36px);
  color: var(--brand-color-text-muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a[aria-current='page'] {
  color: var(--brand-color-landing-primary);
  border-bottom-color: currentColor;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--brand-color-border);
  border-radius: var(--brand-border-button);
  color: var(--brand-color-landing-primary);
  background: var(--brand-color-warm-white);
  cursor: pointer;
}

.menu-button span,
.menu-button span::before,
.menu-button span::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.menu-button span {
  position: relative;
}

.menu-button span::before,
.menu-button span::after {
  position: absolute;
  left: 0;
  content: '';
}

.menu-button span::before {
  top: -6px;
}

.menu-button span::after {
  top: 6px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--brand-border-button);
  padding: 12px 18px;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 150ms ease,
    background 150ms ease,
    border-color 150ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button.primary {
  color: var(--brand-color-warm-white);
  background: var(--brand-color-landing-primary);
  box-shadow: 0 12px 28px rgb(162 62 35 / 20%);
}

.button.primary:hover {
  background: var(--brand-color-landing-primary-pressed);
}

.button.secondary {
  color: var(--brand-color-landing-primary);
  border-color: rgb(162 62 35 / 18%);
  background: rgb(255 255 255 / 72%);
}

.page-section {
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
  padding: clamp(56px, 8vw, 108px) 0 56px;
}

.membership-hero {
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.9fr);
  padding-bottom: clamp(48px, 7vw, 72px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--brand-color-landing-primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--brand-color-text);
  font-family:
    var(--brand-font-family-display), var(--brand-font-family-sans), serif;
  font-weight: 800;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  font-size: 2.95rem;
  line-height: 0.96;
}

.membership-hero h1 {
  max-width: 12ch;
}

h2 {
  max-width: 12ch;
  font-size: 2.1rem;
  line-height: 1;
}

h3 {
  font-size: 1.3rem;
  line-height: 1.08;
}

.lede {
  max-width: 36rem;
  margin: 24px 0 0;
  color: var(--brand-color-text-muted);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.55;
}

.offer-strip {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 26px;
  border: 1px solid rgb(154 184 166 / 42%);
  border-radius: 8px;
  padding: 12px 16px;
  background: rgb(255 255 255 / 72%);
  color: var(--brand-color-text-muted);
  font-weight: 800;
}

.offer-strip strong {
  color: var(--brand-color-landing-primary);
  font-family:
    var(--brand-font-family-display), var(--brand-font-family-sans), serif;
  font-size: 1.55rem;
  line-height: 1;
}

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

.trust-line {
  margin: 22px 0 0;
  color: var(--brand-color-text-muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.product-shot {
  position: relative;
  min-height: 420px;
}

.product-frame {
  position: relative;
  overflow: hidden;
  width: min(100%, 340px);
  margin: 0 auto;
  border: 1px solid rgb(232 222 210 / 88%);
  border-radius: 8px;
  background: var(--brand-color-warm-white);
  box-shadow: 0 28px 70px rgb(47 62 92 / 16%);
  transform: rotate(1.5deg);
}

.product-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.mini-card {
  position: absolute;
  right: -18px;
  bottom: 24px;
  width: min(74%, 280px);
  border: 1px solid rgb(154 184 166 / 34%);
  border-radius: 8px;
  padding: 18px;
  background: rgb(255 255 255 / 94%);
  box-shadow: 0 20px 44px rgb(47 62 92 / 14%);
}

.mini-card.is-top {
  bottom: auto;
  top: 48px;
  z-index: 2;
}

.mini-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-color-landing-primary);
  font-family:
    var(--brand-font-family-display), var(--brand-font-family-sans), serif;
  font-size: 1.4rem;
}

.mini-card p {
  margin: 0;
  color: var(--brand-color-text-muted);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.45;
}

.band {
  padding: clamp(52px, 8vw, 96px) 0;
}

.band.tint {
  border-top: 1px solid rgb(232 222 210 / 70%);
  border-bottom: 1px solid rgb(232 222 210 / 70%);
  background: rgb(255 255 255 / 54%);
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}

.section-header p {
  max-width: 34rem;
  margin: 0;
  color: var(--brand-color-text-muted);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.55;
}

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

.feature-card,
.quote-card,
.story-panel,
.faq-item,
.post-card {
  border: 1px solid rgb(232 222 210 / 82%);
  border-radius: 8px;
  background: rgb(255 255 255 / 72%);
}

.feature-card {
  padding: clamp(22px, 3vw, 32px);
}

.feature-number {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 999px;
  color: var(--brand-color-warm-white);
  background: var(--brand-color-landing-primary);
  font-weight: 900;
}

.feature-card p,
.story-panel p,
.post-card p,
.quote-card p,
.faq-answer {
  color: var(--brand-color-text-muted);
  font-weight: 600;
  line-height: 1.62;
}

.feature-card p {
  margin: 14px 0 0;
}

.audience-grid .feature-card {
  background: rgb(255 255 255 / 78%);
}

.audience-grid .feature-card:nth-child(2) {
  border-color: rgb(154 184 166 / 42%);
  background: rgb(246 250 247 / 78%);
}

.audience-grid .feature-card:nth-child(3) {
  border-color: rgb(166 143 191 / 34%);
  background: rgb(250 247 253 / 72%);
}

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

.moment-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 28px;
  align-items: stretch;
  border: 1px solid rgb(232 222 210 / 82%);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 42px);
  background: rgb(255 255 255 / 72%);
}

.moment-copy .eyebrow {
  margin-bottom: 14px;
}

.moment-copy p {
  max-width: 42rem;
  margin: 16px 0 0;
  color: var(--brand-color-text-muted);
  font-weight: 600;
  line-height: 1.62;
}

.moment-facts {
  display: grid;
  gap: 14px;
  margin: 0;
}

.moment-facts div {
  border-left: 3px solid var(--brand-color-landing-primary);
  padding: 14px 0 14px 18px;
  background: rgb(255 248 241 / 72%);
}

.moment-facts dt {
  color: var(--brand-color-text);
  font-family:
    var(--brand-font-family-display), var(--brand-font-family-sans), serif;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.moment-facts dd {
  margin: 8px 0 0;
  color: var(--brand-color-text-muted);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.story-image {
  overflow: hidden;
  width: min(100%, 340px);
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 24px 58px rgb(47 62 92 / 14%);
}

.story-image img {
  display: block;
  width: 100%;
  height: auto;
}

.pain-split {
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
}

.chat-image {
  overflow: hidden;
  width: min(100%, 320px);
  max-height: 520px;
  margin: 0 auto;
  border: 1px solid rgb(232 222 210 / 88%);
  border-radius: 8px;
  background: var(--brand-color-warm-white);
  box-shadow: 0 22px 54px rgb(47 62 92 / 13%);
}

.chat-image img {
  width: 100%;
  height: auto;
}

.outcome-list,
.pricing-panel ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.outcome-list li,
.pricing-panel li {
  position: relative;
  padding-left: 28px;
  color: var(--brand-color-text-muted);
  font-weight: 800;
  line-height: 1.5;
}

.outcome-list li::before,
.pricing-panel li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--brand-color-secondary);
  content: '';
  transform: translateY(-50%);
}

.privacy-stack {
  display: grid;
  gap: 14px;
}

.privacy-stack div {
  border-left: 4px solid var(--brand-color-secondary);
  border-radius: 8px;
  padding: 18px 20px;
  background: rgb(255 255 255 / 74%);
}

.privacy-stack div:nth-child(2) {
  border-left-color: var(--brand-color-accent);
}

.privacy-stack div:nth-child(3) {
  border-left-color: var(--brand-color-landing-primary);
}

.privacy-stack strong,
.privacy-stack span {
  display: block;
}

.privacy-stack strong {
  color: var(--brand-color-text);
  font-family:
    var(--brand-font-family-display), var(--brand-font-family-sans), serif;
  font-size: 1.35rem;
  line-height: 1.1;
}

.privacy-stack span {
  margin-top: 8px;
  color: var(--brand-color-text-muted);
  font-weight: 700;
  line-height: 1.48;
}

.story-panel {
  padding: clamp(24px, 4vw, 42px);
}

.story-panel p:last-child {
  margin-bottom: 0;
}

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

.quote-card {
  padding: clamp(22px, 3vw, 32px);
}

.quote-card p {
  margin: 0;
  color: var(--brand-color-text);
  font-size: 1.12rem;
}

.quote-card span {
  display: block;
  margin-top: 18px;
  color: var(--brand-color-landing-primary);
  font-weight: 900;
}

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

.faq-item {
  overflow: hidden;
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  padding: 20px 24px;
  color: var(--brand-color-text);
  background: transparent;
  cursor: pointer;
  font-weight: 900;
  text-align: left;
}

.faq-question::after {
  content: '+';
  color: var(--brand-color-landing-primary);
  font-size: 1.6rem;
}

.faq-item.is-open .faq-question::after {
  content: '-';
}

.faq-answer {
  display: none;
  margin: 0;
  padding: 0 24px 24px;
}

.faq-item.is-open .faq-answer {
  display: block;
}

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

.post-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: clamp(22px, 3vw, 30px);
}

.post-card time {
  color: var(--brand-color-landing-primary);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.post-card h3 {
  margin-top: 18px;
}

.post-card p {
  margin: 14px 0 0;
}

.cta {
  padding: clamp(58px, 9vw, 108px) 0;
  color: var(--brand-color-warm-white);
  background: var(--brand-color-landing-primary);
}

.cta .page-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta h2,
.cta p {
  color: inherit;
}

.cta h2 {
  max-width: 12ch;
}

.cta p {
  max-width: 36rem;
  margin: 18px 0 0;
  color: rgb(255 255 255 / 82%);
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.55;
}

.cta .button {
  flex: 0 0 auto;
  color: var(--brand-color-landing-primary);
  background: var(--brand-color-warm-white);
}

.pricing-band {
  padding: clamp(58px, 9vw, 104px) 0;
  border-top: 1px solid rgb(232 222 210 / 70%);
  border-bottom: 1px solid rgb(232 222 210 / 70%);
  background: rgb(246 250 247 / 70%);
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.pricing-panel {
  border: 1px solid rgb(154 184 166 / 48%);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 36px);
  background: var(--brand-color-warm-white);
  box-shadow: 0 24px 52px rgb(47 62 92 / 12%);
}

.price-lockup {
  display: grid;
  gap: 4px;
  color: var(--brand-color-text-muted);
  font-weight: 900;
}

.price-lockup span {
  color: var(--brand-color-landing-primary);
  font-family:
    var(--brand-font-family-display), var(--brand-font-family-sans), serif;
  font-size: clamp(3.2rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 0.9;
}

.pricing-panel .button {
  width: 100%;
  margin-top: 28px;
  text-align: center;
}

.legal {
  max-width: 820px;
  padding: clamp(48px, 7vw, 92px) 0;
}

.legal h1 {
  max-width: none;
  font-size: 2.5rem;
}

.legal h2 {
  max-width: none;
  margin-top: 36px;
  font-size: 1.45rem;
}

.legal p,
.legal li {
  color: var(--brand-color-text-muted);
  font-weight: 600;
  line-height: 1.68;
}

.legal a {
  color: var(--brand-color-landing-primary);
  font-weight: 800;
}

.site-footer {
  border-top: 1px solid rgb(232 222 210 / 82%);
  background: rgb(255 255 255 / 60%);
}

.footer-inner {
  display: flex;
  width: min(100% - 32px, 1180px);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  padding: 34px 0;
}

.footer-brand {
  display: grid;
  gap: 4px;
  color: var(--brand-color-text-muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.footer-brand strong {
  color: var(--brand-color-landing-primary);
  font-family:
    var(--brand-font-family-display), var(--brand-font-family-sans), serif;
  font-size: 1.25rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 26px;
  color: var(--brand-color-text-muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--brand-color-landing-primary);
}

@media (min-width: 901px) {
  .brand-link {
    font-size: 1.7rem;
  }

  h1 {
    font-size: 5.6rem;
  }

  h2 {
    font-size: 3.6rem;
  }

  h3 {
    font-size: 1.75rem;
  }

  .lede {
    font-size: 1.25rem;
  }

  .legal h1 {
    font-size: 4rem;
  }

  .legal h2 {
    font-size: 1.9rem;
  }
}

@media (min-width: 1180px) {
  h1 {
    font-size: 6.25rem;
  }

  h2 {
    font-size: 4.5rem;
  }
}

@media (max-width: 900px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .nav.is-open .nav-links {
    position: fixed;
    inset: 76px 0 auto;
    display: grid;
    gap: 0;
    width: 100%;
    border-bottom: 1px solid var(--brand-color-border);
    background: var(--brand-color-cream);
    padding: 18px 16px 26px;
    box-shadow: 0 24px 44px rgb(47 62 92 / 12%);
  }

  .nav.is-open .nav-links a {
    padding: 18px 0;
    font-size: 1.2rem;
  }

  .hero,
  .moment-panel,
  .split,
  .pricing-layout,
  .cta .page-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 42px;
  }

  .product-shot {
    min-height: auto;
  }

  .section-header,
  .cta .page-section,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .page-section,
  .nav,
  .footer-inner {
    width: min(100% - 24px, 1180px);
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .mini-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 12px;
  }

  .mini-card.is-top {
    top: auto;
    margin-top: 0;
    margin-bottom: 12px;
  }

  .offer-strip {
    display: grid;
    gap: 6px;
    width: 100%;
  }
}
