/* TrueNorth Intell — v3.2 landing page */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--tn-bg);
  color: var(--tn-ink);
  font-family: var(--tn-font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { max-width: 72rem; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 48px; } }
.container-narrow { max-width: 56rem; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container-narrow { padding: 0 48px; } }

/* === Nav === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(251,247,239,0.85);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 240ms var(--tn-ease-out), border-color 240ms var(--tn-ease-out);
  border-bottom: 1px solid transparent;
}
.nav.scrolled { box-shadow: var(--tn-shadow-nav); border-bottom-color: var(--tn-border); }
.nav-inner { max-width: 72rem; margin: 0 auto; padding: 16px 24px; display: flex; justify-content: space-between; align-items: center; }
@media (min-width: 768px) { .nav-inner { padding: 18px 48px; } }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.brand img { height: 32px; }
.brand-text {
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
  color: var(--tn-ink);
  display: flex; flex-direction: column; line-height: 1.05;
}
.brand-text .sub { font-weight: 300; font-size: 11px; letter-spacing: 0.18em; color: var(--tn-ink-subtle); text-transform: uppercase; margin-top: 2px; }
.nav-links { display: none; gap: 32px; align-items: center; }
@media (min-width: 900px) { .nav-links { display: flex; } }
.nav-links a { color: var(--tn-ink); text-decoration: none; font-size: 13px; font-weight: 500; letter-spacing: 0.02em; transition: color 180ms; }
.nav-links a:hover { color: rgba(20,20,20,0.6); }

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 9999px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
  border: 0; cursor: pointer; text-decoration: none;
  transition: background-color 200ms var(--tn-ease-out), color 200ms var(--tn-ease-out), transform 200ms var(--tn-ease-out);
  font-family: inherit;
}
.btn-sm { padding: 10px 22px; font-size: 12px; }
.btn-ink { background: var(--tn-ink); color: var(--tn-cream); }
.btn-ink:hover { background: rgba(20,20,20,0.85); }
.btn-gold { background: var(--tn-gold); color: var(--tn-forest); }
.btn-gold:hover { background: var(--tn-gold-light); }
.btn-outline { background: transparent; color: var(--tn-ink); border: 1.5px solid var(--tn-ink); }
.btn-outline:hover { background: var(--tn-ink); color: var(--tn-cream); }
.btn .arrow { transition: transform 200ms var(--tn-ease-out); }
.btn:hover .arrow { transform: translateX(3px); }

/* === Eyebrow row === */
.eyebrow-row { display: flex; align-items: center; gap: 14px; margin-bottom: 32px; }
.eyebrow-row .hairline { flex: 1; height: 1px; background: var(--tn-border); }
.eyebrow-row .star { width: 12px; height: 12px; opacity: 0.8; }
.on-dark .eyebrow-row .hairline { background: rgba(251,247,239,0.16); }
.on-dark .tn-eyebrow { color: rgba(232,184,109,0.85); }

/* === Display heading helpers === */
.h-xl, .h-lg, .h-md, .h-sm {
  font-family: var(--tn-font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.04;
  margin: 0;
  text-wrap: balance;
}
.h-xl { font-size: clamp(2.5rem, 5.4vw + 1rem, 5.5rem); }
.h-lg { font-size: clamp(2.25rem, 3.6vw + 0.75rem, 4rem); line-height: 1.06; }
.h-md { font-size: clamp(1.75rem, 2.4vw + 0.6rem, 2.75rem); line-height: 1.1; }
.h-sm { font-size: 1.375rem; line-height: 1.25; letter-spacing: -0.01em; }
em { font-style: italic; }
.h-xl em, .h-lg em, .h-md em, .h-sm em { font-style: italic; }

/* === Body text === */
.body-lg { font-size: clamp(1.125rem, 0.6vw + 1rem, 1.375rem); line-height: 1.45; color: var(--tn-ink-muted); font-weight: 300; }
.body { font-size: 1.0625rem; line-height: 1.6; color: var(--tn-ink-muted); }
.body-sm { font-size: 0.9375rem; line-height: 1.6; color: var(--tn-ink-muted); }
.on-dark .body, .on-dark .body-lg, .on-dark .body-sm { color: rgba(251,247,239,0.65); }
.on-dark .h-xl, .on-dark .h-lg, .on-dark .h-md, .on-dark .h-sm { color: var(--tn-cream); }
.on-dark em.gold { color: var(--tn-gold-light); }

/* === Sections === */
.sec { padding: 96px 0; position: relative; }
@media (min-width: 768px) { .sec { padding: 128px 0; } }
.sec-tight { padding: 80px 0; }
@media (min-width: 768px) { .sec-tight { padding: 96px 0; } }
.sec-dark { background: var(--tn-forest); color: var(--tn-cream); }
.sec-cream-alt { background: var(--tn-cream-dark); }

/* Patterns: subtle gold-wash variant */
.sec-gold-wash {
  background:
    radial-gradient(120% 80% at 80% 0%, rgba(200,146,60,0.08) 0%, rgba(200,146,60,0) 60%),
    radial-gradient(100% 70% at 0% 100%, rgba(200,146,60,0.06) 0%, rgba(200,146,60,0) 55%),
    var(--tn-cream);
  position: relative;
}
.sec-gold-wash::before, .sec-gold-wash::after {
  content: ""; position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(200,146,60,0.35) 50%, transparent 100%);
}
.sec-gold-wash::before { top: 0; }
.sec-gold-wash::after { bottom: 0; }

