:root {
  --charcoal: #16130f;
  --charcoal-2: #1e1914;
  --cream: #ece8e7;
  --paper: #fffaf5;
  --clay: #b88968;
  --bronze: #a97858;
  --text-dark: #16130f;
  --text-muted: #6c625a;
  --line-dark: rgba(236, 232, 231, 0.18);
  --line-light: rgba(22, 19, 15, 0.16);
  --shell-light: rgba(255, 250, 245, 0.72);
  --shell-dark: rgba(255, 255, 255, 0.055);
  --max-wide: 1180px;
  --max-narrow: 860px;
  --radius: 30px;
  --radius-inner: 22px;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --font-heading: "League Spartan", "Spartan", sans-serif;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--charcoal);
  color: var(--text-dark);
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  content: "";
  opacity: 0.04;
  background-image:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.8) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 80%, rgba(22, 19, 15, 0.9) 0 1px, transparent 1px);
  background-size: 24px 24px, 32px 32px;
  mix-blend-mode: soft-light;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--charcoal);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  transform: translateY(-140%);
  transition: transform 520ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 36px));
  min-height: 76px;
  padding: 10px 12px 10px 22px;
  color: #fff;
  background: rgba(22, 19, 15, 0.74);
  border: 1px solid rgba(236, 232, 231, 0.14);
  border-radius: 999px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.back-link span:first-child {
  font-family: "BioRhyme", serif;
  font-size: 1rem;
  line-height: 1;
}

.creator-nav-title {
  justify-self: center;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.site-nav {
  display: flex;
  gap: clamp(16px, 3vw, 32px);
  justify-content: center;
  font-family: "BioRhyme", serif;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.72);
}

.site-nav a {
  text-decoration: none;
  transition: color 520ms var(--ease), transform 520ms var(--ease);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
  transform: translateY(-1px);
}

.site-header > .button {
  justify-self: end;
}

.button,
.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  width: fit-content;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.15;
  text-decoration: none;
  cursor: pointer;
  transition: transform 620ms var(--ease), background 620ms var(--ease), border-color 620ms var(--ease), color 620ms var(--ease);
}

.button {
  gap: 14px;
  padding: 9px 10px 9px 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--clay), #9c6d4f);
  box-shadow: 0 18px 34px rgba(83, 48, 25, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.24);
  font-family: "BioRhyme", serif;
}

.button::after {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  content: "↗";
  color: #2a1d15;
  background: rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  transition: transform 620ms var(--ease), background 620ms var(--ease);
}

