:root {
  --ink: #071d2b;
  --ink-2: #0d2938;
  --ink-3: #173849;
  --paper: #f4f1e9;
  --paper-2: #ebe6db;
  --white: #fffdf8;
  --graphite: #25333a;
  --muted: #6f7778;
  --petrol: #1a6766;
  --petrol-light: #91c8c0;
  --copper: #d87532;
  --copper-light: #f0a367;
  --line: rgba(7, 29, 43, 0.14);
  --line-light: rgba(255, 253, 248, 0.18);
  --shadow: 0 24px 70px rgba(7, 29, 43, 0.12);
  --font-display: "Aptos Display", "Segoe UI Variable Display", "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Segoe UI Variable Text", "Segoe UI", "Inter", Arial, sans-serif;
  --shell: min(1240px, calc(100vw - 64px));
  --radius: 16px;
  --header-height: 82px;
  --ribbon-height: 28px;
  --section-space: clamp(88px, 10vw, 150px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + var(--ribbon-height) + 20px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--graphite);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

::selection {
  background: var(--copper);
  color: var(--white);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button {
  border: 0;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 540;
  letter-spacing: -0.04em;
}

h2 {
  color: var(--ink);
  font-size: clamp(2.6rem, 5vw, 5.25rem);
  line-height: 0.98;
}

h3 {
  color: var(--ink);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: var(--section-space);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  transition: transform 180ms ease;
}

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

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

.concept-ribbon {
  position: fixed;
  z-index: 120;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: var(--ribbon-height);
  background: var(--copper);
  color: var(--ink);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: var(--ribbon-height);
  right: 0;
  left: 0;
  height: var(--header-height);
  color: var(--white);
  transition: background-color 240ms ease, box-shadow 240ms ease, backdrop-filter 240ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  background: rgba(7, 29, 43, 0.92);
  box-shadow: 0 12px 40px rgba(4, 15, 23, 0.18);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  line-height: 1;
}

.brand-mark {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 720;
  letter-spacing: -0.08em;
}

.brand-mark b {
  margin-inline: 1px 3px;
  color: var(--copper-light);
  font-size: 0.67em;
  font-weight: 760;
}

.brand-name {
  display: grid;
  gap: 3px;
  padding-left: 14px;
  border-left: 1px solid rgba(255, 253, 248, 0.28);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.brand-name strong {
  font-weight: 780;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 38px);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.025em;
}

.primary-nav > a:not(.nav-cta) {
  position: relative;
  padding-block: 12px;
}

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

.primary-nav > a:hover::after,
.primary-nav > a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 253, 248, 0.34);
  border-radius: 999px;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.nav-cta:hover {
  border-color: var(--copper-light);
  background: rgba(216, 117, 50, 0.12);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 200ms ease;
}

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

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

.scroll-progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  transform-origin: left;
  background: var(--copper-light);
}

.hero {
  position: relative;
  display: flex;
  min-height: 780px;
  height: 100svh;
  max-height: 1040px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(7, 29, 43, 0.98) 0%, rgba(7, 29, 43, 0.91) 28%, rgba(7, 29, 43, 0.63) 46%, rgba(7, 29, 43, 0.12) 71%),
    linear-gradient(0deg, rgba(7, 29, 43, 0.58) 0%, transparent 36%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: var(--shell);
  padding-top: calc(var(--header-height) + var(--ribbon-height) + 24px);
  padding-bottom: 78px;
}

.hero-copy {
  width: min(610px, 49%);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  color: var(--petrol-light);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 32px;
  height: 1px;
  background: var(--copper-light);
}

.eyebrow-dark {
  color: var(--petrol);
}

.hero h1 {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--white);
  font-size: clamp(4rem, 6.3vw, 7.15rem);
  font-weight: 520;
  line-height: 0.89;
  letter-spacing: -0.065em;
}

