:root {
  --forest: #0b3b2e;
  --forest-deep: #06291f;
  --emerald: #00703c;
  --gold: #d4af37;
  --gold-soft: #ead587;
  --ivory: #f5f2e8;
  --paper: #fbfaf6;
  --ink: #16221c;
  --muted: #607067;
  --line: #d5ddd7;
  --soft-green: #e7eee9;
  --white: #ffffff;
  --sans: "Aptos", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --serif: Iowan Old Style, "Palatino Linotype", Palatino, Georgia, serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --shadow: 0 30px 80px rgba(4, 35, 25, 0.12);
}

* {
  box-sizing: border-box;
}

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

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

body::selection,
*::selection {
  background: var(--gold);
  color: var(--forest-deep);
}

a,
button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  border-radius: 0;
}

button {
  color: inherit;
}

svg {
  display: block;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 1000;
  padding: 11px 16px;
  background: var(--gold);
  color: var(--forest-deep);
  font-weight: 750;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.section-shell {
  width: min(1280px, calc(100% - 64px));
  margin-inline: auto;
}

.section-block {
  position: relative;
  padding-block: clamp(96px, 10vw, 152px);
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--emerald);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--gold-soft);
}

.micro-label {
  color: var(--emerald);
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  padding: 14px 0;
  pointer-events: none;
}

.nav-shell {
  width: min(1360px, calc(100% - 32px));
  min-height: 68px;
  margin-inline: auto;
  padding: 9px 10px 9px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(234, 213, 135, 0.24);
  background: rgba(6, 41, 31, 0.91);
  box-shadow: 0 10px 34px rgba(0, 20, 14, 0.2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ivory);
  text-decoration: none;
}

.logo-mark {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.15;
}

.brand-copy {
  display: flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1;
}

.brand-copy strong {
  font-size: 1.03rem;
  font-weight: 740;
  letter-spacing: -0.035em;
}

.brand-copy > span {
  color: var(--gold-soft);
  font-family: var(--mono);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2vw, 36px);
}

.primary-nav > a:not(.nav-cta) {
  position: relative;
  color: rgba(245, 242, 232, 0.76);
  font-size: 0.81rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease;
}

.primary-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav > a:not(.nav-cta):hover {
  color: var(--white);
}

.primary-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 1px solid transparent;
  font-size: 0.79rem;
  font-weight: 760;
  letter-spacing: 0.015em;
  line-height: 1.2;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav-cta {
  min-height: 48px;
  padding: 0 18px;
  background: var(--gold);
  color: var(--forest-deep);
}

.nav-cta svg,
.button svg,
.text-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 180ms ease;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.nav-cta:hover svg,
.button:hover svg,
.text-link:hover svg {
  transform: translateX(4px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 242, 232, 0.26);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 19px;
  height: 1px;
  background: var(--ivory);
  transition: transform 180ms ease;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

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

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

.hero {
  position: relative;
  min-height: 880px;
  padding: 174px 0 100px;
  overflow: hidden;
  background: var(--forest);
  color: var(--ivory);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(234, 213, 135, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(234, 213, 135, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(90deg, transparent 8%, black 58%, black 100%);
}

.hero::after {
  position: absolute;
  top: 11%;
  right: -12%;
  width: 58vw;
  height: 58vw;
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 9vw rgba(212, 175, 55, 0.025), 0 0 0 18vw rgba(212, 175, 55, 0.018);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
  gap: clamp(56px, 7vw, 112px);
  align-items: center;
}

.hero-copy h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.65rem, 6.3vw, 6.15rem);
  font-weight: 520;
  letter-spacing: -0.063em;
  line-height: 0.98;
}

.hero-copy h1::after {
  display: block;
  width: 90px;
  height: 3px;
  margin-top: 34px;
  background: var(--gold);
  content: "";
}

.hero-lede {
  max-width: 690px;
  margin: 30px 0 0;
  color: rgba(245, 242, 232, 0.77);
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
  letter-spacing: -0.022em;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 40px;
}

.button {
  min-height: 56px;
  padding: 0 24px;
  cursor: pointer;
}

.button-gold {
  background: var(--gold);
  color: var(--forest-deep);
}

.button-gold:hover {
  background: var(--gold-soft);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--forest);
  font-size: 0.84rem;
  font-weight: 750;
  text-decoration-color: rgba(11, 59, 46, 0.35);
  text-decoration-thickness: 1px;
  text-underline-offset: 7px;
}