.button:hover,
.button:focus-visible {
  background: linear-gradient(135deg, #c89a78, #9f7050);
  transform: translateY(-2px) scale(0.992);
}

.button:hover::after,
.button:focus-visible::after {
  background: #fffaf5;
  transform: translate(3px, -2px) scale(1.05);
}

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

.button-small {
  min-height: 48px;
  padding: 6px 7px 6px 17px;
  font-size: 0.78rem;
}

.button-small::after {
  width: 32px;
  height: 32px;
}

.text-link {
  min-height: 0;
  padding: 0 0 5px;
  color: var(--clay);
  border-bottom: 1px solid currentColor;
  border-radius: 0;
}

.text-link:hover,
.text-link:focus-visible {
  transform: translateX(4px);
}

.section {
  position: relative;
  padding: clamp(96px, 13vw, 186px) clamp(18px, 4vw, 52px);
  overflow: clip;
}

.section-dark {
  color: #fff;
  background: var(--charcoal);
}

.section-light {
  color: var(--text-dark);
  background: var(--cream);
}

.content-wide,
.content-grid,
.content-narrow {
  position: relative;
  z-index: 2;
  width: min(var(--max-wide), calc(100vw - clamp(36px, 8vw, 104px)));
  min-width: 0;
  margin: 0 auto;
}

.content-grid {
  display: grid;
  gap: clamp(28px, 5vw, 78px);
}

.content-narrow {
  width: min(var(--max-narrow), calc(100vw - clamp(36px, 8vw, 104px)));
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--clay);
  font-family: "Sulphur Point", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.section-dark .eyebrow {
  color: #d5a079;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: none;
  font-size: clamp(2.95rem, 7.25vw, 5.95rem);
  line-height: 0.9;
  white-space: nowrap;
}

h2 {
  max-width: 14ch;
  font-size: clamp(1.98rem, 4.75vw, 4.45rem);
  line-height: 1.02;
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.15;
}

p {
  margin: 0;
}

.section-title {
  width: 100%;
  max-width: min(24ch, 100%);
  margin: 0 auto;
  color: inherit;
  font-size: clamp(2rem, 4.15vw, 3.95rem);
  font-weight: 700;
  line-height: 0.98;
  text-align: center;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.section-subhead {
  width: 100%;
  max-width: min(840px, 100%);
  margin: 0 auto;
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-size: clamp(1.12rem, 1.95vw, 1.7rem);
  font-weight: 700;
  line-height: 1.18;
  text-align: center;
}

.section-dark .section-subhead {
  color: rgba(255, 255, 255, 0.86);
}

.prose {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  min-width: 0;
  color: inherit;
}

.prose p {
  color: currentColor;
}

.section-light .prose,
.section-light .section-intro p,
.section-light .list-panel li,
.section-light .faq-panel {
  color: var(--text-muted);
}

.section-dark .prose,
.section-dark .section-intro p,
.section-dark .layer-card p,
.section-dark .signup-copy p,
.section-dark .benefit-list {
  color: rgba(255, 255, 255, 0.76);
}

.section-light .section-subhead {
  color: var(--text-dark);
}

.section-dark .section-subhead {
  color: rgba(255, 255, 255, 0.88);
}

.testimonials .section-subhead,
.signup-copy .section-subhead {
  font-size: clamp(1.45rem, 2.25vw, 2rem);
}

.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(28px, 6vw, 74px);
}

.copy-block {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.copy-lines {
  gap: 8px;
}

.copy-slogan {
  margin-top: 14px;
  color: #000;
  font-family: var(--font-heading);
  font-size: clamp(1.22rem, 2.35vw, 2rem);
  font-weight: 700;
  line-height: 1.12;
}

.section-light .copy-slogan {
  color: #000;
}

.statement {
  margin-top: 34px;
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-size: clamp(1.28rem, 2.4vw, 2rem);
  font-weight: 700;
  line-height: 1.18;
  text-align: center;
}

.section-dark .statement {
  color: #fff;
}

.hero {
  position: relative;
  min-height: 100dvh;
  padding: 0 clamp(18px, 4vw, 52px);
  overflow: clip;
}

.video-shell {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--charcoal);
}

.ambient-video,
.video-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ambient-video {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.video-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.media-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(22, 19, 15, 0.9) 0%, rgba(22, 19, 15, 0.63) 42%, rgba(22, 19, 15, 0.26) 100%),
    linear-gradient(0deg, rgba(22, 19, 15, 0.72), rgba(22, 19, 15, 0.05) 42%);
}

.hero-content {
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  justify-items: center;
  min-height: 100dvh;
  padding: clamp(104px, 13vh, 148px) 0 clamp(30px, 7vh, 70px);
  text-align: center;
}

.hero-copy {
  display: grid;
  justify-items: center;
  max-width: min(100%, 980px);
}

