/* ======================================================
   TERM STRONG — Design system
   ====================================================== */

:root {
  --ink: #1a1f1c;
  --ink-soft: #2d3530;
  --paper: #f6f1e7;
  --paper-warm: #efe7d6;
  --cream: #faf6ee;
  --sage: #5a7a5e;
  --sage-deep: #3d5742;
  --sage-light: #c2d3bf;
  --clay: #c97a4a;
  --amber: #d9a356;
  --rose: #c25d5d;
  --line: rgba(26, 31, 28, 0.12);
  --line-strong: rgba(26, 31, 28, 0.22);
  --display: 'Fraunces', Georgia, serif;
  --body: 'Geist', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-snap: cubic-bezier(0.32, 0.72, 0, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(90, 122, 94, 0.08), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(201, 122, 74, 0.06), transparent 50%);
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px clamp(20px, 5vw, 64px);
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 241, 231, 0.86);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: padding 0.25s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.nav.is-scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
  box-shadow: 0 6px 24px -14px rgba(26, 31, 28, 0.28);
  border-bottom-color: var(--line);
  background: rgba(246, 241, 231, 0.94);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.nav__tagline {
  font-size: 0.82rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-left: auto;
}
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-family: var(--body);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  background: var(--clay);
  color: var(--cream);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 3px 0 rgba(150, 80, 40, 0.85), 0 8px 18px -8px rgba(201, 122, 74, 0.55);
  transition: transform 0.2s var(--ease-snap), box-shadow 0.3s var(--ease), background 0.2s;
}
.nav__cta svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.nav__cta:hover { transform: translateY(-1px); box-shadow: 0 4px 0 rgba(150, 80, 40, 0.9), 0 12px 22px -8px rgba(201, 122, 74, 0.65); }
.nav__cta:hover svg { transform: translateX(3px); }
.nav__cta:active { transform: translateY(1px); box-shadow: 0 1px 0 rgba(150, 80, 40, 0.85), 0 4px 10px -4px rgba(201, 122, 74, 0.5); }

@media (max-width: 760px) { .nav__tagline { display: none; } }
@media (max-width: 480px) {
  .nav { padding: 16px 18px; gap: 10px; }
  .nav__brand { font-size: 1.15rem; }
  .nav__cta { padding: 9px 14px; font-size: 0.78rem; }
  .nav__cta svg { width: 12px; height: 12px; }
}

/* LANDING */
.landing { position: relative; z-index: 1; padding-bottom: 64px; }

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px clamp(20px, 5vw, 64px) 80px;
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 24px;
  padding: 8px 16px;
  border: 1px solid var(--sage-light);
  border-radius: 999px;
  background: rgba(194, 211, 191, 0.2);
  animation: fadeUp 0.7s var(--ease) 0.05s both;
}

.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sage); display: inline-block; }
.dot--green { background: #5a7a5e; }

.hero__headline {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 5.2vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 auto 24px;
  max-width: 780px;
  font-variation-settings: "opsz" 144;
  animation: fadeUp 0.8s var(--ease) 0.1s both;
}
.hero__headline em {
  font-style: italic;
  color: var(--clay);
  font-variation-settings: "opsz" 144, "wght" 500;
}

.hero__sub {
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 auto 32px;
  animation: fadeUp 0.8s var(--ease) 0.2s both;
}

.hero__cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s var(--ease) 0.3s both;
  margin-bottom: 8px;
}

.hero__proof { display: flex; align-items: center; gap: 14px; }
.proof__text { font-size: 0.85rem; color: var(--ink-soft); }

/* PILLARS */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1320px;
  margin: 0 auto;
  padding: 64px clamp(20px, 5vw, 64px);
  border-top: 1px solid var(--line);
  gap: 1px;
  background: var(--line);
}
.pillar { background: var(--paper); padding: 32px 24px; position: relative; }
.pillar__num { font-family: var(--display); font-size: 0.85rem; color: var(--sage); margin-bottom: 18px; letter-spacing: 0.05em; }
.pillar__title { font-family: var(--display); font-size: 1.25rem; font-weight: 500; margin-bottom: 10px; letter-spacing: -0.01em; }
.pillar__text { font-size: 0.9rem; line-height: 1.5; color: var(--ink-soft); }
@media (max-width: 880px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .pillars { grid-template-columns: 1fr; } }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s var(--ease-snap), background 0.2s, box-shadow 0.3s var(--ease);
  text-decoration: none;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.3s var(--ease); }

