:root {
  --bg: #fbf4ea;
  --bg-soft: #fffaf4;
  --surface: #fffdfa;
  --surface-alt: #fff4e8;
  --surface-sage: #eef7f3;
  --surface-coral: #fff2ea;
  --text: #4a3a30;
  --muted: #7a6a5d;
  --line: rgba(93, 73, 58, 0.14);
  --accent: #e78c67;
  --accent-deep: #d87450;
  --spring-yellow: #ffd46a;
  --turquoise: #6fc7b7;
  --turquoise-deep: #4da796;
  --olive: #aeb265;
  --shadow-soft: 0 24px 54px rgba(108, 85, 63, 0.09);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(231, 140, 103, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(111, 199, 183, 0.11), transparent 24%),
    linear-gradient(180deg, #fff9f2 0%, #f8efe3 100%);
}

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

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

h1,
h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 0.98;
}

h1 {
  font-size: clamp(3.3rem, 7vw, 6rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.8rem);
}

h3 {
  font-size: 1.22rem;
  line-height: 1.25;
}

.site-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 24px auto 56px;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 20;
  margin-bottom: 28px;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 16px 22px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(255, 252, 248, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
}

.brand-mark__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.profile-card__avatar,
.profile-feature__avatar {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(145deg, #f1b38b, #cf8d68);
  color: #fffdf9;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.35);
}

.brand-name,
.brand-subtitle,
.eyebrow,
.mini-label,
.profile-card__role,
.profile-card__meta,
.card-index,
.form-footnote,
.text-link,
.site-footer p,
.site-footer a {
  margin: 0;
}

.brand-name {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.brand-subtitle,
.site-nav__link,
.hero-lead,
.hero-story__card p,
.sidebar-intro,
.stack-list,
.section-heading p,
.profile-card p,
.info-card p,
.resource-card p,
.fit-row p,
.faq-item p,
.site-footer p,
.site-footer a,
.text-link,
.profile-feature__body p {
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 234, 220, 0.5);
}

.site-nav__link {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 600;
}

.site-nav__link.is-active,
.site-nav__link:hover {
  background: #fffdfa;
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  background: var(--accent);
  color: #fffaf6;
  box-shadow: 0 14px 28px rgba(169, 103, 80, 0.18);
}

.button-primary:hover {
  background: var(--accent-deep);
}

.button-secondary {
  background: transparent;
  border-color: rgba(117, 102, 92, 0.22);
  color: var(--text);
}

.button-compact {
  min-height: 46px;
  padding: 0 18px;
}

.hero-panel,
.page-hero,
.content-section,
.trust-band,
.closing-banner,
.site-footer {
  background: rgba(255, 252, 248, 0.82);
  box-shadow: var(--shadow-soft);
}

.hero-panel,
.page-hero,
.content-section,
.closing-banner {
  border-radius: var(--radius-xl);
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) 380px;
  gap: 34px;
  padding: 56px 54px;
  background:
    linear-gradient(180deg, rgba(255, 252, 248, 0.92), rgba(252, 246, 241, 0.84));
}

.hero-panel__copy {
  position: relative;
  display: grid;
  align-content: start;
  padding-right: 8px;
}

.hero-panel__copy h1,
.page-hero h1,
.section-heading h2,
.closing-banner h2,
.sidebar-block h2 {
  max-width: 13ch;
}

.hero-panel__copy h1,
.page-hero h1,
.sidebar-block h2 {
  margin-top: 14px;
}

.hero-panel__copy h1 {
  max-width: 9.4ch;
  font-size: clamp(3.55rem, 6vw, 5.55rem);
  line-height: 0.94;
}

.hero-panel__copy::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 28px;
  width: 1px;
  height: calc(100% - 56px);
  background: linear-gradient(180deg, transparent, rgba(86, 68, 56, 0.12), transparent);
}

.hero-panel__sidebar {
  display: grid;
  gap: 18px;
}

.eyebrow,
.mini-label,
.card-index {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent);
}

.hero-lead,
.section-heading p,
.sidebar-intro,
.hero-story__card p,
.resource-card p,
.info-card p,
.fit-row p,
.faq-item p,
.profile-feature__body p,
.profile-card p {
  line-height: 1.78;
}

.hero-lead {
  max-width: 62ch;
  margin-top: 18px;
  font-size: 1.08rem;
}

.sidebar-intro,
.section-heading p,
.page-hero .hero-lead {
  max-width: 60ch;
  margin-top: 14px;
}

.hero-meta,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-meta {
  margin: 30px 0 24px;
}

.hero-chip {
  padding: 10px 16px;
  border-radius: 999px;
  background: #fffdfb;
  border: 1px solid rgba(117, 102, 92, 0.14);
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  align-items: end;
  gap: 18px;
  min-height: 252px;
  margin-top: 30px;
  padding: 18px 18px 8px;
  border-radius: 30px;
  overflow: hidden;
}

.hero-showcase__wash {
  position: absolute;
  inset: 12px 0 0 0;
  background:
    radial-gradient(circle at 18% 78%, rgba(231, 140, 103, 0.16), transparent 22%),
    radial-gradient(circle at 72% 20%, rgba(111, 199, 183, 0.16), transparent 26%),
    linear-gradient(135deg, rgba(255, 245, 234, 0.94), rgba(255, 252, 248, 0.7));
  border-radius: 28px;
}

.hero-showcase__stack,
.hero-showcase__card {
  position: relative;
  z-index: 1;
}

.hero-showcase__stack {
  min-height: 226px;
}