.hero h1 em,
.founders-heading h2 em,
.contact-copy h2 em {
  color: var(--copper-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.98em;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.hero-lede {
  max-width: 570px;
  margin-bottom: 38px;
  color: rgba(255, 253, 248, 0.79);
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  line-height: 1.6;
}

.hero-actions,
.form-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 760;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.button-primary {
  background: var(--copper);
  color: var(--white);
}

.button-primary:hover {
  background: var(--copper-light);
  color: var(--ink);
}

.button-ghost {
  border-color: rgba(255, 253, 248, 0.3);
  background: transparent;
  color: var(--white);
}

.button-ghost:hover {
  border-color: var(--copper-light);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--petrol);
  font-size: 13px;
  font-weight: 750;
  transition: gap 180ms ease, color 180ms ease;
}

.text-link:hover {
  gap: 15px;
  color: var(--copper);
}

.text-link-light {
  color: rgba(255, 253, 248, 0.9);
}

.text-link-light:hover {
  color: var(--copper-light);
}

.hero-caption {
  position: absolute;
  right: 0;
  bottom: 38px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 253, 248, 0.22);
  color: rgba(255, 253, 248, 0.67);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.caption-index {
  color: var(--copper-light);
}

.caption-ai {
  margin-left: auto;
}

.capability-rail {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--paper-2);
}

.rail-track {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  min-width: 100%;
  padding: 17px 28px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  animation: rail 30s linear infinite;
}

.rail-track i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--copper);
}

@keyframes rail {
  to {
    transform: translateX(-28%);
  }
}

.section-positioning {
  overflow: hidden;
}

.section-positioning::after {
  position: absolute;
  z-index: -1;
  right: -12vw;
  bottom: -31vw;
  width: 58vw;
  height: 58vw;
  border: 1px solid rgba(26, 103, 102, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(26, 103, 102, 0.035), 0 0 0 180px rgba(26, 103, 102, 0.025);
  content: "";
}

.positioning-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px;
}

.section-kicker {
  grid-column: 1 / span 2;
  padding-top: 8px;
}

.section-kicker span {
  color: var(--copper);
  font-size: 11px;
  font-weight: 800;
}

.section-kicker p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.positioning-copy {
  grid-column: 3 / span 8;
}

.overline {
  margin-bottom: 24px;
  color: var(--petrol);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.positioning-copy h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 5.6vw, 5.8rem);
}

.positioning-copy h2 span {
  color: var(--petrol);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.94em;
  font-style: italic;
  font-weight: 400;
}

.positioning-detail {
  grid-column: 7 / span 5;
  margin-top: 54px;
}

.positioning-detail > p {
  max-width: 580px;
  margin-bottom: 38px;
  font-size: 1.14rem;
}

.principle-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.principle-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 13px;
  font-weight: 720;
}

.principle-list span {
  color: var(--copper);
  font-size: 10px;
}

.section-dark {
  overflow: hidden;
  background: var(--ink);
  color: rgba(255, 253, 248, 0.74);
}

.section-dark::before {
  position: absolute;
  top: -390px;
  right: -230px;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(145, 200, 192, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 100px rgba(145, 200, 192, 0.025), 0 0 0 200px rgba(145, 200, 192, 0.018);
  content: "";
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.68fr);
  align-items: end;
  gap: 80px;
  margin-bottom: clamp(54px, 7vw, 88px);
}

.section-heading h2 {
  max-width: 850px;
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 500px;
  margin-bottom: 4px;
  color: var(--muted);
}

.section-heading-light h2 {
  color: var(--white);
}

.section-heading-light > p {
  color: rgba(255, 253, 248, 0.64);
}

.service-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.service-card {
  min-height: 430px;
  padding: clamp(32px, 4vw, 54px);
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.015);
  transition: background-color 240ms ease, transform 240ms ease;
}

.service-card:hover {
  position: relative;
  z-index: 1;
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.045);
}

.service-card-accent {
  background: var(--petrol);
}

.service-card-accent:hover {
  background: #1d7472;
}

.service-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 72px;
}

.service-number {
  color: var(--copper-light);
  font-size: 11px;
  font-weight: 800;
}

.service-topline svg {
  width: 48px;
  fill: none;
  stroke: var(--petrol-light);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.1;
}

.service-card-accent .service-topline svg {
  stroke: var(--white);
}

.service-card h3 {
  max-width: 430px;
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(1.75rem, 2.8vw, 2.55rem);
  line-height: 1.02;
}

.service-card > p {
  max-width: 490px;
  margin-bottom: 42px;
}

.service-output {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line-light);
}

