/* =========================================================
   SARGASSO. - unified site stylesheet
   Master tokens + components from styles-home, plus extensions
   for Method/Work, Diagnostic/Scale Room/Cohort, Proof/Wall/
   Newsletter/Get Started, and Build pages.
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:wght@400;500;600;700&display=swap');

/* =========================================================
   SARGASSO. . homepage stylesheet
   System: SF Pro everywhere, Playfair only on wordmark.
   White + #F5F5F7. Yellow #FFCC00 as the signature thread.
   ========================================================= */

:root {
  --display: "Schibsted Grotesk", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --bg:           #ffffff;
  --bg-grey:      #f5f5f7;
  --ink:          #1d1d1f;
  --ink-2:        #424245;
  --secondary:    #86868b;
  --tertiary:     #6e6e73;
  --hairline:     #d2d2d7;
  --hairline-2:   #e8e8ed;
  --signal:       #ffcc00;

  --sf: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
        "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: "Playfair Display", Georgia, serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --maxw: 1080px;
  --maxw-narrow: 760px;
  --pad-x: 80px;

  --ease-in:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-int:   cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-spr:   cubic-bezier(0.34, 1.56, 0.64, 1);

  --shadow-1: 0 1px 2px rgba(0,0,0,0.04), 0 4px 10px -2px rgba(0,0,0,0.05);
  --shadow-2: 0 2px 4px rgba(0,0,0,0.04), 0 10px 24px -6px rgba(0,0,0,0.09), 0 18px 36px -14px rgba(0,0,0,0.10);
  --shadow-3: 0 4px 10px -2px rgba(0,0,0,0.05), 0 18px 44px -10px rgba(0,0,0,0.14), 0 30px 64px -18px rgba(0,0,0,0.16);
}

* { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
}

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

::selection { background: var(--signal); color: var(--ink); }

/* ---------- container ---------- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.container--narrow { max-width: var(--maxw-narrow); }

/* ---------- typography utilities ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0 0 24px;
}

.textlink {
  font-family: var(--sf);
  font-weight: 400;
  font-size: 19px;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  transition: color 0.3s var(--ease-int);
}
.textlink .arr {
  display: inline-block;
  transition: transform 0.3s var(--ease-int);
}
.textlink:hover { color: var(--signal); }
.textlink:hover .arr { transform: translateX(4px); }
.textlink--accent { color: var(--ink); }

/* ========================================================
   NAV . fixed, transparent → liquid glass on scroll
   ======================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: 48px;
  z-index: 100;
  background: transparent;
  transition: background 0.4s var(--ease-in),
              backdrop-filter 0.4s var(--ease-in),
              -webkit-backdrop-filter 0.4s var(--ease-in),
              box-shadow 0.4s var(--ease-in);
}
.nav.is-scrolled {
  background: rgba(255,255,255,0.72);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
          backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 0.5px 0 rgba(0,0,0,0.08);
}
.nav__inner {
  max-width: var(--maxw);
  height: 100%;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
}
.wordmark__dot { color: var(--signal); }
.wordmark--reverse { color: #f5f5f7; }
.wordmark--reverse .wordmark__name { color: #f5f5f7; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links a {
  font-family: var(--sf);
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
  position: relative;
  transition: color 0.3s var(--ease-int);
}
.nav__links a:hover { color: var(--signal); }
.nav__links a.nav__cta {
  font-weight: 500;
}

.nav__burger {
  display: none;
  width: 32px;
  height: 32px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  position: relative;
}
.nav__burger span {
  position: absolute;
  left: 6px; right: 6px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease-int), top 0.3s var(--ease-int), opacity 0.2s;
}
.nav__burger span:nth-child(1) { top: 12px; }
.nav__burger span:nth-child(2) { top: 19px; }
.nav__burger.is-open span:nth-child(1) { top: 16px; transform: rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { top: 16px; transform: rotate(-45deg); }

.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(255,255,255,0.85);
  -webkit-backdrop-filter: saturate(180%) blur(30px);
          backdrop-filter: saturate(180%) blur(30px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-int);
}
.mobile-overlay.is-open { opacity: 1; pointer-events: auto; }
.mobile-overlay nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.mobile-overlay a {
  font-family: var(--sf);
  font-size: 32px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
}

/* ========================================================
   HERO
   ======================================================== */
.hero {
  min-height: 100vh;
  padding: 160px 0 120px;
  display: flex;
  align-items: flex-start;
  position: relative;
}
.hero .container {
  width: 100%;
  text-align: center;
}
.hero__eyebrow { margin-bottom: 28px; }
.hero__h {
  font-family: var(--sf);
  font-weight: 600;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0 auto;
  max-width: 16ch;
  text-wrap: balance;
}
.hero__sub {
  font-family: var(--sf);
  font-weight: 400;
  font-size: 21px;
  line-height: 1.5;
  color: var(--secondary);
  max-width: 580px;
  margin: 32px auto 0;
  text-wrap: pretty;
}
.hero__hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tertiary);
  margin: 0;
}
.hero__hint span {
  display: inline-block;
  margin-left: 8px;
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(4px); }
}

/* ---- conversation flow card ---- */
.flow-wrap {
  margin: 64px auto 0;
  max-width: 720px;
  text-align: left;
}
.flow-card {
  background: rgba(255,255,255,0.72);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
          backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid var(--hairline-2);
  border-radius: 24px;
  box-shadow: var(--shadow-3);
  overflow: hidden;
}
.flow-card__chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--hairline-2);
  min-height: 48px;
}
.flow-card__crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  flex: 1;
}
.crumb {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--secondary);
  background: rgba(0,0,0,0.03);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.crumb.is-current {
  background: var(--ink);
  color: #fff;
}
.flow-card__reset {
  font-family: var(--sf);
  font-size: 12px;
  font-weight: 500;
  color: var(--secondary);
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color 0.3s var(--ease-int);
}
.flow-card__reset:hover { color: var(--signal); }
.flow-card__stage {
  padding: 40px 40px 36px;
}

/* flow screen */
.fscreen { animation: fadeUp 0.5s var(--ease-in); }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fscreen__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0 0 12px;
}
.fscreen__h {
  font-family: var(--sf);
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--ink);
  text-wrap: pretty;
}
.fscreen__sub {
  font-family: var(--sf);
  font-size: 17px;
  line-height: 1.55;
  color: var(--secondary);
  margin: 0 0 24px;
  text-wrap: pretty;
}
.fscreen__ack {
  font-family: var(--sf);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  background: rgba(255,204,0,0.08);
  border-left: 3px solid var(--signal);
  padding: 14px 16px;
  border-radius: 0 10px 10px 0;
  margin: 0 0 20px;
}
.fopts { display: grid; gap: 10px; }
.fopt {
  font-family: var(--sf);
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  background: #fafafa;
  border: 1px solid var(--hairline-2);
  border-radius: 14px;
  padding: 18px 20px;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.3s var(--ease-int),
              background 0.3s var(--ease-int),
              transform 0.3s var(--ease-int),
              box-shadow 0.3s var(--ease-int);
}
.fopt:hover {
  border-color: var(--ink);
  background: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-1);
}
.fopt:active { transform: scale(0.985); transition-duration: 0.1s; }
.fopt small {
  display: block;
  font-weight: 400;
  font-size: 14px;
  color: var(--secondary);
  margin-top: 4px;
  line-height: 1.45;
}
.fopt--special {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.fopt--special:hover { background: #000; border-color: #000; }
.fopt--special small { color: rgba(255,255,255,0.65); }

.fback {
  margin-top: 20px;
  font-family: var(--sf);
  font-size: 14px;
  background: transparent;
  border: 0;
  color: var(--secondary);
  cursor: pointer;
  padding: 6px 0;
  transition: color 0.3s var(--ease-int);
}
.fback:hover { color: var(--ink); }

/* recommendation */
.frec__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0 0 10px;
}
.frec__h {
  font-family: var(--sf);
  font-size: 30px;
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 32px;
  text-wrap: pretty;
}
.frec__sec { margin-bottom: 28px; }
.frec__sec h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 500;
  margin: 0 0 10px;
}
.frec__sec p {
  font-family: var(--sf);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}
.frec__mismatch {
  font-family: var(--sf);
  font-size: 13px;
  line-height: 1.5;
  background: rgba(255,204,0,0.10);
  border-left: 3px solid var(--signal);
  padding: 12px 14px;
  border-radius: 0 10px 10px 0;
  color: var(--ink-2);
  margin: 0 0 14px;
}
.frec__primary {
  border: 1px solid var(--ink);
  border-radius: 16px;
  padding: 24px;
  background: #fff;
}
.frec__price {
  font-family: var(--sf);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.frec__name {
  font-family: var(--sf);
  font-size: 16px;
  font-weight: 600;
  margin-top: 8px;
  color: var(--ink);
}
.frec__dur {
  font-family: var(--sf);
  font-size: 13px;
  color: var(--secondary);
  margin-top: 4px;
}
.frec__why {
  font-family: var(--sf);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  margin-top: 14px;
}
.frec__after {
  font-family: var(--sf);
  font-size: 13px;
  line-height: 1.5;
  color: var(--secondary);
  border-top: 1px dashed var(--hairline);
  padding-top: 12px;
  margin-top: 14px;
}
.frec__after strong { color: var(--ink); font-weight: 600; }
.frec__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: var(--sf);
  font-size: 15px;
  font-weight: 500;
  background: var(--ink);
  color: #fff;
  border: 0;
  border-radius: 980px;
  padding: 12px 24px;
  cursor: pointer;
  transition: background 0.3s var(--ease-int), transform 0.1s var(--ease-int);
}
.frec__cta:hover { background: #000; }
.frec__cta:active { transform: scale(0.97); transition-duration: 0.1s; }

.frec__ladder { display: grid; gap: 8px; }
.frec__rung {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  background: var(--bg-grey);
  border-radius: 12px;
  padding: 14px 16px;
  align-items: start;
}
.frec__rung-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  padding-top: 2px;
}
.frec__rung-name {
  font-family: var(--sf);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.frec__rung-price {
  font-family: var(--sf);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}
.frec__rung-when {
  font-family: var(--sf);
  font-size: 13px;
  color: var(--secondary);
  margin-top: 4px;
  line-height: 1.45;
}

.frec__order {
  background: var(--bg-grey);
  border-radius: 12px;
  padding: 16px;
  font-family: var(--sf);
  font-size: 13px;
  color: var(--secondary);
  line-height: 1.5;
}
.frec__order strong { color: var(--ink); font-weight: 600; }
.frec__order-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
  align-items: center;
}
.frec__order-strip .item {
  background: #fff;
  border: 1px solid var(--hairline-2);
  border-radius: 6px;
  padding: 5px 10px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.04em;
}
.frec__order-strip .arrow { color: var(--hairline); padding: 0 2px; }

/* ========================================================
   SECTIONS . alternating rhythm
   ======================================================== */
.section {
  padding: 160px 0;
  position: relative;
}
.section--grey {
  background: var(--bg-grey);
}
.section__head {
  margin-bottom: 80px;
  max-width: 760px;
}
.section__head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section__h {
  font-family: var(--sf);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.section__lede {
  font-family: var(--sf);
  font-size: 21px;
  line-height: 1.5;
  color: var(--secondary);
  margin: 28px 0 0;
  max-width: 640px;
  text-wrap: pretty;
}
.section__head--center .section__lede {
  margin-left: auto;
  margin-right: auto;
}
.section__cta { margin-top: 48px; }
.section__cta--center { text-align: center; }

/* ========================================================
   STATS STRIP
   ======================================================== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 120px;
}
.stat {
  padding: 56px 24px;
  text-align: center;
  border-right: 1px solid var(--hairline);
  position: relative;
}
.stat:last-child { border-right: 0; }
.stat__num {
  font-family: var(--sf);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 16px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.04);
  font-variant-numeric: tabular-nums;
}
.stat__label {
  font-family: var(--sf);
  font-size: 14px;
  line-height: 1.45;
  color: var(--secondary);
  max-width: 200px;
  margin: 0 auto;
}
/* yellow accent on first stat number */
.stat:first-child .stat__num::after {
  content: "";
  display: block;
  width: 24px;
  height: 3px;
  background: var(--signal);
  margin: 12px auto -3px;
  border-radius: 2px;
}

/* ========================================================
   CASES
   ======================================================== */
.cases {
  display: grid;
  gap: 80px;
}
.case {
  padding-top: 64px;
  border-top: 1px solid var(--hairline);
}
.case:first-child {
  padding-top: 0;
  border-top: 0;
}
.case__sector {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0 0 20px;
}
.case__h {
  font-family: var(--sf);
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 36px;
  max-width: 24ch;
  text-wrap: balance;
}
.case__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-bottom: 36px;
}
.case__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0 0 12px;
  font-weight: 500;
}
.case__body {
  font-family: var(--sf);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
}
.case__pull {
  border-left: 3px solid var(--signal);
  padding: 4px 0 4px 28px;
  margin: 0 0 28px;
}
.case__pull p {
  font-family: var(--sf);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.015em;
  text-wrap: pretty;
}
.case__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 24px;
  padding-top: 4px;
}
.case__metric {
  font-family: var(--sf);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
}
.case__tags {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
}

/* ========================================================
   PILLARS
   ======================================================== */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}
.pillar {
  padding: 48px 40px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--bg);
  position: relative;
  transition: background 0.4s var(--ease-int);
}
.pillar:hover {
  background: #fafafa;
}
.pillar__num {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--secondary);
  margin: 0 0 32px;
}
.pillar__name {
  font-family: var(--sf);
  font-weight: 600;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 12px;
}
.pillar__q {
  font-family: var(--sf);
  font-size: 17px;
  line-height: 1.5;
  color: var(--secondary);
  margin: 0;
}
.pillar--six {
  background: var(--ink);
}
.pillar--six:hover { background: #000; }
.pillar--six .pillar__num,
.pillar--six .pillar__q { color: rgba(245,245,247,0.65); }
.pillar--six .pillar__name { color: #f5f5f7; }
.pillar--six .pillar__name::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--signal);
  border-radius: 50%;
  margin-left: 8px;
  vertical-align: middle;
  transform: translateY(-2px);
}
.pillar__tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--signal);
  margin: 24px 0 0;
}

.method__frame {
  margin-top: 100px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.method__frame p {
  font-family: var(--sf);
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 24px;
  text-wrap: pretty;
}
.method__frame strong {
  color: var(--ink);
  font-weight: 600;
}

/* ========================================================
   TIERS
   ======================================================== */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tier {
  background: #fff;
  border-radius: 20px;
  padding: 44px 36px;
  box-shadow: var(--shadow-1);
  transition: transform 0.4s var(--ease-int), box-shadow 0.4s var(--ease-int);
  display: flex;
  flex-direction: column;
}
.tier:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}
.tier:active { transform: translateY(0) scale(0.995); transition-duration: 0.1s; box-shadow: var(--shadow-1); }
.tier__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0 0 28px;
}
.tier__eyebrow--accent {
  color: var(--ink);
}
.tier__eyebrow--accent::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--signal);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
  transform: translateY(-1px);
}
.tier__name {
  font-family: var(--sf);
  font-weight: 600;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 16px;
}
.tier__price {
  font-family: var(--sf);
  font-weight: 600;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 24px;
}
.tier__from {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
}
.tier__per {
  font-family: var(--sf);
  font-size: 17px;
  font-weight: 400;
  color: var(--secondary);
  letter-spacing: 0;
}
.tier__body {
  font-family: var(--sf);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 24px;
  flex: 1;
}
.tier__list {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0 0 28px;
  padding-top: 20px;
  border-top: 1px solid var(--hairline-2);
  line-height: 1.7;
}
.tier__bullets {
  list-style: none;
  margin: 0 0 28px;
  padding: 20px 0 0;
  border-top: 1px solid var(--hairline-2);
}
.tier__bullets li {
  font-family: var(--sf);
  font-size: 14px;
  color: var(--ink-2);
  padding: 6px 0 6px 22px;
  position: relative;
}
.tier__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 12px;
  height: 8px;
  border-left: 2px solid var(--signal);
  border-bottom: 2px solid var(--signal);
  transform: rotate(-45deg);
}
.tier--featured {
  background: #fff;
  position: relative;
  outline: 2px solid var(--ink);
  outline-offset: 0;
}
.tier--featured::before {
  content: "Start here";
  position: absolute;
  top: -12px;
  left: 36px;
  background: var(--signal);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}

/* ========================================================
   ABOUT
   ======================================================== */
.about {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: start;
}
.about__portrait {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-2);
  margin: 0 auto;
}
.about__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.portrait-placeholder {
  width: 100%; height: 100%;
  background:
    repeating-linear-gradient(
      45deg,
      #ececef 0,
      #ececef 8px,
      #f5f5f7 8px,
      #f5f5f7 16px
    );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.portrait-placeholder span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  padding: 0 12px;
  text-wrap: balance;
}
.about__body p {
  font-family: var(--sf);
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 24px;
  text-wrap: pretty;
}