.hero-showcase__stack img {
  position: absolute;
  width: 196px;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 22px 40px rgba(108, 85, 63, 0.11);
}

.hero-showcase__stack img:nth-child(1) {
  left: 0;
  bottom: 8px;
  z-index: 1;
  transform: rotate(-8deg);
}

.hero-showcase__stack img:nth-child(2) {
  left: 108px;
  top: 2px;
  z-index: 3;
}

.hero-showcase__stack img:nth-child(3) {
  left: 214px;
  bottom: 18px;
  z-index: 2;
  transform: rotate(8deg);
}

.hero-showcase__card {
  align-self: stretch;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 253, 250, 0.78);
  border: 1px solid rgba(117, 102, 92, 0.1);
  box-shadow: 0 18px 34px rgba(108, 85, 63, 0.06);
}

.hero-showcase__card p:last-child {
  color: var(--muted);
  line-height: 1.7;
}

.hero-story {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.hero-story__card,
.sidebar-block,
.profile-card,
.info-card,
.resource-card,
.fit-row,
.fit-aside,
.faq-item,
.profile-feature {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(117, 102, 92, 0.1);
}

.hero-story__card--accent,
.fit-aside {
  background: linear-gradient(180deg, #eef8f3 0%, #fff8f2 100%);
}

.sidebar-block--tall {
  position: sticky;
  top: 92px;
  background: linear-gradient(180deg, #fff3ea 0%, #fffaf7 100%);
}

.sidebar-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.sidebar-perks span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(117, 102, 92, 0.08);
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 700;
}

.stack-list {
  margin: 0;
  padding-left: 18px;
  line-height: 1.85;
}

.signup-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.signup-form label {
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
}

.signup-form input,
.signup-form select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(117, 102, 92, 0.16);
  border-radius: 14px;
  background: #fffdfa;
  color: var(--text);
  font: inherit;
}

.signup-form input:focus,
.signup-form select:focus {
  outline: 2px solid rgba(194, 126, 101, 0.16);
  border-color: var(--accent);
}

.form-checkbox {
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
}

.form-checkbox input {
  min-height: auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.form-footnote {
  font-size: 0.9rem;
  text-align: center;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 20px;
  overflow: hidden;
  border-radius: 28px;
}

.trust-band__item {
  padding: 26px 28px;
  background: linear-gradient(180deg, rgba(255, 245, 234, 0.86), rgba(239, 248, 243, 0.72));
}

.trust-band__item + .trust-band__item {
  border-left: 1px solid rgba(117, 102, 92, 0.08);
}

.content-section,
.page-hero,
.closing-banner {
  margin-top: 24px;
  padding: 54px;
}

.page-hero {
  display: grid;
  gap: 0;
  padding-top: 48px;
  padding-bottom: 48px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.feature-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
  align-items: center;
  gap: 34px;
  margin-bottom: 34px;
}

.feature-intro__copy {
  max-width: 640px;
}

.feature-intro__copy h2 {
  margin-top: 10px;
  max-width: 10.2ch;
}

.feature-intro__art {
  position: relative;
  justify-self: end;
  width: min(100%, 470px);
}

.feature-intro--team {
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 0.9fr);
  gap: 20px;
}

.feature-intro--team .feature-intro__copy {
  max-width: 560px;
}

.feature-intro--team .feature-intro__art {
  width: min(100%, 560px);
}

.feature-intro__art--team {
  aspect-ratio: 1693 / 929;
}

.feature-intro__art--team::after {
  content: "";
  position: absolute;
  inset: 8% 8% 12% 10%;
  border-radius: 42% 58% 52% 48% / 48% 44% 56% 52%;
  background:
    radial-gradient(circle at 26% 54%, rgba(231, 140, 103, 0.12), transparent 26%),
    radial-gradient(circle at 76% 28%, rgba(111, 199, 183, 0.1), transparent 24%),
    radial-gradient(circle at 62% 72%, rgba(231, 190, 160, 0.1), transparent 22%);
  filter: blur(8px);
}

.feature-intro--team .feature-intro__art img {
  position: relative;
  z-index: 1;
  transform: scale(1.08);
  filter: contrast(1.02) saturate(0.95);
}

.feature-intro__art--resources {
  aspect-ratio: 520 / 420;
}

.feature-intro--resources {
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 0.92fr);
  gap: 22px;
}

.feature-intro--resources .feature-intro__copy {
  max-width: 560px;
}

.feature-intro--resources .feature-intro__art {
  width: min(100%, 520px);
}

.feature-intro__art img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.team-preview,
.principles-grid,
.learn-grid,
.resource-grid,
.faq-grid {
  display: grid;
  gap: 22px;
}

.team-preview,
.learn-grid,
.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

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

.resource-grid--home .resource-card--flagship-home {
  grid-column: span 2;
}

.resource-card--large {
  grid-column: span 2;
}

.profile-card {
  display: grid;
  gap: 14px;
}

.profile-feature__body,
.profile-card,
.info-card,
.resource-card,
.faq-item,
.fit-row,
.fit-aside {
  max-width: 66ch;
}

.profile-card__role {
  font-weight: 700;
  color: var(--text);
}

.profile-card__meta {
  font-size: 0.92rem;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  font-weight: 700;
  color: var(--accent-deep);
}

.content-section--contrast {
  background: linear-gradient(180deg, #fff4e9 0%, #f3faf6 100%);
}

.info-card--soft {
  background: #fff8f0;
}

.content-section--split .fit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 330px;
  gap: 22px;
}

