/* Silo marketing site — see assets/tokens.css for the brand system */

@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/Figtree-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/Figtree-Medium.ttf') format('truetype');
}
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/Figtree-SemiBold.ttf') format('truetype');
}
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/Figtree-Bold.ttf') format('truetype');
}

/* ---------- base ---------- */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--text-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; }

img, svg { display: block; }

::selection { background: var(--coral-tint); }

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 100;
  padding: 12px 20px;
  background: var(--ink);
  color: var(--on-ink);
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600;
}
.skip-link:focus-visible { top: 12px; }

/* ---------- layout ---------- */

.shell {
  width: min(1160px, 100% - clamp(2rem, 6vw, 4rem));
  margin-inline: auto;
}

.section { margin-block: clamp(1.25rem, 3vw, 2rem); }

.card-section {
  background: var(--paper);
  border-radius: var(--radius-card);
  padding: clamp(2.75rem, 7vw, 6rem) clamp(1.5rem, 6vw, 5.5rem);
}


.section-head {
  max-width: 38rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.section-head.centered {
  margin-inline: auto;
  text-align: center;
}

/* ---------- type ---------- */

.display {
  font-size: var(--text-display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.h2 {
  font-size: var(--text-h2);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.h3 {
  font-size: var(--text-h3);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.lead {
  font-size: var(--text-lead);
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink-soft);
}
.lead .line { display: block; }

.body-soft { color: var(--ink-soft); }

.caption {
  font-size: var(--text-caption);
  color: var(--ink-faint);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: var(--text-caption);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--coral-text);
  margin-bottom: 1.25rem;
}

.dot-period {
  display: inline-block;
  width: 0.17em;
  height: 0.17em;
  border-radius: 50%;
  background: var(--coral);
  margin-left: 0.06em;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  height: var(--btn-height);
  padding: 0 1.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background-color 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { flex: none; }

.btn-ink {
  background: var(--ink);
  color: var(--on-ink);
}
.btn-ink:hover { background: #26261f; box-shadow: 0 10px 24px -12px rgba(14, 14, 12, 0.45); }

.btn-coral {
  background: var(--coral);
  color: var(--ink);
}
.btn-coral:hover { background: var(--coral-deep); box-shadow: 0 10px 24px -12px rgba(232, 88, 77, 0.6); }

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--ink); }

.btn-on-ink {
  background: var(--on-ink);
  color: var(--ink);
}
.btn-on-ink:hover { background: #fff; }

.btn-sm {
  height: var(--btn-height-sm);
  padding: 0 1.25rem;
  font-size: 0.9375rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.btn-row.centered { justify-content: center; }

/* ---------- nav ---------- */

/* floating pill nav */
.nav {
  position: sticky;
  top: 0.75rem;
  z-index: 50;
  padding-top: 0.75rem;
  margin-top: -0.75rem;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 64px;
  padding: 0 0.625rem 0 1.5rem;
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-pill);
  box-shadow: 0 1px 0 rgba(14, 14, 12, 0.04), 0 16px 40px -24px rgba(14, 14, 12, 0.3);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
}

/* logo-transparrent.svg is a 1024x1024 square with the wordmark at
   (161,363) to (863,661); this crops the empty space around it,
   keeping a 12-unit margin so nothing gets shaved at small sizes. */
.logo-crop {
  --h: 28px;
  display: block;
  position: relative;
  height: var(--h);
  width: calc(var(--h) * 726 / 322);
  overflow: hidden;
}
.logo-crop img {
  position: absolute;
  width: calc(var(--h) * 1024 / 322);
  height: calc(var(--h) * 1024 / 322);
  max-width: none;
  top: calc(var(--h) * -351 / 322);
  left: calc(var(--h) * -149 / 322);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 480px) {
  .nav-inner { height: 58px; padding-left: 1.125rem; }
  .nav-logo .logo-crop { --h: 24px; }
  .nav-actions .btn-sm { padding: 0 1rem; font-size: 0.875rem; }
}

/* cross-page transition: the audience-switch and CTA pills morph
   between pages instead of jumping */
@media (prefers-reduced-motion: no-preference) {
  @view-transition { navigation: auto; }
  .nav-actions a:nth-child(1) { view-transition-name: nav-switch; }
  .nav-actions a:nth-child(2) { view-transition-name: nav-cta; }
  ::view-transition-group(nav-switch),
  ::view-transition-group(nav-cta) { animation-duration: 0.3s; }
  /* keep the snapshots at natural width so only the pill width
     animates, instead of the text stretching to fit the group box */
  ::view-transition-old(nav-switch),
  ::view-transition-new(nav-switch),
  ::view-transition-old(nav-cta),
  ::view-transition-new(nav-cta) {
    height: 100%;
    width: auto;
  }
}

.show-narrow { display: none; }
@media (max-width: 600px) {
  .hide-narrow { display: none; }
  .show-narrow { display: inline; }
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.5rem, 10vw, 7.5rem);
  text-align: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 46rem;
  margin-inline: auto;
}

.hero .lead {
  max-width: 32rem;
  margin: 1.75rem auto 2.5rem;
}

.hero-note { margin-top: 1.25rem; }

.hero-content-wide { max-width: 56rem; }

/* coaches hero is tall (week card); keep the ambient dots up by the
   headline like the home page rather than drifting the whole hero */
.hero-coaches .ambient {
  bottom: auto;
  height: min(75vh, 620px);
}
.hero-week {
  margin-top: clamp(3rem, 7vw, 4.75rem);
  text-align: left;
}

/* ambient background */

.ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 80%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 80%, transparent);
}

.ambient-wash {
  position: absolute;
  width: 60vmax;
  height: 60vmax;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
}
.ambient-wash.w1 {
  background: radial-gradient(circle, var(--coral-tint) 0%, transparent 65%);
  top: -20vmax; left: -12vmax;
  animation: drift-a 46s var(--ease) infinite alternate;
}
.ambient-wash.w2 {
  background: radial-gradient(circle, var(--sky-tint) 0%, transparent 65%);
  bottom: -24vmax; right: -14vmax;
  animation: drift-b 54s var(--ease) infinite alternate;
}
.ambient-wash.w3 {
  background: radial-gradient(circle, var(--honey-tint) 0%, transparent 65%);
  bottom: -30vmax; left: 20vw;
  opacity: 0.35;
  animation: drift-a 62s var(--ease) infinite alternate-reverse;
}

@keyframes drift-a {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(8vmax, 6vmax) scale(1.15); }
}
@keyframes drift-b {
  from { transform: translate(0, 0) scale(1.1); }
  to { transform: translate(-7vmax, -5vmax) scale(1); }
}