/* ========================================================
   TESTIMONIALS
   ======================================================== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quote {
  background: rgba(255,255,255,0.6);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
          backdrop-filter: saturate(180%) blur(16px);
  border-radius: 20px;
  padding: 48px 36px 36px;
  box-shadow: var(--shadow-1);
  position: relative;
  margin: 0;
  transition: transform 0.4s var(--ease-int), box-shadow 0.4s var(--ease-int);
}
.quote:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}
.quote__mark {
  position: absolute;
  top: 12px;
  left: 24px;
  font-family: var(--serif);
  font-size: 120px;
  line-height: 1;
  color: var(--hairline-2);
  pointer-events: none;
}
.quote blockquote {
  font-family: var(--sf);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 28px;
  position: relative;
  z-index: 1;
}
.quote figcaption {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 500;
  padding-top: 20px;
  border-top: 1px solid var(--hairline-2);
}

/* ========================================================
   DARK CTA STRIP
   ======================================================== */
.cta-strip {
  background: var(--ink);
  background: radial-gradient(circle at 50% 50%, #1d1d1f 0%, #141416 100%);
  padding: 120px 0;
  text-align: center;
}
.cta-strip__h {
  font-family: var(--sf);
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 36px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #f5f5f7;
  margin: 0 0 40px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sf);
  font-weight: 500;
  font-size: 17px;
  border-radius: 980px;
  padding: 14px 30px;
  cursor: pointer;
  border: 0;
  transition: background 0.3s var(--ease-int), transform 0.1s var(--ease-int);
}
.btn--light {
  background: #f5f5f7;
  color: var(--ink);
}
.btn--light:hover { background: #fff; }
.btn:active { transform: scale(0.97); transition-duration: 0.1s; }
.btn .arr { transition: transform 0.3s var(--ease-int); }
.btn:hover .arr { transform: translateX(4px); }

/* ========================================================
   FOOTER
   ======================================================== */
.footer {
  background: var(--ink);
  color: #f5f5f7;
  padding: 80px 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(245,245,247,0.12);
}
.footer__brand .wordmark { font-size: 28px; }
.footer__line {
  font-family: var(--sf);
  font-size: 14px;
  color: rgba(245,245,247,0.55);
  margin: 16px 0 0;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer__h {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,245,247,0.55);
  margin: 0 0 18px;
}
.footer__cols ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__cols li {
  font-family: var(--sf);
  font-size: 13px;
  color: rgba(245,245,247,0.6);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer__cols li a {
  transition: color 0.3s var(--ease-int);
}
.footer__cols li a:hover { color: rgba(245,245,247,1); }
.footer__bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  font-family: var(--sf);
  font-size: 12px;
  color: rgba(245,245,247,0.35);
}
.footer__bottom p { margin: 0; }

/* ========================================================
   SCROLL REVEAL . additive: content visible by default,
   animation runs when .is-visible class is added.
   ======================================================== */
.reveal {
  will-change: transform, opacity;
}
.reveal.is-visible {
  animation: revealIn 1.1s var(--ease-in) both;
}
.reveal.is-visible:nth-child(2) { animation-delay: 80ms; }
.reveal.is-visible:nth-child(3) { animation-delay: 160ms; }
.reveal.is-visible:nth-child(4) { animation-delay: 240ms; }
.reveal.is-visible:nth-child(5) { animation-delay: 320ms; }
.reveal.is-visible:nth-child(6) { animation-delay: 400ms; }
@keyframes revealIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* No-JS fallback for reveals: show everything */
html:not(.js) .reveal { opacity: 1; transform: none; }

/* ========================================================
   RESPONSIVE
   ======================================================== */
/* ========================================================
   PAGE HERO (interior pages, no flow)
   ======================================================== */
.page-hero {
  padding: 200px 0 120px;
  position: relative;
}
.page-hero .container {
  text-align: center;
}
.page-hero__eyebrow { margin-bottom: 28px; }
.page-hero__h {
  font-family: var(--sf);
  font-weight: 600;
  font-size: clamp(44px, 6.6vw, 84px);
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0 auto;
  max-width: 22ch;
  text-wrap: balance;
}
.page-hero__sub {
  font-family: var(--sf);
  font-weight: 400;
  font-size: 21px;
  line-height: 1.5;
  color: var(--secondary);
  max-width: 620px;
  margin: 32px auto 0;
  text-wrap: pretty;
}
.page-hero__cta {
  margin: 40px auto 0;
}

/* ========================================================
   IN-PAGE STICKY SUB-NAV (Method page)
   ======================================================== */
.subnav {
  position: sticky;
  top: 48px;
  z-index: 50;
  background: rgba(255,255,255,0.78);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
          backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--hairline-2);
}
.subnav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  gap: 32px;
  height: 56px;
  align-items: center;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.subnav__inner::-webkit-scrollbar { display: none; }
.subnav a {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  white-space: nowrap;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--ease-int);
}
.subnav a:hover { color: var(--ink); }
.subnav a.is-active { color: var(--ink); }
.subnav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--signal);
  border-radius: 2px;
}

/* ========================================================
   PILLAR FULL . five pillar grid expanded with bodies
   ======================================================== */
.pillars-full {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}
.pillar-full {
  padding: 56px 48px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--bg);
  transition: background 0.4s var(--ease-int);
  position: relative;
}
.pillar-full:hover { background: #fafafa; }
.pillar-full__head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 20px;
}
.pillar-full__num {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--secondary);
}
.pillar-full__name {
  font-family: var(--sf);
  font-weight: 600;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.pillar-full__q {
  font-family: var(--sf);
  font-style: italic;
  font-size: 19px;
  line-height: 1.45;
  color: var(--ink);
  margin: 0 0 16px;
  letter-spacing: -0.015em;
}
.pillar-full__body {
  font-family: var(--sf);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
}
@media (max-width: 768px) {
  .pillars-full { grid-template-columns: 1fr; }
  .pillar-full { padding: 40px 24px; }
}

/* ========================================================
   SIXTH PILLAR . dramatic dark callout
   ======================================================== */
.sixth {
  background: var(--ink);
  background: radial-gradient(circle at 30% 30%, #1d1d1f 0%, #141416 100%);
  color: #f5f5f7;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.sixth::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,204,0,0.06) 0%, rgba(255,204,0,0) 70%);
  pointer-events: none;
}
.sixth .container { position: relative; }
.sixth__num {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--signal);
  margin: 0 0 24px;
}
.sixth__lead {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,245,247,0.55);
  margin: 0 0 36px;
}
.sixth__h {
  font-family: var(--sf);
  font-weight: 600;
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #f5f5f7;
  margin: 0 0 56px;
  max-width: 16ch;
  text-wrap: balance;
}
.sixth__h .accent {
  color: var(--signal);
}
.sixth__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: 920px;
}
.sixth__body p {
  font-family: var(--sf);
  font-size: 17px;
  line-height: 1.65;
  color: rgba(245,245,247,0.78);
  margin: 0 0 20px;
}
.sixth__body p:last-child { margin: 0; }
.sixth__body strong {
  color: #f5f5f7;
  font-weight: 600;
}
@media (max-width: 768px) {
  .sixth { padding: 100px 0; }
  .sixth__body { grid-template-columns: 1fr; gap: 0; }
}

/* ========================================================
   DIAGNOSTIC STACK . animated layered diagram
   ======================================================== */
.dstack {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 80px;
}
@media (max-width: 900px) {
  .dstack { grid-template-columns: 1fr; gap: 56px; }
}

.dstack__diagram {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: var(--shadow-1);
  aspect-ratio: 1.05 / 1;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.dstack__layer {
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease-in), transform 0.7s var(--ease-in);
}
.dstack.is-visible .dstack__layer { opacity: 1; transform: translateY(0); }
.dstack.is-visible .dstack__layer:nth-child(1) { transition-delay: 0ms; }
.dstack.is-visible .dstack__layer:nth-child(2) { transition-delay: 200ms; }
.dstack.is-visible .dstack__layer:nth-child(3) { transition-delay: 400ms; }
.dstack.is-visible .dstack__layer:nth-child(4) { transition-delay: 600ms; }

.dstack__node {
  flex: 1;
  border: 1px solid var(--hairline);
  background: var(--bg-grey);
  border-radius: 12px;
  padding: 16px 20px;
  position: relative;
}
.dstack__layer:last-child .dstack__node {
  border-color: var(--ink);
  background: var(--ink);
  color: #f5f5f7;
}
.dstack__layer:last-child .dstack__node::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 6px;
  height: calc(100% + 2px);
  background: var(--signal);
  border-radius: 12px 0 0 12px;
}
.dstack__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0 0 6px;
  font-weight: 500;
}
.dstack__layer:last-child .dstack__label {
  color: var(--signal);
}
.dstack__name {
  font-family: var(--sf);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
.dstack__layer:last-child .dstack__name { color: #f5f5f7; }
.dstack__arrow {
  width: 36px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  font-family: var(--mono);
  font-size: 14px;
  color: var(--hairline);
}

.dstack__copy h3 {
  font-family: var(--sf);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 8px;
}
.dstack__copy h3 .num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--secondary);
  display: block;
  margin-bottom: 4px;
}
.dstack__copy p {
  font-family: var(--sf);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0 0 28px;
}
.dstack__copy p:last-child { margin: 0; }

/* ========================================================
   OPERATING SPINE . vertical 5-layer stack
   ======================================================== */
.spine {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: start;
  margin-top: 80px;
}
@media (max-width: 900px) {
  .spine { grid-template-columns: 1fr; gap: 56px; }
}
.spine__diagram {
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 32px;
  background: #fff;
  box-shadow: var(--shadow-1);
}
.spine__row {
  display: grid;
  grid-template-columns: 32px 1fr 100px;
  align-items: center;
  gap: 20px;
  padding: 22px 16px;
  border-bottom: 1px solid var(--hairline-2);
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.6s var(--ease-in), transform 0.6s var(--ease-in);
}
.spine__row:last-child { border-bottom: 0; }
.spine.is-visible .spine__row { opacity: 1; transform: translateX(0); }
.spine.is-visible .spine__row:nth-child(1) { transition-delay: 0ms; }
.spine.is-visible .spine__row:nth-child(2) { transition-delay: 120ms; }
.spine.is-visible .spine__row:nth-child(3) { transition-delay: 240ms; }
.spine.is-visible .spine__row:nth-child(4) { transition-delay: 360ms; }
.spine.is-visible .spine__row:nth-child(5) { transition-delay: 480ms; }
.spine__num {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--secondary);
  letter-spacing: 0.06em;
}
.spine__name {
  font-family: var(--sf);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.spine__owner {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  text-align: right;
}
.spine__row--top {
  background: linear-gradient(90deg, rgba(255,204,0,0.08) 0%, rgba(255,204,0,0) 100%);
  border-radius: 12px;
}
.spine__row--top .spine__name { color: var(--ink); }
.spine__legend {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
  padding: 0 16px 12px;
}
.spine__copy h3 {
  font-family: var(--sf);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 16px;
}
.spine__copy p {
  font-family: var(--sf);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 18px;
}
.spine__copy p:last-child { margin: 0; }
.spine__copy strong { color: var(--ink); font-weight: 600; }

/* ========================================================
   FIX SEQUENCE . numbered ladder
   ======================================================== */
.sequence {
  margin-top: 64px;
  display: grid;
  gap: 0;
}
.sequence__step {
  display: grid;
  grid-template-columns: 100px 220px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid var(--hairline-2);
  align-items: start;
}
.sequence__step:first-child { border-top: 1px solid var(--ink); }
.sequence__step:last-child { border-bottom: 1px solid var(--hairline-2); }
.sequence__num {
  font-family: var(--sf);
  font-weight: 600;
  font-size: 56px;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 0.9;
  font-variant-numeric: tabular-nums;
}
.sequence__step:first-child .sequence__num { color: var(--ink); }
.sequence__step:first-child .sequence__num::after {
  content: "";
  display: block;
  width: 32px;
  height: 3px;
  background: var(--signal);
  margin-top: 8px;
  border-radius: 2px;
}
.sequence__name {
  font-family: var(--sf);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.sequence__name small {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-top: 6px;
}
.sequence__body {
  font-family: var(--sf);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
  padding-top: 4px;
}
@media (max-width: 768px) {
  .sequence__step {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 32px 0;
  }
  .sequence__num { font-size: 36px; }
}

/* ========================================================
   ABOUT EDITORIAL . long-form
   ======================================================== */
.editorial {
  max-width: 720px;
  margin: 0 auto;
}
.editorial__head {
  text-align: center;
  margin-bottom: 80px;
}
.editorial__sub {
  font-family: var(--sf);
  font-size: 21px;
  line-height: 1.5;
  color: var(--secondary);
  max-width: 620px;
  margin: 32px auto 0;
  text-wrap: pretty;
}
.editorial__portrait {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  margin: 64px 0 56px;
  position: relative;
}
.editorial__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  filter: saturate(0.9);
}
.editorial__body p {
  font-family: var(--sf);
  font-size: 19px;
  line-height: 1.72;
  color: var(--ink);
  margin: 0 0 28px;
  text-wrap: pretty;
  letter-spacing: -0.005em;
}
.editorial__body p.lead {
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-weight: 500;
}
.editorial__body p.aside {
  font-style: italic;
  color: var(--ink-2);
  font-size: 17px;
  border-left: 2px solid var(--hairline);
  padding-left: 24px;
  margin-left: 0;
}
.editorial__body p.pullout {
  font-family: var(--sf);
  font-size: 28px;
  line-height: 1.35;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--ink);
  border-left: 3px solid var(--signal);
  padding: 8px 0 8px 28px;
  margin: 48px 0;
  text-wrap: balance;
}
.editorial__rule {
  border: 0;
  border-top: 1px solid var(--hairline);
  width: 56px;
  margin: 56px auto;
}
.editorial__signoff {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
  text-align: center;
  margin: 56px 0 0;
}

/* ========================================================
   BUILD CARDS (Work page DO tier)
   ======================================================== */
.builds {
  display: grid;
  gap: 16px;
  margin-top: 56px;
}
.build-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 44px;
  box-shadow: var(--shadow-1);
  display: grid;
  grid-template-columns: 80px 1fr 200px 56px;
  align-items: center;
  gap: 32px;
  cursor: pointer;
  transition: transform 0.4s var(--ease-int), box-shadow 0.4s var(--ease-int);
  position: relative;
}
.build-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}
.build-card:hover .build-card__arrow { transform: translateX(6px); color: var(--signal); }
.build-card:active { transform: translateY(0) scale(0.998); transition-duration: 0.1s; }
.build-card__num {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--secondary);
}
.build-card__name {
  font-family: var(--sf);
  font-weight: 600;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 8px;
}
.build-card__verb {
  font-family: var(--sf);
  font-size: 16px;
  line-height: 1.5;
  color: var(--secondary);
  margin: 0;
}
.build-card__price {
  font-family: var(--sf);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-align: right;
}
.build-card__price small {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-top: 6px;
}
.build-card__arrow {
  font-family: var(--sf);
  font-size: 24px;
  color: var(--hairline);
  transition: transform 0.3s var(--ease-int), color 0.3s var(--ease-int);
  text-align: right;
}
.build-card--anchor {
  background: var(--ink);
  color: #f5f5f7;
}
.build-card--anchor .build-card__num { color: var(--signal); }
.build-card--anchor .build-card__name { color: #f5f5f7; }
.build-card--anchor .build-card__verb { color: rgba(245,245,247,0.65); }
.build-card--anchor .build-card__price { color: #f5f5f7; }
.build-card--anchor .build-card__price small { color: rgba(245,245,247,0.55); }
.build-card--anchor .build-card__arrow { color: rgba(245,245,247,0.4); }
.build-card--anchor:hover .build-card__arrow { color: var(--signal); }
@media (max-width: 768px) {
  .build-card {
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 28px;
  }
  .build-card__num { grid-column: 1 / 2; }
  .build-card__price { grid-column: 1 / 2; text-align: left; }
  .build-card__arrow { grid-column: 2 / 3; grid-row: 1 / 3; }
}

/* ========================================================
   FEATURED DIAGNOSTIC BLOCK (Work page ADVISE)
   ======================================================== */
.featured-block {
  background: #fff;
  border-radius: 24px;
  padding: 64px;
  box-shadow: var(--shadow-2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  margin-top: 56px;
  outline: 2px solid var(--ink);
  outline-offset: 0;
}
.featured-block::before {
  content: "Start here";
  position: absolute;
  top: -14px;
  left: 56px;
  background: var(--signal);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.featured-block__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 24px;
}
.featured-block__eyebrow::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--signal);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
  transform: translateY(-1px);
}
.featured-block__h {
  font-family: var(--sf);
  font-size: 44px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 24px;
  text-wrap: balance;
}
.featured-block__price {
  font-family: var(--sf);
  font-weight: 600;
  font-size: 40px;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 24px;
}
.featured-block__price span {
  font-family: var(--sf);
  font-size: 17px;
  font-weight: 400;
  color: var(--secondary);
  letter-spacing: 0;
}
.featured-block__body {
  font-family: var(--sf);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 32px;
}
.featured-block__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.featured-block__list li {
  font-family: var(--sf);
  font-size: 16px;
  color: var(--ink);
  padding-left: 28px;
  position: relative;
  line-height: 1.5;
}
.featured-block__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 9px;
  border-left: 2px solid var(--signal);
  border-bottom: 2px solid var(--signal);
  transform: rotate(-45deg);
}
@media (max-width: 900px) {
  .featured-block { grid-template-columns: 1fr; padding: 48px 32px; gap: 32px; }
  .featured-block__h { font-size: 32px; }
}