.fit-list {
  display: grid;
  gap: 16px;
}

.fit-aside h3 {
  margin: 10px 0 14px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.9rem;
  font-weight: 400;
}

.closing-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(135deg, rgba(231, 140, 103, 0.15), rgba(111, 199, 183, 0.14));
}

.closing-banner > div {
  max-width: 760px;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  margin-top: 24px;
  border-radius: 28px;
}

.resource-feature-grid,
.resource-hub-grid,
.resource-access-grid,
.resource-detail-layout {
  display: grid;
  gap: 22px;
}

.resource-feature-grid {
  grid-template-columns: minmax(0, 1.15fr) 320px;
}

.resource-hub-grid {
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr) minmax(280px, 0.7fr);
}

.resource-card--flagship-home,
.resource-card--flagship {
  background: linear-gradient(180deg, #fff3ea 0%, #fffdfb 100%);
}

.resource-art-stack {
  position: relative;
  width: 100%;
  min-height: 100%;
  height: 100%;
  aspect-ratio: 520 / 420;
}

.resource-art-stack img {
  position: absolute;
  width: 58%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 22px 44px rgba(112, 88, 66, 0.1);
}

.resource-art-stack img:nth-child(1) {
  left: 0;
  bottom: 2%;
  z-index: 1;
  transform: rotate(-7deg);
}

.resource-art-stack img:nth-child(2) {
  left: 23%;
  top: 8%;
  z-index: 3;
}

.resource-art-stack img:nth-child(3) {
  right: 0;
  bottom: 6%;
  z-index: 2;
  transform: rotate(7deg);
}

.resource-card--flagship {
  grid-row: span 2;
}

.resource-card--tinted,
.content-section--success {
  background: linear-gradient(180deg, rgba(255, 242, 234, 0.95), rgba(238, 247, 243, 0.9));
}

.resource-summary-panel,
.gate-card,
.resource-detail-block,
.resource-safety-note {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(117, 102, 92, 0.1);
}

.resource-summary-panel {
  background: linear-gradient(180deg, rgba(238, 247, 243, 0.85), rgba(255, 250, 244, 0.92));
}

.resource-detail-block--heroish {
  background:
    radial-gradient(circle at top right, rgba(111, 199, 183, 0.12), transparent 32%),
    var(--surface);
}

.resource-detail-block--warm {
  background: linear-gradient(180deg, rgba(255, 244, 234, 0.94), rgba(255, 253, 250, 0.96));
}

.resource-detail-block--cool {
  background: linear-gradient(180deg, rgba(238, 247, 243, 0.92), rgba(255, 253, 250, 0.96));
}

.resource-detail-layout {
  grid-template-columns: minmax(0, 1.1fr) 360px;
  align-items: start;
}

.resource-detail-copy {
  display: grid;
  gap: 18px;
}

.resource-preview-grid,
.resource-includes {
  display: grid;
  gap: 18px;
}

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

.include-item {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(117, 102, 92, 0.08);
}

.resource-safety-note {
  background: linear-gradient(180deg, rgba(255, 248, 240, 0.96), rgba(255, 253, 250, 0.96));
}

.gate-card {
  position: sticky;
  top: 92px;
  background: linear-gradient(180deg, rgba(255, 244, 234, 0.98), rgba(255, 253, 250, 0.96));
}

.gate-card__intro {
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(117, 102, 92, 0.1);
}

.page-hero--resource {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 390px);
  align-items: center;
  gap: 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 20%, rgba(111, 199, 183, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 248, 241, 0.96), rgba(255, 252, 248, 0.92));
}

.page-hero__body {
  position: relative;
  z-index: 1;
  max-width: 620px;
  justify-self: start;
}

.page-hero__art {
  position: relative;
  min-height: 0;
  aspect-ratio: 573 / 914;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  overflow: hidden;
  justify-self: center;
  align-self: center;
  width: min(100%, 390px);
}

.page-hero__art::before {
  display: none;
}

.page-hero__art svg {
  width: 100%;
  height: 100%;
  display: block;
}

.page-hero__art img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 20px 36px rgba(135, 115, 94, 0.08));
}

.page-hero--resource h1 {
  max-width: 11.4ch;
  font-size: clamp(3rem, 5.4vw, 5rem);
}

.page-hero--resource .hero-lead {
  max-width: 33ch;
}

.page-hero--resources-hub {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
  align-items: center;
  gap: 40px;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, rgba(111, 199, 183, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 248, 241, 0.96), rgba(255, 252, 248, 0.92));
}

.page-hero--resources-hub h1 {
  max-width: 10.8ch;
  font-size: clamp(3rem, 5.4vw, 5rem);
}

.page-hero--resources-hub .hero-lead {
  max-width: 34ch;
}

.page-hero__art--resources-hub {
  width: min(100%, 460px);
  aspect-ratio: 520 / 420;
}

.page-hero--team {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(480px, 0.98fr);
  align-items: center;
  gap: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 26%, rgba(111, 199, 183, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 248, 241, 0.96), rgba(255, 252, 248, 0.92));
}

.page-hero--team .page-hero__body {
  max-width: 620px;
  position: relative;
  z-index: 1;
}

.page-hero--team h1 {
  max-width: 9.6ch;
  font-size: clamp(3.25rem, 4.85vw, 4.9rem);
  line-height: 0.94;
}

.page-hero--team .hero-lead {
  max-width: 38ch;
  margin-top: 18px;
}