.ambient i {
  position: absolute;
  bottom: -3vh;
  left: var(--x);
  width: var(--s);
  height: var(--s);
  border-radius: 50%;
  background: var(--c);
  opacity: 0;
  animation: rise var(--d) linear infinite;
  animation-delay: var(--delay);
}

@keyframes rise {
  0% { transform: translateY(0); opacity: 0; }
  12% { opacity: var(--o, 0.4); }
  82% { opacity: var(--o, 0.4); }
  100% { transform: translateY(calc(-1 * max(86vh, 620px))); opacity: 0; }
}

/* store buttons */

.store-btn {
  text-align: left;
  line-height: 1.15;
}
.store-btn small {
  display: block;
  font-size: 0.6875rem;
  font-weight: 400;
  opacity: 0.7;
}
.store-btn span { display: block; }

/* ---------- the cycle ---------- */

/* the cycle as an endless slow marquee: the loop literally repeats
   until the coral pill below it breaks it */
.cycle-marquee {
  overflow: hidden;
  margin-block: clamp(2.5rem, 6vw, 4rem) 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
}

.cycle-track {
  display: flex;
  width: max-content;
  animation: cycle-scroll 40s linear infinite;
}

.cycle-group {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-right: 0.875rem;
}

@keyframes cycle-scroll {
  to { transform: translateX(-50%); }
}

.loop-step {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 48px;
  padding: 0 1.375rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: var(--text-small);
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--bg);
  white-space: nowrap;
  flex: none;
}
.loop-step .ic { flex: none; }
.ic-sky { color: var(--sky); }
.ic-plum { color: var(--plum); }
.ic-honey { color: var(--honey); }
.ic-coral { color: var(--coral); }
.ic-sage { color: var(--sage); }