.hero-promise {
  max-width: min(19ch, 100%);
  margin: 14px 0 20px;
  color: var(--cream);
  font-family: var(--font-heading);
  font-size: clamp(1.42rem, 2.22vw, 2rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.hero-lines {
  display: grid;
  gap: 9px;
  justify-items: center;
  max-width: 660px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.125rem;
  line-height: 1.55;
}

.hero-slogan {
  margin-top: 8px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2.25vw, 2rem);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.section-slogan {
  margin: 4px auto 0;
  color: #fff;
}

.prose p.section-slogan {
  color: #fff;
}

.philosophy {
  padding-top: clamp(86px, 12vw, 160px);
}

.body-move {
  background:
    linear-gradient(180deg, rgba(255, 250, 245, 0.78), rgba(236, 232, 231, 1)),
    var(--cream);
}

.body-move .section-title,
.philosophy .section-title {
  margin-bottom: 38px;
}

.split-grid {
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1fr);
  align-items: center;
}

.split-grid.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.78fr);
}

.portrait-frame {
  min-width: 0;
  padding: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: var(--shell-dark);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 28px 80px rgba(0, 0, 0, 0.22);
}

.portrait-frame img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-inner);
  object-fit: cover;
  transform: scale(1.01);
}

.split-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  min-width: 0;
  gap: 26px;
  text-align: center;
}

.method .section-intro,
.journey .section-intro,
.testimonials .section-intro,
.faq .section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  gap: 24px;
  max-width: 960px;
  margin-right: auto;
  margin-bottom: clamp(34px, 7vw, 78px);
  margin-left: auto;
  text-align: center;
}

.method .section-intro {
  max-width: 1040px;
}

.method .section-title {
  max-width: min(24ch, 100%);
}

.method .prose {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
}

.course-preview {
  position: relative;
  width: min(100%, 980px);
  margin: clamp(10px, 2vw, 18px) 0 6px;
  padding: 8px;
  overflow: hidden;
  border: 1px solid rgba(22, 19, 15, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 250, 245, 0.72);
  box-shadow: 0 28px 76px rgba(22, 19, 15, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.course-preview-fallback {
  position: absolute;
  inset: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  border-radius: var(--radius-inner);
  object-fit: cover;
}

.course-preview-label {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  padding: 8px 12px;
  color: #fffaf5;
  background: rgba(22, 19, 15, 0.7);
  border: 1px solid rgba(236, 232, 231, 0.2);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(22, 19, 15, 0.18);
  font-family: "BioRhyme", serif;
  font-size: 0.68rem;
  line-height: 1;
}

.course-preview-video {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-inner);
  background: var(--charcoal);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.method-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 22px;
  min-height: 332px;
  padding: 8px;
  border: 1px solid rgba(22, 19, 15, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 250, 245, 0.66);
  box-shadow: 0 24px 60px rgba(22, 19, 15, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.method-card:nth-child(2) {
  margin-top: 0;
}

.method-card:nth-child(3) {
  margin-top: 0;
}

.method-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-inner);
  object-fit: cover;
}

.method-card div {
  display: grid;
  align-self: center;
  gap: 10px;
  padding: 18px 18px 18px 0;
}

.method-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.cinematic {
  min-height: 760px;
  display: grid;
  align-items: center;
  color: #fff;
  background: var(--charcoal);
}

.cinematic > img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cinematic-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(22, 19, 15, 0.92), rgba(22, 19, 15, 0.72) 48%, rgba(22, 19, 15, 0.22)),
    linear-gradient(0deg, rgba(22, 19, 15, 0.78), rgba(22, 19, 15, 0.12));
}

.cinematic-copy {
  display: grid;
  gap: 28px;
  margin-left: max(0px, calc((100vw - var(--max-wide)) / 2));
}

.outcome-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1fr);
  gap: clamp(22px, 4.5vw, 56px);
  align-items: stretch;
  max-width: 980px;
  margin: clamp(34px, 6vw, 64px) auto 0;
}