.text-link span {
  font-size: 1.05rem;
}

.light-link {
  color: var(--ivory);
  text-decoration-color: rgba(245, 242, 232, 0.36);
}

.credibility-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 54px 0 0;
  padding: 19px 0 0;
  border-top: 1px solid rgba(245, 242, 232, 0.2);
  color: rgba(245, 242, 232, 0.65);
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  list-style: none;
  text-transform: uppercase;
}

.credibility-line li {
  display: flex;
  align-items: center;
}

.credibility-line li:not(:last-child)::after {
  display: block;
  width: 3px;
  height: 3px;
  margin-inline: 16px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.system-visual {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(234, 213, 135, 0.28);
  background: rgba(4, 36, 27, 0.72);
  box-shadow: 0 32px 90px rgba(0, 19, 13, 0.38);
  backdrop-filter: blur(7px);
}

.system-visual::before {
  position: absolute;
  top: -5px;
  right: -5px;
  bottom: -5px;
  left: -5px;
  border: 1px solid rgba(234, 213, 135, 0.08);
  content: "";
  pointer-events: none;
}

.visual-topline,
.visual-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(245, 242, 232, 0.48);
  font-family: var(--mono);
  font-size: 0.61rem;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.visual-topline {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(245, 242, 232, 0.13);
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 7px;
}

.live-indicator i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
}

.signal-cluster,
.output-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.signal-cluster {
  margin-top: 22px;
}

.signal-card,
.output-grid > div {
  min-width: 0;
  padding: 15px 13px;
  border: 1px solid rgba(245, 242, 232, 0.12);
  background: rgba(245, 242, 232, 0.035);
}

.signal-card > span,
.output-grid > div > span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.58rem;
}

.signal-card strong,
.output-grid strong {
  display: block;
  overflow: hidden;
  color: var(--ivory);
  font-size: 0.78rem;
  font-weight: 650;
  text-overflow: ellipsis;
}

.signal-card small,
.output-grid small {
  display: block;
  margin-top: 4px;
  overflow: hidden;
  color: rgba(245, 242, 232, 0.45);
  font-size: 0.65rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.flow-track {
  position: relative;
  height: 62px;
  margin: 0 12%;
  border-right: 1px solid rgba(212, 175, 55, 0.45);
  border-bottom: 1px solid rgba(212, 175, 55, 0.45);
  border-left: 1px solid rgba(212, 175, 55, 0.45);
}

.flow-track::after {
  position: absolute;
  bottom: -6px;
  left: calc(50% - 5px);
  width: 9px;
  height: 9px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  content: "";
  transform: rotate(45deg);
}

.flow-track span {
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(212, 175, 55, 0.34);
}

.flow-track span:first-child { left: 16.666%; }
.flow-track span:nth-child(2) { left: 50%; }
.flow-track span:last-child { right: 16.666%; }

.system-core {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--gold);
  background: rgba(212, 175, 55, 0.08);
}

.core-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--gold);
}

.core-mark .logo-mark {
  width: 27px;
  height: 27px;
  stroke: var(--forest-deep);
}

.system-core small,
.system-core strong {
  display: block;
}

.system-core small {
  color: rgba(245, 242, 232, 0.47);
  font-family: var(--mono);
  font-size: 0.57rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.system-core strong {
  margin-top: 2px;
  font-size: 0.9rem;
}

.status-pill {
  padding: 5px 7px;
  border: 1px solid rgba(234, 213, 135, 0.32);
  color: var(--gold-soft);
  font-family: var(--mono);
  font-size: 0.54rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.output-grid {
  margin-top: 22px;
}

.output-grid > div > span {
  margin-bottom: 10px;
}

.visual-caption {
  margin-top: 20px;
  padding-top: 17px;
  border-top: 1px solid rgba(245, 242, 232, 0.13);
}

.recognition {
  background: var(--paper);
}

.section-heading h2,
.approach-intro h2,
.why-statement h2,
.fit h2,
.faq-intro h2,
.contact-copy h2,
.founder-copy h2 {
  margin: 0;
  font-size: clamp(2.75rem, 5vw, 5rem);
  font-weight: 530;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(300px, 0.56fr);
  gap: clamp(60px, 9vw, 140px);
  align-items: end;
}

.split-heading > p,
.capability-heading > p,
.approach-intro > p,
.why-statement > p,
.faq-intro > p,
.contact-copy > p,
.fit-list > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  letter-spacing: -0.018em;
  line-height: 1.65;
}

.friction-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.67fr) minmax(0, 1.33fr);
  gap: clamp(36px, 7vw, 100px);
  margin-top: clamp(72px, 8vw, 116px);
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.friction-lead {
  position: sticky;
  top: 120px;
  align-self: start;
  padding: 32px;
  background: var(--soft-green);
}