.loop-arrow {
  color: var(--ink-faint);
  flex: none;
}

.loop-break {
  display: inline-flex;
  align-items: center;
  height: 52px;
  padding: 0 1.625rem;
  border-radius: var(--radius-pill);
  background: var(--paper);
  color: var(--ink);
  border: 1.5px solid var(--coral);
  font-size: var(--text-small);
  font-weight: 600;
  box-shadow: 0 14px 30px -16px rgba(251, 108, 97, 0.5);
}

/* the loop breaks out: an arrow drops from the marquee to the pill */
.cycle-exit {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.5rem;
  margin-bottom: clamp(2.25rem, 5vw, 3.5rem);
}
.exit-line {
  position: relative;
  width: 2px;
  height: clamp(36px, 6vw, 56px);
  background: linear-gradient(to bottom, rgba(14, 14, 12, 0.14), var(--coral));
  border-radius: 1px;
  margin-bottom: 1rem;
}
.exit-line::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--coral);
  border-bottom: 2px solid var(--coral);
  transform: translateX(-50%) rotate(45deg);
}

.cycle-line {
  font-size: var(--text-lead);
  font-weight: 600;
  letter-spacing: -0.015em;
  text-align: center;
  max-width: 26rem;
  margin: 0 auto clamp(2.25rem, 5vw, 3.5rem);
}

/* standalone stat card (home) */
.stat-banner { text-align: center; }
.stat-figure {
  font-size: clamp(4.5rem, 11vw, 7.5rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.95;
}
.stat-figure .dot-period { width: 0.14em; height: 0.14em; }
.stat-line {
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 22ch;
  margin: 1rem auto 0;
}
.stat-banner .lead {
  max-width: 32rem;
  margin: 1rem auto 0;
}
.stat-source {
  max-width: 40rem;
  margin: 2.25rem auto 0;
  line-height: 1.7;
}
.stat-source a { color: var(--ink-soft); }

/* ---------- steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.step {
  background: var(--bg);
  border-radius: var(--radius-tile);
  padding: 1.875rem 1.625rem;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  font-size: var(--text-small);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.step:nth-child(1) .step-num { color: var(--coral); }
.step:nth-child(2) .step-num { color: var(--sage); }
.step:nth-child(3) .step-num { color: var(--sky); }

.step .h3 { margin-bottom: 0.625rem; }
.step p { font-size: var(--text-small); color: var(--ink-soft); }

/* small product vignettes inside steps (coaches page) */
.vignette {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  min-height: 104px;
  padding: 1rem 1.125rem;
  margin-bottom: 1.375rem;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-tile);
}

.v-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.v-photo {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--honey-tint);
  position: relative;
}
.v-photo::after {
  content: '';
  position: absolute;
  inset: 50% auto auto 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: var(--honey);
  opacity: 0.6;
}
.v-lines {
  display: grid;
  gap: 6px;
  flex: 1;
}
.v-lines i {
  height: 6px;
  border-radius: 3px;
  background: rgba(14, 14, 12, 0.08);
}
.v-lines i:last-child { width: 60%; }

.v-dots {
  display: flex;
  gap: 0.5rem;
}
.v-dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.v-sage { background: var(--sage); }
.v-honey { background: var(--honey); }
.v-sky { background: var(--sky); }
.v-plum { background: var(--plum); }
.v-coral { background: var(--coral); }

.v-week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.v-week i {
  height: 22px;
  border-radius: 6px;
  background: var(--bg);
  position: relative;
}
.v-week i::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vd, var(--sage));
}
.v-week i.vw-honey { --vd: var(--honey); }
.v-week i.vw-sky { --vd: var(--sky); }
.v-week i.vw-coral { --vd: var(--coral); background: var(--coral-tint); }
.v-week i.vw-skip { background: transparent; border: 1.5px dashed var(--line); }
.v-week i.vw-skip::after { content: none; }

.v-insight {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.75rem 0.875rem;
  background: var(--coral-tint);
  border-radius: 10px;
}
.v-insight > i {
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  margin-top: 2px;
}
.v-insight .v-lines i { background: rgba(232, 88, 77, 0.18); }