.page-hero__art--team {
  aspect-ratio: 1693 / 929;
  width: min(100%, 740px);
  justify-self: end;
  align-self: center;
  margin-left: -8px;
  overflow: visible;
}

.page-hero__art--team::after {
  content: "";
  position: absolute;
  inset: 10% 7% 12% 8%;
  border-radius: 46% 54% 52% 48% / 48% 40% 60% 52%;
  background:
    radial-gradient(circle at 28% 52%, rgba(231, 140, 103, 0.12), transparent 24%),
    radial-gradient(circle at 72% 34%, rgba(111, 199, 183, 0.1), transparent 23%),
    radial-gradient(circle at 58% 66%, rgba(231, 190, 160, 0.12), transparent 26%);
  z-index: 0;
  filter: blur(8px);
}

.page-hero__art--team img {
  position: relative;
  z-index: 1;
  object-fit: contain;
  object-position: center;
  transform: scale(1.18);
  filter:
    contrast(1.03)
    saturate(0.94)
    drop-shadow(0 18px 28px rgba(135, 115, 94, 0.05));
  opacity: 0.96;
}

.stack-list--compact {
  line-height: 1.7;
}

.content-section--success {
  border-radius: var(--radius-xl);
}

.resource-access-panel.is-hidden {
  display: none;
}

.resource-access-message,
.resource-personalized-note {
  color: var(--muted);
  line-height: 1.75;
}

.resource-document {
  display: grid;
  gap: 20px;
}

.resource-document__cover,
.resource-sheet,
.resource-worksheet,
.resource-closing-note {
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(117, 102, 92, 0.1);
  background: rgba(255, 253, 249, 0.94);
  box-shadow: 0 18px 38px rgba(138, 111, 86, 0.08);
}

.resource-document__cover {
  display: grid;
  gap: 18px;
  background:
    radial-gradient(circle at 82% 16%, rgba(231, 140, 103, 0.16), transparent 28%),
    radial-gradient(circle at 20% 82%, rgba(111, 199, 183, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 246, 238, 0.98), rgba(255, 252, 248, 0.96));
}

.resource-document--sage .resource-document__cover {
  background:
    radial-gradient(circle at 82% 16%, rgba(111, 199, 183, 0.16), transparent 28%),
    radial-gradient(circle at 20% 82%, rgba(174, 178, 101, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(243, 249, 245, 0.98), rgba(255, 252, 248, 0.96));
}

.resource-document--clay .resource-document__cover {
  background:
    radial-gradient(circle at 82% 16%, rgba(216, 116, 80, 0.18), transparent 28%),
    radial-gradient(circle at 20% 82%, rgba(231, 190, 160, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 244, 234, 0.99), rgba(255, 252, 248, 0.96));
}

.resource-document__brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.resource-document__brand img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.resource-document__brand p:first-child {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.resource-document__brand p:last-child {
  color: var(--muted);
  font-size: 0.98rem;
}

.resource-document__kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--accent-deep);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.resource-document--sage .resource-document__kicker {
  color: #567969;
}

.resource-document__cover h2 {
  max-width: 10ch;
  font-size: clamp(2.8rem, 4.6vw, 4.6rem);
  line-height: 0.94;
}

.resource-document__subtitle {
  max-width: 30ch;
  color: var(--text);
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.7;
}

.resource-document__lede {
  max-width: 56ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.resource-document__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.resource-document__chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(117, 102, 92, 0.08);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.resource-document__intro {
  padding-top: 18px;
  border-top: 1px solid rgba(117, 102, 92, 0.1);
}

.resource-document__intro p + p {
  margin-top: 14px;
}

.resource-sheet {
  display: grid;
  gap: 18px;
}

.resource-sheet--warm {
  background: linear-gradient(180deg, rgba(255, 246, 238, 0.96), rgba(255, 253, 250, 0.96));
}

.resource-sheet--cool {
  background: linear-gradient(180deg, rgba(243, 249, 245, 0.98), rgba(255, 253, 250, 0.96));
}

.resource-sheet--plain {
  background: rgba(255, 253, 249, 0.98);
}

.resource-sheet__eyebrow {
  color: var(--accent-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.resource-document--sage .resource-sheet__eyebrow {
  color: #567969;
}

.resource-sheet h3,
.resource-closing-note h3 {
  font-size: 2rem;
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  line-height: 1;
}

.resource-sheet p,
.resource-sheet li,
.resource-worksheet p,
.resource-closing-note p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}

.resource-sheet__grid,
.resource-worksheet__grid,
.resource-check-grid {
  display: grid;
  gap: 16px;
}

.resource-sheet__grid,
.resource-check-grid,
.resource-worksheet__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.resource-panel {
  padding: 18px 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(117, 102, 92, 0.08);
}

.resource-panel h4 {
  margin-bottom: 10px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.4;
}

.resource-panel ul,
.resource-sheet ul {
  margin: 0;
  padding-left: 20px;
}

.resource-panel li + li,
.resource-sheet li + li {
  margin-top: 10px;
}

.resource-prompt-list {
  display: grid;
  gap: 18px;
}

.resource-prompt {
  padding: 16px 18px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(117, 102, 92, 0.08);
}

.resource-prompt strong,
.resource-worksheet__item strong {
  display: block;
  margin-bottom: 12px;
  color: var(--text);
  line-height: 1.5;
}

.resource-lines {
  display: grid;
  gap: 12px;
}

.resource-line {
  min-height: 32px;
  border-bottom: 1.6px solid rgba(117, 102, 92, 0.22);
}

.resource-worksheet {
  display: grid;
  gap: 18px;
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.98), rgba(245, 249, 246, 0.92));
}

.resource-worksheet__item {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(117, 102, 92, 0.08);
}

.resource-affirmation {
  padding: 22px 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(216, 116, 80, 0.95), rgba(231, 140, 103, 0.86));
  color: #fffaf6;
}

