:root {
  --paper: #ffffff;
  --paper-soft: #fbfaf7;
  --cream: #efeae0;
  --cream-2: #e7e1d5;
  --cream-3: #dbd4ca;
  --ink: #1c1917;
  --ink-soft: #24231f;
  --warm-line: #e3ded3;
  --warm-line-strong: #d6d3d1;
  --warm-text: #a6a09b;
  --warm-text-strong: #625d54;
  --warm-headline: #a6a09b;
  --clay: #ff6900;
  --clay-dark: #e35e00;
  --black: #010105;
  --black-soft: #14140f;
  --serif: "Inter Tight", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --quote: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --tight: "Inter Tight", "Inter", system-ui, sans-serif;
  --wrap: 1240px;
  --gutter: 24px;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow-soft: 0 22px 48px -34px rgba(28, 25, 23, .26);
  --shadow-pop: 0 18px 40px -28px rgba(28, 25, 23, .22);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 94px;
  -webkit-text-size-adjust: 100%;
}

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

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 200;
  transform: translateY(-160%);
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-family: var(--tight);
}

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

.wrap {
  width: min(100% - (var(--gutter) * 2), var(--wrap));
  margin-inline: auto;
}

.display {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-optical-sizing: auto;
}

.display > span {
  display: block;
}

.tone-ink {
  display: block;
  color: var(--ink);
  text-wrap: balance;
}

.tone-warm {
  display: block;
  color: var(--warm-headline);
  text-wrap: balance;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--warm-text);
  font-family: var(--tight);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #817d73;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--tight);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform .28s var(--ease),
    background-color .22s ease,
    border-color .22s ease,
    color .22s ease,
    box-shadow .28s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

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

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--clay);
}

.btn-ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--warm-line-strong);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--ink);
}

.btn-small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 14px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  border-bottom: 1px solid transparent;
  transition: background-color .32s var(--ease), border-color .32s var(--ease), box-shadow .32s var(--ease);
}

.site-header.scrolled,
.site-header.menu-active {
  background: rgba(255, 255, 255, .84);
  border-color: rgba(230, 225, 214, .9);
  backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 10px 30px -26px rgba(28, 25, 23, .3);
}

.nav-shell {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  width: 28px;
  height: 28px;
}

.brand-word {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 550;
  line-height: 1;
}

.desktop-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-item {
  position: relative;
}

.nav-link {
  border: 0;
  background: transparent;
  padding: 10px 4px;
  font-family: var(--tight);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.mega-panel {
  position: absolute;
  top: calc(100% + 13px);
  left: 50%;
  width: 342px;
  padding: 10px;
  border: 1px solid var(--warm-line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .97);
  box-shadow: var(--shadow-pop);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity .24s var(--ease), transform .24s var(--ease), visibility .24s;
}

.nav-item:hover .mega-panel,
.nav-item:focus-within .mega-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mega-row {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px;
  border-radius: var(--radius);
  transition: background-color .2s ease;
}

.mega-row:hover,
.mega-row:focus-visible {
  background: var(--cream);
}

.mega-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--ink);
}

.mega-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.accent-row .mega-icon {
  background: var(--clay);
  color: #fff;
}

.mega-row strong {
  display: block;
  margin-bottom: 2px;
  font-family: var(--tight);
  font-size: 14px;
  line-height: 1.2;
}

.mega-row small {
  display: block;
  color: var(--warm-text);
  font-size: 12px;
  line-height: 1.35;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-note {
  color: var(--warm-text);
  font-family: var(--tight);
  font-size: 14px;
  font-weight: 600;
}

.nav-note:hover {
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--warm-line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .22s var(--ease), opacity .22s var(--ease);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero {
  padding-top: 148px;
  padding-bottom: 88px;
  text-align: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  padding: 8px 16px 8px 13px;
  border: 1px solid var(--warm-line);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(28, 25, 23, .05);
  color: var(--warm-text-strong);
  font-family: var(--tight);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clay);
  box-shadow: 0 0 0 0 rgba(255, 105, 0, .36);
  animation: livePulse 2.2s infinite;
}

@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 105, 0, .36); }
  72% { box-shadow: 0 0 0 9px rgba(255, 105, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 105, 0, 0); }
}