.btn--primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 4px 0 var(--sage-deep), 0 12px 24px -8px rgba(26, 31, 28, 0.4);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--sage-deep), 0 18px 30px -8px rgba(26, 31, 28, 0.5); }
.btn--primary:hover svg { transform: translateX(4px); }
.btn--primary:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--sage-deep), 0 6px 14px -6px rgba(26, 31, 28, 0.4); }

.btn--ghost { background: transparent; color: var(--ink-soft); padding: 14px 22px; }
.btn--ghost:hover { color: var(--ink); }

.btn--clay {
  background: var(--clay);
  color: var(--cream);
  box-shadow: 0 4px 0 rgba(150, 80, 40, 0.85), 0 12px 24px -8px rgba(201, 122, 74, 0.55);
}
.btn--clay:hover { transform: translateY(-2px); background: #d68855; box-shadow: 0 6px 0 rgba(150, 80, 40, 0.9), 0 18px 30px -8px rgba(201, 122, 74, 0.65); }
.btn--clay:hover svg { transform: translateX(4px); }
.btn--clay:active { transform: translateY(2px); box-shadow: 0 2px 0 rgba(150, 80, 40, 0.85), 0 6px 14px -6px rgba(201, 122, 74, 0.5); }

.btn--submit { position: relative; min-width: 220px; }
.btn__spinner { display: none; width: 20px; height: 20px; animation: spin 0.8s linear infinite; }
.btn--submit.is-loading .btn__text { opacity: 0; }
.btn--submit.is-loading .btn__spinner { display: block; position: absolute; }

/* FORM SECTION */
.form-section { background: var(--paper-warm); position: relative; z-index: 1; padding: 80px 0; border-top: 1px solid var(--line); }
.form-section__inner { max-width: 720px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 48px); position: relative; }

.form-header { text-align: center; margin-bottom: 56px; }
.form-header__eyebrow { font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sage-deep); margin-bottom: 16px; font-weight: 500; }
.form-header__title { font-family: var(--display); font-size: clamp(1.9rem, 4.5vw, 2.8rem); font-weight: 400; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 16px; font-variation-settings: "opsz" 144; }
.form-header__sub { font-size: 1.02rem; line-height: 1.6; color: var(--ink-soft); max-width: 540px; margin: 0 auto; }
.form-header__sub em { font-family: var(--display); font-style: italic; color: var(--clay); }

.progress { margin-bottom: 40px; }
.progress__track { height: 4px; background: var(--line); border-radius: 2px; overflow: hidden; margin-bottom: 16px; }
.progress__fill { height: 100%; background: linear-gradient(90deg, var(--sage-deep), var(--sage)); width: 20%; border-radius: 2px; transition: width 0.5s var(--ease); }
.progress__steps { display: flex; justify-content: space-between; gap: 4px; font-size: 0.72rem; color: var(--ink-soft); letter-spacing: 0.02em; flex-wrap: wrap; }
.progress__step { opacity: 0.4; transition: opacity 0.3s, color 0.3s; }
.progress__step.is-active { opacity: 1; color: var(--sage-deep); font-weight: 500; }
.progress__step.is-complete { opacity: 0.7; }
@media (max-width: 640px) { .progress__steps { font-size: 0.68rem; justify-content: flex-start; } .progress__step:not(.is-active) { display: none; } }

.form { position: relative; }
.step { display: none; border: none; padding: 36px; background: var(--cream); border-radius: 24px; box-shadow: 0 30px 60px -30px rgba(26, 31, 28, 0.12); border: 1px solid var(--line); animation: stepIn 0.5s var(--ease) both; }
.step.is-active { display: block; }
.step__legend { display: flex; align-items: baseline; gap: 12px; margin-bottom: 8px; width: 100%; }
.step__num { font-family: var(--display); font-size: 1.6rem; color: var(--sage); font-weight: 500; }
.step__name { font-family: var(--display); font-size: 1.6rem; font-weight: 500; letter-spacing: -0.015em; }
.step__intro { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 28px; line-height: 1.6; }
.step__nav { display: flex; justify-content: space-between; align-items: center; margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--line); gap: 12px; }