/* === HERO === */
.hero {
  position: relative; overflow: hidden;
  padding: 168px 0 72px;
  display: flex; align-items: center;
}
@media (min-width: 768px) { .hero { min-height: 100svh; padding: 120px 0 96px; } }
.hero + .sec { padding-top: 64px; }
@media (min-width: 768px) { .hero + .sec { padding-top: 88px; } }

.hero .container { position: relative; z-index: 1; width: 100%; max-width: 72rem; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .hero .container { padding: 0 48px; } }

.hero-stack {
  max-width: 60rem;
  margin: 0;
  display: flex; flex-direction: column;
}

/* Hero two-column: text left, full logo fills the right (desktop >=900px).
   Below 900px the logo is hidden and the text stack renders alone — mobile unchanged. */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; gap: 56px; }
}
.hero-logo { display: none; }
@media (min-width: 900px) {
  .hero-logo { display: flex; align-items: center; justify-content: center; }
  .hero-logo img { width: 100%; max-width: 360px; height: auto; display: block; }
}

.hero-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 56px; }
.hero-meta .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--tn-gold); }
.hero-meta .label { font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--tn-ink-subtle); }

.h-hero {
  font-family: var(--tn-font-display);
  font-weight: 400;
  font-size: clamp(1.875rem, 3.2vw + 0.6rem, 3.75rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
}
.h-hero em { font-style: italic; }

.hero-headline { margin: 0; max-width: 24ch; display: flex; flex-direction: column; gap: 0.5em; }
.hero-headline .line-claim,
.hero-headline .line-relief { display: block; }
.hero-headline .line-relief em { font-style: italic; color: var(--tn-ink); }

/* Hero subhead — demoted outcome promise sitting under the new headline */
.hero-subhead {
  font-family: var(--tn-font-display);
  font-size: clamp(1.25rem, 1.6vw + 0.6rem, 1.875rem);
  font-weight: var(--tn-fw-regular);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--tn-ink-muted);
  margin: 1.75rem 0 0;
  max-width: 32ch;
  text-wrap: balance;
}
.hero-subhead em { font-style: italic; }

/* Hero CTA */
.hero-cta { margin-top: 2.5rem; }

/* === §1.5 FELT PROBLEM === */
.felt {
  position: relative;
  padding: 120px 0;
  background:
    linear-gradient(180deg,
      var(--tn-cream) 0%,
      #FAF1DF 50%,
      var(--tn-cream) 100%);
  text-align: center;
  overflow: hidden;
}
@media (min-width: 768px) { .felt { padding: 160px 0; } }
.felt::before, .felt::after {
  content: ""; position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--tn-ink-hair) 50%, transparent 100%);
}
.felt::before { top: 0; }
.felt::after { bottom: 0; }
.felt-mark {
  display: flex; align-items: center; justify-content: center;
  gap: 18px; margin-bottom: 56px;
}
.felt-mark img { width: 12px; height: 12px; opacity: 0.85; }
.felt-rule { width: 48px; height: 1px; background: rgba(200,146,60,0.5); }
.felt-line {
  font-family: var(--tn-font-display);
  font-weight: 400;
  font-size: clamp(1.875rem, 4vw + 0.5rem, 4rem);
  line-height: 1.15; letter-spacing: -0.02em;
  color: var(--tn-ink);
  margin: 0 auto;
  max-width: 22ch;
  text-wrap: balance;
}
.felt-line em { font-style: italic; color: var(--tn-ink); }

/* === Layer diagram (hero visual) === */
.layer-viz {
  position: relative;
  width: 100%; aspect-ratio: 720 / 760;
  max-width: 720px; margin: 0 auto;
}