.service-output span {
  color: var(--petrol-light);
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-output p {
  margin: 0;
  color: rgba(255, 253, 248, 0.85);
  font-size: 13px;
}

.section-diagnostic {
  background: var(--paper-2);
}

.diagnostic-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(560px, 1.28fr);
  gap: clamp(60px, 8vw, 120px);
}

.diagnostic-intro {
  align-self: start;
}

.diagnostic-intro h2 {
  margin-bottom: 30px;
  font-size: clamp(2.8rem, 4.8vw, 4.75rem);
}

.diagnostic-intro > p:last-child {
  max-width: 480px;
  color: var(--muted);
}

.diagnostic-tool {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: 570px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.diagnostic-options {
  display: flex;
  flex-direction: column;
  padding: 18px;
  border-right: 1px solid var(--line);
  background: rgba(7, 29, 43, 0.03);
}

.diagnostic-option {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  flex: 1;
  align-items: center;
  width: 100%;
  padding: 17px;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--graphite);
  text-align: left;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.diagnostic-option:last-child {
  border-bottom: 0;
}

.diagnostic-option span {
  color: var(--copper);
  font-size: 10px;
  font-weight: 800;
}

.diagnostic-option:hover,
.diagnostic-option.is-active {
  background: var(--ink);
  color: var(--white);
}

.diagnostic-result {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 4vw, 58px);
}

.result-label {
  margin-bottom: 46px;
  color: var(--petrol);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.diagnostic-result h3 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1;
}

.diagnostic-result > p:not(.result-label) {
  margin-bottom: 26px;
  color: var(--muted);
}

.diagnostic-result ul {
  margin: 0 0 40px;
  padding: 0;
  list-style: none;
}

.diagnostic-result li {
  position: relative;
  padding: 9px 0 9px 23px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 13px;
  font-weight: 650;
}

.diagnostic-result li::before {
  position: absolute;
  top: 17px;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--copper);
  content: "";
}

.section-approach {
  background: var(--white);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-step {
  position: relative;
  display: grid;
  grid-template-rows: 30px 48px auto;
  min-width: 0;
  padding-right: 32px;
}

.process-index {
  color: var(--copper);
  font-size: 10px;
  font-weight: 820;
}

.process-marker {
  position: relative;
  display: flex;
  align-items: center;
}

.process-marker::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line);
  content: "";
}

.process-marker i {
  position: relative;
  z-index: 1;
  width: 15px;
  height: 15px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--petrol);
  box-shadow: 0 0 0 1px var(--petrol);
}

.process-step:last-child .process-marker::after {
  right: 70%;
}

.process-verb {
  margin: 22px 0 30px;
  color: var(--petrol);
  font-size: 11px;
  font-weight: 790;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.process-step h3 {
  margin-bottom: 16px;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.05;
}

.process-step > div:last-child > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.section-mandates {
  overflow: clip;
  background: var(--ink-2);
  color: rgba(255, 253, 248, 0.7);
}

.mandates-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(70px, 9vw, 130px);
}

.mandates-sticky {
  position: sticky;
  top: calc(var(--header-height) + var(--ribbon-height) + 50px);
  align-self: start;
}

.mandates-sticky h2 {
  margin-bottom: 30px;
  color: var(--white);
  font-size: clamp(2.8rem, 4.4vw, 4.65rem);
}

.mandates-sticky > p:last-child {
  max-width: 510px;
}

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

.mandate-card {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr 34px;
  gap: 22px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line-light);
  transition: padding-left 200ms ease, background-color 200ms ease;
}

.mandate-card:hover {
  padding-left: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.mandate-index {
  color: var(--copper-light);
  font-family: Georgia, serif;
  font-style: italic;
}

.mandate-tag {
  margin-bottom: 9px;
  color: var(--petrol-light);
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mandate-card h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(1.6rem, 2.5vw, 2.25rem);
  line-height: 1.08;
}

.mandate-card p:last-child {
  margin: 0;
  font-size: 14px;
}

.mandate-arrow {
  color: var(--copper-light);
  font-size: 22px;
}

.section-founders {
  background: var(--paper);
}

.founders-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: start;
  margin-bottom: clamp(54px, 8vw, 100px);
}