@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; }
}

/* ---------- ink band ---------- */

.ink-band {
  background: var(--ink);
  color: var(--on-ink);
  border-radius: var(--radius-card);
  padding: clamp(3.5rem, 8vw, 6.5rem) clamp(1.5rem, 6vw, 5.5rem);
  text-align: center;
}

.ink-band .h2 { letter-spacing: -0.02em; }
.ink-band .h2 span { display: block; }

.ink-band p {
  color: var(--on-ink-soft);
  max-width: 34rem;
  margin: 1.75rem auto 0;
}
.ink-band p strong { color: var(--on-ink); font-weight: 600; }

.ink-band .em {
  color: var(--coral);
  font-style: normal;
  position: relative;
  display: inline-block;
}
.em-line {
  position: absolute;
  left: -2%;
  bottom: -0.24em;
  width: 104%;
  height: 0.3em;
}

/* ---------- pricing ---------- */

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}
.plans.two { grid-template-columns: repeat(2, minmax(0, 26rem)); justify-content: center; }

.plan {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid transparent;
  border-radius: var(--radius-card);
  padding: 2rem 1.75rem;
}

.plan-featured {
  position: relative;
  background: var(--paper);
  border-color: var(--line);
  box-shadow: 0 24px 48px -32px rgba(14, 14, 12, 0.25);
}

.plan-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 0.875rem;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: var(--on-ink);
  font-size: var(--text-caption);
  font-weight: 600;
  white-space: nowrap;
}

.plan-tag {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  height: 28px;
  padding: 0 0.875rem;
  border-radius: var(--radius-pill);
  background: var(--coral-tint);
  color: var(--coral-text);
  font-size: var(--text-caption);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.plan-tag.neutral {
  background: rgba(14, 14, 12, 0.06);
  color: var(--ink-soft);
}
.plan-tag.sage {
  background: var(--sage-tint);
  color: #4c6246;
}

/* founding coach strip, deliberately different from the plan cards */
.founding-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 2rem;
  margin-top: 1.25rem;
  padding: 1.75rem 2rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
}
.founding-card .fc-text {
  flex: 1;
  min-width: 16rem;
}
.founding-card .h3 { margin: 0.625rem 0 0.375rem; }
.founding-card p {
  font-size: var(--text-small);
  color: var(--ink-soft);
}
.founding-card .btn { flex: none; }