.outcome-intro {
  display: grid;
  justify-items: center;
  gap: 18px;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.outcome-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  padding: 8px;
  border: 1px solid rgba(22, 19, 15, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 250, 245, 0.66);
  box-shadow: 0 24px 60px rgba(22, 19, 15, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.outcome-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 0;
}

.outcome-columns.single-list {
  grid-template-columns: minmax(0, 1fr);
  height: 100%;
}

.section-aftercopy {
  display: grid;
  gap: 16px;
  margin-top: clamp(34px, 7vw, 76px);
}

.list-panel {
  display: grid;
  align-content: center;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(22, 19, 15, 0.1);
  border-radius: var(--radius);
  background: var(--shell-light);
  box-shadow: 0 24px 60px rgba(22, 19, 15, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.outcome-layout + .button {
  display: flex;
  width: fit-content;
  margin: clamp(54px, 7vw, 82px) auto 0;
}

.list-panel h3 {
  margin-bottom: 18px;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-panel li,
.benefit-list li {
  position: relative;
  padding-left: 22px;
  margin-top: 10px;
}

.list-panel li::before,
.benefit-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--clay);
  border-radius: 50%;
  transform: translateY(-50%);
}

.manifesto .content-narrow {
  display: grid;
  gap: 32px;
}

.manifesto-lines {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.manifesto-lines span {
  padding: clamp(18px, 3vw, 28px);
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.8);
}

.journey-figure {
  margin: 0 0 clamp(34px, 6vw, 68px);
  padding: 8px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--shell-dark);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 28px 80px rgba(0, 0, 0, 0.2);
}

.journey-figure img {
  width: 100%;
  border-radius: var(--radius-inner);
}

.layer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  overflow: visible;
  padding-bottom: 0;
}

.layer-card {
  min-height: 520px;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--shell-dark);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  scroll-snap-align: start;
}

.compact-layers .layer-card {
  min-height: 300px;
}

.layer-card span {
  display: inline-block;
  margin-bottom: 46px;
  color: var(--clay);
  font-family: "BioRhyme", serif;
  font-size: 0.78rem;
}

.layer-card h3 {
  margin-bottom: 14px;
}

.layer-card p {
  font-size: 0.9rem;
  line-height: 1.62;
}

.journey-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 20px;
  min-height: 332px;
  padding: 8px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--shell-dark);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 70px rgba(0, 0, 0, 0.16);
}

.journey-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-inner);
  object-fit: cover;
}

.journey-card:nth-child(6) img {
  object-position: 72% center;
}

.journey-card div {
  display: grid;
  align-self: center;
  gap: 10px;
  padding: 18px 16px 18px 0;
}

.journey-card span {
  color: var(--clay);
  font-family: "BioRhyme", serif;
  font-size: 0.72rem;
}

.journey-card h3 {
  color: #fff;
  font-size: clamp(1.2rem, 1.75vw, 1.55rem);
}

.journey-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.52;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.testimonial-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
  max-width: 1140px;
  margin: 0 auto;
}

.testimonial-gallery img {
  width: 100%;
  height: clamp(380px, 35vw, 460px);
  min-height: 280px;
  padding: 7px;
  border: 1px solid rgba(22, 19, 15, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 250, 245, 0.78);
  box-shadow: 0 24px 70px rgba(22, 19, 15, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  object-fit: contain;
  object-position: center center;
}

.testimonial-gallery img:first-child {
  grid-row: auto;
}

.quote-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(28px, 5vw, 52px);
}

.testimonials .button {
  display: flex;
  width: fit-content;
  margin: clamp(48px, 6vw, 76px) auto 0;
}

.quote-row p {
  margin: 0;
  padding: clamp(20px, 3vw, 30px);
  color: var(--text-dark);
  border: 1px solid rgba(22, 19, 15, 0.1);
  border-radius: var(--radius);
  background: var(--shell-light);
  box-shadow: 0 22px 54px rgba(22, 19, 15, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 700;
  line-height: 1.25;
}

.testimonial-card {
  margin: 0;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 250, 245, 0.7);
}

.testimonial-card:nth-child(2),
.testimonial-card:nth-child(4) {
  transform: translateY(38px);
}

blockquote {
  margin: 0;
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 2.55rem);
  font-weight: 700;
  line-height: 1.08;
}