.founders-heading .eyebrow {
  margin-top: 15px;
}

.founders-heading h2 {
  margin: 0;
  font-size: clamp(3.3rem, 6vw, 6rem);
}

.founders-grid {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(460px, 1fr);
  gap: clamp(54px, 8vw, 110px);
}

.founders-figure {
  position: relative;
  min-height: 650px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
}

.founders-figure picture,
.founders-figure img {
  width: 100%;
  height: 100%;
}

.founders-figure img {
  object-fit: cover;
  object-position: 67% center;
}

.founders-figure::after {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(transparent, rgba(7, 29, 43, 0.75));
  content: "";
}

.founders-figure figcaption {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 18px;
  left: 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founder-profiles {
  border-top: 1px solid var(--line);
}

.founder-profile {
  padding: 34px 0 40px;
  border-bottom: 1px solid var(--line);
}

.founder-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  color: var(--petrol);
  font-size: 9px;
  font-weight: 780;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.founder-profile h3 {
  margin-bottom: 8px;
  font-size: clamp(2.1rem, 3.2vw, 3.25rem);
  line-height: 1;
}

.founder-role {
  margin-bottom: 22px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.04em;
}

.founder-profile > p:last-child {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.profile-note {
  margin: 26px 0 0;
  padding: 15px 18px;
  border-left: 2px solid var(--copper);
  background: rgba(216, 117, 50, 0.065);
  color: var(--muted);
  font-size: 12px;
}

.section-manifesto {
  background: var(--petrol);
  color: rgba(255, 253, 248, 0.75);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(70px, 9vw, 130px);
}

.manifesto-grid h2 {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(3rem, 5vw, 5.3rem);
}

.manifesto-grid .eyebrow {
  color: rgba(255, 253, 248, 0.72);
}

.manifesto-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 253, 248, 0.27);
  list-style: none;
}

.manifesto-list li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 12px;
  padding: 27px 0;
  border-bottom: 1px solid rgba(255, 253, 248, 0.27);
}

.manifesto-list li > span {
  padding-top: 4px;
  color: var(--copper-light);
  font-size: 10px;
  font-weight: 800;
}

.manifesto-list strong {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
  font-size: 1.12rem;
}

.manifesto-list p {
  margin: 0;
  font-size: 14px;
}

.section-contact {
  overflow: hidden;
  background: var(--ink);
  color: rgba(255, 253, 248, 0.72);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(70px, 9vw, 130px);
}

.contact-copy h2 {
  margin-bottom: 30px;
  color: var(--white);
  font-size: clamp(3.1rem, 5.3vw, 5.5rem);
}

.contact-copy > p:last-child {
  max-width: 540px;
}

.contact-form {
  padding: clamp(30px, 4.3vw, 58px);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(8px);
}

.contact-form label {
  display: grid;
  gap: 9px;
  margin-bottom: 24px;
}

.contact-form label > span {
  color: rgba(255, 253, 248, 0.72);
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  transition: border-color 180ms ease;
}

.contact-form input,
.contact-form select {
  height: 48px;
}

.contact-form textarea {
  min-height: 120px;
  padding: 12px 0;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 253, 248, 0.34);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--copper-light);
}

.contact-form option {
  background: var(--ink);
}

.form-actions {
  margin-top: 35px;
  gap: 14px;
}

.form-status {
  min-height: 24px;
  margin: 18px 0 0;
  color: var(--petrol-light);
  font-size: 13px;
}

.demo-address {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 12px;
  margin: 10px 0 0;
  color: rgba(255, 253, 248, 0.45);
  font-size: 10px;
}

.demo-address a {
  border-bottom: 1px solid currentColor;
}

.demo-address span {
  color: var(--copper-light);
}

.contact-orbit {
  position: absolute;
  border: 1px solid rgba(145, 200, 192, 0.11);
  border-radius: 50%;
}

.contact-orbit-one {
  right: -18vw;
  bottom: -32vw;
  width: 68vw;
  height: 68vw;
  box-shadow: 0 0 0 90px rgba(145, 200, 192, 0.018), 0 0 0 180px rgba(145, 200, 192, 0.012);
}

.contact-orbit-two {
  top: -18vw;
  left: -12vw;
  width: 34vw;
  height: 34vw;
}