/* === Section header === */
.sec-head { max-width: 44rem; margin-bottom: 64px; }
.sec-head .pre {
  font-family: var(--tn-font-display); font-style: italic;
  font-size: clamp(1rem, 0.4vw + 0.9rem, 1.125rem);
  color: var(--tn-ink-subtle); margin-bottom: 18px; line-height: 1.4;
}
.sec-head .pre em { color: var(--tn-ink); }
.on-dark .sec-head .pre { color: rgba(251,247,239,0.5); }
.on-dark .sec-head .pre em { color: var(--tn-gold-light); }

/* === Conversation section === */
.conv-grid {
  display: grid; gap: 56px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .conv-grid { grid-template-columns: 1.1fr 0.9fr; gap: 72px; align-items: center; }
}
.conv-body { font-size: 1.0625rem; line-height: 1.7; color: var(--tn-ink-muted); margin: 0 0 36px; max-width: 32rem; }
.conv-body em { font-style: italic; color: var(--tn-ink); font-family: var(--tn-font-display); }

/* §2 process steps */
.conv-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 56px;
  display: flex; flex-direction: column;
  gap: 32px;
  max-width: 34rem;
  border-top: 1px solid var(--tn-border);
}
.conv-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: start;
  padding-top: 28px;
  border-bottom: 1px solid var(--tn-border);
  padding-bottom: 32px;
}
.conv-step:last-child { border-bottom: 0; padding-bottom: 0; }
.conv-step-num {
  font-family: var(--tn-font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.75rem, 1.4vw + 1rem, 2.25rem);
  color: var(--tn-gold);
  line-height: 1;
  letter-spacing: -0.01em;
}
.conv-step-text {
  font-family: var(--tn-font-display);
  font-size: clamp(1.125rem, 0.6vw + 1rem, 1.375rem);
  line-height: 1.4;
  color: var(--tn-ink);
  margin: 0;
  letter-spacing: -0.005em;
  text-wrap: pretty;
}
.conv-step-text em { font-style: italic; color: var(--tn-ink); }

/* §2 centered stack */
.conv-stack {
  display: flex; flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
}
.eyebrow-center { justify-content: center; margin-bottom: 64px; }
.eyebrow-center .hairline { display: none; }
.sec-head-center { margin: 0 auto 56px; max-width: none; }
.pre-center { margin: 0 auto !important; max-width: 36rem; }
.conv-steps-center {
  margin: 0 auto 56px;
  text-align: left;
  max-width: 34rem;
  width: 100%;
}
.conv-body-center {
  text-align: center;
  margin: 0 auto 0;
  max-width: 36rem;
}
.pull-quote-center {
  margin: 64px auto 0;
  max-width: 36rem;
  text-align: center;
}
.pull-quote-block.pull-quote-center::before {
  left: 50%;
  transform: translateX(-50%);
}
.pull-quote-center .pull-quote { text-align: center; font-style: italic; }
.pull-quote {
  font-family: var(--tn-font-display); font-style: italic;
  font-size: clamp(1.5rem, 1.6vw + 0.9rem, 2.25rem);
  line-height: 1.2; letter-spacing: -0.01em;
  color: var(--tn-ink);
  border-left: 2px solid var(--tn-gold);
  padding-left: 28px;
  max-width: 32rem;
}
.on-dark .pull-quote { color: var(--tn-cream); border-left-color: var(--tn-gold); }

/* §2 Conversation: pre-headline as standfirst */
.sec-head .pre.pre-standfirst {
  font-family: var(--tn-font-display); font-style: normal;
  font-size: clamp(1.35rem, 1.1vw + 1rem, 1.75rem);
  line-height: 1.45;
  color: var(--tn-ink);
  margin-bottom: 0;
  max-width: 32rem;
  letter-spacing: -0.005em;
  text-wrap: pretty;
}
.sec-head .pre.pre-standfirst em {
  font-style: italic;
  color: var(--tn-ink);
  font-family: var(--tn-font-display);
}

/* §2 pull-quote: punctuation moment with breathing room */
.pull-quote-block {
  margin-top: 64px;
  padding-top: 36px;
  border-top: 1px solid var(--tn-border);
  position: relative;
  max-width: 34rem;
}
.pull-quote-block::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 64px; height: 1px;
  background: var(--tn-gold);
}
.pull-quote-block .pull-quote {
  border-left: 0;
  padding-left: 0;
  margin: 0;
  font-size: clamp(1.625rem, 1.4vw + 1rem, 2.125rem);
  line-height: 1.3;
  max-width: none;
}