.resource-affirmation p {
  color: rgba(255, 250, 246, 0.94);
  font-size: 1.05rem;
  line-height: 1.9;
}

.resource-affirmation p + p {
  margin-top: 10px;
}

.resource-document--sage .resource-affirmation {
  background: linear-gradient(135deg, rgba(93, 132, 118, 0.96), rgba(111, 199, 183, 0.86));
}

.resource-closing-note {
  display: grid;
  gap: 10px;
  background: linear-gradient(180deg, rgba(255, 248, 240, 0.98), rgba(255, 253, 250, 0.96));
}

.resource-document--sage .resource-closing-note {
  background: linear-gradient(180deg, rgba(243, 249, 245, 0.98), rgba(255, 253, 250, 0.96));
}

.resource-disclaimer {
  color: rgba(95, 87, 79, 0.78);
  font-size: 0.9rem;
}

.form-error {
  display: none;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #b1543d;
}

.form-error.is-visible {
  display: block;
}

.form-status {
  display: none;
  margin: 0;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 0.92rem;
  line-height: 1.6;
}

.form-status.is-visible {
  display: block;
}

.form-status--success {
  background: rgba(111, 199, 183, 0.14);
  color: #366c61;
}

.form-status--info {
  background: rgba(255, 212, 106, 0.2);
  color: #765b17;
}

.form-status--error {
  background: rgba(231, 140, 103, 0.14);
  color: #9d4f34;
}

.form-alt-action.is-hidden {
  display: none;
}

.gate-form.is-complete {
  opacity: 0.92;
}

.signup-form.is-disabled {
  opacity: 0.84;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
}

.profile-stack {
  display: grid;
  gap: 18px;
}

.profile-stack,
.team-preview,
.principles-grid,
.learn-grid,
.resource-grid,
.faq-grid,
.fit-grid {
  align-items: stretch;
}

.profile-feature {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 20px;
}

.profile-feature__avatar {
  width: 88px;
  height: 88px;
  font-size: 1.1rem;
}

.home-main {
  display: grid;
  gap: 22px;
}

.home-hero,
.home-proof-band,
.home-team,
.home-resources,
.home-outcomes,
.home-faq,
.home-closing {
  background: rgba(255, 252, 248, 0.84);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-xl);
}

.home-hero,
.home-team,
.home-resources,
.home-faq {
  padding: 34px;
}

.home-hero__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  align-items: start;
  gap: 22px;
}

.home-hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  align-items: start;
  gap: 22px;
  grid-auto-rows: min-content;
}

.home-hero__copy {
  display: grid;
  gap: 18px;
  align-content: start;
}

.home-hero__copy h1 {
  max-width: 8.4ch;
  font-size: clamp(4rem, 6vw, 5.45rem);
  line-height: 0.92;
  margin-top: 8px;
}

.home-hero__copy .hero-lead {
  max-width: 24ch;
  font-size: 1.18rem;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.home-hero__visual {
  position: relative;
  min-height: 0;
  display: grid;
  place-items: center;
  align-self: start;
  padding-top: 52px;
}

.home-hero__visual::before {
  content: none;
}

.home-hero__illustration {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 540px);
  height: auto;
  filter: drop-shadow(0 24px 42px rgba(117, 84, 58, 0.12));
}

.home-hero__form {
  align-self: stretch;
}

.home-hero__form-card {
  height: 100%;
  padding: 24px 24px 20px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 244, 234, 0.98), rgba(255, 251, 248, 0.95));
  border: 1px solid rgba(117, 102, 92, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.home-hero__form-card h2 {
  max-width: 9.2ch;
  margin-top: 8px;
  font-size: 2.62rem;
  line-height: 0.94;
}

.home-hero__benefits {
  display: grid;
  gap: 10px;
  margin: 18px 0 14px;
  padding: 0;
  list-style: none;
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 600;
}

.home-hero__benefits li {
  position: relative;
  padding-left: 28px;
}

.home-hero__benefits li::before {
  content: "◉";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-size: 0.9rem;
}

.signup-form .is-hidden {
  display: none;
}

.home-hero__form .signup-form {
  margin-top: 10px;
}

.home-hero__form .signup-form .button {
  margin-top: 4px;
}

.form-footnote--lock::before {
  content: "⌂";
  display: inline-block;
  margin-right: 6px;
  font-size: 0.84rem;
  opacity: 0.7;
}

.home-hero__microproof {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-top: 24px;
  align-items: start;
}

.microproof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.microproof-item__icon,
.home-proof-band__icon,
.home-outcome__icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 1px solid rgba(117, 102, 92, 0.16);
  color: var(--accent-deep);
  background: rgba(255, 255, 255, 0.86);
}

.home-hero__microproof .microproof-item__icon {
  width: 30px;
  height: 30px;
  font-size: 0.88rem;
}

.home-proof-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
}

.home-proof-band__item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  padding: 24px 30px;
  background: linear-gradient(180deg, rgba(255, 247, 239, 0.9), rgba(243, 249, 245, 0.8));
}

.home-proof-band__item + .home-proof-band__item {
  border-left: 1px solid rgba(117, 102, 92, 0.08);
}