.hero-title {
  max-width: 900px;
  margin-inline: auto;
  font-size: clamp(40px, 5.6vw, 67px);
  letter-spacing: -0.028em;
}

.ma-lock {
  display: inline;
  white-space: nowrap;
  font-variant-ligatures: contextual;
  font-feature-settings: "kern" 1;
}

.hero-copy {
  max-width: 660px;
  margin: 26px auto 0;
  color: var(--warm-text);
  font-size: 16px;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-board {
  margin: 64px auto 0;
  max-width: 1040px;
  text-align: left;
  border: 1px solid var(--warm-line);
  border-radius: var(--radius-lg);
  background: var(--paper-soft);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.board-top {
  min-height: 84px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--warm-line);
  background: #fff;
}

.board-label,
.board-status,
.pane-head,
.micro-chart-head span,
.board-metrics span {
  font-family: var(--tight);
}

.board-label {
  margin: 0 0 5px;
  color: var(--warm-text);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.board-top h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 450;
  line-height: 1.1;
}

.board-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: max-content;
  color: var(--clay);
  font-size: 12px;
  font-weight: 700;
}

.deal-workspace {
  display: grid;
  grid-template-columns: 1.42fr .72fr;
  gap: 1px;
  background: var(--warm-line);
}

.deal-pane {
  background: #fff;
}

.main-pane {
  padding: 18px 20px 22px;
}

.side-pane {
  padding: 20px;
}

.pane-head,
.mandate-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 106px 98px;
  gap: 12px;
  align-items: center;
}

.pane-head {
  padding: 0 0 10px;
  color: var(--warm-text);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.pane-head span:first-child {
  grid-column: 1 / span 2;
}

.mandate-row {
  padding: 13px 0;
  border-top: 1px solid var(--warm-line);
}

.bot-code {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--clay);
  font-family: var(--tight);
  font-size: 12px;
  font-weight: 800;
}

.mandate-row.hot .bot-code {
  background: var(--clay);
  color: #fff;
}