/* ========================================================
   LEARN OPTION CARDS (Work page LEARN)
   ======================================================== */
.learn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.learn-card {
  background: #fff;
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: var(--shadow-1);
  transition: transform 0.4s var(--ease-int), box-shadow 0.4s var(--ease-int);
  display: flex;
  flex-direction: column;
}
.learn-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}
.learn-card__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0 0 24px;
}
.learn-card__name {
  font-family: var(--sf);
  font-weight: 600;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 16px;
}
.learn-card__price {
  font-family: var(--sf);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 20px;
}
.learn-card__price span {
  font-family: var(--sf);
  font-size: 15px;
  font-weight: 400;
  color: var(--secondary);
  letter-spacing: 0;
}
.learn-card__body {
  font-family: var(--sf);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 28px;
  flex: 1;
}
.learn-card__meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--secondary);
  padding-top: 20px;
  border-top: 1px solid var(--hairline-2);
  margin-bottom: 24px;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .learn-grid { grid-template-columns: 1fr; }
}

/* ========================================================
   BUNDLES & UNCERTAIN BLOCKS (Work)
   ======================================================== */
.bundles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.bundles__h {
  font-family: var(--sf);
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.bundles__body p {
  font-family: var(--sf);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0 0 18px;
}
.bundles__body p:last-child { margin: 0; }
@media (max-width: 768px) {
  .bundles { grid-template-columns: 1fr; gap: 32px; }
}

.uncertain {
  background: var(--bg-grey);
  border-radius: 20px;
  padding: 56px 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.uncertain__h {
  font-family: var(--sf);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 8px;
}
.uncertain__body {
  font-family: var(--sf);
  font-size: 17px;
  line-height: 1.55;
  color: var(--secondary);
  margin: 0;
}
.uncertain .btn {
  white-space: nowrap;
}
@media (max-width: 768px) {
  .uncertain { grid-template-columns: 1fr; padding: 40px 28px; gap: 24px; }
}

/* ========================================================
   TIER LABEL BAR . Work page section divider
   ======================================================== */
.tier-bar {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 28px;
  margin-bottom: 0;
  border-bottom: 1px solid var(--hairline);
  flex-wrap: wrap;
}
.tier-bar__label {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0;
}
.tier-bar__label .num {
  color: var(--ink);
  margin-right: 12px;
}
.tier-bar__label.is-accent .num { color: var(--ink); }
.tier-bar__label.is-accent::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--signal);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
  transform: translateY(-1px);
}
.tier-bar__h {
  font-family: var(--sf);
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
  flex: 1;
  min-width: 280px;
}
.tier-section + .tier-section { margin-top: 140px; }
.tier-section__intro {
  font-family: var(--sf);
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 32px 0 0;
  max-width: 720px;
}

@media (max-width: 1080px) {
  :root { --pad-x: 40px; }
}
@media (max-width: 900px) {
  .tiers { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .case__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__top { grid-template-columns: 1fr; gap: 48px; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --pad-x: 20px; }

  .nav__links { display: none; }
  .nav__burger { display: block; }

  .hero { padding: 120px 0 80px; }
  .hero__sub { font-size: 17px; }

  .section { padding: 100px 0; }
  .section__head { margin-bottom: 56px; }
  .section__lede { font-size: 17px; }

  .stats { grid-template-columns: 1fr 1fr; }
  .stat { padding: 40px 16px; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--hairline); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(4) { border-right: 0; }

  .cases { gap: 56px; }

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

  .flow-card__stage { padding: 28px 22px 26px; }
  .fscreen__h { font-size: 22px; }

  .about { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .about__portrait { margin: 0 auto; width: 160px; height: 160px; }

  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}


/* ===== DIAGNOSTIC + SCALE ROOM + COHORT extensions ===== */
/* =========================================================
   SARGASSO . page-specific extensions for
   Diagnostic, Scale Room, Cohort
   Inherits all tokens + components from styles.css
   ========================================================= */

/* ---- inner-page hero (no flow card) ---- */
.hero--inner {
  min-height: 80vh;
  padding: 200px 0 120px;
  align-items: center;
}
.hero--inner .container { text-align: center; }
.hero--inner .hero__h { max-width: 20ch; }
.hero--inner .hero__sub {
  margin-top: 28px;
  max-width: 640px;
}
.hero__price {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 36px 0 0;
}
.hero__price strong {
  color: var(--ink);
  font-weight: 600;
}
.hero__price::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--signal);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
  transform: translateY(-2px);
}
.hero__cta {
  margin-top: 40px;
}
.btn--dark {
  background: var(--ink);
  color: #fff;
}
.btn--dark:hover { background: #000; }

/* ---- value cards: "What $750 gets you" / "What you get" ---- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.value-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-int), box-shadow 0.4s var(--ease-int);
  position: relative;
  overflow: hidden;
}
.value-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}
.value-card__num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--secondary);
  margin: 0 0 28px;
}
.value-card__num strong {
  display: block;
  font-family: var(--sf);
  font-size: 13px;
  letter-spacing: 0.10em;
  color: var(--ink);
  font-weight: 600;
  margin-top: 4px;
}
.value-card__h {
  font-family: var(--sf);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 12px;
  text-wrap: balance;
}
.value-card__body {
  font-family: var(--sf);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}
.value-card--first::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 32px;
  height: 3px;
  background: var(--signal);
  border-radius: 0 0 2px 0;
}

/* eight-item list (Scale Room) */
.value-grid--eight { grid-template-columns: repeat(2, 1fr); }

/* ---- numbered booking sequence ---- */
.sequence {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--hairline);
}
.seq-row {
  display: grid;
  grid-template-columns: 80px 200px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--hairline);
  align-items: baseline;
}
.seq-row__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--secondary);
  font-weight: 500;
}
.seq-row__when {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}
.seq-row__what {
  font-family: var(--sf);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}
.seq-row__what strong {
  color: var(--ink);
  font-weight: 600;
}

/* ---- For you if / Not for you if pair ---- */
.fit-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.fit-card {
  background: #fff;
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: var(--shadow-1);
}
.section--grey .fit-card {
  background: #fff;
}
.fit-card--no {
  background: var(--bg-grey);
  box-shadow: none;
  border: 1px solid var(--hairline-2);
}
.section--grey .fit-card--no {
  background: #fff;
  opacity: 0.7;
}
.fit-card__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0 0 8px;
}
.fit-card__h {
  font-family: var(--sf);
  font-weight: 600;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 28px;
}
.fit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.fit-list li {
  font-family: var(--sf);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  padding: 0 0 0 28px;
  position: relative;
}
.fit-list--yes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 8px;
  border-left: 2px solid var(--signal);
  border-bottom: 2px solid var(--signal);
  transform: rotate(-45deg);
}
.fit-list--no li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 12px;
  height: 1.5px;
  background: var(--secondary);
}
.fit-list--no li::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 11px;
  width: 1.5px;
  height: 1.5px;
  /* purposely small, just a hairline cross */
}

/* ---- horizontal Build strip (after Diagnostic) ---- */
.builds-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.build-cell {
  padding: 36px 24px;
  border-right: 1px solid var(--hairline);
  background: #fff;
  transition: background 0.4s var(--ease-int);
}
.build-cell:last-child { border-right: 0; }
.build-cell:hover { background: #fafafa; }
.build-cell__name {
  font-family: var(--sf);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 10px;
}
.build-cell__price {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.10em;
  color: var(--secondary);
  font-weight: 500;
}
.builds-foot {
  font-family: var(--sf);
  font-size: 15px;
  color: var(--secondary);
  margin: 28px 0 0;
  text-align: center;
}
.builds-foot strong { color: var(--ink); font-weight: 600; }

/* ---- single Diagnostic-specific quote ---- */
.solo-quote {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.solo-quote blockquote {
  font-family: var(--sf);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.45;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 32px;
  text-wrap: pretty;
  position: relative;
}
.solo-quote blockquote::before {
  content: "“";
  display: block;
  font-family: var(--serif);
  font-size: 80px;
  line-height: 0.6;
  color: var(--signal);
  margin-bottom: 16px;
}
.solo-quote figcaption {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 500;
}

/* ---- "What it's not" block (Scale Room) ---- */
.notblock {
  max-width: 760px;
  margin: 0 auto;
}
.notblock p {
  font-family: var(--sf);
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 20px;
  text-wrap: pretty;
}
.notblock p strong { color: var(--ink); font-weight: 600; }

/* ---- Cohort calendar table ---- */
.cal {
  border-top: 1px solid var(--hairline);
}
.cal-row {
  display: grid;
  grid-template-columns: 110px 1fr 160px 160px 120px;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--hairline);
  align-items: center;
  transition: background 0.3s var(--ease-int);
}
.cal-row:hover { background: rgba(0,0,0,0.012); }
.cal-row__q {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--secondary);
  font-weight: 500;
}
.cal-row__name {
  font-family: var(--sf);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.cal-row__name span {
  display: block;
  font-family: var(--sf);
  font-size: 13px;
  font-weight: 400;
  color: var(--secondary);
  letter-spacing: 0;
  margin-top: 4px;
}
.cal-row__pillar,
.cal-row__date {
  font-family: var(--sf);
  font-size: 14px;
  color: var(--ink-2);
}
.cal-row__pillar {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--secondary);
}
.status {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 999px;
  display: inline-block;
  white-space: nowrap;
}
.status--open {
  background: var(--signal);
  color: var(--ink);
}
.status--announced {
  background: rgba(0,0,0,0.04);
  color: var(--ink);
}
.status--pending {
  background: rgba(0,0,0,0.04);
  color: var(--secondary);
}
.status--closed {
  background: transparent;
  color: var(--secondary);
  border: 1px solid var(--hairline);
}

/* ---- "How it works" three-card grid (Cohort) ---- */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.how-card {
  background: #fff;
  border-radius: 20px;
  padding: 44px 36px;
  box-shadow: var(--shadow-1);
  transition: transform 0.4s var(--ease-int), box-shadow 0.4s var(--ease-int);
  display: flex;
  flex-direction: column;
}
.how-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}
.how-card__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--secondary);
  margin: 0 0 24px;
  font-weight: 500;
}
.how-card__h {
  font-family: var(--sf);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 14px;
}
.how-card__body {
  font-family: var(--sf);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}

/* ---- Cohort tier comparison ---- */
.tier-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.tier-card {
  background: #fff;
  border-radius: 20px;
  padding: 48px 40px;
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-int), box-shadow 0.4s var(--ease-int);
}
.tier-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}
.tier-card--vip {
  outline: 2px solid var(--ink);
  position: relative;
}
.tier-card--vip::before {
  content: "Most chosen";
  position: absolute;
  top: -12px;
  left: 36px;
  background: var(--signal);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.tier-card__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0 0 16px;
  font-weight: 500;
}
.tier-card__price {
  font-family: var(--sf);
  font-weight: 600;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 12px;
}
.tier-card__name {
  font-family: var(--sf);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 28px;
}
.tier-card__list {
  list-style: none;
  padding: 24px 0 0;
  margin: 0 0 32px;
  border-top: 1px solid var(--hairline-2);
  display: grid;
  gap: 14px;
  flex: 1;
}
.tier-card__list li {
  font-family: var(--sf);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-2);
  padding: 0 0 0 24px;
  position: relative;
}
.tier-card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 10px; height: 7px;
  border-left: 2px solid var(--signal);
  border-bottom: 2px solid var(--signal);
  transform: rotate(-45deg);
}

/* ---- Application section ---- */
.application {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.application p {
  font-family: var(--sf);
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 32px;
  text-wrap: pretty;
}

/* ---- responsive ---- */
@media (max-width: 900px) {
  .value-grid,
  .value-grid--eight,
  .fit-pair,
  .how-grid,
  .tier-pair { grid-template-columns: 1fr; }

  .builds-strip { grid-template-columns: repeat(2, 1fr); }
  .build-cell { border-right: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }

  .seq-row { grid-template-columns: 60px 1fr; }
  .seq-row__when { grid-column: 2; }
  .seq-row__what { grid-column: 2; }

  .cal-row {
    grid-template-columns: 1fr 110px;
    gap: 12px 16px;
  }
  .cal-row__q { grid-column: 1; grid-row: 1; }
  .cal-row__name { grid-column: 1 / -1; grid-row: 2; }
  .cal-row__pillar { grid-column: 1; grid-row: 3; }
  .cal-row__date { grid-column: 1; grid-row: 4; }
  .cal-row > .status { grid-column: 2; grid-row: 1; justify-self: end; }
}

@media (max-width: 768px) {
  .hero--inner { padding: 140px 0 80px; min-height: auto; }
  .hero__price { font-size: 11px; }
  .tier-card__price { font-size: 44px; }
  .builds-strip { grid-template-columns: 1fr; }
}


/* ===== PROOF + WALL + NEWSLETTER + GET STARTED extensions ===== */
/* =========================================================
   SARGASSO. . page-specific stylesheet (Proof, Wall of Fame,
   Newsletter, Get Started)
   Loaded after styles.css. Inherits all tokens.
   ========================================================= */

/* ========================================================
   PAGE HERO . used on all interior pages.
   Smaller than the homepage hero (no flow card below).
   ======================================================== */
.page-hero {
  padding: 200px 0 120px;
  position: relative;
}
.page-hero .container {
  text-align: center;
}
.page-hero__eyebrow { margin-bottom: 28px; }
.page-hero__h {
  font-family: var(--sf);
  font-weight: 600;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0 auto;
  max-width: 18ch;
  text-wrap: balance;
}
.page-hero__sub {
  font-family: var(--sf);
  font-weight: 400;
  font-size: 21px;
  line-height: 1.5;
  color: var(--secondary);
  max-width: 600px;
  margin: 32px auto 0;
  text-wrap: pretty;
}

@media (max-width: 768px) {
  .page-hero { padding: 130px 0 72px; }
  .page-hero__sub { font-size: 17px; }
}

/* ========================================================
   PROOF . case studies (full 6-block) + methodology + when-it-didn't-work
   ======================================================== */
.method-note {
  max-width: 760px;
  margin: 0 auto;
}
.method-note .section__h {
  font-size: clamp(32px, 4.4vw, 52px);
  margin-bottom: 36px;
}
.method-note p {
  font-family: var(--sf);
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0 0 24px;
  text-wrap: pretty;
}

/* Full case study . extended 6-block layout */
.case--full {
  padding-top: 96px;
  border-top: 1px solid var(--hairline);
}
.case--full:first-child {
  padding-top: 0;
  border-top: 0;
}
.case--full .case__sector { margin-bottom: 24px; }
.case--full .case__h {
  font-size: clamp(32px, 4.2vw, 48px);
  margin-bottom: 56px;
  max-width: 28ch;
}
.case--full .case__grid {
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 0;
}
.case--full .case__col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.case--full .case__block .case__label {
  margin-bottom: 14px;
}
.case--full .case__block p {
  font-family: var(--sf);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0;
}
.case--full .case__pull {
  margin: 56px 0 32px;
  padding: 8px 0 8px 32px;
  max-width: 760px;
}
.case--full .case__pull p {
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.35;
}
.case--full .case__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
}
.case--full .case__metric {
  font-family: var(--sf);
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
}
.case--full .case__metric .num {
  display: inline-block;
  position: relative;
}
.case--full .case__metric .num::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -4px;
  height: 3px;
  background: var(--signal);
  border-radius: 2px;
}
.case--full .case__tags {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 500;
}

@media (max-width: 900px) {
  .case--full .case__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* When it didn't work . long-form admission */
.didnt-work {
  max-width: 760px;
  margin: 0 auto;
}
.didnt-work .eyebrow {
  color: var(--signal);
}
.didnt-work .section__h {
  font-size: clamp(36px, 5vw, 60px);
  margin-bottom: 56px;
}
.didnt-work p {
  font-family: var(--sf);
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0 0 24px;
  text-wrap: pretty;
}
.didnt-work .lede {
  font-size: 21px;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 36px;
}
.didnt-work .closer {
  font-family: var(--sf);
  font-weight: 600;
  font-size: 24px;
  color: var(--ink);
  margin-top: 40px;
  letter-spacing: -0.015em;
  padding-left: 24px;
  border-left: 3px solid var(--signal);
}

/* Link-back panel (Proof → Wall, Wall → Proof) */
.linkback {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 56px 56px;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-1);
  max-width: 880px;
  margin: 0 auto;
  transition: transform 0.4s var(--ease-int), box-shadow 0.4s var(--ease-int);
}
.linkback:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}
.linkback__copy p {
  font-family: var(--sf);
  font-size: 21px;
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.015em;
  font-weight: 400;
}
.linkback__copy small {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 12px;
}
.linkback .textlink { white-space: nowrap; }

@media (max-width: 768px) {
  .linkback { flex-direction: column; align-items: flex-start; padding: 36px 28px; gap: 20px; }
}