.field { margin-bottom: 24px; position: relative; }
.field label { display: block; font-size: 0.92rem; font-weight: 500; margin-bottom: 10px; color: var(--ink); letter-spacing: -0.005em; }
.field__hint { font-weight: 400; font-size: 0.82rem; color: var(--ink-soft); font-style: italic; margin-left: 6px; }
.field input[type="text"], .field input[type="email"], .field textarea { width: 100%; padding: 14px 18px; background: var(--paper); border: 1.5px solid var(--line); border-radius: 12px; font-family: var(--body); font-size: 1rem; color: var(--ink); transition: border-color 0.2s, background 0.2s, box-shadow 0.2s; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--sage-deep); background: var(--cream); box-shadow: 0 0 0 4px rgba(90, 122, 94, 0.12); }
.field.is-error input, .field.is-error textarea { border-color: var(--rose); background: rgba(194, 93, 93, 0.04); }
.field.is-error .chips { outline: 1.5px solid var(--rose); outline-offset: 4px; border-radius: 12px; }
.field__error { display: none; font-size: 0.82rem; color: var(--rose); margin-top: 6px; }
.field.is-error .field__error { display: block; animation: fadeUp 0.3s var(--ease); }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { padding: 10px 16px; border: 1.5px solid var(--line-strong); background: transparent; border-radius: 999px; font-family: var(--body); font-size: 0.88rem; font-weight: 500; color: var(--ink-soft); cursor: pointer; transition: all 0.2s var(--ease-snap); letter-spacing: -0.005em; }
.chip:hover { border-color: var(--sage); color: var(--ink); background: rgba(194, 211, 191, 0.15); }
.chip.is-selected { background: var(--ink); border-color: var(--ink); color: var(--cream); transform: translateY(-1px); }

.slider { display: flex; align-items: center; gap: 20px; background: var(--paper); padding: 18px 22px; border-radius: 14px; border: 1.5px solid var(--line); }
.slider input[type="range"] { flex: 1; -webkit-appearance: none; appearance: none; height: 6px; background: var(--line-strong); border-radius: 3px; outline: none; }
.slider input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 26px; height: 26px; background: var(--ink); border: 3px solid var(--cream); border-radius: 50%; cursor: grab; box-shadow: 0 4px 12px rgba(26, 31, 28, 0.3); transition: transform 0.2s var(--ease-snap); }
.slider input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
.slider input[type="range"]::-moz-range-thumb { width: 26px; height: 26px; background: var(--ink); border: 3px solid var(--cream); border-radius: 50%; cursor: grab; box-shadow: 0 4px 12px rgba(26, 31, 28, 0.3); }
.slider__readout { display: flex; flex-direction: column; align-items: center; min-width: 90px; padding-left: 12px; border-left: 1px solid var(--line); }
.slider__value { font-family: var(--display); font-size: 1.8rem; font-weight: 500; color: var(--ink); line-height: 1; }
.slider__label { font-size: 0.72rem; color: var(--ink-soft); margin-top: 4px; letter-spacing: 0.02em; text-align: center; }

.consent { display: flex; align-items: flex-start; gap: 16px; padding: 20px; background: var(--paper); border: 1.5px solid var(--line); border-radius: 14px; cursor: pointer; transition: border-color 0.2s, background 0.2s; margin-bottom: 12px; }
.consent:hover { border-color: var(--sage); }
.consent input { display: none; }
.consent__box { flex-shrink: 0; width: 24px; height: 24px; border: 1.5px solid var(--line-strong); border-radius: 6px; display: flex; align-items: center; justify-content: center; background: var(--cream); transition: all 0.2s var(--ease-snap); }
.consent__box svg { width: 14px; height: 14px; color: var(--cream); opacity: 0; transform: scale(0.6); transition: opacity 0.2s, transform 0.2s var(--ease-snap); }
.consent input:checked ~ .consent__box { background: var(--sage-deep); border-color: var(--sage-deep); }
.consent input:checked ~ .consent__box svg { opacity: 1; transform: scale(1); }
.consent input:checked ~ .consent__text strong { color: var(--sage-deep); }
.consent__text { font-size: 0.92rem; line-height: 1.5; color: var(--ink-soft); }
.consent__text strong { color: var(--ink); font-weight: 500; transition: color 0.2s; }
.consent.is-error { border-color: var(--rose); background: rgba(194, 93, 93, 0.04); }

.form-error { padding: 14px 18px; background: rgba(194, 93, 93, 0.08); border: 1px solid rgba(194, 93, 93, 0.3); border-radius: 12px; color: var(--rose); font-size: 0.9rem; line-height: 1.5; margin-top: 16px; }
.form-error a { color: var(--rose); font-weight: 500; }