.mandate-row strong {
  display: block;
  overflow: hidden;
  color: var(--ink);
  font-family: var(--tight);
  font-size: 14px;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mandate-row small {
  display: block;
  margin-top: 3px;
  overflow: hidden;
  color: var(--warm-text);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stage-pill {
  justify-self: start;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--warm-text-strong);
  font-family: var(--tight);
  font-size: 11px;
  font-weight: 700;
}

.stage-pill.warm {
  background: #f3ded2;
  color: var(--clay-dark);
}

.stage-pill.closed {
  background: #e4eee5;
  color: #2f6848;
}

.range {
  justify-self: end;
  color: var(--ink);
  font-family: var(--tight);
  font-size: 13px;
  font-weight: 800;
}

.micro-chart-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.micro-chart-head span {
  color: var(--warm-text);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.micro-chart-head strong {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 450;
}

.micro-chart {
  width: 100%;
  height: 126px;
  margin-top: 16px;
}

.board-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.board-metrics div {
  min-height: 84px;
  padding: 14px;
  border: 1px solid var(--warm-line);
  border-radius: var(--radius);
  background: var(--paper-soft);
}

.board-metrics strong {
  display: block;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 450;
  line-height: 1;
}

.board-metrics span {
  display: block;
  margin-top: 8px;
  color: var(--warm-text);
  font-size: 12px;
  line-height: 1.35;
}

.stats {
  padding-top: 76px;
  padding-bottom: 164px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.stat-card {
  display: flex;
  flex-direction: column;
  min-height: 152px;
  padding: 20px 18px 16px;
  border-top: 1.5px solid var(--warm-line-strong);
  background: #fff;
  transition: border-color .26s ease;
}

.stat-card:hover {
  border-top-color: var(--clay);
}

.stat-num {
  display: flex;
  align-items: baseline;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 54px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-num em {
  color: var(--clay);
  font-style: normal;
}

.stat-card p {
  margin: 11px 0 0;
  color: var(--warm-text-strong);
  font-family: var(--tight);
  font-size: 13px;
  font-weight: 700;
}

.stat-card svg {
  width: 100%;
  height: 40px;
  margin-top: auto;
  padding-top: 16px;
  overflow: visible;
}

.stat-card path {
  fill: none;
  stroke: var(--clay);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section,
.pillar-section {
  padding-top: 92px;
  padding-bottom: 92px;
}

.section-head {
  max-width: 760px;
}

.section-head .display,
.chart-copy .display {
  font-size: clamp(33px, 4.6vw, 56px);
}

.section-copy,
.pillar-copy p,
.final-inner p,
.article-page p,
.legal-page p {
  color: var(--warm-text-strong);
  font-size: 17px;
  line-height: 1.72;
}

.section-copy {
  max-width: 690px;
  margin: 24px 0 0;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 50px;
}

.cap-card,
.process-step,
.founder-card,
.quote-card {
  border-radius: var(--radius);
}

.cap-card {
  min-height: 236px;
  padding: 22px;
  border: 1px solid var(--warm-line);
  background: #fff;
  transition: transform .32s var(--ease), border-color .24s ease, box-shadow .32s var(--ease);
}

.cap-card:hover {
  transform: translateY(-3px);
  border-color: var(--warm-line-strong);
  box-shadow: var(--shadow-pop);
}

.cap-card span {
  display: block;
  margin-bottom: 35px;
  color: var(--warm-headline);
  font-family: var(--tight);
  font-size: 12px;
  font-weight: 800;
}

.cap-card h3,
.process-step h3,
.founder-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 450;
  line-height: 1.08;
}

.cap-card p,
.process-step p,
.founder-card small {
  margin: 18px 0 0;
  color: var(--warm-text);
  font-size: 13px;
  line-height: 1.55;
}

.cap-card.is-clay {
  background: var(--clay);
  border-color: var(--clay);
  color: #fff;
}

.cap-card.is-clay span,
.cap-card.is-clay p {
  color: rgba(255, 255, 255, .8);
}

.pillar-layout {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 72px;
  align-items: center;
}

.pillar-layout.reverse {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
}

.pillar-layout.reverse .pillar-copy {
  order: 2;
}

.pillar-copy {
  position: relative;
  padding-left: 38px;
}

.pillar-copy .display {
  font-size: clamp(34px, 4.8vw, 58px);
}

.pillar-copy p {
  margin: 24px 0 0;
}

.scroll-rail {
  position: absolute;
  left: 0;
  top: 7px;
  bottom: 7px;
  width: 2px;
  background: var(--warm-line);
}

.scroll-rail span {
  position: absolute;
  left: -1px;
  top: 0;
  width: 4px;
  height: 34%;
  border-radius: 4px;
  background: var(--clay);
  transition: top .2s linear;
}

.tight-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 30px;
  padding: 0;
  list-style: none;
}

.tight-list li {
  position: relative;
  padding-left: 25px;
  color: var(--warm-text-strong);
  font-family: var(--tight);
  font-size: 15px;
  line-height: 1.48;
}

.tight-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 11px;
  height: 1px;
  background: var(--clay);
}

.product-frame {
  border: 1px solid var(--warm-line);
  border-radius: var(--radius-lg);
  background: var(--paper-soft);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.product-toolbar {
  min-height: 58px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--warm-line);
  background: #fff;
  font-family: var(--tight);
  font-size: 13px;
  font-weight: 700;
}

.product-toolbar span {
  color: var(--warm-text);
}

.product-toolbar strong {
  color: var(--ink);
}

.trend-svg {
  display: block;
  width: 100%;
  height: auto;
  padding: 12px 20px 18px;
}

.process-section {
  padding-top: 86px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 46px;
}

.process-step {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--warm-line);
  background: var(--paper-soft);
}

.process-step span {
  display: block;
  margin-bottom: 48px;
  color: var(--clay);
  font-family: var(--tight);
  font-size: 12px;
  font-weight: 800;
}

.market-chart {
  display: grid;
  grid-template-columns: .58fr 1fr;
  gap: 54px;
  align-items: end;
  padding-top: 72px;
  padding-bottom: 112px;
}

.chart-copy .display {
  max-width: 480px;
}

.chart-panel {
  border-top: 1px solid var(--warm-line);
  padding-top: 28px;
}

.chart-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.chart-stat-row div {
  border-left: 1px solid var(--warm-line);
  padding-left: 16px;
}

.chart-stat-row strong {
  display: block;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 450;
  line-height: 1;
}

.chart-stat-row span {
  display: block;
  margin-top: 7px;
  color: var(--warm-text);
  font-family: var(--tight);
  font-size: 12px;
  font-weight: 700;
}

.large-chart {
  height: 280px;
  width: 100%;
}

.axis {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  color: var(--warm-text);
  font-family: var(--tight);
  font-size: 12px;
  font-weight: 700;
}

.testimonial-wall {
  padding: 104px 0;
  background: var(--black);
  color: #fff;
}

.testimonial-wall .tone-ink {
  color: #fff;
}

.testimonial-wall .tone-warm {
  color: #6d6a62;
}

.dark-copy {
  color: #aaa49a;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 50px;
}

.quote-card {
  min-height: 320px;
  margin: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid #2a2925;
  background: var(--black-soft);
}

.quote-card blockquote {
  margin: 0;
  color: #edeae2;
  font-family: var(--quote);
  font-size: 22px;
  line-height: 1.42;
}

.quote-card figcaption {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: auto;
  padding-top: 32px;
}

.quote-avatar {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 50%;
  background: #24231f;
  color: var(--clay);
  font-family: var(--tight);
  font-weight: 800;
}

.quote-card strong,
.quote-card small {
  display: block;
  font-family: var(--tight);
}

.quote-card strong {
  font-size: 14px;
}

.quote-card small {
  margin-top: 2px;
  color: #8e8a82;
  font-size: 12px;
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 50px;
  max-width: 940px;
}

.founder-card {
  padding: 0 0 8px;
}

.founder-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 22%;
  border: 1px solid var(--warm-line);
  border-radius: var(--radius);
  background: var(--cream-2);
}