.friction-lead p {
  margin: 28px 0 64px;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.friction-meter {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  align-items: end;
  height: 50px;
}

.friction-meter span {
  background: var(--emerald);
}

.friction-meter span:first-child { height: 24%; opacity: 0.3; }
.friction-meter span:nth-child(2) { height: 42%; opacity: 0.45; }
.friction-meter span:nth-child(3) { height: 58%; opacity: 0.6; }
.friction-meter span:nth-child(4) { height: 78%; opacity: 0.78; }
.friction-meter span:last-child { height: 100%; }

.friction-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.friction-list li {
  display: grid;
  min-height: 116px;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
  padding: 24px 18px 24px 0;
  border-bottom: 1px solid var(--line);
  color: #35433c;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.018em;
}

.friction-list li:nth-child(odd) {
  padding-right: 32px;
  border-right: 1px solid var(--line);
}

.friction-list li:nth-child(even) {
  padding-left: 32px;
}

.friction-list span {
  color: var(--emerald);
  font-family: var(--mono);
  font-size: 0.63rem;
}

.capabilities {
  overflow: hidden;
  background: var(--forest-deep);
  color: var(--ivory);
}

.capabilities::before {
  position: absolute;
  top: -460px;
  left: calc(50% - 460px);
  width: 920px;
  height: 920px;
  border: 1px solid rgba(212, 175, 55, 0.08);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.capability-heading {
  position: relative;
  display: grid;
  max-width: 980px;
  grid-template-columns: 1fr minmax(260px, 0.46fr);
  gap: 70px;
  align-items: end;
}

.capability-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -30px;
}

.capability-heading > p {
  color: rgba(245, 242, 232, 0.6);
}

.capability-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(74px, 8vw, 118px);
  border-top: 1px solid rgba(245, 242, 232, 0.18);
  border-left: 1px solid rgba(245, 242, 232, 0.18);
}

.capability-card {
  display: flex;
  min-height: 400px;
  flex-direction: column;
  padding: clamp(28px, 3.5vw, 48px);
  border-right: 1px solid rgba(245, 242, 232, 0.18);
  border-bottom: 1px solid rgba(245, 242, 232, 0.18);
  background: rgba(245, 242, 232, 0.015);
  transition: background 220ms ease, transform 220ms ease;
}

.capability-card:hover {
  position: relative;
  z-index: 1;
  background: rgba(212, 175, 55, 0.075);
  transform: translateY(-5px);
}

.card-number {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.66rem;
}

.capability-card h3 {
  max-width: 340px;
  margin: 54px 0 20px;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 590;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.capability-card > p {
  margin: 0;
  color: rgba(245, 242, 232, 0.63);
  font-size: 0.94rem;
  line-height: 1.62;
}

.outcome {
  margin-top: auto;
  padding-top: 26px;
  border-top: 1px solid rgba(245, 242, 232, 0.13);
  color: rgba(245, 242, 232, 0.85);
  font-size: 0.76rem;
  font-weight: 620;
}

.outcome span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-soft);
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.opportunities {
  background: var(--paper);
}

.split-heading.compact h2 {
  font-size: clamp(2.65rem, 4.6vw, 4.6rem);
}

.opportunity-list {
  margin-top: clamp(70px, 8vw, 110px);
  border-top: 1px solid var(--line);
}

.opportunity-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr);
  gap: 44px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}

.opportunity-label {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
}

.opportunity-label > span {
  padding-top: 5px;
  color: var(--emerald);
  font-family: var(--mono);
  font-size: 0.62rem;
}

.opportunity-label h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 650;
  letter-spacing: -0.03em;
}

.before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.before-after > div {
  padding: 4px 34px 4px 0;
}

.before-after .after {
  padding-right: 0;
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.before-after p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.62;
}

.before-after .after p {
  color: var(--ink);
  font-weight: 590;
}

.approach {
  background: var(--soft-green);
}

.approach-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.77fr) minmax(0, 1.23fr);
  gap: clamp(74px, 10vw, 150px);
}

.approach-intro {
  position: sticky;
  top: 125px;
  align-self: start;
}