figcaption {
  margin-top: 24px;
  color: var(--bronze);
  font-family: "Sulphur Point", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

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

.signup-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
  align-items: start;
}

.signup-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}

.benefit-list {
  display: grid;
  gap: 3px;
  margin-top: 4px;
}

.signup-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--shell-dark);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.signup-fields {
  display: grid;
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
}

label {
  color: rgba(255, 255, 255, 0.84);
  font-family: "Sulphur Point", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

input {
  width: 100%;
  min-height: 54px;
  padding: 13px 18px;
  color: var(--text-dark);
  background: #fff;
  border: 1px solid transparent;
  border-radius: 999px;
  outline: none;
}

input:focus {
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(184, 137, 104, 0.2);
}

.field-error {
  min-height: 20px;
  color: #f0b7a3;
  font-size: 0.78rem;
  line-height: 1.35;
}

.form-note,
.form-status {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  line-height: 1.5;
}

.form-status {
  min-height: 24px;
  color: #e7c6ad;
}

.signup-form.is-success {
  align-content: center;
  min-height: 360px;
}

.signup-form.is-success .form-status {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.signup-success {
  display: grid;
  gap: 14px;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(236, 232, 231, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.signup-success[hidden] {
  display: none;
}

.signup-success h3 {
  color: #fff;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 0.98;
}

.signup-success p {
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.55;
}

.signup-success .success-kicker {
  color: var(--clay);
  font-family: "BioRhyme", serif;
  font-size: 0.82rem;
  line-height: 1.25;
}

.form-button {
  width: 100%;
}

.faq-list {
  padding: 8px;
  border: 1px solid rgba(22, 19, 15, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 250, 245, 0.58);
  box-shadow: 0 24px 64px rgba(22, 19, 15, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.faq-item {
  border-bottom: 1px solid rgba(22, 19, 15, 0.1);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item button {
  position: relative;
  width: 100%;
  padding: 25px 48px 25px 18px;
  color: var(--text-dark);
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
}

.faq-item button::after {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 24px;
  height: 24px;
  content: "";
  background:
    linear-gradient(currentColor, currentColor) center / 16px 2px no-repeat,
    linear-gradient(currentColor, currentColor) center / 2px 16px no-repeat;
  transform: translateY(-50%);
  transition: transform 620ms var(--ease);
}

.faq-item button[aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 620ms var(--ease);
}

.faq-panel p {
  overflow: hidden;
  padding: 0 18px 0;
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-panel p {
  padding-bottom: 24px;
}

.final-cta {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 92dvh;
  padding: clamp(80px, 14vw, 170px) clamp(18px, 4vw, 52px);
  overflow: clip;
}

.final-media .media-overlay {
  background:
    linear-gradient(90deg, rgba(22, 19, 15, 0.88), rgba(22, 19, 15, 0.58) 48%, rgba(22, 19, 15, 0.28)),
    linear-gradient(0deg, rgba(22, 19, 15, 0.76), rgba(22, 19, 15, 0.08));
}

.final-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  margin-left: max(0px, calc((100vw - var(--max-wide)) / 2));
}

.final-copy .section-title,
.final-copy .section-subhead {
  max-width: 100%;
  margin-left: 0;
  text-align: left;
}

.footer {
  padding: 32px clamp(18px, 4vw, 52px);
  color: rgba(255, 255, 255, 0.66);
  background: var(--charcoal);
  border-top: 1px solid var(--line-dark);
  font-size: 0.82rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  align-items: center;
  justify-content: flex-end;
  font-family: var(--font-heading);
  font-weight: 700;
}

.footer-menu .footer-link-primary {
  font-size: 1.1875rem;
  line-height: 1;
}

.footer-menu .footer-link-top {
  display: grid;
  justify-items: center;
  gap: 4px;
  font-family: "BioRhyme", serif;
  font-size: 0.6875rem;
  font-weight: 400;
  line-height: 1;
}

.footer-menu .footer-link-top::before {
  content: "↑";
  font-size: 0.9rem;
  line-height: 1;
}

.creator-body {
  background:
    linear-gradient(90deg, rgba(22, 19, 15, 0.022) 1px, transparent 1px),
    linear-gradient(180deg, rgba(22, 19, 15, 0.02) 1px, transparent 1px),
    var(--cream);
  background-size: 84px 84px;
}

.creator-hero {
  position: relative;
  min-height: 100dvh;
  padding: clamp(112px, 13vw, 154px) clamp(18px, 4vw, 52px) clamp(70px, 10vw, 120px);
  overflow: clip;
  isolation: isolate;
}

.creator-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.creator-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(0.96);
}

.creator-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(22, 19, 15, 0.88), rgba(22, 19, 15, 0.62) 48%, rgba(22, 19, 15, 0.22)),
    linear-gradient(0deg, rgba(22, 19, 15, 0.82), rgba(22, 19, 15, 0.08));
}

.creator-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.88fr);
  gap: clamp(34px, 8vw, 112px);
  align-items: center;
  min-height: calc(100dvh - clamp(182px, 24vw, 298px));
}

.creator-hero-copy {
  display: grid;
  gap: 22px;
  max-width: 680px;
  color: #fff;
}

.creator-hero-copy h1 {
  max-width: 9ch;
  white-space: normal;
}

.creator-lede {
  max-width: 17ch;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.8vw, 3.35rem);
  font-weight: 700;
  line-height: 1.02;
}

.creator-hero-note {
  max-width: 43ch;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.55;
}

.creator-media-constellation {
  position: relative;
  min-height: min(62vw, 640px);
}

.creator-primary-frame,
.creator-secondary-frame,
.creator-image-stack img {
  padding: 8px;
  border: 1px solid rgba(236, 232, 231, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 250, 245, 0.08);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.creator-primary-frame,
.creator-secondary-frame {
  margin: 0;
}

.creator-primary-frame {
  position: absolute;
  top: 6%;
  right: 2%;
  width: min(70%, 420px);
}

.creator-secondary-frame {
  position: absolute;
  bottom: 8%;
  left: 0;
  width: min(40%, 230px);
  transform: rotate(-1.4deg);
}

.creator-primary-frame img,
.creator-secondary-frame img {
  width: 100%;
  border-radius: var(--radius-inner);
  object-fit: cover;
  filter: saturate(0.9) contrast(0.98);
}

.creator-primary-frame img {
  aspect-ratio: 3 / 4;
}

.creator-secondary-frame img {
  aspect-ratio: 4 / 5;
}

.creator-story {
  scroll-margin-top: 120px;
  padding-top: clamp(168px, 17vw, 232px);
  background:
    radial-gradient(circle at 12% 8%, rgba(184, 137, 104, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 250, 245, 0.78), rgba(241, 238, 235, 1)),
    var(--cream);
}

.creator-story-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
  padding-top: clamp(104px, 10vw, 132px);
}

.creator-image-stack {
  display: grid;
  gap: 18px;
  align-self: start;
}

.creator-side-title {
  max-width: 13ch;
  margin: 0 0 2px;
  color: rgba(22, 19, 15, 0.9);
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 0.94;
  text-transform: uppercase;
}

.creator-image-stack figure,
.creator-story-evidence figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(22, 19, 15, 0.07);
  border-radius: var(--radius);
  background: rgba(255, 250, 245, 0.64);
  box-shadow: 0 10px 34px rgba(22, 19, 15, 0.055);
}