/* ========================================================
   WALL OF FAME . filter pills + featured video + masonry
   ======================================================== */
.filter-bar {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto 80px;
}
.filter-pill {
  font-family: var(--sf);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 10px 22px;
  cursor: pointer;
  transition: background 0.3s var(--ease-int),
              color 0.3s var(--ease-int),
              border-color 0.3s var(--ease-int),
              transform 0.1s var(--ease-int);
}
.filter-pill .count {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--secondary);
  margin-left: 8px;
  transition: color 0.3s var(--ease-int);
}
.filter-pill:hover {
  border-color: var(--ink);
}
.filter-pill.is-active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.filter-pill.is-active .count { color: rgba(255,255,255,0.55); }
.filter-pill:active { transform: scale(0.97); }

/* Featured video slot */
.feature-video {
  max-width: 980px;
  margin: 0 auto 120px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-3);
  background: #1d1d1f;
  position: relative;
  aspect-ratio: 16/9;
  cursor: pointer;
  transition: transform 0.4s var(--ease-int), box-shadow 0.4s var(--ease-int);
}
.feature-video:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
}
.feature-video__poster {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 600px at 70% 30%, rgba(255,204,0,0.08), transparent 60%),
    linear-gradient(135deg, #2a2a2d 0%, #141416 60%, #0a0a0c 100%);
}
.feature-video__poster::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.012) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.012) 0 1px, transparent 1px 3px);
  mix-blend-mode: screen;
}
.feature-video__chrome {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px 44px;
  color: #f5f5f7;
}
.feature-video__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.feature-video__label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,245,247,0.65);
}
.feature-video__rec {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,245,247,0.65);
}
.feature-video__rec::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--signal);
  border-radius: 50%;
}
.feature-video__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.feature-video__title {
  font-family: var(--sf);
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
  max-width: 22ch;
  text-wrap: balance;
}
.feature-video__attr {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,245,247,0.55);
  margin-top: 12px;
}
.feature-video__play {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-int), background 0.3s var(--ease-int);
}
.feature-video:hover .feature-video__play {
  background: var(--signal);
  transform: scale(1.05);
}
.feature-video__play::after {
  content: "";
  width: 0; height: 0;
  border-left: 16px solid var(--ink);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 4px;
}
.feature-video__placeholder-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,245,247,0.4);
  background: rgba(0,0,0,0.4);
  padding: 4px 8px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .feature-video__chrome { padding: 20px 22px; }
  .feature-video__play { width: 52px; height: 52px; }
  .feature-video__play::after { border-left-width: 12px; border-top-width: 7px; border-bottom-width: 7px; }
}

/* Masonry */
.wall {
  column-count: 3;
  column-gap: 24px;
}
@media (max-width: 1080px) { .wall { column-count: 2; } }
@media (max-width: 700px)  { .wall { column-count: 1; } }

.wall__card {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  margin: 0 0 24px;
  padding: 36px 32px 32px;
  background: rgba(255,255,255,0.7);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
          backdrop-filter: saturate(180%) blur(16px);
  border-radius: 20px;
  box-shadow: var(--shadow-1);
  position: relative;
  display: block;
  transition: opacity 0.4s var(--ease-int),
              transform 0.4s var(--ease-int),
              box-shadow 0.4s var(--ease-int);
}
.wall__card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}
.wall__card.is-hidden {
  display: none;
}
.wall__mark {
  position: absolute;
  top: 8px;
  left: 20px;
  font-family: var(--serif);
  font-size: 96px;
  line-height: 1;
  color: var(--hairline-2);
  pointer-events: none;
  user-select: none;
}
.wall__quote {
  position: relative;
  z-index: 1;
  font-family: var(--sf);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 24px;
  text-wrap: pretty;
}
.wall__quote--long { font-size: 16px; line-height: 1.65; }
.wall__attr {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  padding-top: 18px;
  border-top: 1px solid var(--hairline-2);
}
.wall__attr-loc {
  display: block;
  margin-top: 6px;
  color: var(--tertiary);
  letter-spacing: 0.10em;
}
.wall__tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(255,204,0,0.14);
  border: 1px solid rgba(255,204,0,0.4);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 20px;
}

/* Empty state for filter */
.wall-empty {
  text-align: center;
  font-family: var(--sf);
  font-size: 17px;
  color: var(--secondary);
  padding: 80px 0;
  display: none;
}
.wall-empty.is-shown { display: block; }

/* ========================================================
   NEWSLETTER . formats + archive list
   ======================================================== */
.formats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}
.format-card {
  background: #fff;
  border-radius: 24px;
  padding: 48px 44px 44px;
  box-shadow: var(--shadow-1);
  position: relative;
  transition: transform 0.4s var(--ease-int), box-shadow 0.4s var(--ease-int);
}
.format-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.format-card__type {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0 0 32px;
}
.format-card__name {
  font-family: var(--sf);
  font-weight: 600;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 8px;
}
.format-card__name .dot { color: var(--signal); }
.format-card__cadence {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 24px;
}
.format-card__body {
  font-family: var(--sf);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 32px;
}
.format-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline-2);
  font-family: var(--sf);
  font-size: 14px;
  color: var(--secondary);
}
.format-card__meta strong {
  font-weight: 600;
  color: var(--ink);
}
.format-card--featured {
  background: var(--ink);
  color: #f5f5f7;
}
.format-card--featured .format-card__type { color: rgba(245,245,247,0.6); }
.format-card--featured .format-card__name { color: #f5f5f7; }
.format-card--featured .format-card__cadence { color: var(--signal); }
.format-card--featured .format-card__body { color: rgba(245,245,247,0.78); }
.format-card--featured .format-card__meta {
  color: rgba(245,245,247,0.6);
  border-top-color: rgba(245,245,247,0.12);
}
.format-card--featured .format-card__meta strong { color: #f5f5f7; }

.formats-note {
  text-align: center;
  font-family: var(--sf);
  font-size: 17px;
  color: var(--secondary);
  margin: 40px 0 0;
}

@media (max-width: 768px) {
  .formats { grid-template-columns: 1fr; }
  .format-card { padding: 36px 28px 32px; }
  .format-card__name { font-size: 28px; }
}

/* Archive list */
.archive {
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid var(--hairline);
}
.archive__entry {
  display: grid;
  grid-template-columns: 110px 110px 1fr auto;
  gap: 32px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid var(--hairline);
  position: relative;
  cursor: pointer;
  transition: padding-left 0.3s var(--ease-int);
}
.archive__entry::before {
  content: "";
  position: absolute;
  top: 28px; bottom: 28px;
  left: -16px;
  width: 2px;
  background: var(--signal);
  opacity: 0;
  transition: opacity 0.3s var(--ease-int);
}
.archive__entry:hover {
  padding-left: 8px;
}
.archive__entry:hover::before { opacity: 1; }
.archive__entry:hover .archive__title { color: var(--signal); }

.archive__type {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.archive__type--short { color: var(--signal); }
.archive__date {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--secondary);
}
.archive__copy {
  min-width: 0;
}
.archive__title {
  font-family: var(--sf);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 6px;
  transition: color 0.3s var(--ease-int);
  text-wrap: pretty;
}
.archive__sub {
  font-family: var(--sf);
  font-size: 15px;
  line-height: 1.5;
  color: var(--secondary);
  margin: 0;
  text-wrap: pretty;
}
.archive__read {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  white-space: nowrap;
  transition: color 0.3s var(--ease-int), transform 0.3s var(--ease-int);
}
.archive__entry:hover .archive__read {
  color: var(--ink);
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .archive__entry {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 0;
  }
  .archive__entry:hover { padding-left: 0; }
  .archive__entry:hover::before { opacity: 0; }
  .archive__type-row {
    display: flex;
    gap: 16px;
    align-items: baseline;
  }
  .archive__read { display: none; }
}

/* Subscribe block */
.subscribe {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.subscribe__h {
  font-family: var(--sf);
  font-weight: 600;
  font-size: clamp(32px, 4.4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 28px;
  text-wrap: balance;
}
.subscribe__form {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 6px;
  transition: border-color 0.3s var(--ease-int),
              box-shadow 0.3s var(--ease-int);
}
.subscribe__form:focus-within {
  border-color: var(--signal);
  box-shadow: 0 0 0 4px rgba(255,204,0,0.18);
}
.subscribe__form input[type="email"] {
  flex: 1;
  border: 0;
  background: transparent;
  font-family: var(--sf);
  font-size: 16px;
  color: var(--ink);
  padding: 12px 18px;
  outline: 0;
  min-width: 0;
}
.subscribe__form input[type="email"]::placeholder {
  color: var(--tertiary);
}
.subscribe__form button {
  font-family: var(--sf);
  font-size: 15px;
  font-weight: 500;
  background: var(--ink);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 12px 24px;
  cursor: pointer;
  transition: background 0.3s var(--ease-int), transform 0.1s var(--ease-int);
  white-space: nowrap;
}
.subscribe__form button:hover { background: #000; }
.subscribe__form button:active { transform: scale(0.97); }
.subscribe__trust {
  font-family: var(--sf);
  font-size: 14px;
  color: var(--tertiary);
  margin: 24px 0 0;
}
.subscribe__success {
  font-family: var(--sf);
  font-size: 16px;
  color: var(--ink);
  background: rgba(255,204,0,0.14);
  border: 1px solid rgba(255,204,0,0.5);
  border-radius: 16px;
  padding: 16px 24px;
  display: none;
  max-width: 480px;
  margin: 0 auto;
}
.subscribe__success.is-shown { display: block; animation: fadeUp 0.4s var(--ease-in); }

/* ========================================================
   GET STARTED . four stacked path cards
   ======================================================== */
.paths {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.path-card {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 40px 48px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 24px;
  position: relative;
  cursor: pointer;
  transition: transform 0.4s var(--ease-int),
              box-shadow 0.4s var(--ease-int),
              border-color 0.3s var(--ease-int);
}
.path-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
  border-color: transparent;
}
.path-card:active {
  transform: translateY(0) scale(0.995);
  box-shadow: var(--shadow-1);
  transition-duration: 0.1s;
}
.path-card__num {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--secondary);
  align-self: start;
  padding-top: 6px;
  position: relative;
}
.path-card__num::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--hairline);
  margin-top: 8px;
  transition: background 0.3s var(--ease-int), width 0.3s var(--ease-int);
}
.path-card:hover .path-card__num::after {
  background: var(--signal);
  width: 48px;
}
.path-card__copy {
  min-width: 0;
}
.path-card__h {
  font-family: var(--sf);
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 12px;
  text-wrap: balance;
}
.path-card__sub {
  font-family: var(--sf);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 18px;
  text-wrap: pretty;
  max-width: 56ch;
}
.path-card__action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sf);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
  transition: color 0.3s var(--ease-int);
}
.path-card__action .arr {
  display: inline-block;
  transition: transform 0.3s var(--ease-int);
}
.path-card:hover .path-card__action { color: var(--signal); }
.path-card:hover .path-card__action .arr { transform: translateX(4px); }
.path-card__chev {
  font-family: var(--sf);
  font-size: 32px;
  color: var(--hairline);
  font-weight: 300;
  align-self: center;
  transition: color 0.3s var(--ease-int), transform 0.3s var(--ease-int);
}
.path-card:hover .path-card__chev {
  color: var(--ink);
  transform: translateX(6px);
}

/* Highlighted (recommended) path */
.path-card--accent {
  background: var(--ink);
  border-color: var(--ink);
  color: #f5f5f7;
}
.path-card--accent .path-card__num { color: rgba(245,245,247,0.6); }
.path-card--accent .path-card__num::after { background: rgba(245,245,247,0.18); }
.path-card--accent .path-card__h { color: #f5f5f7; }
.path-card--accent .path-card__sub { color: rgba(245,245,247,0.72); }
.path-card--accent .path-card__action { color: var(--signal); }
.path-card--accent .path-card__chev { color: rgba(245,245,247,0.4); }
.path-card--accent:hover .path-card__chev { color: var(--signal); }
.path-card--accent::before {
  content: "Most start here";
  position: absolute;
  top: -10px;
  left: 40px;
  background: var(--signal);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
}

@media (max-width: 768px) {
  .path-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 28px 24px;
  }
  .path-card__num::after { width: 24px; }
  .path-card__chev { display: none; }
  .path-card--accent::before { left: 24px; }
}

/* Edge case line */
.edge-case {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.edge-case__h {
  font-family: var(--sf);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 16px;
}
.edge-case__body {
  font-family: var(--sf);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 12px;
}
.edge-case__email {
  display: inline-block;
  font-family: var(--mono);
  font-size: 15px;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: var(--ink);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--ink);
  transition: color 0.3s var(--ease-int), border-color 0.3s var(--ease-int);
}
.edge-case__email:hover {
  color: var(--signal);
  border-bottom-color: var(--signal);
}

/* ========================================================
   Active nav indicator (yellow dot under current page link)
   ======================================================== */
.nav__links a.is-current {
  color: var(--ink);
}
.nav__links a.is-current::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 4px;
  height: 4px;
  background: var(--signal);
  border-radius: 50%;
  transform: translateX(-50%) scale(0);
  animation: dotIn 0.4s var(--ease-spr) 0.4s forwards;
}
@keyframes dotIn {
  to { transform: translateX(-50%) scale(1); }
}


/* ===== BUILD pages extensions ===== */
/* =========================================================
   SARGASSO. . Build pages stylesheet (extends styles.css)
   Shared template used by all 5 Build pages.
   ========================================================= */

/* ========================================================
   BUILD HERO . pillar-matched
   ======================================================== */
.bhero {
  min-height: 88vh;
  padding: 180px 0 120px;
  display: flex;
  align-items: center;
  position: relative;
}
.bhero .container { width: 100%; text-align: center; }
.bhero__eyebrow { margin-bottom: 28px; }
.bhero__h {
  font-family: var(--sf);
  font-weight: 600;
  font-size: clamp(44px, 7.4vw, 88px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0 auto;
  max-width: 18ch;
  text-wrap: balance;
}
.bhero__sub {
  font-family: var(--sf);
  font-weight: 400;
  font-size: 21px;
  line-height: 1.55;
  color: var(--secondary);
  max-width: 640px;
  margin: 32px auto 0;
  text-wrap: pretty;
}
.bhero__meta {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  margin: 48px auto 32px;
  padding: 16px 28px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
          backdrop-filter: saturate(180%) blur(20px);
  box-shadow: var(--shadow-1);
}
.bhero__meta-item {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  line-height: 1.2;
}
.bhero__meta-k {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 4px;
}
.bhero__meta-v {
  font-family: var(--sf);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.bhero__meta-sep {
  width: 1px;
  align-self: stretch;
  background: var(--hairline);
}
.bhero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sf);
  font-weight: 500;
  font-size: 17px;
  background: var(--ink);
  color: #fff;
  border: 0;
  border-radius: 980px;
  padding: 14px 30px;
  cursor: pointer;
  transition: background 0.3s var(--ease-int), transform 0.1s var(--ease-int);
  margin-top: 8px;
}
.bhero__cta:hover { background: #000; }
.bhero__cta:active { transform: scale(0.97); transition-duration: 0.1s; }
.bhero__cta .arr { transition: transform 0.3s var(--ease-int); }
.bhero__cta:hover .arr { transform: translateX(4px); }

/* Pillar mark . minimalist line glyph that lives in the hero */
.bhero__mark {
  width: 88px;
  height: 88px;
  margin: 0 auto 40px;
  display: block;
}
.bhero__mark svg { width: 100%; height: 100%; }
.bhero__mark .stroke { stroke: var(--ink); stroke-width: 1.25; fill: none; }
.bhero__mark .accent { stroke: var(--signal); stroke-width: 2; fill: none; }
.bhero__mark .dot    { fill: var(--signal); }

/* ========================================================
   DIAGNOSTIC-FIRST BANNER
   ======================================================== */
.banner {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 28px 0;
  background: var(--bg);
}
.banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.banner__lhs {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1 1 480px;
}
.banner__dot {
  width: 8px; height: 8px;
  background: var(--signal);
  border-radius: 50%;
  flex-shrink: 0;
}
.banner__text {
  font-family: var(--sf);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0;
}
.banner__text strong { color: var(--ink); font-weight: 600; }
.banner__cta {
  font-family: var(--sf);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  white-space: nowrap;
  transition: color 0.3s var(--ease-int);
}
.banner__cta .arr { transition: transform 0.3s var(--ease-int); }
.banner__cta:hover { color: var(--signal); }
.banner__cta:hover .arr { transform: translateX(4px); }

/* ========================================================
   OUTCOMES . "What your business looks like when we're done"
   ======================================================== */
.outcomes__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}
.outcomes__item {
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 44px 40px;
  background: var(--bg);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: background 0.4s var(--ease-int);
}
.outcomes__item:hover { background: #fafafa; }
.outcomes__num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--secondary);
  flex-shrink: 0;
  padding-top: 6px;
  width: 32px;
}
.outcomes__copy {
  font-family: var(--sf);
  font-size: 21px;
  line-height: 1.4;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0;
  font-weight: 500;
  text-wrap: pretty;
}
.outcomes__copy em {
  font-style: normal;
  background: linear-gradient(transparent 60%, rgba(255,204,0,0.32) 60%);
  padding: 0 2px;
}