.approach-intro h2 {
  font-size: clamp(2.8rem, 4.5vw, 4.55rem);
}

.approach-intro > p {
  margin-top: 30px;
}

.approach-intro .text-link {
  margin-top: 38px;
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(11, 59, 46, 0.24);
  list-style: none;
}

.process-list li {
  display: grid;
  min-height: 190px;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid rgba(11, 59, 46, 0.24);
}

.process-number {
  padding-top: 8px;
  color: var(--emerald);
  font-family: var(--mono);
  font-size: 0.68rem;
}

.process-list h3 {
  margin: 0 0 14px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.process-list p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  line-height: 1.63;
}

.why {
  background: var(--paper);
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(68px, 9vw, 132px);
  padding: clamp(44px, 6vw, 78px);
  background: var(--forest);
  color: var(--ivory);
}

.why-statement h2 {
  font-size: clamp(2.75rem, 4.5vw, 4.8rem);
}

.why-statement > p {
  margin-top: 28px;
  color: rgba(245, 242, 232, 0.64);
}

.principles {
  border-top: 1px solid rgba(245, 242, 232, 0.18);
}

.principles article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(245, 242, 232, 0.18);
}

.principles article > span {
  padding-top: 5px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.62rem;
}

.principles h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 680;
  letter-spacing: -0.02em;
}

.principles p {
  margin: 0;
  color: rgba(245, 242, 232, 0.57);
  font-size: 0.86rem;
  line-height: 1.55;
}

.founder-panel {
  display: grid;
  grid-template-columns: minmax(250px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(56px, 8vw, 124px);
  margin-top: 28px;
  padding: clamp(44px, 6vw, 80px);
  border: 1px solid var(--line);
  background: var(--ivory);
}

.founder-monogram {
  position: relative;
  display: grid;
  min-height: 410px;
  place-items: center;
  overflow: hidden;
  background: var(--forest-deep);
}

.founder-monogram::before,
.founder-monogram::after {
  position: absolute;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(212, 175, 55, 0.17);
  border-radius: 50%;
  content: "";
}

.founder-monogram::after {
  width: 150px;
  height: 150px;
}

.founder-monogram .logo-mark {
  position: relative;
  z-index: 1;
  width: 98px;
  height: 98px;
  stroke-width: 1.15;
}

.founder-monogram > span {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  z-index: 1;
  padding-top: 15px;
  border-top: 1px solid rgba(245, 242, 232, 0.18);
  color: rgba(245, 242, 232, 0.58);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founder-copy {
  align-self: center;
}

.founder-copy h2 {
  max-width: 780px;
  font-size: clamp(2.6rem, 4.3vw, 4.4rem);
}

.founder-copy > p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}

.founder-note {
  display: inline-flex;
  margin-top: 30px;
  padding: 9px 12px;
  border-left: 3px solid var(--gold);
  background: rgba(212, 175, 55, 0.1);
  color: var(--forest);
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fit {
  padding-block: clamp(76px, 8vw, 112px);
  background: var(--gold);
  color: var(--forest-deep);
}

.fit-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(70px, 10vw, 150px);
  align-items: center;
}

.fit .eyebrow {
  color: var(--forest);
}

.fit h2 {
  font-size: clamp(2.7rem, 4.4vw, 4.5rem);
}

.fit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.fit-list > span {
  padding: 10px 13px;
  border: 1px solid rgba(6, 41, 31, 0.42);
  background: rgba(245, 242, 232, 0.14);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fit-list > p {
  flex: 0 0 100%;
  margin-top: 22px;
  color: rgba(6, 41, 31, 0.77);
  font-weight: 600;
}

.faq {
  background: var(--paper);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.64fr) minmax(0, 1.36fr);
  gap: clamp(72px, 10vw, 150px);
}

.faq-intro {
  position: sticky;
  top: 125px;
  align-self: start;
}

.faq-intro h2 {
  font-size: clamp(2.75rem, 4vw, 4.15rem);
}

.faq-intro > p {
  margin-top: 25px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 38px;
  gap: 20px;
  align-items: center;
  padding: 24px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  text-align: left;
}

.faq-item button i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--emerald);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
}

.faq-answer p {
  max-width: 730px;
  margin: -3px 0 0;
  padding: 0 58px 28px 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.68;
}

.contact {
  overflow: hidden;
  background: var(--forest);
  color: var(--ivory);
}