.home-proof-band__item p:last-child {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.7;
}

.home-team__hero,
.home-resources__hero {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: 22px;
}

.home-team__copy,
.home-resources__copy {
  max-width: 450px;
}

.home-team__copy h2,
.home-resources__copy h2 {
  margin-top: 10px;
  max-width: 7.2ch;
  font-size: clamp(3rem, 4.5vw, 4.6rem);
  line-height: 0.94;
}

.home-team__copy p,
.home-resources__copy p {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

.home-team__art {
  margin: 0;
  position: relative;
  aspect-ratio: 1693 / 929;
  width: min(100%, 740px);
  justify-self: end;
}

.home-team__art::after {
  content: "";
  position: absolute;
  inset: 12% 10% 12% 12%;
  border-radius: 42% 58% 48% 52% / 46% 44% 56% 54%;
  background:
    radial-gradient(circle at 36% 56%, rgba(231, 140, 103, 0.16), transparent 20%),
    radial-gradient(circle at 70% 32%, rgba(111, 199, 183, 0.1), transparent 18%);
  filter: blur(8px);
}

.home-team__art img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-team__cards {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.92fr);
  gap: 20px;
  margin-top: 18px;
  align-items: start;
}

.home-team-card,
.home-flagship-card,
.home-support-card,
.home-faq__item {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(117, 102, 92, 0.1);
}

.home-team-card {
  display: grid;
  gap: 14px;
}

.home-team-card--founder {
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 247, 239, 0.92), rgba(255, 252, 248, 0.96));
  border-color: rgba(224, 150, 111, 0.2);
  box-shadow: 0 16px 36px rgba(160, 128, 101, 0.08);
}

.home-team-card--founder .profile-card__avatar {
  width: 72px;
  height: 72px;
  font-size: 1.3rem;
}

.home-team-card--support {
  padding: 14px 18px 12px;
  gap: 8px;
  background: rgba(255, 253, 250, 0.74);
  border-color: rgba(117, 102, 92, 0.08);
}

.home-team__support-column {
  display: grid;
  gap: 4px;
  align-content: start;
}

.home-team__cta {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  margin-left: 10px;
  padding-top: 2px;
  border-top: 1px solid rgba(117, 102, 92, 0.08);
  color: rgba(198, 116, 76, 0.92);
  font-size: 0.92rem;
}

.profile-card__badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(224, 150, 111, 0.14);
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.profile-card__badge--support {
  background: rgba(154, 162, 118, 0.08);
  color: rgba(107, 115, 80, 0.76);
  letter-spacing: 0.12em;
}

.profile-card__avatar--sage {
  background: linear-gradient(145deg, #b6b68e, #8f9570);
}

.home-team-card--support .profile-card__avatar {
  width: 50px;
  height: 50px;
  font-size: 0.96rem;
}

.home-team-card--support .profile-card__badge {
  margin-bottom: 4px;
  padding: 4px 8px;
  font-size: 0.68rem;
}

.home-team-card--support h3 {
  font-size: 1.56rem;
  line-height: 1.02;
}

.home-team-card--support .profile-card__role {
  font-size: 0.86rem;
}

.home-team-card--support .profile-card__meta,
.home-team-card--support p:last-child {
  color: rgba(95, 87, 79, 0.86);
}

.home-team-card--support p:last-child {
  line-height: 1.48;
}

.home-team-card p:last-child {
  color: var(--muted);
  line-height: 1.74;
}

.home-resources__stack {
  position: relative;
  width: min(100%, 660px);
  height: 380px;
  justify-self: end;
}

.resource-book {
  position: absolute;
  width: 210px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 22px 44px rgba(112, 88, 66, 0.14);
}

.resource-book--left {
  left: 58px;
  bottom: 20px;
  transform: rotate(-8deg);
  z-index: 1;
}

.resource-book--middle {
  left: 230px;
  bottom: 18px;
  z-index: 3;
}

.resource-book--right {
  right: 56px;
  bottom: 16px;
  transform: rotate(8deg);
  z-index: 2;
}

.home-resources__leaf {
  position: absolute;
  right: 8px;
  bottom: 28px;
  width: 82px;
  height: 120px;
}

.home-resources__leaf::before,
.home-resources__leaf::after {
  content: "";
  position: absolute;
  width: 58px;
  height: 24px;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(180deg, rgba(125, 150, 104, 0.48), rgba(109, 129, 93, 0.86));
}

.home-resources__leaf::before {
  right: 0;
  top: 20px;
  transform: rotate(36deg);
}

.home-resources__leaf::after {
  left: 0;
  top: 58px;
  transform: rotate(-18deg);
}

.home-resources__detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(0, 0.72fr) minmax(0, 0.72fr);
  gap: 18px;
  margin-top: 26px;
}

.home-flagship-card {
  background: linear-gradient(180deg, rgba(255, 244, 234, 0.95), rgba(255, 252, 248, 0.98));
}

.home-flagship-card__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 128px;
  gap: 20px;
  align-items: center;
  margin-top: 8px;
}

.home-flagship-card__layout img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 16px 30px rgba(112, 88, 66, 0.1);
}

.home-flagship-card h3,
.home-support-card h3 {
  margin-bottom: 12px;
  font-size: 1.95rem;
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  line-height: 1.04;
}

.home-flagship-card p:last-of-type,
.home-support-card p {
  color: var(--muted);
  line-height: 1.75;
}

.home-support-card {
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.96), rgba(255, 253, 249, 0.98));
}