.founder-card h3 {
  margin-top: 18px;
  font-family: var(--tight);
  font-size: 17px;
  font-weight: 800;
}

.founder-card p {
  margin: 4px 0 0;
  color: var(--warm-text-strong);
  font-family: var(--tight);
  font-size: 14px;
  font-weight: 700;
}

.founder-card small {
  display: block;
}

.final-cta {
  padding-top: 40px;
  padding-bottom: 112px;
  text-align: center;
}

.final-inner {
  max-width: none;
  margin-inline: auto;
  padding: clamp(52px, 6.5vw, 92px) clamp(24px, 5vw, 64px);
  border: 1px solid var(--warm-line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(125% 130% at 50% -10%, #ffffff 0%, var(--paper-soft) 44%, var(--cream) 100%);
}

.final-inner .eyebrow,
.final-inner p {
  margin-inline: auto;
}

.final-inner .display {
  font-size: clamp(40px, 5.6vw, 68px);
}

.final-inner p {
  max-width: 620px;
  margin: 24px auto 30px;
}

.site-footer {
  padding: 92px 0 30px;
  background: var(--black);
  color: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) repeat(4, minmax(120px, .8fr));
  gap: 34px;
}

.dark-brand .brand-word {
  color: #fff;
}

.footer-brand p {
  max-width: 330px;
  margin: 24px 0 0;
  color: #938f86;
  font-size: 14px;
  line-height: 1.65;
}

.footer-col h2 {
  margin: 0 0 15px;
  color: #77736b;
  font-family: var(--tight);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  padding: 6px 0;
  color: #d8d4cc;
  font-family: var(--tight);
  font-size: 14px;
  transition: color .2s ease;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: #fff;
}

.social-col a:hover,
.social-col a:focus-visible {
  color: var(--clay);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 76px;
  padding-top: 24px;
  border-top: 1px solid #292824;
  color: #858178;
  font-family: var(--tight);
  font-size: 13px;
}

.footer-bottom nav {
  display: flex;
  gap: 22px;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #fff;
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 70;
  width: min(650px, calc(100% - 32px));
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px solid rgba(230, 225, 214, .92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .88);
  box-shadow: var(--shadow-pop);
  backdrop-filter: blur(18px) saturate(160%);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(130%);
  transition: opacity .34s var(--ease), transform .42s var(--ease);
}

.sticky-cta.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.sticky-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: var(--radius);
  background: var(--ink);
}

.sticky-icon img {
  width: 22px;
  height: 22px;
}

.sticky-main {
  flex: 1;
  min-width: 0;
}

.sticky-main label {
  display: block;
  color: var(--warm-text);
  font-family: var(--tight);
  font-size: 12px;
  font-weight: 700;
}

.sticky-main input {
  width: 100%;
  padding: 1px 0 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--tight);
  font-size: 15px;
  font-weight: 700;
}