.contact::before {
  position: absolute;
  bottom: -480px;
  left: -300px;
  width: 920px;
  height: 920px;
  border: 1px solid rgba(212, 175, 55, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 100px rgba(212, 175, 55, 0.018), 0 0 0 200px rgba(212, 175, 55, 0.012);
  content: "";
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(68px, 9vw, 132px);
  align-items: start;
}

.contact-copy h2 {
  font-size: clamp(2.85rem, 4.6vw, 4.8rem);
}

.contact-copy > p {
  margin-top: 28px;
  color: rgba(245, 242, 232, 0.65);
}

.assessment-expectation {
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid rgba(245, 242, 232, 0.18);
}

.assessment-expectation > span {
  color: var(--gold-soft);
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.assessment-expectation ol {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.assessment-expectation li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(245, 242, 232, 0.11);
  color: rgba(245, 242, 232, 0.7);
  font-size: 0.83rem;
}

.assessment-expectation i {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.58rem;
  font-style: normal;
}

.contact-form {
  padding: clamp(28px, 4vw, 52px);
  background: var(--paper);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.form-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.form-heading span:first-child {
  font-size: 1.12rem;
  font-weight: 680;
  letter-spacing: -0.025em;
}

.form-heading span:last-child {
  color: var(--muted);
  font-size: 0.68rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.contact-form label {
  display: block;
  margin-bottom: 22px;
}

.contact-form label > span {
  display: block;
  margin-bottom: 8px;
  color: #445249;
  font-size: 0.72rem;
  font-weight: 670;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid #cbd4cd;
  background: #fff;
  color: var(--ink);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input,
.contact-form select {
  height: 50px;
  padding: 0 13px;
}

.contact-form textarea {
  min-height: 138px;
  padding: 13px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--emerald);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 112, 60, 0.13);
}

.contact-form textarea::placeholder {
  color: #8c9790;
  opacity: 1;
}

.form-submit {
  width: 100%;
  border: 0;
}

.form-disclosure {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.5;
}

.form-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--emerald);
  font-size: 0.75rem;
  font-weight: 650;
}

.site-footer {
  padding: 72px 0 24px;
  background: var(--forest-deep);
  color: var(--ivory);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.65fr 0.85fr;
  gap: 80px;
  padding-bottom: 68px;
}

.footer-brand p {
  max-width: 310px;
  margin: 26px 0 0;
  color: rgba(245, 242, 232, 0.52);
  font-family: var(--serif);
  font-size: 1.38rem;
  line-height: 1.28;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.78rem;
}

.footer-links > span:first-child {
  margin-bottom: 10px;
  color: var(--gold-soft);
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(245, 242, 232, 0.72);
  text-decoration-color: transparent;
  text-underline-offset: 4px;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration-color: var(--gold);
}

.placeholder-line {
  color: rgba(245, 242, 232, 0.38);
  font-size: 0.7rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(245, 242, 232, 0.14);
  color: rgba(245, 242, 232, 0.4);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .primary-nav {
    gap: 18px;
  }

  .primary-nav > a:not(.nav-cta) {
    font-size: 0.75rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.78fr);
    gap: 48px;
  }

  .hero-copy h1 {
    font-size: clamp(3.65rem, 6.8vw, 5.5rem);
  }

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

  .capability-card {
    min-height: 370px;
  }

  .why-grid,
  .contact-grid {
    gap: 60px;
  }
}