.home-outcomes {
  padding: 22px 26px;
}

.home-outcomes__row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 16px;
}

.home-outcome {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-left: 8px;
}

.home-outcome span:last-child {
  color: var(--text);
  font-weight: 600;
  line-height: 1.5;
}

.home-faq {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
  gap: 28px;
  align-items: start;
}

.home-faq__copy h2 {
  max-width: 7.8ch;
  font-size: clamp(2.8rem, 4vw, 4.25rem);
  line-height: 0.96;
}

.home-faq__copy p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.home-faq__items {
  display: grid;
  gap: 14px;
}

.home-faq__item {
  background: rgba(255, 255, 255, 0.82);
}

.home-faq__item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--text);
}

.home-faq__item summary::-webkit-details-marker {
  display: none;
}

.home-faq__item summary::after {
  content: "▾";
  float: right;
  color: var(--muted);
}

.home-faq__item[open] summary::after {
  content: "▴";
}

.home-faq__item p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.75;
}

.home-closing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 30px 36px;
  background: linear-gradient(135deg, #d98668 0%, #ca795e 100%);
  color: #fffaf5;
}

.home-closing h2 {
  font-family: "Manrope", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.04;
}

.home-closing p {
  margin-top: 12px;
  max-width: 35ch;
  color: rgba(255, 250, 244, 0.88);
  line-height: 1.7;
}