/* ========================================================
   ENGAGEMENT . three cards: Diagnose / Build / Install
   ======================================================== */
.engage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.engage__card {
  background: #fff;
  border-radius: 20px;
  padding: 44px 36px 40px;
  box-shadow: var(--shadow-1);
  transition: transform 0.4s var(--ease-int), box-shadow 0.4s var(--ease-int);
  display: flex;
  flex-direction: column;
  position: relative;
}
.engage__card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}
.engage__step {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.engage__step::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--hairline);
  display: inline-block;
}
.engage__card--current .engage__step::before { background: var(--signal); }
.engage__name {
  font-family: var(--sf);
  font-weight: 600;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 14px;
}
.engage__when {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--secondary);
  margin: 0 0 18px;
}
.engage__when strong {
  color: var(--ink);
  font-weight: 500;
}
.engage__body {
  font-family: var(--sf);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  flex: 1;
}

/* ========================================================
   FIT . For you if / Not for you if
   ======================================================== */
.fit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.fit__col h3 {
  font-family: var(--sf);
  font-weight: 600;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 32px;
}
.fit__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.fit__list li {
  font-family: var(--sf);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  padding: 18px 0 18px 38px;
  border-top: 1px solid var(--hairline-2);
  position: relative;
  text-wrap: pretty;
}
.fit__list li:last-child { border-bottom: 1px solid var(--hairline-2); }

.fit__list--yes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  width: 14px;
  height: 9px;
  border-left: 2px solid var(--signal);
  border-bottom: 2px solid var(--signal);
  transform: rotate(-45deg);
}
.fit__list--no li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  width: 16px;
  height: 16px;
  background:
    linear-gradient(45deg, transparent 7px, var(--secondary) 7px, var(--secondary) 9px, transparent 9px),
    linear-gradient(-45deg, transparent 7px, var(--secondary) 7px, var(--secondary) 9px, transparent 9px);
}
.fit__list--no li { color: var(--secondary); }

/* ========================================================
   WONT . What we won't do
   ======================================================== */
.wont {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.wont__list {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: grid;
  gap: 0;
  text-align: left;
}
.wont__list li {
  font-family: var(--sf);
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink);
  padding: 24px 0 24px 56px;
  border-top: 1px solid var(--hairline);
  position: relative;
  text-wrap: pretty;
}
.wont__list li:last-child { border-bottom: 1px solid var(--hairline); }
.wont__list li::before {
  content: ".";
  position: absolute;
  left: 0;
  top: 24px;
  font-family: var(--sf);
  font-size: 19px;
  font-weight: 600;
  color: var(--signal);
  letter-spacing: 0;
}

/* ========================================================
   MULTI . Multi-track bundles
   ======================================================== */
.multi {
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: 24px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: start;
  box-shadow: var(--shadow-1);
}
.multi__h {
  font-family: var(--sf);
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 36px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 12px;
  text-wrap: balance;
}
.multi__eyebrow { margin-bottom: 16px; }
.multi__body {
  font-family: var(--sf);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 20px;
  text-wrap: pretty;
}
.multi__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.multi__row {
  display: grid;
  grid-template-columns: 1.4fr auto auto;
  align-items: baseline;
  gap: 16px;
  padding: 14px 16px;
  background: var(--bg-grey);
  border-radius: 12px;
  font-family: var(--sf);
}
.multi__row--current {
  background: var(--ink);
  color: #fff;
}
.multi__row-name {
  font-size: 15px;
  font-weight: 600;
  color: inherit;
}
.multi__row--current .multi__row-name { color: #fff; }
.multi__row-price {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--secondary);
}
.multi__row--current .multi__row-price { color: rgba(245,245,247,0.7); }
.multi__row-dur {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--secondary);
}
.multi__row--current .multi__row-dur { color: var(--signal); }

/* ========================================================
   TESTIMONIAL . single, pillar-matched
   ======================================================== */
.tcell {
  max-width: 820px;
  margin: 0 auto;
  background: rgba(255,255,255,0.72);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
          backdrop-filter: saturate(180%) blur(20px);
  border-radius: 24px;
  padding: 64px 56px 48px;
  box-shadow: var(--shadow-2);
  position: relative;
}
.tcell__mark {
  position: absolute;
  top: 20px;
  left: 32px;
  font-family: var(--serif);
  font-size: 140px;
  line-height: 1;
  color: var(--hairline-2);
  pointer-events: none;
}
.tcell blockquote {
  font-family: var(--sf);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 32px;
  position: relative;
  z-index: 1;
  text-wrap: pretty;
}
.tcell figcaption {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 500;
  padding-top: 24px;
  border-top: 1px solid var(--hairline-2);
}

/* ========================================================
   RESPONSIVE
   ======================================================== */
@media (max-width: 900px) {
  .outcomes__grid { grid-template-columns: 1fr; }
  .engage { grid-template-columns: 1fr; }
  .fit { grid-template-columns: 1fr; gap: 48px; }
  .multi { grid-template-columns: 1fr; gap: 32px; padding: 36px; }
}
@media (max-width: 768px) {
  .bhero { padding: 130px 0 80px; min-height: 80vh; }
  .bhero__sub { font-size: 17px; }
  .bhero__meta { flex-wrap: wrap; gap: 16px; padding: 14px 20px; }
  .bhero__meta-sep { display: none; }
  .outcomes__item { padding: 32px 24px; }
  .outcomes__copy { font-size: 18px; }
  .wont__list li { font-size: 17px; padding-left: 40px; }
  .tcell { padding: 48px 28px 36px; border-radius: 20px; }
  .tcell__mark { font-size: 100px; left: 20px; top: 12px; }
  .banner__inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}


/* =========================================================
   OPS (Cohort 02) - page-specific styles
   Scoped to selectors used only on OPS.html, safe for shared sheet.
   ========================================================= */
/* ===========================================================
   OPS — sales page overrides + additions
   Same system as homepage. A little more energy on accents.
   =========================================================== */

/* ---------- HERO (sales-page variant) ---------- */
.ops-hero { padding: 200px 0 140px; min-height: auto; }
.ops-hero .container { text-align: center; }
.ops-hero__eyebrow {
  margin-bottom: 36px;
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: rgba(255,255,255,0.6);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
          backdrop-filter: saturate(180%) blur(20px);
  color: var(--ink-2);
}
.ops-hero__eyebrow .dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--signal);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
  transform: translateY(-1px);
  box-shadow: 0 0 0 4px rgba(255,204,0,0.18);
}
.ops-hero__h {
  font-family: var(--sf);
  font-weight: 600;
  font-size: clamp(48px, 8.4vw, 104px);
  line-height: 1.02;
  letter-spacing: -0.038em;
  color: var(--ink);
  margin: 0 auto;
  max-width: 18ch;
  text-wrap: balance;
}
.ops-hero__h .accent {
  font-style: italic;
  font-weight: 600;
}
.ops-hero__h .accent::after {
  content: ".";
  color: var(--signal);
}
.ops-hero__sub {
  font-family: var(--sf);
  font-weight: 400;
  font-size: clamp(19px, 1.7vw, 23px);
  line-height: 1.5;
  color: var(--secondary);
  max-width: 640px;
  margin: 32px auto 0;
  text-wrap: pretty;
}
.ops-hero__ctas {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 44px;
  justify-content: center;
}
.ops-hero__signals {
  margin: 56px auto 0;
  max-width: 720px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.ops-hero__signal {
  padding: 24px 16px;
  border-right: 1px solid var(--hairline);
  text-align: center;
}
.ops-hero__signal:last-child { border-right: 0; }
.ops-hero__signal .v {
  font-family: var(--sf);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.ops-hero__signal .l {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
}

/* ---------- COUNTDOWN ---------- */
.countdown {
  margin: 40px auto 0;
  max-width: 640px;
  background: rgba(255,255,255,0.6);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
          backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid var(--hairline-2);
  border-radius: 20px;
  padding: 24px 28px 22px;
  box-shadow: var(--shadow-1);
}
.countdown__label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0 0 18px;
  text-align: center;
}
.countdown__label .dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--signal);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
  transform: translateY(-1px);
  animation: pulse 2.2s ease-in-out infinite;
}
.countdown__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.countdown__cell {
  text-align: center;
  padding: 12px 8px;
  border-right: 1px solid var(--hairline-2);
}
.countdown__cell:last-child { border-right: 0; }
.countdown__cell .v {
  display: block;
  font-family: var(--sf);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  margin-bottom: 8px;
}
.countdown__cell .l {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
}

/* ---------- BUTTONS — primary dark + secondary ghost ---------- */
.btn--dark {
  background: var(--ink);
  color: #fff;
}
.btn--dark:hover { background: #000; }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--accent {
  background: var(--signal);
  color: var(--ink);
}
.btn--accent:hover { background: #ffd633; }

/* ---------- PROBLEM ---------- */
.problem__body {
  max-width: 720px;
  margin: 48px auto 0;
  text-align: left;
}
.problem__body p {
  font-family: var(--sf);
  font-size: 21px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 24px;
  text-wrap: pretty;
}
.problem__body p:last-child { margin-bottom: 0; }
.problem__body strong {
  color: var(--ink);
  font-weight: 600;
}
.problem__pivot {
  border-left: 3px solid var(--signal);
  padding: 4px 0 4px 28px;
  margin: 40px 0 !important;
  font-style: italic;
  font-size: 24px !important;
  letter-spacing: -0.015em;
  color: var(--ink) !important;
}

/* ---------- DIAGNOSTIC TABLE ---------- */
.diag-table {
  margin-top: 16px;
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-1);
  border: 1px solid var(--hairline-2);
}
.diag-table thead th {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  text-align: left;
  padding: 20px 28px;
  border-bottom: 1px solid var(--hairline-2);
  background: var(--bg-grey);
}
.diag-table tbody tr {
  transition: background 0.3s var(--ease-int);
}
.diag-table tbody tr:hover { background: rgba(255,204,0,0.04); }
.diag-table tbody tr + tr td { border-top: 1px solid var(--hairline-2); }
.diag-table td {
  padding: 24px 28px;
  font-family: var(--sf);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-2);
  vertical-align: top;
}
.diag-table td:first-child {
  color: var(--ink);
  font-style: italic;
  max-width: 36ch;
}
.diag-table td:last-child {
  font-family: var(--sf);
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  position: relative;
}
.diag-table td:last-child::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--signal);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
  transform: translateY(-1px);
}
.diag-after {
  max-width: 720px;
  margin: 40px auto 0;
  text-align: center;
  font-family: var(--sf);
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-2);
  text-wrap: pretty;
}

/* ---------- SESSION CARDS (large, detailed) ---------- */
.sessions {
  display: grid;
  gap: 24px;
  margin-top: 16px;
}
.session {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow-1);
  padding: 64px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.4s var(--ease-int), transform 0.4s var(--ease-int);
}
.session:hover {
  box-shadow: var(--shadow-2);
  transform: translateY(-2px);
}
.session__rail {
  position: relative;
}
.session__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0 0 16px;
}
.session__big {
  font-family: var(--sf);
  font-weight: 600;
  font-size: 96px;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 0;
  position: relative;
}
.session__big::after {
  content: "";
  display: block;
  width: 36px;
  height: 4px;
  background: var(--signal);
  border-radius: 2px;
  margin-top: 20px;
}
.session__layer {
  font-family: var(--sf);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 28px 0 0;
}
.session__main { min-width: 0; }
.session__tag {
  font-family: var(--sf);
  font-style: italic;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 24px;
  text-wrap: pretty;
}
.session__body {
  font-family: var(--sf);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0 0 32px;
  text-wrap: pretty;
}
.session__build {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 18px;
  padding-top: 28px;
  border-top: 1px solid var(--hairline-2);
}
.session__build::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--signal);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
  transform: translateY(-1px);
}
.builds { display: grid; gap: 20px; margin: 0 0 32px; }
.build {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  align-items: start;
}
.build__no {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--secondary);
  padding-top: 4px;
}
.build__t {
  font-family: var(--sf);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 4px;
}
.build__b {
  font-family: var(--sf);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}
.session__assets-h {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 14px;
  padding-top: 28px;
  border-top: 1px solid var(--hairline-2);
}
.session__assets-h::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--signal);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
  transform: translateY(-1px);
}
.assets {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.asset-pill {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: var(--bg-grey);
  border-radius: 6px;
  padding: 6px 10px;
  border: 1px solid var(--hairline-2);
}

/* ---------- WALK AWAY WITH ---------- */
.walkaway {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.walkaway__card {
  background: #fff;
  border-radius: 20px;
  padding: 44px 36px;
  box-shadow: var(--shadow-1);
  transition: transform 0.4s var(--ease-int), box-shadow 0.4s var(--ease-int);
}
.walkaway__card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}
.walkaway__big {
  font-family: var(--sf);
  font-weight: 600;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 8px;
}
.walkaway__big sup {
  font-size: 20px;
  font-weight: 500;
  color: var(--signal);
  vertical-align: super;
  letter-spacing: 0;
  margin-left: 2px;
}
.walkaway__sub {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0 0 24px;
}
.walkaway__body {
  font-family: var(--sf);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
}

/* ---------- PRICING ---------- */
.pricing {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  margin-top: 16px;
  align-items: stretch;
}
.price {
  background: #fff;
  border-radius: 24px;
  padding: 56px 48px;
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.4s var(--ease-int);
}
.price:hover { box-shadow: var(--shadow-2); }
.price--vip {
  border-top: 6px solid var(--signal);
  box-shadow: var(--shadow-2);
}
.price--vip:hover { box-shadow: var(--shadow-3); }
.price__flag {
  position: absolute;
  top: -14px;
  left: 48px;
  background: var(--signal);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.price__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0 0 24px;
}
.price__tier {
  font-family: var(--sf);
  font-weight: 600;
  font-size: 40px;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 12px;
  line-height: 1;
}
.price__seats {
  font-family: var(--sf);
  font-size: 14px;
  color: var(--secondary);
  margin: 0 0 32px;
}
.price__seats strong {
  color: var(--ink);
  font-weight: 600;
}
.price__amt {
  font-family: var(--sf);
  font-weight: 600;
  font-size: 72px;
  letter-spacing: -0.035em;
  color: var(--ink);
  line-height: 0.95;
  margin: 0 0 8px;
}
.price__amt sup {
  font-size: 32px;
  font-weight: 500;
  vertical-align: super;
  letter-spacing: -0.01em;
  margin-right: 2px;
  color: var(--ink-2);
}
.price__per {
  font-family: var(--sf);
  font-size: 14px;
  color: var(--secondary);
  margin: 0 0 36px;
}
.price__incl {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 18px;
  padding-top: 32px;
  border-top: 1px solid var(--hairline-2);
}
.price__list {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
}
.price__list li {
  font-family: var(--sf);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  padding: 10px 0 10px 30px;
  position: relative;
  border-bottom: 1px solid var(--hairline-2);
}
.price__list li:last-child { border-bottom: 0; }
.price__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 12px;
  height: 8px;
  border-left: 2px solid var(--signal);
  border-bottom: 2px solid var(--signal);
  transform: rotate(-45deg);
}
.price__list li strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 2px;
}
.price__cta {
  margin-top: auto;
}
.price__note {
  margin: 56px auto 0;
  max-width: 680px;
  text-align: center;
  font-family: var(--sf);
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--bg-grey);
  border-radius: 16px;
  padding: 28px 32px;
}
.price__note strong { color: var(--ink); font-weight: 600; }

/* ---------- SCHEDULE ---------- */
.schedule {
  margin-top: 16px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-1);
  overflow: hidden;
  border: 1px solid var(--hairline-2);
}
.schedule__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 24px 32px;
  border-bottom: 1px solid var(--hairline-2);
  gap: 24px;
  align-items: center;
  transition: background 0.3s var(--ease-int);
}
.schedule__row:last-child { border-bottom: 0; }
.schedule__row:hover { background: rgba(255,204,0,0.04); }
.schedule__row--head {
  background: var(--bg-grey);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
  padding: 18px 32px;
}
.schedule__row--head:hover { background: var(--bg-grey); }
.schedule__m {
  font-family: var(--sf);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
}
.schedule__d {
  font-family: var(--sf);
  font-size: 16px;
  color: var(--ink-2);
}
.schedule__row--reg .schedule__m::before,
.schedule__row--close .schedule__m::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--signal);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
  transform: translateY(-1px);
}
.schedule__after {
  font-family: var(--sf);
  font-size: 15px;
  line-height: 1.6;
  color: var(--secondary);
  text-align: center;
  margin: 28px auto 0;
  max-width: 680px;
}

/* ---------- FIT / NOT FIT ---------- */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 16px;
}
.fit__h {
  font-family: var(--sf);
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 36px;
}
.fit__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
}
.fit__list li {
  font-family: var(--sf);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  padding-left: 32px;
  position: relative;
  text-wrap: pretty;
}
.fit__list--yes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 10px;
  border-left: 2px solid var(--signal);
  border-bottom: 2px solid var(--signal);
  transform: rotate(-45deg);
}
.fit__list--no li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 10px;
  width: 14px;
  height: 1.5px;
  background: var(--hairline);
}