/* SUCCESS */
.step--success { text-align: center; padding: 60px 36px; }
.success__mark { width: 80px; height: 80px; margin: 0 auto 24px; background: var(--sage-deep); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--cream); animation: popIn 0.6s var(--ease) both; box-shadow: 0 12px 40px -8px rgba(61, 87, 66, 0.5); }
.success__mark svg { width: 38px; height: 38px; }
.success__title { font-family: var(--display); font-size: clamp(1.8rem, 4.5vw, 2.6rem); font-weight: 400; letter-spacing: -0.02em; margin-bottom: 16px; font-variation-settings: "opsz" 144; animation: fadeUp 0.6s var(--ease) 0.15s both; }
.success__title span { font-style: italic; color: var(--clay); }
.success__text { font-size: 1rem; line-height: 1.65; color: var(--ink-soft); max-width: 460px; margin: 0 auto 14px; animation: fadeUp 0.6s var(--ease) 0.25s both; }
.success__text--muted { font-size: 0.9rem; font-style: italic; font-family: var(--display); font-variation-settings: "opsz" 14; color: var(--sage-deep); }
.success__download { display: inline-flex; align-items: center; gap: 12px; margin-top: 8px; margin-bottom: 18px; padding: 20px 36px; font-size: 1.05rem; animation: fadeUp 0.6s var(--ease) 0.35s both; }
.success__download svg { width: 18px; height: 18px; }
.success__download:hover svg { transform: translateY(2px); }
.success__link { display: inline-block; margin-top: 28px; padding: 14px 24px; background: rgba(194, 211, 191, 0.18); border: 1px dashed var(--sage); color: var(--sage-deep); border-radius: 12px; text-decoration: none; font-size: 0.92rem; transition: all 0.25s var(--ease); animation: fadeUp 0.6s var(--ease) 0.4s both; }
.success__link:hover { background: rgba(194, 211, 191, 0.32); transform: translateY(-2px); }
.success__link strong { font-weight: 500; color: var(--ink); }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes stepIn { from { opacity: 0; transform: translateY(20px) scale(0.99); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes popIn { 0% { opacity: 0; transform: scale(0.5); } 60% { transform: scale(1.1); } 100% { opacity: 1; transform: scale(1); } }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }

/* COHORT */
.cohort { background: var(--paper); position: relative; padding: 96px 0 80px; border-top: 1px solid var(--line); overflow: hidden; }
.cohort::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 80%; max-width: 800px; height: 1px; background: linear-gradient(90deg, transparent, var(--sage), transparent); opacity: 0.4; }
.cohort__inner { max-width: 1100px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 64px); }
.cohort__header { text-align: center; margin-bottom: 72px; }
.cohort__eyebrow { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sage-deep); margin-bottom: 18px; font-weight: 500; }
.cohort__title { font-family: var(--display); font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 400; line-height: 1.05; letter-spacing: -0.025em; margin-bottom: 22px; font-variation-settings: "opsz" 144; }
.cohort__title em { font-style: italic; color: var(--clay); font-variation-settings: "opsz" 144, "wght" 500; }
.cohort__sub { font-size: 1.05rem; line-height: 1.65; color: var(--ink-soft); max-width: 620px; margin: 0 auto; }

.cohort__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; margin-bottom: 80px; }
.cohort__card { background: var(--cream); padding: 32px 28px; transition: background 0.3s var(--ease); }
.cohort__card:hover { background: var(--paper-warm); }
.cohort__card h3 { font-family: var(--display); font-size: 1.3rem; font-weight: 500; letter-spacing: -0.01em; margin-bottom: 10px; }
.cohort__card p { font-size: 0.92rem; line-height: 1.55; color: var(--ink-soft); }
@media (max-width: 880px) { .cohort__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .cohort__grid { grid-template-columns: 1fr; } }

.cohort__goal { text-align: center; max-width: 640px; margin: 0 auto 80px; padding: 48px 32px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cohort__goal-line { font-family: var(--display); font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 400; font-style: italic; font-variation-settings: "opsz" 144; color: var(--clay); margin-bottom: 20px; letter-spacing: -0.01em; }
.cohort__goal-text { font-size: 1rem; line-height: 1.7; color: var(--ink); margin-bottom: 16px; }
.cohort__goal-text--small { font-size: 0.9rem; color: var(--ink-soft); font-style: italic; font-family: var(--display); font-variation-settings: "opsz" 14; }

.cohort__cta { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; background: var(--cream); border: 1px solid var(--line); border-radius: 24px; padding: 48px; box-shadow: 0 30px 60px -30px rgba(26, 31, 28, 0.12); }
@media (max-width: 880px) { .cohort__cta { grid-template-columns: 1fr; gap: 32px; padding: 32px; } }
.cohort__cta-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.04em; color: var(--sage-deep); margin-bottom: 18px; padding: 8px 16px; border: 1px solid var(--sage-light); border-radius: 999px; background: rgba(194, 211, 191, 0.2); }
.cohort__cta-title { font-family: var(--display); font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 400; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 16px; font-variation-settings: "opsz" 144; }
.cohort__cta-text { font-size: 0.98rem; line-height: 1.65; color: var(--ink-soft); margin-bottom: 24px; }
.cohort__cta-list { list-style: none; padding: 0; margin: 0; }
.cohort__cta-list li { display: flex; align-items: baseline; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 0.92rem; }
.cohort__cta-list li:last-child { border-bottom: none; }
.cohort__cta-list span { font-family: var(--display); font-weight: 500; font-size: 1rem; color: var(--ink); min-width: 110px; letter-spacing: -0.01em; }
.cohort__cta-list em { font-style: italic; color: var(--ink-soft); font-size: 0.88rem; }
.cohort__cta-calendar { background: var(--paper); border: 1.5px solid var(--line); border-radius: 18px; overflow: hidden; min-height: 520px; position: relative; }
.cohort__cta-calendar::before { content: 'Loading booking calendar...'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 0.88rem; color: var(--ink-soft); font-style: italic; z-index: 0; }
.calendly-inline-widget { position: relative; z-index: 1; }