/* Conversation illustration card */
.illust-card {
  position: relative;
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--tn-border);
  border-radius: 24px;
  padding: 36px;
  aspect-ratio: 1/1;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.on-dark .illust-card { background: rgba(251,247,239,0.06); border-color: rgba(251,247,239,0.12); }
.illust-card .meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: auto;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--tn-ink-subtle); font-weight: 600;
}
.illust-card .meta .ts { font-family: var(--tn-font-mono); letter-spacing: 0.08em; text-transform: none; }
.on-dark .illust-card .meta { color: rgba(251,247,239,0.45); }

/* === Sit-Down (v17 restructure) === */
.sec-sitdown { padding-top: clamp(96px, 9vw, 144px); padding-bottom: clamp(96px, 9vw, 144px); }
.sit-grid {
  display: grid; gap: 56px;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 980px) {
  .sit-grid { grid-template-columns: 1.15fr 0.85fr; gap: 88px; }
}
.sit-left { display: flex; flex-direction: column; }
.sit-headline {
  margin: 0 0 64px;
  max-width: 32rem;
  letter-spacing: -0.02em;
}
.sit-right { display: flex; flex-direction: column; gap: 32px; }

/* dark variants of process steps + pull quote */
.conv-steps-dark { border-top-color: rgba(251,247,239,0.16); margin-bottom: 64px; }
.conv-steps-dark .conv-step { border-bottom-color: rgba(251,247,239,0.12); }
.conv-steps-dark .conv-step-num { color: var(--tn-gold-light); }
.conv-steps-dark .conv-step-text { color: var(--tn-cream); }

.pull-quote-block.pull-quote-dark { margin-top: 16px; padding-top: 48px; }
.pull-quote-block.pull-quote-dark::before { background: var(--tn-gold-light); }
.pull-quote-dark .pull-quote {
  color: var(--tn-cream);
  font-size: clamp(1.375rem, 1.2vw + 0.9rem, 1.875rem);
  line-height: 1.3;
}

/* === Moment (passing beat — v20: centered bridge) === */
.sec-moment-pass {
  padding-top: 0;
  padding-bottom: clamp(72px, 6vw, 104px);
  margin-top: -32px;
  background: linear-gradient(180deg, var(--tn-forest) 0%, #182921 100%);
}
.sec-moment-pass .container-narrow,
.sec-moment-pass .container { max-width: 56rem; }
.sec-moment-pass .moment-stack {
  align-items: center;
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
}
.sec-moment-pass .moment-headline {
  margin: 0 0 32px;
  max-width: 30rem;
}
.sec-moment-pass .moment-body { align-items: center; }
.sec-moment-pass .moment-body p { margin-left: auto; margin-right: auto; text-align: center; }

/* === Moment (legacy long form, unused after v19) === */
.sec-moment { padding-top: clamp(96px, 9vw, 144px); padding-bottom: clamp(96px, 9vw, 144px); }
.moment-stack { display: flex; flex-direction: column; align-items: flex-start; max-width: 44rem; }
.moment-headline {
  margin: 0 0 48px;
  max-width: 30rem;
  letter-spacing: -0.02em;
}
.moment-body { display: flex; flex-direction: column; gap: 18px; }
.moment-body p { margin: 0; max-width: 36rem; color: rgba(251,247,239,0.78); }
.moment-body .moment-lede { color: var(--tn-cream); font-weight: 300; }
.moment-divider {
  width: 64px; height: 1px;
  background: rgba(232,184,109,0.4);
  margin: 56px 0 40px;
}
.moment-subhead {
  font-family: var(--tn-font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 1.4vw + 0.9rem, 2.125rem);
  line-height: 1.2; letter-spacing: -0.015em;
  color: var(--tn-gold-light);
  margin: 0 0 28px;
}
.moment-body-stack { gap: 22px; }
.moment-body-stack p { color: rgba(251,247,239,0.78); }

/* === Sit-Down: two-day spread (legacy, unused after v17) === */
.twoday {
  display: grid; gap: 28px;
  grid-template-columns: 1fr;
  margin-bottom: 64px;
}
@media (min-width: 700px) { .twoday { grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(251,247,239,0.12); border-radius: 18px; overflow: hidden; border: 1px solid rgba(251,247,239,0.10); } }
.twoday-panel { background: var(--tn-forest); padding: 40px 36px 44px; }
@media (min-width: 700px) { .twoday-panel { padding: 56px 48px; } }
.twoday-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 24px; }
.twoday-num { font-family: var(--tn-font-display); font-size: clamp(3rem, 4vw + 1rem, 4.5rem); line-height: 0.95; letter-spacing: -0.03em; color: var(--tn-gold-light); }
.twoday-of { font-family: var(--tn-font-mono); font-size: 11px; letter-spacing: 0.22em; color: rgba(251,247,239,0.4); }
.twoday-line { font-family: var(--tn-font-display); font-size: clamp(1.375rem, 1.6vw + 0.7rem, 2rem); line-height: 1.2; letter-spacing: -0.01em; color: var(--tn-cream); margin: 0; max-width: 22rem; }
.twoday-line em { color: var(--tn-gold-light); font-style: italic; }
.twoday-closer { display: flex; align-items: flex-start; gap: 24px; margin-top: 24px; }
.twoday-rule { width: 56px; height: 2px; background: var(--tn-gold); margin-top: 18px; flex-shrink: 0; }
.twoday-closer p { margin: 0; max-width: 36rem; }