.creator-image-stack img,
.creator-story-evidence img {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.86) contrast(0.97);
}

.creator-image-stack figure:first-of-type img {
  aspect-ratio: 16 / 11;
}

.creator-story-copy {
  display: grid;
  gap: 18px;
  max-width: 740px;
  color: rgba(85, 77, 70, 0.92);
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
  line-height: 1.78;
}

.creator-story-copy p:first-child {
  color: rgba(22, 19, 15, 0.94);
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3.2vw, 2.8rem);
  font-weight: 700;
  line-height: 1.04;
}

.creator-story-evidence {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 12px 0 6px;
}

.creator-story-evidence img {
  aspect-ratio: 1 / 1;
}

.creator-story-evidence-wide img {
  aspect-ratio: 4 / 3;
}

.creator-origin {
  scroll-margin-top: 120px;
  padding: clamp(96px, 13vw, 170px) clamp(18px, 4vw, 52px);
  background:
    linear-gradient(90deg, rgba(236, 232, 231, 0.026) 1px, transparent 1px),
    linear-gradient(180deg, rgba(236, 232, 231, 0.022) 1px, transparent 1px),
    var(--charcoal);
  background-size: 72px 72px;
}

.creator-origin-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(260px, 0.58fr);
  gap: clamp(42px, 8vw, 104px);
  align-items: center;
}