/* FOOTER */
.footer { padding: 40px clamp(20px, 5vw, 64px); border-top: 1px solid var(--line); font-size: 0.85rem; color: var(--ink-soft); background: var(--paper); position: relative; z-index: 1; }
.footer__top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; padding-bottom: 20px; border-bottom: 1px solid var(--line); margin-bottom: 20px; }
.footer__brand { display: flex; align-items: center; gap: 8px; font-family: var(--display); font-size: 1.05rem; color: var(--ink); }
.footer__nav { display: flex; gap: 28px; }
.footer__nav a { color: var(--ink-soft); text-decoration: none; transition: color 0.2s; font-size: 0.88rem; }
.footer__nav a:hover { color: var(--sage-deep); }
.footer__legal { font-size: 0.82rem; line-height: 1.65; color: var(--ink-soft); }
.footer__abn { font-size: 0.78rem; opacity: 0.75; font-style: italic; }
@media (max-width: 600px) { .footer__top { flex-direction: column; align-items: flex-start; } .footer__nav { gap: 18px; flex-wrap: wrap; } }

/* LOGO */
.ts-logo { width: 1em; height: 1.25em; color: var(--sage-deep); flex-shrink: 0; display: inline-block; vertical-align: middle; transform: translateY(-1px); }
.ts-logo__row { stroke-dasharray: 30; stroke-dashoffset: 0; }
@keyframes tsLogoRow1 { 0% { stroke-dashoffset: 30; } 18%, 100% { stroke-dashoffset: 0; } }
@keyframes tsLogoRow2 { 0%, 18% { stroke-dashoffset: 24; } 36%, 100% { stroke-dashoffset: 0; } }
@keyframes tsLogoRow3 { 0%, 36% { stroke-dashoffset: 28; } 54%, 100% { stroke-dashoffset: 0; } }
@keyframes tsLogoRow4 { 0%, 54% { stroke-dashoffset: 22; } 72%, 100% { stroke-dashoffset: 0; } }
@keyframes tsLogoFade { 0%, 80% { opacity: 1; } 92%, 100% { opacity: 0; } }
.ts-logo__row--1 { animation: tsLogoRow1 4.5s ease-in-out infinite, tsLogoFade 4.5s ease-in-out infinite; }
.ts-logo__row--2 { animation: tsLogoRow2 4.5s ease-in-out infinite, tsLogoFade 4.5s ease-in-out infinite; }
.ts-logo__row--3 { animation: tsLogoRow3 4.5s ease-in-out infinite, tsLogoFade 4.5s ease-in-out infinite; }
.ts-logo__row--4 { animation: tsLogoRow4 4.5s ease-in-out infinite, tsLogoFade 4.5s ease-in-out infinite; }

/* HERO STATS */
.hero__stats { display: flex; gap: 28px; margin-top: 40px; padding: 22px 28px; background: var(--cream); border: 1px solid var(--line); border-radius: 16px; align-items: center; flex-wrap: wrap; animation: fadeUp 0.8s var(--ease) 0.5s both; box-shadow: 0 12px 32px -16px rgba(26,31,28,0.12); width: 100%; max-width: 720px; text-align: left; }
.hero__stat { flex: 1; min-width: 130px; }
.hero__stat-num { font-family: var(--display); font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 500; font-variation-settings: "opsz" 144; color: var(--sage-deep); line-height: 1; letter-spacing: -0.02em; margin-bottom: 6px; }
.hero__stat-num .counter { display: inline-block; min-width: 1.6ch; }
.hero__stat-label { font-size: 0.82rem; line-height: 1.45; color: var(--ink-soft); }
.hero__stat-divider { width: 1px; height: 36px; background: var(--line); }
@media (max-width: 720px) { .hero__stat-divider { display: none; } .hero__stats { gap: 18px; } }
.hero__stats-source { font-size: 0.72rem; color: var(--ink-soft); opacity: 0.65; font-style: italic; margin-top: 12px; letter-spacing: 0.01em; animation: fadeUp 0.8s var(--ease) 0.7s both; }