/* === legacy schedule strip (unused but kept for ref) === */
.schedule {
  display: grid; gap: 1px;
  background: rgba(251,247,239,0.1);
  border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(251,247,239,0.1);
}
.schedule .col { background: var(--tn-forest); padding: 28px 24px; }
@media (min-width: 700px) { .schedule { grid-template-columns: 1fr 1fr; } }
.schedule .col-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 22px; }
.schedule .col-head .day {
  font-family: var(--tn-font-display); font-size: 30px; color: var(--tn-cream);
  letter-spacing: -0.02em;
}
.schedule .col-head .label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(232,184,109,0.7); font-weight: 600; }
.schedule .row {
  display: grid; grid-template-columns: 70px 1fr; gap: 14px; align-items: baseline;
  padding: 12px 0; border-top: 1px solid rgba(251,247,239,0.08);
  font-size: 14px;
}
.schedule .row:first-of-type { border-top: 0; }
.schedule .row .t { font-family: var(--tn-font-mono); font-size: 11px; color: var(--tn-gold-light); letter-spacing: 0.08em; }
.schedule .row .what { color: rgba(251,247,239,0.78); line-height: 1.4; }

/* Sit-down momentum bar */
.momentum {
  margin-top: 56px;
  display: grid; gap: 28px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .momentum { grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center; } }
.momentum-track {
  position: relative; height: 8px;
  background: rgba(251,247,239,0.1);
  border-radius: 9999px; overflow: hidden;
}
.momentum-fill {
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 0;
  background: linear-gradient(90deg, var(--tn-gold) 0%, var(--tn-gold-light) 100%);
  border-radius: 9999px;
  transition: width 1800ms var(--tn-ease-out);
}
.momentum.visible .momentum-fill { width: 78%; }
.momentum-ticks {
  display: flex; justify-content: space-between; margin-top: 14px;
  font-family: var(--tn-font-mono); font-size: 11px;
  color: rgba(251,247,239,0.4); letter-spacing: 0.06em;
}
.momentum-ticks .now { color: var(--tn-gold-light); }

/* === Moment === */
.moment-grid {
  display: grid; gap: 48px;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 900px) {
  .moment-grid { grid-template-columns: 1fr 1fr; gap: 72px; }
}