/* ---------- TESTIMONIAL (single, large) ---------- */
.ops-quote {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.ops-quote__mark {
  font-family: var(--serif);
  font-size: 160px;
  line-height: 0.7;
  color: var(--hairline-2);
  display: block;
  height: 60px;
  margin-bottom: 16px;
}
.ops-quote__body {
  font-family: var(--sf);
  font-weight: 400;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 32px;
  text-wrap: pretty;
}
.ops-quote__attr {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
}
.ops-quote__ctx {
  max-width: 540px;
  margin: 28px auto 0;
  font-family: var(--sf);
  font-size: 14px;
  line-height: 1.6;
  color: var(--tertiary);
  text-wrap: pretty;
  padding-top: 24px;
  border-top: 1px solid var(--hairline-2);
}

/* ---------- SEAT COUNTER ---------- */
.seats-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow-2);
  padding: 56px 56px 48px;
  max-width: 880px;
  margin: 16px auto 0;
  position: relative;
  overflow: hidden;
}
.seats-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--signal) 50%, transparent 100%);
}
.seat-row { margin-bottom: 40px; }
.seat-row:last-of-type { margin-bottom: 0; }
.seat-row__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
  gap: 16px;
  flex-wrap: wrap;
}
.seat-row__label {
  font-family: var(--sf);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.seat-row__label .tier-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
  background: var(--bg-grey);
  border-radius: 999px;
  padding: 3px 10px;
  margin-left: 8px;
  font-weight: 500;
  vertical-align: middle;
}
.seat-row__count {
  font-family: var(--sf);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-size: 22px;
}
.seat-row__count .total {
  color: var(--secondary);
  font-weight: 500;
  font-size: 18px;
}
.seat-row__count .word {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 500;
  margin-left: 8px;
}
.seat-bar {
  height: 14px;
  background: var(--bg-grey);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.seat-bar__fill {
  height: 100%;
  background: var(--signal);
  border-radius: 999px;
  width: 0;
  transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 0 1px rgba(255,204,0,0.3) inset;
}
.seat-bar__ticks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
}
.seat-bar__tick {
  flex: 1;
  border-right: 1px solid rgba(0,0,0,0.06);
}
.seat-bar__tick:last-child { border-right: 0; }
.seats-card__after {
  margin: 40px auto 0;
  max-width: 680px;
  text-align: center;
  font-family: var(--sf);
  font-size: 15px;
  line-height: 1.6;
  color: var(--secondary);
  padding-top: 32px;
  border-top: 1px solid var(--hairline-2);
}

/* ---------- FAQ ---------- */
.faq {
  margin-top: 16px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.faq__item {
  border-bottom: 1px solid var(--hairline);
}
.faq__item:first-child { border-top: 1px solid var(--hairline); }
.faq__q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  text-align: left;
  font-family: var(--sf);
  font-weight: 600;
  font-size: clamp(19px, 2vw, 22px);
  letter-spacing: -0.015em;
  color: var(--ink);
  transition: color 0.3s var(--ease-int);
}
.faq__q:hover { color: var(--ink-2); }
.faq__q .toggle {
  flex: 0 0 28px;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  position: relative;
  transition: background 0.3s var(--ease-int), border-color 0.3s var(--ease-int);
}
.faq__q .toggle::before,
.faq__q .toggle::after {
  content: "";
  position: absolute;
  background: var(--ink);
  top: 50%; left: 50%;
  transition: transform 0.4s var(--ease-int), background 0.3s var(--ease-int);
}
.faq__q .toggle::before {
  width: 12px; height: 1.5px;
  transform: translate(-50%, -50%);
}
.faq__q .toggle::after {
  width: 1.5px; height: 12px;
  transform: translate(-50%, -50%);
}
.faq__item.is-open .faq__q .toggle {
  background: var(--signal);
  border-color: var(--signal);
}
.faq__item.is-open .faq__q .toggle::after {
  transform: translate(-50%, -50%) scaleY(0);
}
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-int);
}
.faq__a-inner {
  padding: 0 0 32px;
  max-width: 680px;
}
.faq__a p {
  font-family: var(--sf);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
  text-wrap: pretty;
}

/* ---------- CLOSE STRIP (sales variant) ---------- */
.close-strip {
  background: var(--ink);
  background: radial-gradient(circle at 50% 50%, #1d1d1f 0%, #0e0e10 100%);
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.close-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,204,0,0.08), transparent 50%);
  pointer-events: none;
}
.close-strip__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,245,247,0.55);
  margin: 0 0 28px;
  position: relative;
}
.close-strip__eyebrow .dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--signal);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
  transform: translateY(-1px);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,204,0,0.45); }
  50%      { box-shadow: 0 0 0 8px rgba(255,204,0,0); }
}
.close-strip__h {
  font-family: var(--sf);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #f5f5f7;
  margin: 0 auto 48px;
  max-width: 18ch;
  text-wrap: balance;
  position: relative;
}
.close-strip__h .accent { color: var(--signal); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1080px) {
  .session { padding: 48px; grid-template-columns: 180px 1fr; gap: 40px; }
  .session__big { font-size: 80px; }
}
@media (max-width: 900px) {
  .session { grid-template-columns: 1fr; padding: 40px; gap: 24px; }
  .session__big { font-size: 64px; }
  .session__big::after { margin-top: 16px; }
  .pricing { grid-template-columns: 1fr; }
  .walkaway { grid-template-columns: 1fr; }
  .fit-grid { grid-template-columns: 1fr; gap: 56px; }
  .ops-hero__signals { grid-template-columns: 1fr; }
  .ops-hero__signal { border-right: 0; border-bottom: 1px solid var(--hairline); padding: 20px 16px; }
  .ops-hero__signal:last-child { border-bottom: 0; }
  .schedule__row { grid-template-columns: 1fr; gap: 6px; padding: 20px 24px; }
  .schedule__row--head { grid-template-columns: 1fr; }
  .schedule__row--head .schedule__d { display: none; }
}
@media (max-width: 768px) {
  .ops-hero { padding: 140px 0 80px; }
  .seats-card { padding: 36px 28px; }
  .price { padding: 40px 28px; }
  .session { padding: 32px 28px; }
  .diag-table thead { display: none; }
  .diag-table, .diag-table tbody, .diag-table tr, .diag-table td { display: block; width: 100%; }
  .diag-table td { padding: 8px 24px; border: 0 !important; }
  .diag-table td:first-child { padding-top: 24px; font-size: 17px; }
  .diag-table td:last-child { padding-bottom: 24px; }
  .diag-table tbody tr + tr { border-top: 1px solid var(--hairline-2); }
}


/* ============================================================
   V3 — Honesty Clause + The Test (Build pages, Diagnostic)
   ============================================================ */
.honesty {
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 36px 40px;
  max-width: 920px;
  margin: 0 auto;
  background: #fff;
}
.section--grey .honesty { background: var(--bg-grey); border-color: var(--hairline-2); }
.honesty__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0 0 18px;
}
.honesty__body {
  font-family: var(--sf);
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
  text-wrap: pretty;
}
@media (max-width: 720px) {
  .honesty { padding: 28px 24px; }
  .honesty__body { font-size: 17px; }
}

.the-test__clause {
  margin: 48px auto 0;
  max-width: 720px;
  border-top: 1px solid var(--hairline);
  padding-top: 20px;
}
.the-test__clause p {
  font-family: var(--sf);
  font-size: 14px;
  line-height: 1.55;
  color: var(--secondary);
  margin: 0;
  text-align: center;
}
.the-test__clause strong { color: var(--ink); font-weight: 600; }

/* ============================================================
   V3 — Diagnostic step-down CTA
   ============================================================ */
.step-down {
  margin: 24px auto 0;
  max-width: 640px;
  text-align: center;
  font-family: var(--sf);
  font-size: 14px;
  line-height: 1.55;
  color: var(--secondary);
}
.step-down a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--signal);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.step-down a:hover { color: var(--ink-2); }

/* ============================================================
   V3 — Clarity Call (entry-point) card variants on Work + Get-Started
   ============================================================ */
.clarity-card {
  border: 1px solid var(--hairline);
  border-radius: 18px;
  padding: 40px;
  margin: 32px 0 24px;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
}
.section--grey .clarity-card { background: #fff; }
.clarity-card__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0 0 14px;
}
.clarity-card__eyebrow strong { color: var(--ink); font-weight: 600; }
.clarity-card__name {
  font-family: var(--sf);
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 12px;
}
.clarity-card__price {
  font-family: var(--sf);
  font-size: 17px;
  color: var(--ink);
  margin: 0 0 16px;
  font-weight: 500;
}
.clarity-card__price strong { font-size: 22px; font-weight: 600; }
.clarity-card__price span { color: var(--secondary); font-weight: 400; }
.clarity-card__body {
  font-family: var(--sf);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 12px;
  max-width: 56ch;
}
.clarity-card__credit {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(255,204,0,0.18);
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-block;
}
@media (max-width: 720px) {
  .clarity-card { grid-template-columns: 1fr; padding: 28px 24px; }
}

/* ============================================================
   V3 — Circle mention on Scale Room
   ============================================================ */
.circle-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-top: 24px;
}
.circle-note__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
  display: inline-block;
}
.circle-note strong { color: var(--ink); font-weight: 500; }


/* ============================================================
   V3 — Image placeholders (Section 9B)
   Styled containers Omar drops real photos into. Sized per spec.
   Use: <figure class="img-ph" style="aspect-ratio: 4/3">
          <span class="img-ph__tag">Photo</span>
          <span class="img-ph__label">Description / stock search</span>
        </figure>
   ============================================================ */
.img-ph {
  position: relative;
  display: block;
  width: 100%;
  background: var(--bg-grey);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  overflow: hidden;
  margin: 0;
  isolation: isolate;
}
.img-ph::after {
  /* faint diagonal hatch so an empty placeholder still feels intentional */
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0,
    transparent 18px,
    rgba(0,0,0,0.03) 18px,
    rgba(0,0,0,0.03) 19px
  );
  pointer-events: none;
}
.img-ph__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--hairline);
  padding: 4px 8px;
  border-radius: 999px;
}
.img-ph__label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  z-index: 2;
  font-family: var(--sf);
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 32ch;
  margin: 0 auto;
  text-wrap: pretty;
}
.img-ph--dark {
  background: #15151a;
  border-color: #2a2a2c;
  color: #fff;
}
.img-ph--dark::after {
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0,
    transparent 18px,
    rgba(255,255,255,0.04) 18px,
    rgba(255,255,255,0.04) 19px
  );
}
.img-ph--dark .img-ph__tag {
  background: rgba(0,0,0,0.6);
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
}
.img-ph--dark .img-ph__label { color: rgba(255,255,255,0.7); }

.img-ph--circle {
  border-radius: 50%;
  aspect-ratio: 1 / 1;
}
.img-ph--avatar { /* small inline avatar */
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  vertical-align: middle;
}
.img-ph--avatar .img-ph__tag,
.img-ph--avatar .img-ph__label { display: none; }

/* Full-bleed background placeholder behind a section */
.img-ph--bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  border: 0;
  border-radius: 0;
  opacity: 0.08;
  pointer-events: none;
}
.img-ph--bg::after { display: none; }
.img-ph--bg .img-ph__label,
.img-ph--bg .img-ph__tag { display: none; }

/* Hero-scale placeholder behind hero text */
.img-ph--hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  border: 0;
  border-radius: 0;
  opacity: 1;
  pointer-events: none;
}
.img-ph--hero-bg::before {
  /* white veil so text on top stays readable */
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.85);
  z-index: 1;
}
.img-ph--hero-bg .img-ph__tag {
  top: auto; bottom: 14px; left: 14px;
}
.img-ph--hero-bg .img-ph__label {
  align-items: flex-end;
  justify-content: flex-start;
  padding: 24px;
  text-align: left;
  color: var(--secondary);
  opacity: 0.7;
}

/* Divider strip (full-width photographic break between sections) */
.img-ph--divider {
  height: 125px;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
}

/* Pull two-column layouts with an image on one side */
.img-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.img-pair--right > :first-child { order: 0; }
.img-pair--right > :last-child  { order: 1; }
.img-pair--left  > :first-child { order: 1; }
.img-pair--left  > :last-child  { order: 0; }
@media (max-width: 860px) {
  .img-pair { grid-template-columns: 1fr; gap: 32px; }
  .img-pair--left  > :first-child,
  .img-pair--left  > :last-child,
  .img-pair--right > :first-child,
  .img-pair--right > :last-child { order: 0; }
}

/* Section that hosts a background image needs position: relative + a foreground container */
.section--bg-host { position: relative; }
.section--bg-host > .container { position: relative; z-index: 1; }

/* Image-led card (used inside engagement phases / multi-track) */
.img-card {
  border: 1px solid var(--hairline);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}
.img-card .img-ph {
  border: 0;
  border-radius: 0;
  aspect-ratio: 4 / 3;
}
.img-card__body { padding: 24px 24px 28px; }


/* Ensure foreground content sits above any .img-ph--bg / --hero-bg backgrounds */
.hero > .container,
.cta-strip > .container,
.page-hero > .container,
.bhero > .container { position: relative; z-index: 1; }


/* ============================================================
   V3 — Liquid Glass expandable pills (Section 9A)
   Place inside a section with a photographic background (works
   on light or dark). Click a pill → its detail card expands
   below. Only one pill open at a time, managed by JS.

   Markup contract:
     <div class="pill-group" data-pills>
       <details class="pill" name="ops-pillars">
         <summary class="pill__btn">
           <span class="pill__icon" aria-hidden="true"></span>
           <span class="pill__label">Operations</span>
         </summary>
         <div class="pill__detail">
           <p>Two-to-three sentences of detail.</p>
         </div>
       </details>
       ...
     </div>
   ============================================================ */
.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 2;
}
.pill {
  position: relative;
  flex: 0 0 auto;
}
.pill[open] { z-index: 3; }
.pill__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sf);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  padding: 12px 20px 12px 16px;
  border-radius: 980px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  background: rgba(0, 0, 0, 0.05);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  backdrop-filter: saturate(180%) blur(16px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--ink);
  transition:
    background 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
    border-color 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
    transform 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.pill__btn::-webkit-details-marker { display: none; }
.pill__btn:hover {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.16);
}
.pill[open] > .pill__btn {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.pill__icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  display: inline-block;
}
.pill__icon::before,
.pill__icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.pill__icon::before { top: 6px; left: 0; width: 14px; height: 1.5px; }   /* — */
.pill__icon::after  { top: 0; left: 6px; width: 1.5px; height: 14px; }   /* | */
.pill[open] .pill__icon::after { transform: rotate(90deg); }              /* + → — */
.pill__label { white-space: nowrap; }

.pill__detail {
  /* Sits beneath the row of pills, full row width. JS positions the dropdown
     and applies max-height animation. */
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 12px);
  max-width: 480px;
  background: #ffffff;
  border: 1px solid var(--hairline);
  border-radius: 18px;
  padding: 24px 28px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  transition:
    max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.pill[open] > .pill__detail {
  opacity: 1;
  max-height: 480px;
  pointer-events: auto;
}
.pill__detail p {
  font-family: var(--sf);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  text-wrap: pretty;
}
.pill__detail p + p { margin-top: 12px; }

/* Dark variant — for pills floating on dark images / dark sections */
.pill-group--dark .pill__btn {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}
.pill-group--dark .pill__btn:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.36);
}
.pill-group--dark .pill[open] > .pill__btn {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--ink);
}
.pill-group--dark .pill__detail {
  background: rgba(20, 20, 22, 0.85);
  border-color: rgba(255, 255, 255, 0.12);
}
.pill-group--dark .pill__detail p { color: rgba(255,255,255,0.85); }

/* ============================================================
   V3 — Pillars-on-image composition (Home Method, etc.)
   Big visual on the right, pills + heading on the left.
   ============================================================ */
.pillars-on-image {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: stretch;
  margin-top: 64px;
  position: relative;
}
.pillars-on-image__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  min-height: 480px;
}
.pillars-on-image__lede {
  font-family: var(--sf);
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  max-width: 38ch;
}
.pillars-on-image__visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 480px;
}
.pillars-on-image__visual .img-ph {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  border: 1px solid var(--hairline);
}
.pillars-on-image__visual .img-ph .img-ph__label {
  align-items: flex-end;
  justify-content: flex-start;
  padding: 24px;
  text-align: left;
  opacity: 0.7;
}
@media (max-width: 900px) {
  .pillars-on-image { grid-template-columns: 1fr; gap: 32px; }
  .pillars-on-image__copy { min-height: 0; }
  .pillars-on-image__visual { min-height: 360px; }
}


/* When a pill group has many items (Scale Room = 8), give it a tighter gap
   so two rows of pills don't overflow the column. */
.pill-group { row-gap: 10px; column-gap: 10px; }

/* The pill__detail dropdown — when there are many pills wrapping onto two rows,
   the absolute positioning can push the dropdown awkwardly. Cap its width so
   it reads like a tooltip card instead of a banner. */