.site-footer {
  background: #04151f;
  color: rgba(255, 253, 248, 0.62);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 44px 0 36px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.12);
}

.footer-top > p {
  margin: 0;
  text-align: center;
  font-size: 11px;
  font-weight: 660;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.back-to-top {
  justify-self: end;
  font-size: 12px;
  font-weight: 720;
}

.back-to-top span {
  margin-left: 8px;
  color: var(--copper-light);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 22px 0 30px;
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

.footer-concept {
  color: var(--copper-light);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.footer-bottom > div {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}

.footer-bottom button {
  padding: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: inherit;
  font-size: inherit;
  cursor: pointer;
}

.footer-bottom button:hover {
  border-color: currentColor;
  color: var(--white);
}

.legal-dialog {
  width: min(620px, calc(100vw - 40px));
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--graphite);
  box-shadow: 0 30px 100px rgba(1, 10, 16, 0.32);
}

.legal-dialog::backdrop {
  background: rgba(3, 17, 25, 0.82);
  backdrop-filter: blur(8px);
}

.legal-dialog h2 {
  margin-bottom: 28px;
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.legal-dialog p:last-child {
  margin-bottom: 0;
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.noscript-note {
  position: fixed;
  z-index: 500;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--copper);
  color: var(--ink);
  font-size: 13px;
  text-align: center;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  :root {
    --shell: min(100% - 48px, 1000px);
  }

  .primary-nav {
    gap: 20px;
  }

  .hero-copy {
    width: min(580px, 56%);
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(7, 29, 43, 0.98) 0%, rgba(7, 29, 43, 0.9) 36%, rgba(7, 29, 43, 0.4) 65%, rgba(7, 29, 43, 0.08) 100%),
      linear-gradient(0deg, rgba(7, 29, 43, 0.54) 0%, transparent 42%);
  }

  .diagnostic-grid,
  .founders-grid {
    grid-template-columns: 1fr;
  }

  .diagnostic-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 50px;
  }

  .diagnostic-intro .eyebrow {
    grid-column: 1 / -1;
  }

  .founders-figure {
    min-height: 580px;
  }

  .founders-figure img {
    object-position: center center;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 72px;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    z-index: -1;
    top: calc(var(--ribbon-height) + var(--header-height));
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 42px max(24px, calc((100vw - var(--shell)) / 2));
    transform: translateY(-18px);
    visibility: hidden;
    background: rgba(7, 29, 43, 0.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
  }

  .primary-nav.is-open {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .primary-nav > a:not(.nav-cta) {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 253, 248, 0.14);
    font-family: var(--font-display);
    font-size: 1.7rem;
    letter-spacing: -0.025em;
  }

  .nav-cta {
    justify-content: center;
    min-height: 54px;
    margin-top: 28px;
  }

  .section-heading,
  .mandates-layout,
  .manifesto-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .positioning-copy {
    grid-column: 3 / span 10;
  }

  .positioning-detail {
    grid-column: 5 / span 8;
  }

  .section-heading > p {
    max-width: 650px;
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 60px;
  }

  .process-step:nth-child(2) .process-marker::after,
  .process-step:last-child .process-marker::after {
    right: 70%;
  }

  .process-step:nth-child(3) .process-marker::after {
    right: 0;
  }

  .mandates-sticky {
    position: static;
  }

  .founders-heading {
    grid-template-columns: 1fr;
  }

  .founders-heading .eyebrow {
    margin-top: 0;
  }

  .footer-top,
  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 20px;
  }

  .footer-top > p,
  .footer-concept {
    text-align: left;
  }

  .back-to-top,
  .footer-bottom > div {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: calc(100% - 40px);
    --section-space: 78px;
    --ribbon-height: 30px;
  }

  body {
    font-size: 16px;
  }

  .concept-ribbon {
    gap: 7px;
    font-size: 9px;
  }

  .brand-name {
    display: none;
  }

  .hero {
    display: grid;
    grid-template-rows: minmax(390px, 49svh) auto;
    height: auto;
    max-height: none;
    min-height: 0;
    padding: 0;
    overflow: visible;
  }

  .hero-media {
    position: relative;
    grid-row: 1;
    height: 100%;
    margin-top: calc(var(--header-height) + var(--ribbon-height));
    background: #d9dbd7;
  }

  .hero-media img {
    object-position: 66% center;
  }

  .hero-scrim {
    position: absolute;
    top: calc(var(--header-height) + var(--ribbon-height));
    bottom: auto;
    height: max(390px, 49svh);
    background: linear-gradient(0deg, var(--ink) 0%, transparent 35%);
    pointer-events: none;
  }

  .hero-inner {
    display: block;
    grid-row: 2;
    width: 100%;
    padding: 60px 20px 42px;
    background: var(--ink);
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    max-width: 560px;
    font-size: clamp(3.35rem, 15vw, 5.2rem);
  }

  .hero-caption {
    position: static;
    margin-top: 48px;
  }

  .caption-ai {
    margin-left: 0;
  }

  .rail-track {
    animation-duration: 22s;
  }

  .positioning-grid {
    display: block;
  }

  .section-kicker,
  .positioning-copy,
  .positioning-detail {
    width: 100%;
  }

  .section-kicker {
    margin-bottom: 42px;
  }

  .positioning-copy h2 {
    font-size: clamp(2.7rem, 12vw, 4.2rem);
  }

  .positioning-detail {
    margin-top: 42px;
  }

  .section-heading {
    margin-bottom: 48px;
  }

  .section-heading h2,
  .diagnostic-intro h2,
  .mandates-sticky h2,
  .contact-copy h2 {
    font-size: clamp(2.65rem, 12vw, 4.3rem);
  }

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

  .service-card {
    min-height: 0;
  }

  .service-topline {
    margin-bottom: 48px;
  }

  .diagnostic-intro {
    display: block;
  }

  .diagnostic-tool {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .diagnostic-options {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .diagnostic-option {
    min-height: 72px;
  }

  .result-label {
    margin-bottom: 28px;
  }

  .process-list {
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .process-step {
    grid-template-columns: 32px 34px 1fr;
    grid-template-rows: auto;
    gap: 8px;
    padding: 0 0 44px;
  }

  .process-index {
    padding-top: 6px;
  }

  .process-marker {
    display: block;
    min-height: 170px;
  }

  .process-marker::after,
  .process-step:nth-child(2) .process-marker::after,
  .process-step:nth-child(3) .process-marker::after,
  .process-step:last-child .process-marker::after {
    top: 8px;
    right: auto;
    bottom: -50px;
    left: 7px;
    width: 1px;
    height: auto;
  }

  .process-step:last-child .process-marker::after {
    display: none;
  }

  .process-marker i {
    position: absolute;
    top: 1px;
    left: 0;
  }

  .process-verb {
    margin: 0 0 18px;
  }

  .founders-heading h2 {
    font-size: clamp(3rem, 13vw, 4.8rem);
  }

  .founders-grid {
    gap: 42px;
  }

  .founders-figure {
    min-height: 500px;
  }

  .founders-figure img {
    object-position: 66% center;
  }

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

  .form-actions,
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .button {
    width: 100%;
  }

  .hero-caption {
    flex-wrap: wrap;
  }

  .footer-top {
    padding-top: 38px;
  }
}

@media (max-width: 440px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .hero-media {
    min-height: 370px;
  }

  .hero-media img,
  .founders-figure img {
    object-position: 66% center;
  }

  .hero-inner {
    padding-inline: 16px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15.5vw, 4.2rem);
  }

  .eyebrow {
    letter-spacing: 0.11em;
  }

  .service-output {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .diagnostic-options {
    padding: 10px;
  }

  .diagnostic-option {
    padding-inline: 12px;
  }

  .mandate-card {
    grid-template-columns: 25px 1fr;
    gap: 12px;
  }

  .mandate-arrow {
    display: none;
  }

  .founders-figure {
    min-height: 430px;
  }

  .founders-figure figcaption {
    flex-direction: column;
    gap: 3px;
  }

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

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

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

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

@media print {
  .concept-ribbon,
  .site-header,
  .capability-rail,
  .section-diagnostic,
  .section-contact,
  .site-footer {
    display: none !important;
  }

  .hero {
    min-height: 680px;
    max-height: 680px;
  }

  .section {
    break-inside: avoid;
  }
}