.plan-name {
  font-size: var(--text-small);
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.plan-price {
  font-size: 2.375rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.plan-price small {
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink-soft);
  letter-spacing: 0;
}

.plan-sub {
  font-size: var(--text-small);
  color: var(--ink-soft);
  margin-top: 0.375rem;
}

.plan ul {
  list-style: none;
  margin: 1.5rem 0 1.75rem;
  padding: 0;
  display: grid;
  gap: 0.7rem;
  font-size: var(--text-small);
  color: var(--ink-soft);
}
.plan ul li {
  display: flex;
  gap: 0.625rem;
  align-items: baseline;
}
.plan ul li::before {
  content: '';
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  transform: translateY(-2px);
}

.plan .btn { margin-top: auto; }

.plans-note {
  text-align: center;
  margin-top: 2rem;
  font-size: var(--text-small);
  color: var(--ink-soft);
}

@media (max-width: 860px) {
  .plans, .plans.two { grid-template-columns: 1fr; }
  .plan-featured { order: -1; }
}

/* ---------- wall of love ---------- */

.love-rows {
  display: grid;
  gap: 1.25rem;
}

.love-row {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.love-track {
  display: flex;
  width: max-content;
  animation: love-scroll 60s linear infinite;
}
.love-row.reverse .love-track { animation-direction: reverse; }
.love-row:hover .love-track { animation-play-state: paused; }

@keyframes love-scroll {
  to { transform: translateX(-50%); }
}

.love-set {
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
  padding-right: 1.25rem;
}

.love-card {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  width: min(380px, 78vw);
  margin: 0;
  padding: 1.75rem 1.625rem;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  box-shadow: 0 16px 32px -28px rgba(14, 14, 12, 0.35);
}
.love-card blockquote {
  margin: 0;
  font-size: var(--text-small);
  line-height: 1.65;
}

.love-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.25rem;
}
.love-who {
  display: grid;
  line-height: 1.35;
}
.love-who strong {
  font-size: var(--text-caption);
  font-weight: 600;
}
.love-who span {
  font-size: var(--text-caption);
  color: var(--ink-faint);
}

.ava {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 600;
  flex: none;
}
.ava-sage { background: var(--sage-tint); color: #4c6246; }
.ava-sky { background: var(--sky-tint); color: #41606f; }
.ava-honey { background: var(--honey-tint); color: #7d5a1c; }
.ava-plum { background: var(--plum-tint); color: #66506b; }

.stars {
  display: flex;
  gap: 3px;
  color: var(--honey);
}

@media (prefers-reduced-motion: reduce) {
  .love-row {
    -webkit-mask-image: none;
    mask-image: none;
  }
  .love-track { width: auto; flex-wrap: wrap; }
  .love-set { flex-wrap: wrap; padding-right: 0; }
  .love-set[aria-hidden] { display: none; }
}

/* ---------- split / cross-sell ---------- */

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
}

/* ---------- final cta ---------- */

.final-cta {
  text-align: center;
  padding-block: clamp(4rem, 10vw, 7.5rem);
}
.final-cta .h2 { margin-bottom: 2.25rem; }

/* ---------- footer ---------- */

.footer {
  border-top: 1px solid var(--line-soft);
  margin-top: clamp(1rem, 3vw, 2rem);
  padding-block: clamp(2.5rem, 6vw, 4rem);
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.25rem;
}
.footer-top .logo-crop { --h: 22px; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
}
.footer-links a {
  font-size: var(--text-small);
  color: var(--ink-soft);
  text-decoration: none;
}
.footer-links a:hover { color: var(--ink); }

.footer .caption {
  max-width: 44rem;
  line-height: 1.7;
}
.footer .caption + .caption { margin-top: 0.5rem; }

/* ---------- coaches: client week ---------- */

.week-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-card);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: 0 32px 64px -40px rgba(14, 14, 12, 0.3);
  max-width: 56rem;
  margin-inline: auto;
}

.week-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  margin-bottom: 1.25rem;
}

.week-title {
  font-size: var(--text-small);
  font-weight: 600;
}
.week-title .caption { font-weight: 400; }

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem 1rem;
  font-size: var(--text-caption);
  color: var(--ink-soft);
}
.legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.legend i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex: none;
}
.legend .l-sage i { background: var(--sage); }
.legend .l-honey i { background: var(--honey); }
.legend .l-sky i { background: var(--sky); }
.legend .l-coral i { background: var(--coral); }

.week-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: clamp(0.375rem, 1vw, 0.75rem);
}

.day {
  display: grid;
  gap: clamp(0.375rem, 1vw, 0.625rem);
  align-content: start;
}

.day-label {
  font-size: var(--text-caption);
  color: var(--ink-faint);
  text-align: center;
  margin-bottom: 0.125rem;
}
.day-label abbr { text-decoration: none; }

.tile {
  position: relative;
  height: clamp(44px, 7vw, 60px);
  border-radius: 12px;
  background: var(--bg);
  padding: 8px;
}
.tile::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dot, var(--ink-faint));
}
.tile::after {
  content: '';
  position: absolute;
  left: 8px;
  right: 30%;
  bottom: 10px;
  height: 4px;
  border-radius: 2px;
  background: rgba(14, 14, 12, 0.07);
}

.tile.t-sage { --dot: var(--sage); }
.tile.t-honey { --dot: var(--honey); }
.tile.t-sky { --dot: var(--sky); }
.tile.t-coral {
  --dot: var(--coral);
  background: var(--coral-tint);
}
.tile.t-coral::after { background: rgba(232, 88, 77, 0.16); }

.tile.t-skip {
  background: transparent;
  border: 1.5px dashed var(--line);
}
.tile.t-skip::before, .tile.t-skip::after { content: none; }