.desktop-mock {
  background: var(--tn-cream-dark);
  border: 1px solid var(--tn-border);
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
  font-family: var(--tn-font-mono);
  font-size: 12px;
  box-shadow: 0 24px 48px rgba(20,20,20,0.06);
}
.desktop-mock .titlebar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--tn-border);
  background: rgba(251,247,239,0.6);
}
.desktop-mock .titlebar .dots { display: flex; gap: 6px; }
.desktop-mock .titlebar .dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--tn-ink-hair); }
.desktop-mock .titlebar .path {
  font-family: var(--tn-font-mono); font-size: 11px;
  color: var(--tn-ink-subtle); letter-spacing: 0.04em;
  margin-left: 12px;
}
.desktop-mock .titlebar .sample-tag {
  margin-left: auto;
  font-family: var(--tn-font-body); font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.2em; color: var(--tn-gold);
  padding: 4px 8px; border: 1px solid rgba(200,146,60,0.4); border-radius: 9999px;
  background: rgba(200,146,60,0.08);
}
.desktop-mock .body { padding: 18px 20px; color: var(--tn-ink); display: flex; flex-direction: column; gap: 4px; }
.desktop-mock .ln { display: flex; gap: 14px; align-items: baseline; }
.desktop-mock .ln .num { color: var(--tn-ink-subtle); font-size: 11px; min-width: 18px; text-align: right; }
.desktop-mock .ln .h1 { color: var(--tn-forest); font-weight: 700; }
.desktop-mock .ln .h2 { color: var(--tn-ink); font-weight: 700; }
.desktop-mock .ln .meta { color: var(--tn-gold); }
.desktop-mock .ln .txt { color: var(--tn-ink-muted); }
.desktop-mock .ln .cursor { display: inline-block; width: 7px; height: 14px; background: var(--tn-gold); margin-left: 2px; vertical-align: -2px; animation: blink 1.05s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.desktop-mock .footer-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 16px; border-top: 1px solid var(--tn-border);
  font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--tn-ink-subtle); font-weight: 600; font-family: var(--tn-font-body);
  background: rgba(251,247,239,0.5);
}
.desktop-mock .footer-bar .live { display: flex; align-items: center; gap: 8px; }
.desktop-mock .footer-bar .live::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--tn-gold);
  box-shadow: 0 0 0 0 rgba(200,146,60,0.5);
  animation: pulse 1.8s var(--tn-ease-out) infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(200,146,60,0.45); }
  70% { box-shadow: 0 0 0 8px rgba(200,146,60,0); }
  100% { box-shadow: 0 0 0 0 rgba(200,146,60,0); }
}

/* memory ring */
.memory-ring {
  margin-top: 24px;
  display: grid; grid-template-columns: 110px 1fr; gap: 22px;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid var(--tn-border);
  border-radius: 16px;
  background: rgba(255,255,255,0.4);
}
.memory-ring .label-block .lbl { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--tn-ink-subtle); font-weight: 600; margin-bottom: 6px; }
.memory-ring .label-block .v { font-family: var(--tn-font-display); font-size: 18px; color: var(--tn-ink); line-height: 1.3; }

/* === Moment outcomes banner (v3.2 NEW) === */
.outcomes-banner {
  margin-top: 80px;
  padding: 56px 48px;
  border: 1px solid rgba(251,247,239,0.15);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(251,247,239,0.04) 0%, rgba(251,247,239,0.01) 100%);
  position: relative; overflow: hidden;
}
@media (min-width: 768px) { .outcomes-banner { padding: 72px 64px; } }
.outcomes-banner .meta-row {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(232,184,109,0.85);
}
.outcomes-banner .meta-row .hair { width: 36px; height: 1px; background: rgba(232,184,109,0.5); }
.outcomes-banner .quote {
  font-family: var(--tn-font-display); font-style: italic;
  font-size: clamp(1.875rem, 2.6vw + 1rem, 3.25rem);
  line-height: 1.15; letter-spacing: -0.015em;
  color: var(--tn-cream);
  text-wrap: balance;
}
.outcomes-banner .quote em.gold { color: var(--tn-gold-light); font-style: italic; }
.outcomes-closer {
  margin-top: 36px;
  font-size: 1rem; line-height: 1.65;
  color: rgba(251,247,239,0.55);
  max-width: 36rem;
}
.outcomes-closer em { color: var(--tn-cream); font-style: italic; }

/* === Patterns === */
.pentagon-wrap {
  position: relative;
  width: 100%; max-width: 520px; aspect-ratio: 1/1; margin: 0 auto;
}
.industry-list {
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .industry-list { grid-template-columns: 1fr 1fr; } }
.industry {
  display: grid; grid-template-columns: 28px 1fr; gap: 16px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid var(--tn-border);
}
.industry:last-child { border-bottom: 1px solid var(--tn-border); }
.industry .num {
  font-family: var(--tn-font-display); font-size: 18px;
  color: var(--tn-gold); letter-spacing: -0.02em;
}
.industry .name { font-size: 14px; line-height: 1.5; color: var(--tn-ink); font-weight: 500; }
.industry .name .sub { display: block; color: var(--tn-ink-subtle); font-weight: 400; margin-top: 2px; font-size: 12.5px; }