.creator-origin-copy {
  display: grid;
  justify-items: start;
  gap: 32px;
  color: #fff;
}

.creator-origin-copy .section-title {
  margin: 0;
  text-align: left;
}

.creator-origin-copy .copy-block {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  text-align: left;
}

.creator-slogan {
  color: #fff;
  text-transform: uppercase;
}

.creator-principles {
  display: grid;
  gap: 0;
  overflow: hidden;
  border-top: 1px solid rgba(236, 232, 231, 0.14);
  border-bottom: 1px solid rgba(236, 232, 231, 0.14);
  border-radius: var(--radius);
  background: transparent;
  box-shadow: none;
}

.creator-principles p {
  padding: clamp(16px, 2.7vw, 24px) 2px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-heading);
  font-size: clamp(1.12rem, 1.8vw, 1.46rem);
  font-weight: 700;
  line-height: 1.08;
  border-bottom: 1px solid rgba(236, 232, 231, 0.12);
}

.creator-principles p:last-child {
  border-bottom: 0;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
  will-change: opacity, transform;
}

.reveal,
.motion-ready .reveal.is-visible,
.layer-grid .reveal {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(184, 137, 104, 0.72);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    width: min(760px, calc(100% - 24px));
  }

  .creator-body .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    width: min(760px, calc(100% - 24px));
  }

  .site-nav {
    display: none;
  }

  .hero-content,
  .split-grid,
  .split-grid.reverse,
  .outcome-layout,
  .signup-grid,
  .creator-hero-grid,
  .creator-story-grid,
  .creator-origin-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    align-items: center;
    min-height: 100dvh;
  }

  .method-grid,
  .outcome-columns,
  .layer-grid,
  .testimonial-grid,
  .testimonial-gallery,
  .quote-row,
  .two-column,
  .manifesto-lines {
    grid-template-columns: 1fr;
  }

  .method-card:nth-child(2),
  .method-card:nth-child(3),
  .testimonial-card:nth-child(2),
  .testimonial-card:nth-child(4) {
    margin-top: 0;
    transform: none;
  }

  .outcome-image {
    max-width: 420px;
  }

  .testimonial-gallery {
    max-width: 560px;
    margin-right: auto;
    margin-left: auto;
  }

  .testimonial-gallery img {
    height: 320px;
    min-height: 0;
  }

  .creator-hero-grid {
    min-height: 0;
  }

  .creator-media-constellation {
    min-height: 610px;
  }

  .creator-primary-frame {
    right: 0;
    width: min(78%, 420px);
  }

  .creator-secondary-frame {
    width: min(42%, 230px);
  }

  .creator-origin-copy,
  .creator-origin-copy .section-title,
  .creator-origin-copy .copy-block {
    justify-items: center;
    text-align: center;
  }

  .creator-story-evidence {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .site-header {
    top: 10px;
    min-height: 58px;
    gap: 14px;
    padding: 7px 8px 7px 12px;
  }

  .creator-body .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 8px;
    width: calc(100% - 18px);
    min-height: 56px;
    padding: 7px;
  }

  .brand-lockup span {
    display: inline;
    font-size: 0.9rem;
  }

  .creator-body .back-link {
    gap: 6px;
    min-width: 54px;
  }

  .creator-body .back-link span {
    font-size: 0.84rem;
  }

  .creator-body .creator-nav-title {
    overflow: hidden;
    font-size: 0.84rem;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .button-small {
    min-height: 38px;
    padding: 5px 6px 5px 13px;
    font-size: 0.72rem;
  }

  .button-small::after {
    width: 28px;
    height: 28px;
  }

  .creator-body .button-small {
    min-height: 40px;
    padding: 5px 6px 5px 12px;
    white-space: nowrap;
  }

  .creator-body .button-small::after {
    flex: 0 0 auto;
  }

  .section {
    padding: 78px 16px;
  }

  .hero {
    padding: 0 16px;
  }

  .hero-content {
    padding-top: 118px;
    padding-bottom: 34px;
  }

  .section-title {
    max-width: min(26ch, 100%);
    font-size: 1.24rem;
    line-height: 1.03;
  }

  .section-subhead {
    font-size: clamp(1.08rem, 6vw, 1.55rem);
  }

  h1 {
    font-size: clamp(2.5rem, 12.4vw, 3.35rem);
  }

  .method-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .journey-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .method-card div {
    padding: 10px 12px 14px;
  }

  .journey-card div {
    padding: 10px 12px 14px;
  }

  .method-card img {
    height: auto;
    min-height: 0;
    max-height: 280px;
    aspect-ratio: 1;
  }

  .journey-card img {
    height: auto;
    min-height: 0;
    max-height: 300px;
    aspect-ratio: 1;
  }

  .cinematic,
  .final-cta {
    min-height: 760px;
  }

  .media-overlay,
  .final-media .media-overlay,
  .cinematic-overlay {
    background:
      linear-gradient(0deg, rgba(22, 19, 15, 0.9), rgba(22, 19, 15, 0.36)),
      linear-gradient(90deg, rgba(22, 19, 15, 0.86), rgba(22, 19, 15, 0.24));
  }

  .cinematic-copy,
  .final-copy {
    margin-left: 0;
  }

  .signup-form {
    padding: 20px;
  }

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

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

  .creator-hero {
    padding: 104px 16px 72px;
  }

  .creator-hero-copy {
    gap: 16px;
  }

  .creator-hero-copy h1 {
    font-size: clamp(2.45rem, 13vw, 3.75rem);
  }

  .creator-lede {
    max-width: 100%;
  }

  .creator-hero-note {
    max-width: 34ch;
  }

  .creator-media-constellation {
    min-height: 480px;
  }

  .creator-primary-frame {
    top: 0;
    right: 0;
    width: 82%;
  }

  .creator-secondary-frame {
    bottom: 0;
    left: 0;
    width: 44%;
    transform: rotate(-2deg);
  }

  .creator-story-grid,
  .creator-origin-grid {
    gap: 32px;
  }

  .creator-side-title {
    max-width: 100%;
    font-size: 2rem;
  }

  .creator-story-evidence {
    grid-template-columns: 1fr;
  }

  .creator-story-evidence img,
  .creator-story-evidence-wide img {
    aspect-ratio: 16 / 11;
  }

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 520px) {
  .creator-body .site-header {
    gap: 6px;
  }

  .creator-body .button-small {
    width: 40px;
    min-width: 40px;
    padding: 5px;
    overflow: hidden;
    font-size: 0;
    gap: 0;
  }

  .creator-body .button-small::after {
    width: 28px;
    height: 28px;
    margin: 0;
    font-size: 0.86rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .ambient-video {
    display: none;
  }
}