.home-closing__actions {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.button-primary--light {
  background: #fff8f3;
  color: var(--accent-deep);
  box-shadow: none;
}

.button-primary--light:hover {
  background: #fff3eb;
}

.home-closing__note {
  margin: 0;
  color: rgba(255, 250, 244, 0.8);
  font-size: 0.92rem;
}

@media (max-width: 1120px) {
  .site-header {
    position: static;
  }

  .site-header__inner {
    flex-direction: column;
    align-items: stretch;
    border-radius: 28px;
    padding: 18px;
  }

  .site-nav {
    justify-content: center;
  }

  .hero-panel,
  .principles-grid,
  .resource-grid,
  .resource-hub-grid,
  .resource-feature-grid,
  .resource-access-grid,
  .resource-detail-layout,
  .resource-preview-grid,
  .content-section--split .fit-grid,
  .team-preview,
  .learn-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .home-proof-band,
  .home-team__hero,
  .home-team__cards,
  .home-resources__hero,
  .home-resources__detail-grid,
  .home-outcomes__row,
  .home-faq {
    grid-template-columns: 1fr;
  }

  .home-hero__panel {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 20px;
  }

  .home-hero__content {
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    gap: 20px;
  }

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

  .home-hero__visual {
    min-height: 0;
    padding-top: 28px;
  }

  .home-team__art,
  .home-resources__stack {
    justify-self: center;
  }

  .home-closing {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-closing__actions {
    width: 100%;
    justify-items: stretch;
  }

  .resource-card--large {
    grid-column: span 1;
  }

  .resource-card--flagship {
    grid-row: span 1;
  }

  .hero-panel {
    gap: 24px;
  }

  .hero-showcase {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 18px;
  }

  .hero-showcase__stack {
    min-height: 234px;
  }

  .hero-showcase__card {
    align-content: start;
  }

  .page-hero__art {
    width: min(100%, 390px);
  }

  .content-section,
  .page-hero,
  .closing-banner {
    padding: 44px;
  }

  .hero-panel__copy::after {
    display: none;
  }

  .sidebar-block--tall {
    position: static;
  }
}

@media (max-width: 920px) {
  .site-header__inner,
  .closing-banner,
  .site-footer,
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .site-header__inner {
    gap: 14px;
  }

  .site-nav {
    justify-content: flex-start;
    gap: 8px;
    padding: 0;
    background: transparent;
  }

  .site-nav__link {
    padding: 9px 12px;
    background: rgba(255, 253, 250, 0.78);
    border: 1px solid rgba(117, 102, 92, 0.12);
  }

  .home-hero,
  .home-team,
  .home-resources,
  .home-faq {
    padding: 24px;
  }

  .home-hero__copy h1,
  .home-team__copy h2,
  .home-resources__copy h2,
  .home-faq__copy h2 {
    max-width: none;
  }

  .home-hero__actions {
    flex-direction: column;
  }

  .home-hero__panel {
    gap: 18px;
  }

  .home-hero__content {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-hero__visual {
    min-height: 360px;
    padding-top: 0;
  }

  .home-hero__illustration {
    width: min(100%, 380px);
  }

  .home-hero__microproof {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .home-team__cta {
    margin-left: 0;
    padding-top: 0;
    border-top: 0;
  }

  .resource-book {
    width: 172px;
  }

  .resource-book--left {
    left: 18px;
  }

  .resource-book--middle {
    left: 154px;
  }

  .resource-book--right {
    right: 18px;
  }

  .button {
    width: 100%;
  }

  .button-compact {
    width: 100%;
  }

  .hero-panel,
  .hero-story,
  .trust-band,
  .resource-feature-grid,
  .feature-intro {
    grid-template-columns: 1fr;
  }

  .page-hero--resource {
    gap: 18px;
    grid-template-columns: 1fr;
  }

  .page-hero--resources-hub {
    gap: 20px;
    grid-template-columns: 1fr;
  }

  .page-hero--team {
    gap: 20px;
    grid-template-columns: 1fr;
  }

  .hero-showcase__stack img:nth-child(1) {
    left: 0;
  }

  .hero-showcase__stack img:nth-child(2) {
    left: 92px;
  }

  .hero-showcase__stack img:nth-child(3) {
    left: 184px;
  }

  .page-hero--team h1,
  .page-hero--team .hero-lead,
  .page-hero--resources-hub h1,
  .page-hero--resources-hub .hero-lead {
    max-width: none;
  }

  .page-hero__body {
    max-width: none;
  }

  .trust-band__item + .trust-band__item {
    border-left: 0;
    border-top: 1px solid rgba(117, 102, 92, 0.08);
  }

  .button,
  .button-compact {
    width: 100%;
  }

  .resource-grid--home,
  .resource-hub-grid,
  .resource-detail-layout,
  .resource-preview-grid {
    grid-template-columns: 1fr;
  }

  .resource-sheet__grid,
  .resource-check-grid,
  .resource-worksheet__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .home-main {
    gap: 16px;
  }

  .home-hero,
  .home-team,
  .home-resources,
  .home-faq,
  .home-outcomes,
  .home-closing,
  .home-proof-band {
    border-radius: 24px;
  }

  .home-hero__panel {
    gap: 14px;
  }

  .home-hero__copy h1 {
    font-size: clamp(2.8rem, 11vw, 4rem);
  }

  .home-hero__visual {
    min-height: 240px;
    padding-top: 0;
  }

  .home-hero__illustration {
    width: min(100%, 300px);
  }

  .home-proof-band__item {
    grid-template-columns: 40px minmax(0, 1fr);
    padding: 18px 18px;
  }

  .home-team__cards,
  .home-outcomes__row {
    gap: 14px;
  }

  .home-team__cards {
    grid-template-columns: 1fr;
  }

  .home-team__support-column {
    gap: 12px;
  }

  .home-team__cta {
    padding-left: 0;
  }

  .home-team-card,
  .home-flagship-card,
  .home-support-card,
  .home-faq__item {
    padding: 18px;
  }

  .home-flagship-card__layout {
    grid-template-columns: 1fr;
  }

  .home-flagship-card__layout img {
    width: 132px;
  }

  .home-resources__stack {
    height: 292px;
  }

  .resource-book {
    width: 132px;
  }

  .resource-book--left {
    left: 0;
  }

  .resource-book--middle {
    left: 92px;
  }

  .resource-book--right {
    right: 0;
  }

  .home-closing {
    padding: 24px 18px;
  }

  .home-closing h2 {
    font-size: 2rem;
  }

  .site-shell {
    width: min(calc(100% - 20px), var(--max-width));
    margin: 12px auto 28px;
  }

  .site-header__inner,
  .hero-panel,
  .content-section,
  .page-hero,
  .closing-banner,
  .site-footer {
    padding: 18px;
    border-radius: 24px;
  }

  .site-header {
    margin-bottom: 18px;
  }

  .site-header__inner {
    gap: 12px;
  }

  .brand-mark {
    width: 52px;
    height: 52px;
  }

  .brand-name {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .brand-subtitle {
    font-size: 0.92rem;
    line-height: 1.3;
  }

  .site-nav {
    gap: 8px 6px;
  }

  .site-nav__link {
    padding: 8px 11px;
    font-size: 0.88rem;
  }

  .button-compact {
    min-height: 42px;
  }

  .hero-panel {
    gap: 18px;
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .page-hero {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .hero-story__card,
  .sidebar-block,
  .profile-card,
  .info-card,
  .resource-card,
  .resource-summary-panel,
  .gate-card,
  .resource-detail-block,
  .resource-safety-note,
  .fit-row,
  .fit-aside,
  .faq-item,
  .profile-feature {
    padding: 18px;
  }

  .resource-document__cover,
  .resource-sheet,
  .resource-worksheet,
  .resource-closing-note {
    padding: 22px;
    border-radius: 24px;
  }

  h1 {
    font-size: clamp(2.2rem, 11vw, 3.3rem);
    max-width: 9ch;
  }

  h2 {
    font-size: clamp(1.7rem, 8.5vw, 2.6rem);
  }

  .hero-lead,
  .sidebar-intro,
  .section-heading p,
  .page-hero .hero-lead {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-meta {
    margin: 20px 0 18px;
  }

  .hero-chip {
    font-size: 0.88rem;
    padding: 9px 14px;
  }

  .hero-story {
    margin-top: 22px;
  }

  .hero-showcase {
    padding: 14px 14px 12px;
  }

  .hero-showcase__stack {
    min-height: 198px;
  }

  .hero-showcase__stack img {
    width: 142px;
  }

  .hero-showcase__stack img:nth-child(2) {
    left: 72px;
  }

  .hero-showcase__stack img:nth-child(3) {
    left: 142px;
  }

  .trust-band {
    margin-top: 16px;
  }

  .content-section,
  .page-hero,
  .closing-banner {
    margin-top: 16px;
  }

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

  .profile-feature__avatar {
    width: 64px;
    height: 64px;
  }

  .page-hero__art {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  .page-hero__art--team {
    max-width: 620px;
  }

  .feature-intro__art {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
}

@media print {
  body {
    background: #fff;
  }

  .site-header,
  .site-footer,
  .gate-card,
  .button,
  .text-link {
    display: none !important;
  }

  .site-shell {
    width: 100%;
    margin: 0;
  }

  .content-section,
  .resource-access-panel,
  .resource-document,
  .resource-document__cover,
  .resource-sheet,
  .resource-worksheet,
  .resource-closing-note {
    box-shadow: none;
    break-inside: avoid;
  }
}