.sticky-main input::placeholder {
  color: var(--warm-text-strong);
  font-weight: 500;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

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

.reveal[data-d="1"] { transition-delay: .06s; }
.reveal[data-d="2"] { transition-delay: .12s; }
.reveal[data-d="3"] { transition-delay: .18s; }
.reveal[data-d="4"] { transition-delay: .24s; }

.no-anim .reveal,
.no-anim .reveal[data-d] {
  opacity: 1;
  transform: none;
  transition: none;
}

.page-hero {
  max-width: 820px;
  padding-top: 152px;
  padding-bottom: 42px;
}

.page-hero .display {
  font-size: clamp(42px, 6vw, 74px);
}

.page-back {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--warm-text);
  font-family: var(--tight);
  font-size: 14px;
  font-weight: 700;
}

.page-back:hover {
  color: var(--ink);
}

.article-page,
.legal-page {
  max-width: 760px;
  padding-bottom: 82px;
}

.article-page p,
.legal-page p {
  margin: 0 0 22px;
}

.article-page .lead {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.45;
}

.article-page h2,
.legal-page h2 {
  margin: 48px 0 14px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 450;
  line-height: 1.12;
}

.legal-page h3 {
  margin: 28px 0 9px;
  font-family: var(--tight);
  font-size: 16px;
  font-weight: 800;
}

.notice {
  padding: 16px 18px;
  border: 1px solid var(--warm-line);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--warm-text-strong);
  font-family: var(--tight);
  font-size: 14px;
}

.accent-link {
  color: var(--clay);
  font-weight: 700;
}

@media (max-width: 1180px) {
  .capability-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pillar-layout,
  .pillar-layout.reverse {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .pillar-layout.reverse .pillar-copy {
    order: 0;
  }

  .market-chart {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  :root {
    --gutter: 20px;
  }

  .desktop-nav,
  .nav-note {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    inset: 74px 0 0;
    z-index: 75;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 18px var(--gutter) 28px;
    background: rgba(255, 255, 255, .97);
    border-top: 1px solid var(--warm-line);
    backdrop-filter: blur(18px) saturate(160%);
    transform: translateY(-16px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .24s var(--ease), transform .24s var(--ease), visibility .24s;
  }

  .mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-menu a {
    padding: 18px 0;
    border-bottom: 1px solid var(--warm-line);
    font-family: var(--serif);
    font-size: 31px;
    line-height: 1.05;
  }

  .hero {
    padding-top: 126px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .deal-workspace {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .quote-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .market-chart {
    padding-bottom: 86px;
  }

  .chart-stat-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 16px;
  }

  .nav-shell {
    height: 70px;
  }

  .brand-word {
    font-size: 24px;
  }

  .nav-actions .btn {
    display: none;
  }

  .mobile-menu {
    inset: 70px 0 0;
  }

  .hero {
    padding-top: 112px;
  }

  .hero-kicker {
    justify-content: center;
    font-size: 13px;
  }

  .hero-copy,
  .section-copy,
  .pillar-copy p,
  .final-inner p,
  .article-page p,
  .legal-page p {
    font-size: 16px;
  }

  .hero-actions,
  .final-inner .btn {
    width: 100%;
  }

  .hero-actions .btn,
  .final-inner .btn {
    width: 100%;
  }

  .board-top,
  .product-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .pane-head {
    display: none;
  }

  .mandate-row {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
  }

  .stage-pill,
  .range {
    grid-column: 2;
    justify-self: start;
  }

  .stats-grid,
  .capability-grid,
  .process-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .founder-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 360px;
  }

  .stat-card {
    min-height: 150px;
  }

  .section,
  .pillar-section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .pillar-copy {
    padding-left: 22px;
  }

  .quote-card {
    min-height: 270px;
  }

  .quote-card blockquote {
    font-size: 20px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 54px;
  }

  .sticky-cta {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    transform: translateY(130%);
  }

  .sticky-cta.show {
    transform: translateY(0);
  }

  .sticky-icon {
    display: none;
  }

  .sticky-main input {
    font-size: 14px;
  }

  .page-hero {
    padding-top: 118px;
  }

  .page-hero .display {
    font-size: 46px;
  }

  .article-page .lead {
    font-size: 23px;
  }
}

@media (max-width: 390px) {
  .btn {
    white-space: normal;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

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