.pillars-on-image .pill__detail {
  width: 100%;
  max-width: 460px;
}

/* On mobile, pills stack better with full-width detail dropdowns */
@media (max-width: 720px) {
  .pill__detail { max-width: none; }
}


/* ============================================================
   V3 — About Omar story-scroll treatment (Section 10)
   Fixed-height window (~70vh) with the story body scrolling
   INTERNALLY. Editorial portrait sits beside it, static. The
   user can scroll past the whole section quickly (one wheel swipe
   past the 70vh block) OR engage with it by scrolling inside the
   internal area. The "scroll wheel" feels strong because each
   tick moves a tightly-controlled column of text past a fixed
   focal band, with paragraphs fading in and out as they cross it.
   ============================================================ */
.editorial--story {
  max-width: none;
}
.editorial--story .editorial__layout {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 80px;
  align-items: stretch;
  margin-top: 24px;

  /* THE WINDOW. Page scroll moves past this block in one or two ticks. */
  height: min(720px, 78vh);
  min-height: 560px;
}
.editorial--story .editorial__sticky {
  height: 100%;
  display: flex;
  align-items: flex-start;
}
.editorial--story .editorial__portrait {
  margin: 0;
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: 100%;
}
.editorial--story .editorial__portrait img {
  object-fit: cover;
}

/* Internal scroll container — the actual scroll wheel effect lives here. */
.editorial--story .story-body {
  max-width: 64ch;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 32px 0 0;
  scroll-behavior: smooth;
  overscroll-behavior: contain;
  /* Fade out top and bottom of the scrollable column so paragraphs feel
     like they're entering and leaving a focal band — that's the scroll feel. */
  mask-image: linear-gradient(
    to bottom,
    transparent 0,
    #000 15%,
    #000 85%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0,
    #000 15%,
    #000 85%,
    transparent 100%
  );
  /* Custom scrollbar */
  scrollbar-width: thin;
  scrollbar-color: var(--ink) transparent;
}
.editorial--story .story-body::-webkit-scrollbar { width: 4px; }
.editorial--story .story-body::-webkit-scrollbar-track { background: transparent; }
.editorial--story .story-body::-webkit-scrollbar-thumb { background: var(--ink); border-radius: 2px; }
.editorial--story .story-body::-webkit-scrollbar-thumb:hover { background: var(--ink-2); }

/* Spacer at top so the first paragraph starts inside the focal band, not at the top edge */
.editorial--story .story-body::before {
  content: '';
  display: block;
  height: 32%;
}
.editorial--story .story-body::after {
  content: '';
  display: block;
  height: 40%;
}

/* Paragraph fade states, driven by IntersectionObserver scoped to the scroll container */
.editorial--story .story-body > p,
.editorial--story .story-body > .editorial__signoff {
  opacity: 0.25;
  transform: translateY(8px);
  transition:
    opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.editorial--story .story-body > p.is-active,
.editorial--story .story-body > .editorial__signoff.is-active {
  opacity: 1;
  transform: translateY(0);
}

/* Horizontal rule between past and "Today I run Sargasso" */
.editorial--story .story-body > hr.editorial__rule {
  opacity: 0.7;
}

/* Pullouts get full-width treatment with a pause */
.editorial--story .story-body > p.pullout {
  font-family: var(--sf);
  font-weight: 600;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-align: center;
  margin: 40px 0 40px;
  padding: 20px 0;
  max-width: none;
  text-wrap: balance;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

/* Lead stays larger */
.editorial--story .story-body > p.lead {
  font-size: 22px;
  line-height: 1.5;
}

/* Hint that the area is scrollable */
.editorial--story .editorial__layout::after {
  content: 'Scroll inside ↓';
  position: absolute;
  bottom: -28px;
  right: 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
  pointer-events: none;
}
.editorial--story .editorial__layout { position: relative; }

/* Reduced motion — skip the fade animation */
@media (prefers-reduced-motion: reduce) {
  .editorial--story .story-body > p,
  .editorial--story .story-body > .editorial__signoff {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Mobile — fall back to native page scroll, no fixed window */
@media (max-width: 900px) {
  .editorial--story .editorial__layout {
    grid-template-columns: 1fr;
    gap: 32px;
    height: auto;
    min-height: 0;
  }
  .editorial--story .editorial__sticky {
    height: auto;
    max-width: 280px;
    margin: 0 auto;
  }
  .editorial--story .story-body {
    height: auto;
    overflow: visible;
    padding-right: 0;
    mask-image: none;
    -webkit-mask-image: none;
  }
  .editorial--story .story-body::before,
  .editorial--story .story-body::after {
    display: none;
  }
  .editorial--story .editorial__layout::after { display: none; }
}




/* ============================================================
   V3 — Hero entrance cascade (Section 11)
   Eyebrow → headline → sub → CTA stagger in on JS-ready.
   Only opacity + transform animate. Skipped under prefers-reduced-motion
   and on no-JS (the .js-ready class is added by site.js on first frame).
   ============================================================ */
html.js .hero__eyebrow,
html.js .hero__h,
html.js .hero__sub,
html.js .hero__price,
html.js .hero__cta,
html.js .page-hero p.eyebrow,
html.js .page-hero__h,
html.js .page-hero__sub,
html.js .page-hero__cta,
html.js .bhero__eyebrow,
html.js .bhero__mark,
html.js .bhero__h,
html.js .bhero__sub,
html.js .bhero__meta,
html.js .bhero .container > .reveal:last-child {
  opacity: 0;
  transform: translateY(16px);
  will-change: transform, opacity;
}
html.js-ready .hero__eyebrow,
html.js-ready .hero__h,
html.js-ready .hero__sub,
html.js-ready .hero__price,
html.js-ready .hero__cta,
html.js-ready .page-hero p.eyebrow,
html.js-ready .page-hero__h,
html.js-ready .page-hero__sub,
html.js-ready .page-hero__cta,
html.js-ready .bhero__eyebrow,
html.js-ready .bhero__mark,
html.js-ready .bhero__h,
html.js-ready .bhero__sub,
html.js-ready .bhero__meta,
html.js-ready .bhero .container > .reveal:last-child {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.9s var(--ease-in),
    transform 0.9s var(--ease-in);
}
/* Cascade timings — hero family */
html.js-ready .hero__eyebrow,
html.js-ready .page-hero p.eyebrow,
html.js-ready .bhero__eyebrow         { transition-delay: 0.20s; }
html.js-ready .bhero__mark            { transition-delay: 0.30s; }
html.js-ready .hero__h,
html.js-ready .page-hero__h,
html.js-ready .bhero__h               { transition-delay: 0.40s; }
html.js-ready .hero__sub,
html.js-ready .page-hero__sub,
html.js-ready .bhero__sub             { transition-delay: 0.60s; }
html.js-ready .hero__price,
html.js-ready .bhero__meta            { transition-delay: 0.75s; }
html.js-ready .hero__cta,
html.js-ready .page-hero__cta,
html.js-ready .bhero .container > .reveal:last-child { transition-delay: 0.85s; }

@media (prefers-reduced-motion: reduce) {
  html.js .hero__eyebrow, html.js .hero__h, html.js .hero__sub, html.js .hero__price, html.js .hero__cta,
  html.js .page-hero p.eyebrow, html.js .page-hero__h, html.js .page-hero__sub, html.js .page-hero__cta,
  html.js .bhero__eyebrow, html.js .bhero__mark, html.js .bhero__h, html.js .bhero__sub, html.js .bhero__meta,
  html.js .bhero .container > .reveal:last-child {
    opacity: 1; transform: none; transition: none;
  }
}


/* ============================================================
   V3 — Section 9D · Liquid Glass everywhere
   ============================================================ */

/* ---------- Standard glass primitives ---------- */
.glass {
  background: rgba(255, 255, 255, 0.65);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.glass--dark {
  background: rgba(0, 0, 0, 0.45);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* ---------- Card hover glass border glow ---------- */
.tier,
.build-card,
.case,
.quote,
.value-card,
.engage__card,
.tcell,
.tier-card,
.format-card,
.path-card,
.wall__card,
.fit-card,
.session,
.walkaway__card,
.price,
.learn-card,
.archive__entry {
  transition:
    transform 0.4s var(--ease-in),
    box-shadow 0.4s var(--ease-in),
    border-color 0.3s var(--ease-in);
}
.tier:hover,
.build-card:hover,
.case:hover,
.quote:hover,
.value-card:hover,
.engage__card:hover,
.tcell:hover,
.tier-card:hover,
.format-card:hover,
.path-card:hover,
.wall__card:hover,
.fit-card:hover,
.session:hover,
.walkaway__card:hover,
.price:hover,
.learn-card:hover {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18) inset,
    0 0 0 1px rgba(29, 29, 31, 0.06),
    0 18px 48px rgba(0, 0, 0, 0.08);
}
/* OPS page keeps its flat / no-shadow treatment */
body.ops-page .session:hover,
body.ops-page .price:hover,
body.ops-page .walkaway__card:hover { box-shadow: none; }

/* ---------- Floating CTA bar ---------- */
.float-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.78);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
  padding: 14px 0;
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.5s var(--ease-in),
    opacity 0.4s var(--ease-in);
  will-change: transform, opacity;
}
.float-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.float-cta__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.float-cta__label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0;
}
.float-cta__label strong { color: var(--ink); font-weight: 500; }
.float-cta__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  font-family: var(--sf);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.3s var(--ease-in), transform 0.1s var(--ease-in);
}
.float-cta__cta:hover { background: #000; }
.float-cta__cta:active { transform: scale(0.97); }
.float-cta__cta .arr { display: inline-block; transition: transform 0.3s var(--ease-in); }
.float-cta__cta:hover .arr { transform: translateX(4px); }

@media (max-width: 720px) {
  .float-cta__inner { padding: 0 20px; gap: 12px; }
  .float-cta__label { font-size: 10px; letter-spacing: 0.14em; }
  .float-cta__cta { font-size: 12px; padding: 9px 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .float-cta { transition: none; }
}

/* OPS page floating CTA — teal accent, no radius */
body.ops-page .float-cta__cta {
  background: var(--ops-teal);
  border-radius: 0;
  letter-spacing: 0.12em;
}
body.ops-page .float-cta__cta:hover { background: #0A5C5F; }

/* ---------- Liquid Glass section transition strip ---------- */
.glass-divider {
  position: relative;
  height: 60px;
  margin: -30px 0;
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  backdrop-filter: saturate(180%) blur(24px);
  z-index: 2;
  pointer-events: none;
}
.glass-divider--soft {
  background: rgba(255, 255, 255, 0.35);
}

/* ---------- Liquid Glass panel behind text on top of images ---------- */
/* Replaces the solid 85% white veil on hero backgrounds with a frosted panel.
   The .img-ph--hero-bg already includes a ::before veil; this class is for new
   text-over-image moments. */
.glass-overlay {
  position: relative;
  isolation: isolate;
}
.glass-overlay__panel {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  backdrop-filter: saturate(180%) blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  z-index: 0;
}
.glass-overlay > :not(.glass-overlay__panel) { position: relative; z-index: 1; }

/* Upgrade existing img-ph--hero-bg veil to a frosted-glass panel.
   The image still shows through but the text is readable. */
.img-ph--hero-bg::before {
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  backdrop-filter: saturate(180%) blur(8px);
}


/* ============================================================
   V3 — Section 9C · Video slots
   Hero ambient loops, Omar talking-head, video testimonials.
   ============================================================ */

/* Hero ambient video — slots into .hero / .bhero / .page-hero behind the
   content, on top of any img-ph--hero-bg placeholder. The hero veil sits
   above the video (already part of the hero ::before / img-ph--hero-bg). */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(0.8) brightness(0.95);
  /* Only shown once site.js confirms data-src is non-empty */
  opacity: 0;
  transition: opacity 0.8s var(--ease-in);
}
.hero-video.is-ready { opacity: 1; }

/* When the hero video is loaded, hide the image placeholder behind it */
.hero .hero-video.is-ready ~ .img-ph--hero-bg,
.page-hero .hero-video.is-ready ~ .img-ph--hero-bg,
.bhero .hero-video.is-ready ~ .img-ph--hero-bg { opacity: 0; transition: opacity 0.4s var(--ease-in); }

/* White veil over the video so headline text stays legible. Reuses the
   img-ph--hero-bg ::before approach but applied to the hero itself for
   pages that have a video. */
.hero--has-video::after,
.bhero--has-video::after,
.page-hero--has-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  backdrop-filter: saturate(180%) blur(8px);
  z-index: 1;
  pointer-events: none;
}
.hero--has-video > *,
.bhero--has-video > *,
.page-hero--has-video > * { position: relative; z-index: 2; }
.hero--has-video > .hero-video,
.bhero--has-video > .hero-video,
.page-hero--has-video > .hero-video { z-index: 0; }

/* Talking-head / Omar video — replaces or supplements the editorial portrait
   on About page. Same aspect ratio, same styling. */
.portrait-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 24px;
}

/* Featured video card (Proof testimonial). Large, poster + play overlay. */
.video-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: #1d1d1f;
  border: 1px solid var(--hairline);
  isolation: isolate;
}
.video-card video,
.video-card .video-card__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-card__poster {
  z-index: 1;
}
.video-card__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  backdrop-filter: saturate(180%) blur(10px);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 0;
  transition: transform 0.3s var(--ease-in), background 0.3s var(--ease-in);
}
.video-card__play::before {
  content: '';
  width: 0; height: 0;
  border-left: 18px solid var(--ink);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}
.video-card:hover .video-card__play { transform: translate(-50%, -50%) scale(1.06); }
.video-card.is-playing .video-card__poster,
.video-card.is-playing .video-card__play { opacity: 0; pointer-events: none; }
.video-card.is-playing video { z-index: 2; }

/* Slot placeholder card (no video uploaded yet) */
.video-slot {
  position: relative;
  display: block;
  width: 100%;
  background: var(--bg-grey);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.video-slot__label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px;
  font-family: var(--sf);
  font-size: 13px;
  color: var(--ink-2);
}
.video-slot__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--hairline);
  padding: 4px 8px;
  border-radius: 999px;
}
.video-slot::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, transparent 0, transparent 18px, rgba(0,0,0,0.03) 18px, rgba(0,0,0,0.03) 19px);
  pointer-events: none;
}

/* Reduced motion — ambient videos pause */
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}


/* ============================================================
   OPS editorial dividers (Brand Kit v2 photographic break)
   Full-bleed black-and-white editorial strip. Used 3x on the
   OPS page only. Restrained: no rounded corners, no shadows.
   ============================================================ */
body.ops-page .ops-divider {
  margin: 0;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-color: #1d1d1f;
  background: #0a0a0a;
  height: 130px;
}
body.ops-page .ops-divider::after {
  background-image: repeating-linear-gradient(135deg, transparent 0, transparent 18px, rgba(255,255,255,0.05) 18px, rgba(255,255,255,0.05) 19px);
}
body.ops-page .ops-divider .img-ph__tag {
  background: rgba(0,0,0,0.65);
  border-color: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.85);
}
body.ops-page .ops-divider .img-ph__label {
  color: rgba(255,255,255,0.6);
}
@media (max-width: 720px) {
  body.ops-page .ops-divider { height: 90px; }
}


/* ============================================================
   The Test — dark visual section on Build pages (Section 11B)
   ============================================================ */
.the-test-dark {
  background: #0d0d10;
  color: #fff;
}
.the-test-dark .eyebrow { color: rgba(255,255,255,0.55); }
.the-test-dark .section__h { color: #fff; }
.the-test-dark .section__lede { color: rgba(255,255,255,0.75); }
.the-test-dark .the-test__clause {
  border-top-color: rgba(255,255,255,0.15);
}
.the-test-dark .the-test__clause p { color: rgba(255,255,255,0.6); }
.the-test-dark .the-test__clause strong { color: #fff; }
.the-test-dark .img-ph--bg { opacity: 0.18; }


/* ============================================================
   V3 — Liquid Glass upgrade (Section 9D revision)
   Apple-style Liquid Glass = strong saturation + multi-layer
   inner highlights + soft bottom shadow + tinted backdrop.
   These overrides come AFTER the original glass declarations
   so they win the cascade.
   ============================================================ */
.glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.55) 100%);
  -webkit-backdrop-filter: saturate(220%) blur(28px);
  backdrop-filter: saturate(220%) blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.55),
    inset 0 -1px 0 0 rgba(0,0,0,0.05),
    0 8px 24px rgba(0,0,0,0.06);
}
.glass--dark {
  background: linear-gradient(180deg, rgba(28,28,32,0.55) 0%, rgba(10,10,12,0.45) 100%);
  -webkit-backdrop-filter: saturate(200%) blur(28px);
  backdrop-filter: saturate(200%) blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.10),
    inset 0 -1px 0 0 rgba(0,0,0,0.30),
    0 8px 24px rgba(0,0,0,0.30);
}