.week-insight {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: var(--coral-tint);
  border-radius: var(--radius-tile);
  font-size: var(--text-small);
  line-height: 1.55;
}
.week-insight::before {
  content: '';
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  margin-top: 0.45em;
}
.week-insight strong { font-weight: 600; }

/* staggered tile reveal */
.week-grid .tile {
  transition-delay: calc(var(--i, 0) * 30ms);
}

/* ---------- coaches: misc ---------- */

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
}
@media (max-width: 860px) {
  .cards-3 { grid-template-columns: 1fr; }
}

.mini-card {
  background: var(--bg);
  border-radius: var(--radius-tile);
  padding: 1.875rem 1.625rem;
}
.mini-card .h3 { margin-bottom: 0.625rem; }
.mini-card p { font-size: var(--text-small); color: var(--ink-soft); }
.mini-card .mark {
  width: 38px;
  height: 38px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  margin-bottom: 1.125rem;
}

.yesno {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2.5vw, 1.5rem);
}
@media (max-width: 760px) {
  .yesno { grid-template-columns: 1fr; }
}

.yesno-col {
  background: var(--bg);
  border-radius: var(--radius-tile);
  padding: 1.875rem 1.625rem;
}

.yesno-label {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 0.875rem;
  border-radius: var(--radius-pill);
  font-size: var(--text-caption);
  font-weight: 600;
  margin-bottom: 1.375rem;
}
.yesno-col.yes .yesno-label { background: var(--sage-tint); color: #4c6246; }
.yesno-col.no .yesno-label { background: var(--coral-tint); color: var(--coral-text); }

.yesno-col dl { margin: 0; display: grid; gap: 1.25rem; }
.yesno-col dt {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 600;
  font-size: var(--text-body);
}
.yesno-col dd {
  margin: 0.375rem 0 0 1.875rem;
  font-size: var(--text-small);
  color: var(--ink-soft);
}

.mark {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex: none;
}
.yesno-col.yes .mark { background: var(--sage-tint); color: #4c6246; }
.yesno-col.no .mark { background: var(--coral-tint); color: var(--coral-text); }

.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
  text-align: left;
}

.band-card {
  background: rgba(248, 248, 246, 0.06);
  border: 1px solid rgba(248, 248, 246, 0.1);
  border-radius: var(--radius-tile);
  padding: 1.625rem;
}
.band-card .mark {
  width: 36px;
  height: 36px;
  background: rgba(248, 248, 246, 0.08);
  color: var(--coral);
  margin-bottom: 1rem;
}
.band-card strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--on-ink);
  margin-bottom: 0.375rem;
}
.band-card p {
  margin: 0;
  font-size: var(--text-small);
  color: var(--on-ink-soft);
}

.ink-band .band-source {
  margin: 2rem 0 0;
  max-width: 44rem;
  font-size: var(--text-caption);
  color: rgba(248, 248, 246, 0.55);
  line-height: 1.7;
}
.ink-band .band-source a { color: rgba(248, 248, 246, 0.75); }

/* ---------- faq ---------- */

.faq {
  max-width: 44rem;
  margin-inline: auto;
  display: grid;
  gap: 0.75rem;
}

.faq details {
  background: var(--bg);
  border-radius: var(--radius-tile);
  overflow: hidden;
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '';
  flex: none;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--ink-faint);
  border-bottom: 2px solid var(--ink-faint);
  transform: rotate(45deg);
  transition: transform 0.25s var(--ease);
  margin-top: -4px;
}
.faq details[open] summary::after { transform: rotate(225deg); margin-top: 4px; }

.faq details p {
  padding: 0 1.5rem 1.375rem;
  font-size: var(--text-small);
  color: var(--ink-soft);
}

/* ---------- reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
[data-stagger] > .reveal:nth-child(2) { transition-delay: 90ms; }
[data-stagger] > .reveal:nth-child(3) { transition-delay: 180ms; }
[data-stagger] > .reveal:nth-child(4) { transition-delay: 270ms; }

/* no-js and reduced motion: everything visible, nothing moves */
.no-js .reveal { opacity: 1; transform: none; }

@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;
    transition-delay: 0ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .ambient i { display: none; }
  .ambient-wash { animation: none; }
}