/* PILLARS animations */
.pillar { position: relative; opacity: 0; transform: translateY(16px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.pillar.is-in { opacity: 1; transform: translateY(0); }
.pillar__illus { width: 72px; height: 72px; color: var(--sage-deep); margin-bottom: 18px; display: block; }
.pillar__cite { margin-top: 14px; padding-top: 12px; border-top: 1px dashed var(--line-strong); font-size: 0.8rem; line-height: 1.5; color: var(--ink-soft); font-style: italic; font-family: var(--display); font-variation-settings: "opsz" 14; }
.pillar__cite strong { font-style: normal; font-family: var(--body); color: var(--sage-deep); font-weight: 500; }

@keyframes p1Halo { 0%, 100% { opacity: 0; transform: scale(0.85); } 50% { opacity: 0.45; transform: scale(1); } }
@keyframes p1Breath { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(1.04); } }
.p1-halo { stroke: var(--sage); transform-origin: 40px 38px; transform-box: fill-box; animation: p1Halo 4s ease-in-out infinite; }
.p1-torso { transform-origin: 40px 50px; transform-box: fill-box; animation: p1Breath 4s ease-in-out infinite; }

@keyframes p2ArmL { 0%, 22% { d: path('M 40 36 Q 30 38 24 46'); } 50%, 70% { d: path('M 40 36 Q 30 24 26 14'); } 90%, 100% { d: path('M 40 36 Q 30 38 24 46'); } }
@keyframes p2ArmR { 0%, 22% { d: path('M 40 36 Q 50 38 56 46'); } 50%, 70% { d: path('M 40 36 Q 50 24 54 14'); } 90%, 100% { d: path('M 40 36 Q 50 38 56 46'); } }
.p2-arm-l { animation: p2ArmL 5s ease-in-out infinite; }
.p2-arm-r { animation: p2ArmR 5s ease-in-out infinite; }

@keyframes p3Pulse { 0%, 100% { opacity: 0; transform: scale(0.5); } 50% { opacity: 0.85; transform: scale(1); } }
.p3-pulse { transform-box: fill-box; transform-origin: center; color: var(--sage); }
.p3-pulse--1 { animation: p3Pulse 3s ease-in-out infinite 0s; }
.p3-pulse--2 { animation: p3Pulse 3s ease-in-out infinite 0.4s; }
.p3-pulse--3 { animation: p3Pulse 3s ease-in-out infinite 0.8s; }
.p3-pulse--4 { animation: p3Pulse 3s ease-in-out infinite 1.2s; }
.p3-pulse--5 { animation: p3Pulse 3s ease-in-out infinite 1.6s; }

@keyframes p4Head { 0%, 30% { cy: 24; cx: 41; } 60%, 90% { cy: 22; cx: 40; } 100% { cy: 24; cx: 41; } }
@keyframes p4Spine { 0%, 30% { d: path('M 41 31 Q 41 38 41 50'); } 60%, 90% { d: path('M 40 29 L 40 50'); } 100% { d: path('M 41 31 Q 41 38 41 50'); } }
@keyframes p4ArmL { 0%, 30% { d: path('M 41 38 Q 31 40 25 48'); } 60%, 90% { d: path('M 40 36 Q 30 36 24 42'); } 100% { d: path('M 41 38 Q 31 40 25 48'); } }
@keyframes p4ArmR { 0%, 30% { d: path('M 41 38 Q 51 40 57 48'); } 60%, 90% { d: path('M 40 36 Q 50 36 56 42'); } 100% { d: path('M 41 38 Q 51 40 57 48'); } }
@keyframes p4Arrow { 0%, 25% { opacity: 0; transform: translateY(4px); } 60%, 85% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(4px); } }
.p4-head { animation: p4Head 4s ease-in-out infinite; }
.p4-spine { animation: p4Spine 4s ease-in-out infinite; }
.p4-arm-l { animation: p4ArmL 4s ease-in-out infinite; }
.p4-arm-r { animation: p4ArmR 4s ease-in-out infinite; }
.p4-arrow { animation: p4Arrow 4s ease-in-out infinite; transform-origin: center; }