/* Floating CTA bar — liquid version */
.float-cta {
  background: linear-gradient(180deg, rgba(255,255,255,0.78) 0%, rgba(255,255,255,0.68) 100%);
  -webkit-backdrop-filter: saturate(220%) blur(28px);
  backdrop-filter: saturate(220%) blur(28px);
  border-top: 1px solid rgba(255,255,255,0.5);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.7),
    0 -10px 30px rgba(0, 0, 0, 0.08);
}

/* Nav glass on scroll — liquid version */
.nav.is-scrolled {
  background: linear-gradient(180deg, rgba(255,255,255,0.78) 0%, rgba(255,255,255,0.62) 100%) !important;
  -webkit-backdrop-filter: saturate(220%) blur(28px) !important;
  backdrop-filter: saturate(220%) blur(28px) !important;
  border-bottom: 1px solid rgba(255,255,255,0.45);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.7),
    inset 0 -1px 0 0 rgba(0,0,0,0.04),
    0 4px 14px rgba(0,0,0,0.04);
}

/* Pills — liquid version */
.pill__btn {
  background: linear-gradient(180deg, rgba(255,255,255,0.65) 0%, rgba(255,255,255,0.45) 100%);
  -webkit-backdrop-filter: saturate(220%) blur(20px);
  backdrop-filter: saturate(220%) blur(20px);
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.6),
    inset 0 -1px 0 0 rgba(0,0,0,0.04),
    0 4px 14px rgba(0,0,0,0.04);
}
.pill__btn:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0.78) 0%, rgba(255,255,255,0.60) 100%);
  border-color: rgba(255,255,255,0.6);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.75),
    inset 0 -1px 0 0 rgba(0,0,0,0.06),
    0 6px 18px rgba(0,0,0,0.06);
}
.pill[open] > .pill__btn {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.18),
    inset 0 -1px 0 0 rgba(0,0,0,0.30),
    0 8px 20px rgba(0,0,0,0.16);
}

/* Pill detail dropdown — liquid version */
.pill__detail {
  background: linear-gradient(180deg, rgba(255,255,255,0.82) 0%, rgba(255,255,255,0.66) 100%);
  -webkit-backdrop-filter: saturate(220%) blur(24px);
  backdrop-filter: saturate(220%) blur(24px);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.65),
    inset 0 -1px 0 0 rgba(0,0,0,0.04),
    0 14px 36px rgba(0,0,0,0.10);
}

/* Dark-variant pill detail (on dark image hero bg) */
.pill-group--dark .pill__btn {
  background: linear-gradient(180deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.08) 100%);
  border-color: rgba(255,255,255,0.28);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.20),
    inset 0 -1px 0 0 rgba(0,0,0,0.18),
    0 6px 18px rgba(0,0,0,0.16);
}
.pill-group--dark .pill__detail {
  background: linear-gradient(180deg, rgba(20,20,24,0.78) 0%, rgba(10,10,12,0.62) 100%);
  -webkit-backdrop-filter: saturate(200%) blur(24px);
  backdrop-filter: saturate(200%) blur(24px);
  border-color: rgba(255,255,255,0.14);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.12),
    inset 0 -1px 0 0 rgba(0,0,0,0.40),
    0 14px 36px rgba(0,0,0,0.36);
}

/* ============================================================
   Liquid Glass divider strip — properly liquid
   Now: a soft lens-like band with gradient masking on both
   edges so it feels like a transparent ribbon catching light.
   Heightened to 96px so the effect is visible.
   ============================================================ */
.glass-divider {
  position: relative;
  height: 96px;
  margin: -48px 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.55) 45%, rgba(255,255,255,0.55) 55%, rgba(255,255,255,0) 100%);
  -webkit-backdrop-filter: saturate(220%) blur(32px);
  backdrop-filter: saturate(220%) blur(32px);
  z-index: 2;
  pointer-events: none;
  border: 0;
}
.glass-divider::before,
.glass-divider::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.6) 50%, transparent 100%);
}
.glass-divider::before { top: 46px; }
.glass-divider::after  { bottom: 46px; background: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.06) 50%, transparent 100%); }
.glass-divider--soft {
  background:
    linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.35) 50%, rgba(255,255,255,0) 100%);
}
.glass-divider--dark {
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0) 100%);
}

/* ============================================================
   Cases — "show more" reveal animation
   ============================================================ */
.cases__more {
  display: grid;
  gap: 32px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s var(--ease-in), transform 0.5s var(--ease-in);
}
.cases__more.is-visible { opacity: 1; transform: translateY(0); }
.cases__more[hidden] { display: none; }
.cases__toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px 0;
  font: inherit;
}
.cases__toggle .arr { display: inline-block; transition: transform 0.3s var(--ease-in); }

/* ============================================================
   KILL LIST CLEANUP — remove gradient halos and grid textures
   per Brand Kit Part 3.5 (applied site-wide where they were
   used decoratively rather than informationally).
   ============================================================ */
.cta-strip {
  background: #1d1d1f !important;          /* flat ink, kill radial-gradient */
}
.cta-strip::before { display: none !important; }
.sixth {
  background: #1d1d1f !important;          /* kill radial-gradient */
}
.sixth__glow { display: none !important; } /* kill yellow halo */
.spine__row--top {
  background: transparent !important;
  border: 1px solid var(--hairline) !important;
  border-radius: 0 !important;
}
.feature-video__poster {
  background: #141416 !important;          /* flat dark, kill gradients */
}
.feature-video__poster::before { display: none !important; } /* kill grid texture */
.close-strip {
  background: #0e0e10 !important;          /* flat dark, kill radial-gradient */
}
.close-strip::before { display: none !important; } /* kill yellow glow */
/* Kill the pulsing dot animation on the OPS hero eyebrow — it was a glow effect */
.ops-hero__eyebrow .dot {
  animation: none !important;
  box-shadow: none !important;
}
.countdown__label .dot {
  box-shadow: none !important;
}
/* Subscribe focus ring — keep functional but flatten */
.subscribe__form:focus-within {
  box-shadow: 0 0 0 2px rgba(29,29,31,0.18) !important;
}


/* ============================================================
   Real images in placeholders — site-wide drop-in convention
   Add  style="background-image:url('assets/NAME.jpg')"  to any
   .img-ph figure and the photo fills it correctly. The grey
   placeholder hatch and the description labels auto-hide.
   A missing file just shows the clean grey box — no broken icon.
   ============================================================ */
.img-ph[style*="background-image"] {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.img-ph[style*="background-image"]::after { display: none; }
.img-ph[style*="background-image"] .img-ph__tag,
.img-ph[style*="background-image"] .img-ph__label { display: none; }

/* Decorative section backgrounds stay subtle behind the text. */
.img-ph--bg[style*="background-image"] { opacity: 0.50; }

/* ============================================================
   UNIVERSAL NAV INVERSION (paired with the JS in site.js)
   When the nav overlays a dark section it gets a `.nav--inverse`
   class. Text and burger lines switch to light. No per-page CSS
   needed — drop a dark section into any page and the nav adapts.
   ============================================================ */
.nav.nav--inverse .wordmark__name,
.nav.nav--inverse .nav__links a {
  color: #f5f5f7;
}
.nav.nav--inverse .nav__links a.nav__cta { color: #f5f5f7; }
.nav.nav--inverse .nav__links a:hover { color: var(--signal); }
.nav.nav--inverse .nav__burger span { background: #f5f5f7; }
/* Smooth crossfade on the color swap so it doesn't snap. */
.nav .wordmark__name,
.nav .nav__links a,
.nav .nav__burger span {
  transition:
    color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
   V6 — BUTTERY MOTION LAYER (sitewide, paired with site.js)
   ============================================================ */

/* ---- Lenis required rules. Without these the smooth-scroll
   container can mis-measure height and feel laggy. ---- */
html.lenis,
html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: clip; }
.lenis.lenis-smooth iframe { pointer-events: none; }

/* ---- Page-transition veil. Created by JS only, so a JS failure
   can never leave the page hidden. Fades out on load, in on nav. ---- */
.page-veil {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #ffffff;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.page-veil.is-hidden { opacity: 0; }

/* ---- Refined reveal. The old reveal used a 24px lift + 1.1s curve
   that "popped" sections in as you scrolled past them. This version
   is opacity-led with a short, soft lift so blocks SETTLE into place.
   Children stagger gently. Only applies where .reveal is left active
   (pages that opt out keep their own !important override).           ---- */
@media (prefers-reduced-motion: no-preference) {
  .reveal:not(.is-visible) {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }
  .reveal {
    transition:
      opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
  }
  /* override the legacy keyframe approach with a transition-based one
     (transitions don't "snap" at the end the way the keyframe did) */
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
  /* gentle child stagger for grids of cards / stats / tiers */
  .reveal.is-visible > * { --d: 0ms; }
}

/* keep no-JS fully visible */
html:not(.js) .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal:not(.is-visible) { opacity: 1 !important; transform: none !important; }
  .page-veil { display: none !important; }
}

/* ---- Promote the surfaces that move/repaint most often to their
   own compositor layer so scrolling never triggers layout repaints. ---- */
.bleed,
.split__img,
.case-teaser__img,
.about-teaser__portrait,
.hero .img-ph--hero-bg,
.tier,
.quote,
.build-card {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* ============================================================
   V6 — TESTIMONIAL TILES (sitewide, reusable)
   Replaces empty face-placeholder avatars with a small floating
   white tile carrying a yellow signature bar + the sector, then a
   role line and a location line. Applies to single testimonials
   using .quote / .solo-quote markup. (.tcell build pages add their
   own scoped copy; the home #wall block is more specific and wins.)
   ============================================================ */
@keyframes tileFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

.quote figcaption,
.solo-quote figcaption {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.quote figcaption { align-items: flex-start; }
.solo-quote figcaption { align-items: center; text-align: center; }

.quote figcaption .img-ph--avatar,
.solo-quote figcaption .img-ph--avatar {
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  margin: 0 0 2px;
  padding: 6px 5px 5px;
  border: 1px solid var(--hairline-2);
  border-radius: 12px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--sf);
  font-size: 9.5px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--ink);
  overflow: visible;
  box-shadow:
    0 10px 20px -10px rgba(0,0,0,0.30),
    0 3px 7px -4px rgba(0,0,0,0.12);
  animation: tileFloat 6.5s var(--ease-int) infinite;
}
.quote figcaption .img-ph--avatar::before,
.solo-quote figcaption .img-ph--avatar::before {
  content: "";
  display: block;
  position: absolute;
  top: 0; left: 8px; right: 8px;
  height: 2.5px;
  background: var(--signal);
  border-radius: 0 0 3px 3px;
}
.quote figcaption .img-ph--avatar::after,
.solo-quote figcaption .img-ph--avatar::after { display: none !important; }

/* role + location lines (used across home, clarity, build, diagnostic) */
.quote__role,
.quote__loc {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  line-height: 1.5;
}
.quote__role { color: var(--secondary); }
.quote__loc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-2);
}
.quote__loc::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--signal);
  border-radius: 50%;
  flex: 0 0 auto;
}
@media (prefers-reduced-motion: reduce) {
  .quote figcaption .img-ph--avatar,
  .solo-quote figcaption .img-ph--avatar { animation: none; }
}

/* ============================================================
   V7 — PREMIUM LAYER (sitewide)
   Refined detail over decoration: a scroll thread, draw-in
   underlines, considered button + image motion, elegant focus.
   ============================================================ */

/* ---- Scroll-progress thread: a hairline of brand yellow ---- */
.scroll-thread {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 101;
  pointer-events: none;
  background: transparent;
}
.scroll-thread > span {
  display: block;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, #ffcc00, #ffe375);
  box-shadow: 0 0 12px rgba(255, 204, 0, 0.55);
  will-change: transform;
}

/* ---- Text links: a yellow underline that draws in ---- */
.textlink {
  background-image: linear-gradient(var(--signal), var(--signal));
  background-size: 0% 1.5px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  padding-bottom: 3px;
  transition:
    background-size 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.3s var(--ease-int);
}
.textlink:hover { background-size: 100% 1.5px; }

/* ---- Nav links: a thin underline indicator on hover / current ---- */
.nav__links a:not(.nav__cta) { padding-bottom: 3px; }
.nav__links a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1.5px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav__links a:not(.nav__cta):hover::after,
.nav__links a:not(.nav__cta).is-current::after,
.nav__links a:not(.nav__cta)[aria-current="page"]::after { transform: scaleX(1); }
/* the Get Started CTA reads as the brand-yellow primary pill (works on
   light and dark nav alike, so no inverse-state dependency) */
.nav__links a.nav__cta {
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--signal);
  color: var(--ink) !important;
  font-weight: 500;
  transition: background 0.3s var(--ease-int), transform 0.3s var(--ease-int), box-shadow 0.3s var(--ease-int);
}
.nav__links a.nav__cta::after { display: none !important; }
.nav__links a.nav__cta:hover {
  background: #ffd84d;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -6px rgba(255, 204, 0, 0.5);
}

/* ---- Buttons: a considered lift instead of just a colour swap ---- */
.btn {
  transition:
    background 0.3s var(--ease-int),
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(0,0,0,0.30); }
.btn:active { transform: translateY(0) scale(0.985); transition-duration: 0.12s; }

/* ---- Image-led cards: a slow, restrained zoom on hover ---- */
.home-case__img,
.case-teaser__img,
.about-teaser__portrait {
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.6s var(--ease-int), filter 0.6s var(--ease-int);
  will-change: transform;
}
.home-case:hover .home-case__img,
.case-teaser:hover .case-teaser__img { transform: scale(1.035); }

/* ---- Elegant, accessible focus ring ---- */
:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
  border-radius: 3px;
}
:focus:not(:focus-visible) { outline: none; }

/* ---- Type discipline: confident tracking on the largest display sizes ---- */
.hero__h, .page-hero__h, .sixth__h, .guarantee__h, .cta-strip__h {
  font-feature-settings: "ss01", "cv01";
}

@media (prefers-reduced-motion: reduce) {
  .scroll-thread { display: none; }
  .home-case:hover .home-case__img,
  .case-teaser:hover .case-teaser__img { transform: none; }
}

/* ---- Depth on the flat dark bands: a whisper of gradient instead of
   a single flat fill reads richer and more considered. ---- */
.guarantee { background: linear-gradient(176deg, #212125 0%, #161618 78%); }
.footer { background: linear-gradient(180deg, #1b1b1e 0%, #121214 100%); }
.section--dark { background: linear-gradient(176deg, #202024 0%, #151517 100%); }

/* ============================================================
   V8 — DISPLAY TYPEFACE
   Schibsted Grotesk on the big display headings for an editorial,
   designed feel; SF Pro stays for body, UI labels, and mono for
   eyebrows. One refined voice for the statements, one for the work.
   ============================================================ */
.hero__h,
.page-hero__h,
.section__h,
.guarantee__h,
.cta-strip__h,
.sixth__h,
.bhero__h,
.work-tier__h,
.rung__h,
.bundles-2__h,
.uncertain-2__h,
.advise-card__name,
.learn-card-2__name,
.home-case__hook,
.frec__h,
.fscreen__h,
.about-teaser__body h2,
.editorial__body p.pullout,
.spine__copy h3,
.dstack__copy h3 {
  font-family: var(--display) !important;
}
/* Schibsted runs a touch wider than SF — ease the negative tracking
   slightly so large headings keep their poise. */
.hero__h, .page-hero__h, .section__h, .guarantee__h, .sixth__h, .bhero__h {
  letter-spacing: -0.025em;
}

/* ---- Arrow craft: every "→" slides with a springy ease, in concert ---- */
.arr { display: inline-block; transition: transform 0.45s var(--ease-spr); }
.textlink:hover .arr,
.btn:hover .arr,
.guarantee__link:hover .arr,
.scaleroom-card__cta:hover .arr,
.rung__cta:hover .arr,
.page-hero__cta:hover .arr,
.advise-card__cta:hover .arr,
.learn-card-2__cta:hover .arr,
.build-card:hover .arr { transform: translateX(6px); }

/* ---- Unified filmic grade: one consistent treatment so every photo
   looks shot for the brand — gently desaturated, a touch of warmth. ---- */
.img-ph[style*="background-image"],
.home-case__img,
.case-teaser__img,
.split__img,
.bleed,
.about-teaser__portrait {
  filter: saturate(0.62) contrast(1.07) brightness(0.98) sepia(0.05);
}

/* ============================================================
   V8 — SITEWIDE premium structure (so it's not just the home page)
   Ken Burns drift on interior page-hero photos + editorial section
   numbering on every page's section headers.
   ============================================================ */
@keyframes kenBurnsGlobal {
  0%   { transform: scale(1.03) translate3d(0, 0, 0); }
  100% { transform: scale(1.11) translate3d(0, -1.6%, 0); }
}
.page-hero__img {
  animation: kenBurnsGlobal 30s ease-in-out infinite alternate;
}

/* Editorial chapter numbers on section headers, sitewide */
main { counter-reset: sec; }
.section__head { position: relative; }
.section__head::before {
  counter-increment: sec;
  content: counter(sec, decimal-leading-zero);
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.26em;
  color: var(--secondary);
  margin: 0 0 18px;
}
.section__head--center::before {
  width: 40px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--hairline);
}

@media (prefers-reduced-motion: reduce) {
  .page-hero__img { animation: none; }
}