@media (max-width: 960px) {
  .section-shell {
    width: min(100% - 40px, 1280px);
  }

  .site-header {
    padding-top: 9px;
  }

  .nav-shell {
    width: calc(100% - 18px);
    min-height: 62px;
  }

  .menu-toggle {
    position: relative;
    display: flex;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% - 9px);
    right: 9px;
    left: 9px;
    display: none;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(234, 213, 135, 0.24);
    border-top: 0;
    background: rgba(6, 41, 31, 0.98);
    box-shadow: 0 24px 40px rgba(0, 20, 14, 0.28);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav > a:not(.nav-cta) {
    padding: 15px 5px;
    border-bottom: 1px solid rgba(245, 242, 232, 0.1);
    font-size: 0.86rem;
  }

  .nav-cta {
    margin-top: 14px;
  }

  .hero {
    min-height: auto;
    padding: 148px 0 88px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .hero-copy {
    max-width: 820px;
  }

  .system-visual {
    width: min(680px, 100%);
    margin-left: auto;
  }

  .split-heading,
  .capability-heading,
  .approach-layout,
  .why-grid,
  .fit-grid,
  .faq-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .split-heading,
  .capability-heading {
    align-items: start;
    gap: 34px;
  }

  .capability-heading .eyebrow {
    margin-bottom: -12px;
  }

  .capability-heading > p {
    max-width: 600px;
  }

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

  .friction-lead,
  .approach-intro,
  .faq-intro {
    position: static;
  }

  .friction-lead {
    display: grid;
    grid-template-columns: 1fr 160px;
    gap: 30px;
    align-items: end;
  }

  .friction-lead .micro-label {
    grid-column: 1 / -1;
  }

  .friction-lead p {
    margin: 0;
  }

  .opportunity-row {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .approach-layout,
  .faq-layout,
  .contact-grid {
    gap: 70px;
  }

  .approach-intro,
  .faq-intro {
    max-width: 720px;
  }

  .why-grid {
    gap: 54px;
  }

  .why-statement {
    max-width: 720px;
  }

  .founder-panel {
    grid-template-columns: 0.65fr 1.35fr;
    gap: 54px;
  }

  .fit-list {
    max-width: 730px;
  }

  .contact-copy {
    max-width: 760px;
  }

  .contact-form {
    max-width: 800px;
  }
}

@media (max-width: 700px) {
  .section-shell {
    width: calc(100% - 32px);
  }

  .section-block {
    padding-block: 82px;
  }

  .brand-copy {
    display: grid;
    gap: 3px;
  }

  .brand-copy > span {
    font-size: 0.5rem;
  }

  .hero {
    padding-top: 132px;
  }

  .hero-copy h1 {
    font-size: clamp(3.25rem, 14.2vw, 4.7rem);
    letter-spacing: -0.066em;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 23px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .credibility-line {
    gap: 11px 20px;
  }

  .credibility-line li:not(:last-child)::after {
    display: none;
  }

  .system-visual {
    padding: 14px;
  }

  .signal-card,
  .output-grid > div {
    padding: 12px 9px;
  }

  .signal-card > span {
    margin-bottom: 11px;
  }

  .signal-card strong,
  .output-grid strong {
    font-size: 0.68rem;
  }

  .signal-card small,
  .output-grid small {
    font-size: 0.56rem;
  }

  .system-core {
    grid-template-columns: auto 1fr;
  }

  .status-pill {
    display: none;
  }

  .section-heading h2,
  .approach-intro h2,
  .why-statement h2,
  .fit h2,
  .faq-intro h2,
  .contact-copy h2,
  .founder-copy h2 {
    font-size: clamp(2.5rem, 11vw, 3.8rem);
  }

  .friction-lead {
    display: block;
    padding: 26px;
  }

  .friction-lead p {
    margin: 24px 0 45px;
  }

  .friction-grid {
    margin-top: 58px;
  }

  .friction-list {
    grid-template-columns: 1fr;
  }

  .friction-list li,
  .friction-list li:nth-child(odd),
  .friction-list li:nth-child(even) {
    min-height: 0;
    padding: 21px 0;
    border-right: 0;
  }

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

  .capability-card {
    min-height: 350px;
    padding: 30px;
  }

  .before-after {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .before-after > div,
  .before-after .after {
    padding: 0;
    border-left: 0;
  }

  .before-after .after {
    padding-top: 25px;
    border-top: 1px solid var(--line);
  }

  .opportunity-row {
    padding: 30px 0;
  }

  .process-list li {
    min-height: 0;
    grid-template-columns: 42px 1fr;
    gap: 13px;
  }

  .why-grid {
    padding: 34px 26px;
  }

  .founder-panel {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .founder-monogram {
    min-height: 280px;
  }

  .fit-list > span {
    width: 100%;
  }

  .faq-answer p {
    padding-right: 0;
  }

  .contact-form {
    padding: 27px 20px;
  }

  .field-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 30px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .brand-copy > span {
    display: none;
  }

  .hero-copy h1 {
    font-size: 3.18rem;
  }

  .visual-topline span:first-child,
  .visual-caption span:first-child {
    display: none;
  }

  .visual-topline,
  .visual-caption {
    justify-content: flex-end;
  }

  .signal-card small,
  .output-grid small {
    display: none;
  }

  .signal-card,
  .output-grid > div {
    min-height: 72px;
  }

  .system-core strong {
    font-size: 0.78rem;
  }

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

  .footer-brand {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .hero-actions,
  .contact-form {
    display: none;
  }

  .hero,
  .capabilities,
  .why-grid,
  .contact,
  .site-footer {
    background: #fff;
    color: #000;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