/* === Who Am I (v18) === */
.sec-whoami { padding-top: clamp(96px, 9vw, 144px); padding-bottom: clamp(96px, 9vw, 144px); }
.whoami-stack {
  display: flex; flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 38rem;
  margin: 0 auto;
}
.whoami-portrait {
  margin: 24px 0 40px;
  width: clamp(220px, 38vw, 320px);
  aspect-ratio: 1 / 1;
}
.portrait-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  overflow: hidden;
  background: var(--tn-cream-dark);
  border: 1px solid var(--tn-border);
  box-shadow: 0 32px 64px -24px rgba(20,20,20,0.18);
  isolation: isolate;
}
.portrait-frame img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
  filter: saturate(0.55) contrast(0.94) brightness(0.96);
  transform: scale(2.2);
  transform-origin: 50% 52%;
}
.portrait-frame .portrait-grade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28,42,38,0.10) 0%, rgba(20,20,20,0.04) 60%, rgba(232,184,109,0.10) 100%),
    radial-gradient(120% 90% at 50% 30%, transparent 50%, rgba(20,20,20,0.18) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.whoami-name-block { margin-bottom: 40px; }
.whoami-name {
  font-family: var(--tn-font-display);
  font-weight: 400;
  font-size: clamp(1.75rem, 1.4vw + 1rem, 2.5rem);
  line-height: 1.05; letter-spacing: -0.02em;
  color: var(--tn-ink);
  margin: 0 0 8px;
}
.whoami-role {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--tn-ink-subtle);
  margin: 0;
}

.whoami-body { display: flex; flex-direction: column; gap: 22px; max-width: 36rem; }
.whoami-body p {
  margin: 0;
  font-size: 1.0625rem; line-height: 1.7;
  color: var(--tn-ink-muted);
  text-align: left;
}
.whoami-body p em {
  color: var(--tn-ink);
  font-style: italic;
  font-family: var(--tn-font-display);
}

.whoami-tags {
  list-style: none; padding: 0;
  margin: 48px 0 0;
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: 8px 6px;
  max-width: 40rem;
}
.whoami-tags li {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--tn-ink-subtle);
  padding: 7px 14px;
  border: 1px solid var(--tn-border);
  border-radius: 999px;
  background: rgba(255,255,255,0.4);
  white-space: nowrap;
}

/* Invitation: dark-bg eyebrow override (same plain treatment as light) */
.invitation .on-dark-eyebrow,
.on-dark .tn-eyebrow.on-dark-eyebrow { color: rgba(232,184,109,0.85); }

/* === Why Me (legacy, unused after v18) === */
.whyme-grid {
  display: grid; gap: 56px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .whyme-grid { grid-template-columns: 0.85fr 1.15fr; gap: 72px; align-items: start; }
}
.logan-card {
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--tn-border);
  border-radius: 24px;
  padding: 40px 32px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  position: relative;
}
.logan-fig-wrap {
  width: 100%; aspect-ratio: 4/5; max-width: 280px;
  border-radius: 16px;
  background: var(--tn-cream-dark);
  display: flex; align-items: flex-end; justify-content: center;
  margin-bottom: 28px;
  overflow: hidden;
  position: relative;
}
.logan-card .name { font-family: var(--tn-font-display); font-size: 28px; line-height: 1.1; color: var(--tn-ink); margin-bottom: 6px; letter-spacing: -0.01em; }
.logan-card .role { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--tn-ink-subtle); font-weight: 600; }
.logan-card .role-mark { width: 10px; height: 10px; vertical-align: -1px; margin: 0 8px; opacity: 0.7; }

.stat-row {
  display: grid; gap: 0;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--tn-border);
  border-bottom: 1px solid var(--tn-border);
  margin-bottom: 36px;
}
@media (min-width: 700px) { .stat-row { grid-template-columns: repeat(3, 1fr); } }
.stat {
  padding: 28px 0;
  border-top: 1px solid var(--tn-border);
}
.stat:first-child { border-top: 0; }
@media (min-width: 700px) {
  .stat { border-top: 0; border-left: 1px solid var(--tn-border); padding: 4px 28px; }
  .stat:first-child { border-left: 0; padding-left: 0; }
  .stat:last-child { padding-right: 0; }
}
.stat .num { font-family: var(--tn-font-display); font-size: clamp(2.25rem, 2.4vw + 1rem, 3rem); line-height: 1; color: var(--tn-ink); letter-spacing: -0.02em; margin-bottom: 12px; }
.stat .num em { color: var(--tn-gold); font-style: italic; }
.stat .lbl { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--tn-ink-subtle); font-weight: 600; line-height: 1.4; }
.stat .lbl-body { font-size: 13.5px; line-height: 1.5; color: var(--tn-ink-muted); margin-top: 4px; letter-spacing: 0; text-transform: none; font-weight: 400; }

.whyme-body { font-size: 1.0625rem; line-height: 1.7; color: var(--tn-ink-muted); max-width: 36rem; }
.whyme-body em { color: var(--tn-ink); font-style: italic; }