/* FIELD STAT REVEALS */
.field__stat { display: block; padding: 0 14px; background: rgba(194, 211, 191, 0.18); border-left: 2px solid var(--sage); border-radius: 4px; font-size: 0.85rem; line-height: 1.5; color: var(--ink-soft); max-height: 0; overflow: hidden; opacity: 0; margin-top: 0; transition: max-height 0.35s var(--ease), opacity 0.3s var(--ease), padding 0.3s var(--ease), margin 0.3s var(--ease); }
.field__stat.is-visible { max-height: 80px; opacity: 1; padding: 10px 14px; margin-top: 10px; }
.field__stat-num { display: inline-block; font-family: var(--display); font-variation-settings: "opsz" 144; font-size: 1.05rem; color: var(--sage-deep); font-weight: 500; margin-right: 6px; letter-spacing: -0.01em; }

.slider__context { padding: 0 14px; font-size: 0.82rem; font-style: italic; color: var(--ink-soft); font-family: var(--display); font-variation-settings: "opsz" 14; border-left: 2px solid var(--sage-light); background: rgba(194, 211, 191, 0.1); border-radius: 4px; max-height: 0; overflow: hidden; opacity: 0; margin-top: 0; transition: max-height 0.35s var(--ease), opacity 0.3s var(--ease), padding 0.3s var(--ease), margin 0.3s var(--ease); }
.slider__context.is-visible { max-height: 60px; opacity: 1; padding: 8px 14px; margin-top: 8px; }

.cohort__illus { width: 56px; height: 56px; color: var(--sage-deep); margin-bottom: 16px; display: block; }
.cohort__goal-stat { margin-top: 28px; padding: 18px 22px; background: rgba(194, 211, 191, 0.18); border: 1px solid var(--sage-light); border-radius: 12px; text-align: left; display: flex; flex-direction: column; gap: 4px; font-size: 0.92rem; line-height: 1.55; }
.cohort__goal-stat strong { color: var(--sage-deep); font-weight: 500; }
.cohort__goal-stat span { color: var(--ink-soft); font-style: italic; font-family: var(--display); font-variation-settings: "opsz" 14; font-size: 0.88rem; }

.free-mark { position: relative; font-weight: 500; color: var(--ink); white-space: nowrap; display: inline-block; }
.free-mark::after { content: ''; position: absolute; left: -2%; right: -2%; bottom: -3px; height: 6px; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 6' preserveAspectRatio='none'><path d='M 0 4 Q 12 1, 25 3 T 50 3 T 75 3 T 100 4' fill='none' stroke='%235a7a5e' stroke-width='1.6' stroke-linecap='round'/></svg>"); background-repeat: no-repeat; background-size: 100% 100%; pointer-events: none; opacity: 1; transform: scaleX(1); transform-origin: left center; }

.cohort__back-to-form { margin-top: 80px; padding-top: 48px; border-top: 1px solid var(--line); text-align: center; }
.cohort__back-to-form-line { font-family: var(--display); font-size: clamp(19px, 2.2vw, 24px); font-weight: 400; letter-spacing: -0.02em; font-style: italic; color: var(--ink-soft); margin: 0 0 22px; }
.btn--ghost-light { background: transparent; border: 1.5px solid var(--sage-deep); color: var(--sage-deep); padding: 14px 26px; border-radius: 999px; font-family: var(--body); font-size: 15px; font-weight: 500; cursor: pointer; display: inline-flex; align-items: center; gap: 10px; transition: all 0.2s var(--ease); }
.btn--ghost-light:hover { background: var(--sage-deep); color: var(--paper); }
.btn--ghost-light svg { transition: transform 0.2s var(--ease); }
.btn--ghost-light:hover svg { transform: translateX(3px); }

/* PILLAR stagger + clay underline on hover */
.pillar:nth-child(1) { transition-delay: 0s; }
.pillar:nth-child(2) { transition-delay: 0.08s; }
.pillar:nth-child(3) { transition-delay: 0.16s; }
.pillar:nth-child(4) { transition-delay: 0.24s; }
.pillar__title { position: relative; display: inline-block; padding-bottom: 6px; }
.pillar__title::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s var(--ease);
}
.pillar:hover .pillar__title::after { transform: scaleX(1); }

/* COHORT cards: left clay border that scales in on hover */
.cohort__card { position: relative; overflow: hidden; }
.cohort__card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--clay);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.45s var(--ease);
}
.cohort__card:hover::before { transform: scaleY(1); }

/* SCROLL REVEAL (generic) */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* PRICING block (features list + dark price card) */
.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
  margin-bottom: 72px;
}
@media (max-width: 880px) {
  .pricing { grid-template-columns: 1fr; gap: 28px; margin-bottom: 56px; }
}

.pricing__features { display: flex; flex-direction: column; justify-content: center; padding: 8px 0; }
.pricing__features-eyebrow {
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-deep);
  font-weight: 500;
  margin-bottom: 14px;
}
.pricing__features-title {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  font-variation-settings: "opsz" 144;
}
.pricing__features-title em { font-style: italic; color: var(--clay); font-variation-settings: "opsz" 144, "wght" 500; }
.pricing__features-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.pricing__features-list li { display: flex; gap: 14px; align-items: flex-start; }
.pricing__features-list li > div { display: flex; flex-direction: column; gap: 2px; }
.pricing__features-list strong { font-weight: 500; font-size: 0.98rem; color: var(--ink); letter-spacing: -0.005em; }
.pricing__features-list em { font-size: 0.86rem; color: var(--ink-soft); font-style: italic; font-family: var(--display); font-variation-settings: "opsz" 14; line-height: 1.45; }
.pricing__check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--sage-light);
  color: var(--sage-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.pricing__check svg { width: 14px; height: 14px; }

/* DARK PRICE CARD */
.price-card {
  background: linear-gradient(160deg, #1a1f1c 0%, #11140f 100%);
  color: var(--cream);
  padding: 36px 36px 32px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 32px 60px -28px rgba(26, 31, 28, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}
.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clay), var(--amber));
}
.price-card::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 122, 74, 0.18), transparent 60%);
  pointer-events: none;
}
.price-card__tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
  padding: 6px 12px;
  border: 1px solid rgba(217, 163, 86, 0.4);
  border-radius: 999px;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.price-card__price-row { display: flex; align-items: flex-start; gap: 6px; line-height: 1; position: relative; z-index: 1; }
.price-card__currency { font-family: var(--display); font-size: 1.7rem; font-weight: 500; color: var(--cream); margin-top: 8px; opacity: 0.85; }
.price-card__price {
  font-family: var(--display);
  font-size: clamp(3.2rem, 7vw, 4.4rem);
  font-weight: 500;
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.04em;
  color: var(--cream);
}
.price-card__per { font-size: 0.92rem; color: rgba(250, 246, 238, 0.6); margin-top: 18px; font-style: italic; font-family: var(--display); font-variation-settings: "opsz" 14; }
.price-card__split {
  font-size: 0.88rem;
  color: rgba(250, 246, 238, 0.7);
  margin-top: 10px;
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(250, 246, 238, 0.12);
  position: relative;
  z-index: 1;
}
.price-card__split strong { color: var(--cream); font-weight: 500; }
.price-card__list { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 1; }
.price-card__list li { display: flex; align-items: center; gap: 12px; font-size: 0.94rem; color: rgba(250, 246, 238, 0.88); }
.price-card__list svg { width: 16px; height: 16px; color: var(--amber); flex-shrink: 0; }
.price-card__cta { width: 100%; padding: 18px 24px; font-size: 1rem; position: relative; z-index: 1; }
.price-card__small { text-align: center; margin-top: 12px; font-size: 0.78rem; color: rgba(250, 246, 238, 0.5); font-style: italic; font-family: var(--display); font-variation-settings: "opsz" 14; position: relative; z-index: 1; }

@media (max-width: 480px) {
  .price-card { padding: 28px 24px 24px; }
}

/* SUCCESS upsell card (green) */
.success__upsell {
  margin-top: 36px;
  padding: 28px 28px 26px;
  background: linear-gradient(160deg, var(--sage-deep) 0%, #2f4534 100%);
  color: var(--cream);
  border-radius: 18px;
  text-align: left;
  box-shadow: 0 24px 50px -24px rgba(61, 87, 66, 0.5);
  animation: fadeUp 0.6s var(--ease) 0.5s both;
  position: relative;
  overflow: hidden;
}
.success__upsell::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clay), var(--amber));
}
.success__upsell-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 10px;
}
.success__upsell-title {
  font-family: var(--display);
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--cream);
}
.success__upsell-text { font-size: 0.94rem; line-height: 1.55; color: rgba(250, 246, 238, 0.85); margin-bottom: 18px; }
.success__upsell-text strong { color: var(--cream); font-weight: 500; }
.success__upsell-cta { width: auto; padding: 14px 24px; font-size: 0.95rem; }

/* STEP transition: directional slide+fade */
.step.is-active { animation: stepSlideIn 0.45s var(--ease) both; }
@keyframes stepSlideIn {
  from { opacity: 0; transform: translateY(14px) scale(0.995); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.form.is-back .step.is-active { animation: stepSlideInBack 0.45s var(--ease) both; }
@keyframes stepSlideInBack {
  from { opacity: 0; transform: translateY(-10px) scale(0.995); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