/* === Invitation === */
.invitation {
  text-align: center;
  padding: 128px 0 112px;
}
@media (min-width: 768px) { .invitation { padding: 160px 0 128px; } }
.invitation .head { max-width: 38rem; margin: 0 auto 40px; }
.invitation .body-line {
  font-size: 1.125rem; line-height: 1.6; color: rgba(251,247,239,0.65);
  max-width: 36rem; margin: 0 auto 48px;
}
.invitation .body-line em { color: var(--tn-cream); font-style: italic; }
.invitation .ctas { display: flex; flex-wrap: wrap; gap: 16px 24px; justify-content: center; align-items: center; }
.invitation .secondary {
  font-family: var(--tn-font-mono); font-size: 13px; letter-spacing: 0.04em;
  color: rgba(251,247,239,0.55); text-decoration: none;
  transition: color 200ms;
}
.invitation .secondary:hover { color: var(--tn-gold-light); }
.invitation .star-frame { display: flex; justify-content: center; gap: 8px; align-items: center; margin-bottom: 24px; }
.invitation .star-frame .hr { width: 36px; height: 1px; background: rgba(232,184,109,0.5); }
.invitation .star-frame img { width: 14px; height: 14px; }
.invitation .star-frame .lbl { font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(232,184,109,0.85); }

/* === Footer === */
.footer {
  background: var(--tn-forest); color: rgba(251,247,239,0.55);
  border-top: 1px solid rgba(251,247,239,0.1);
  padding: 48px 0;
}
.footer-inner { display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; align-items: center; }
.footer .brand-text { color: var(--tn-cream); }
.footer .brand-text .sub { color: rgba(251,247,239,0.45); }
.footer img { height: 32px; filter: brightness(0) invert(1); opacity: 0.85; }
.footer .legal { font-size: 12px; color: rgba(251,247,239,0.4); letter-spacing: 0.04em; }

/* === Reveal === */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 800ms var(--tn-ease-out), transform 800ms var(--tn-ease-out); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 80ms; }
.reveal-d2 { transition-delay: 160ms; }
.reveal-d3 { transition-delay: 240ms; }

/* === SVG illustration shared === */
.tn-svg { width: 100%; height: 100%; display: block; }
.tn-svg .stroke { stroke: var(--tn-ink); stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.tn-svg .stroke-cream { stroke: var(--tn-cream); }
.tn-svg .stroke-gold { stroke: var(--tn-gold); }
.tn-svg .fill-ink { fill: var(--tn-ink); }
.tn-svg .fill-gold { fill: var(--tn-gold); }
.tn-svg .fill-cream { fill: var(--tn-cream); }
.tn-svg .fill-forest { fill: var(--tn-forest); }
.tn-svg .dim { opacity: 0.4; }
.tn-svg .faint { opacity: 0.2; }

/* === Hairline divider rule === */
.hr-pad { padding: 0; border: 0; height: 1px; background: var(--tn-border); margin: 0; }
.on-dark + .sec, .sec + .sec-dark, .sec-dark + .sec { /* sequential anchors */ }

/* utility */
.italic { font-style: italic; }
.gold-text { color: var(--tn-gold); }

/* === MOBILE OVERRIDES (< 768px) === */
@media (max-width: 767px) {
  /* Header: hide tagline so brand text fits one line, tighten nav padding */
  .brand-text .sub { display: none; }
  .brand img { height: 28px; }
  .brand-text { font-size: 12px; letter-spacing: 0.04em; }
  .nav-inner { padding: 14px 18px; gap: 12px; }

  /* Drop nav CTA on mobile — hero CTA + invitation CTA cover it; prevents
     visual collision with the in-hero "Book a conversation" button */
  .nav .btn-sm { display: none; }

  /* Hero: fill viewport, vertically center — kills bleed into next section */
  .hero {
    min-height: 100svh;
    padding: 112px 0 48px;
    align-items: center;
    justify-content: center;
  }

  /* Hero headline scaling for narrow widths — bigger to anchor the larger hero */
  .h-hero { font-size: clamp(2.5rem, 11vw, 3.5rem); }
  .hero-headline { gap: 0.4em; max-width: none; }

  /* Hero subhead: tighter wrap + breathing line-height so the regular→italic break reads clean */
  .hero-subhead {
    font-size: clamp(1.125rem, 1.4vw + 0.8rem, 1.5rem);
    line-height: 1.45;
    max-width: 30ch;
    margin-top: 1.5rem;
  }

  .hero-cta { margin-top: 2rem; }

}
