:root {
  --navy: #061225;
  --navy-2: #0a1c34;
  --navy-3: #112944;
  --ivory: #f6f1e7;
  --paper: #fbf8f1;
  --ink: #122335;
  --muted: #6c7880;
  --gold: #efbf4f;
  --gold-deep: #b98829;
  --cyan: #43c3d7;
  --cyan-deep: #138fa5;
  --line: #d5cfc3;
  --serif: "Sentient", Georgia, serif;
  --sans: "General Sans", Arial, sans-serif;
  --gutter: clamp(1.25rem, 5vw, 5rem);
  --max: 1320px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--gold);
  color: var(--navy);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  min-height: 88px;
  padding: 0 var(--gutter);
  border-bottom: 1px solid #ffffff26;
  color: var(--ivory);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  width: fit-content;
  text-decoration: none;
}

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

.brand > span {
  display: grid;
  line-height: 1;
}

.brand strong {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.brand small {
  margin-top: 0.42rem;
  color: #a4b3c0;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 2rem;
}

nav a,
.header-cta,
.text-link {
  font-size: 0.77rem;
  font-weight: 500;
  text-decoration: none;
}

nav a {
  padding-block: 0.25rem;
  border-bottom: 1px solid transparent;
}

nav a:hover {
  border-color: var(--cyan);
}

nav a.nav-current {
  border-color: var(--gold);
}

.mobile-nav {
  display: none;
  position: relative;
  justify-self: end;
}

.mobile-nav summary {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--gold);
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 600;
  list-style: none;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav > div {
  position: absolute;
  top: calc(100% + 1rem);
  right: 0;
  display: grid;
  width: min(82vw, 330px);
  padding: 0.7rem;
  border: 1px solid #2b455d;
  background: #08172b;
  box-shadow: 0 20px 50px #02081380;
}

.mobile-nav a {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid #20384e;
  color: var(--ivory);
  font-size: 0.78rem;
  text-decoration: none;
}

.mobile-nav a:last-child {
  border-bottom: 0;
  color: var(--gold);
}

.header-cta {
  justify-self: end;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gold);
}

.hero {
  position: relative;
  min-height: min(950px, 100vh);
  overflow: hidden;
  background: var(--navy);
  color: var(--ivory);
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 18, 37, 1) 0%, rgba(6, 18, 37, 0.97) 33%, rgba(6, 18, 37, 0.5) 64%, rgba(6, 18, 37, 0.08) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: min(950px, 100vh);
  width: min(63%, 930px);
  flex-direction: column;
  justify-content: center;
  padding: 7.5rem 0 4rem var(--gutter);
}

.eyebrow {
  margin: 0 0 1.5rem;
  color: var(--cyan);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

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

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 880px;
  font-size: clamp(3.7rem, 7.3vw, 7.7rem);
  line-height: 0.9;
}

h1 span {
  color: var(--gold);
}

.hero-content h1 {
  font-size: clamp(3.5rem, 5.6vw, 6rem);
  line-height: 0.92;
}

h2 {
  font-size: clamp(2.7rem, 4.6vw, 4.8rem);
  line-height: 0.96;
}

.hero-content > p:not(.eyebrow),
.lead {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  line-height: 1.55;
}

.hero-content > p:not(.eyebrow) {
  max-width: 680px;
  margin: 2rem 0 0;
  color: #b4c1cc;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.3rem;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.3rem;
  border: 1px solid transparent;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

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

.button-gold {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy);
}

.button-gold:hover {
  border-color: var(--cyan);
  background: var(--cyan);
}

.button-dark {
  background: var(--navy);
  color: var(--ivory);
}

.text-link span {
  color: var(--cyan);
}

.hero-status {
  position: absolute;
  right: var(--gutter);
  bottom: 2.5rem;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 110px auto;
  gap: 0.7rem;
  align-items: center;
  color: #9fb0bd;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-status i {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
}

.hero-status i::after {
  position: absolute;
  top: -3px;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ivory);
  content: "";
}

.hero-status strong {
  grid-column: 1 / -1;
  color: var(--ivory);
  text-align: center;
}

.manifesto,
.symbiosis,
.book,
.closing {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4.75rem, 8vw, 8rem) var(--gutter);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 0.64fr;
  gap: clamp(3rem, 9vw, 9rem);
}

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

.manifesto-grid > div {
  align-self: end;
}

.manifesto-grid > div p:not(.lead) {
  color: var(--muted);
}

.system {
  position: relative;
  padding: clamp(4.75rem, 8vw, 8rem) var(--gutter);
  overflow: hidden;
  background: var(--navy);
  color: var(--ivory);
}

.system::before {
  position: absolute;
  top: -400px;
  left: 45%;
  width: 700px;
  height: 700px;
  border: 1px solid #43c3d727;
  border-radius: 50%;
  content: "";
}

.system-heading {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto 4rem;
}

.system-heading > p:not(.eyebrow) {
  max-width: 700px;
  color: #aab9c5;
}

.framework-caption {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  max-width: var(--max);
  margin: 0 auto 2.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #2b455d;
}

.framework-caption span,
.dimension-intro span {
  color: var(--gold);
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.framework-caption p,
.dimension-intro p {
  margin: 0;
  color: #8fa1af;
  font-size: 0.76rem;
}

.signal-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: var(--max);
  margin: 0 auto;
}

.signal-line {
  position: absolute;
  top: 73px;
  right: 10%;
  left: 10%;
  height: 2px;
  background: #29445c;
}

.signal-line span {
  display: block;
  width: 32%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  box-shadow: 0 0 15px #43c3d7aa;
  animation: signal 4s ease-in-out infinite alternate;
}

@keyframes signal {
  from { transform: translateX(0); }
  to { transform: translateX(210%); }
}

.signal-map article {
  position: relative;
  z-index: 1;
  padding: 0 1rem;
  text-align: center;
}

.number {
  display: block;
  color: #7f94a5;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}

.node {
  width: 24px;
  height: 24px;
  margin: 2rem auto;
  border: 5px solid var(--navy);
  border-radius: 50%;
  box-shadow: 0 0 0 1px #486078;
}

.node.gold {
  background: var(--gold);
  box-shadow: 0 0 25px #efbf4f99;
}

.node.cyan {
  background: var(--cyan);
  box-shadow: 0 0 25px #43c3d799;
}

.node.fused {
  background: linear-gradient(135deg, var(--gold) 0 48%, var(--cyan) 52% 100%);
  box-shadow: 0 0 28px #ffffff55;
}

.signal-map h3 {
  min-height: 58px;
  margin: 0;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.12;
}

.signal-map p {
  color: #95a6b3;
  font-size: 0.78rem;
}

.domain-layer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.85fr repeat(4, 1fr);
  max-width: var(--max);
  margin: 3.5rem auto 0;
  border-top: 1px solid #2b455d;
  border-bottom: 1px solid #2b455d;
}

.domain-layer > * {
  min-height: 112px;
  padding: 1.35rem;
  border-right: 1px solid #2b455d;
}

.domain-layer > :last-child {
  border-right: 0;
}

.domain-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.domain-intro span,
.domain-layer article > span {
  color: var(--gold);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.domain-intro p {
  margin: 0.35rem 0 0;
  color: #8fa1af;
  font-size: 0.76rem;
}

.domain-layer article {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.018), transparent);
}

.domain-layer article:nth-of-type(even) > span {
  color: var(--cyan);
}

.domain-layer strong {
  max-width: 10rem;
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 400;
  line-height: 1.15;
}

.dimension-layer {
  max-width: 720px;
  margin: 2.5rem auto 0;
}

.dimension-intro {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 0.8rem;
}

.system-dimensions {
  display: flex;
  justify-content: center;
  gap: 1px;
  margin: 0;
  background: #2b455d;
}

.system-dimensions span {
  flex: 1;
  padding: 0.8rem;
  background: var(--navy-2);
  color: #a5b5c1;
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.symbiosis {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.symbiosis-copy > .lead {
  color: var(--muted);
}

.symbiosis-model {
  position: relative;
  min-height: 560px;
}

.orbit {
  position: absolute;
  top: 50%;
  display: flex;
  width: 58%;
  aspect-ratio: 1;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  border-radius: 50%;
  transform: translateY(-50%);
}

.orbit-human {
  left: 0;
  padding-right: 8.5rem;
  border: 1px solid var(--gold-deep);
  background: #efbf4f12;
}

.orbit-intelligence {
  right: 0;
  align-items: flex-end;
  padding-left: 8.5rem;
  border: 1px solid var(--cyan-deep);
  background: #43c3d712;
  text-align: right;
}

.orbit > span {
  max-width: 12rem;
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 1.45rem;
}

.orbit-intelligence > span {
  color: var(--cyan-deep);
}

.orbit ul {
  margin: 1rem 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.9;
  list-style: none;
}

.orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 200px;
  aspect-ratio: 1;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--ivory);
  text-align: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 65px #163f5980;
}

.orbit-core strong {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.1;
}

.orbit-core small {
  max-width: 9.5rem;
  margin-top: 0.8rem;
  color: #92a5b3;
  font-size: 0.56rem;
  line-height: 1.45;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.assessment-note {
  color: #8fa1af;
  font-size: 0.76rem;
}

/* About Novus */

.about-hero .subpage-hero-content {
  width: min(72%, 1040px);
}

.about-hero .subpage-hero-content h1 span,
.contact-hero-content h1 span {
  color: var(--gold);
}

.founder-profile,
.partner-ecosystem,
.personal-note,
.about-cta,
.contact-paths,
.direct-contact,
.contact-next {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4.75rem, 8vw, 8rem) var(--gutter);
}

.founder-profile {
  display: grid;
  grid-template-columns: minmax(180px, 0.65fr) minmax(260px, 0.9fr) minmax(320px, 1.25fr);
  gap: clamp(2.5rem, 4.5vw, 5rem);
  align-items: start;
}

.founder-portrait {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--navy);
}

.founder-portrait::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(6, 18, 37, 0.14);
  content: "";
  pointer-events: none;
}

.founder-portrait picture,
.founder-portrait img {
  display: block;
  width: 100%;
  height: 100%;
}

.founder-portrait img {
  object-fit: cover;
}

.founder-intro h2,
.about-philosophy h2,
.ecosystem-heading h2,
.personal-note h2,
.about-cta h2,
.contact-heading h2,
.direct-contact h2,
.contact-next h2 {
  font-size: clamp(2.8rem, 4.5vw, 4.8rem);
}

.founder-intro h2,
.direct-contact h2 {
  font-size: clamp(2.45rem, 4.3vw, 4.6rem);
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.founder-intro h2 {
  font-size: clamp(2.45rem, 3.6vw, 3.25rem);
}

.founder-role {
  margin-top: 1.4rem;
  color: var(--muted);
}

.founder-story {
  max-width: 660px;
}

.founder-story p:not(.lead),
.ecosystem-heading > p:not(.eyebrow),
.personal-note > div:last-child p:not(.lead),
.contact-next > div:last-child p {
  color: var(--muted);
}

.about-philosophy {
  padding: clamp(4.75rem, 8vw, 8rem) var(--gutter);
  background: var(--navy);
  color: var(--ivory);
}

.about-philosophy > div {
  max-width: var(--max);
  margin: 0 auto;
}

.about-philosophy > div:first-child {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid #2a435a;
}

.about-principles article {
  min-height: 230px;
  padding: 2rem 2.4rem 1rem 0;
  border-right: 1px solid #2a435a;
}

.about-principles article + article {
  padding-left: 2.4rem;
}

.about-principles article:last-child {
  border-right: 0;
}

.about-principles span,
.contact-grid span {
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.about-principles h3,
.ecosystem-grid h3,
.contact-grid h3 {
  margin: 2.3rem 0 1rem;
  font-size: 1.65rem;
}

.about-principles p,
.ecosystem-grid p,
.contact-grid p {
  color: #9fb0bd;
  font-size: 0.92rem;
}

.partner-ecosystem {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(4rem, 9vw, 8rem);
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
}

.ecosystem-grid article {
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--line);
}

.ecosystem-grid h3 {
  margin: 0.6rem 0 0.8rem;
  color: var(--navy);
}

.ecosystem-grid p {
  max-width: 640px;
  color: var(--muted);
}

.card-kicker {
  color: var(--teal) !important;
  font-size: 0.65rem !important;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.personal-note {
  display: grid;
  grid-template-columns: 110px 0.85fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
  background: var(--navy);
  color: var(--ivory);
  max-width: none;
}

.personal-note > div:not(.personal-mark) {
  max-width: 560px;
}

.personal-mark {
  position: relative;
  width: 90px;
  height: 90px;
  border: 1px solid #34516a;
  border-radius: 50%;
}

.personal-mark span,
.personal-mark i,
.personal-mark b {
  position: absolute;
  display: block;
  border-radius: 50%;
}

.personal-mark span {
  inset: 19px;
  border: 1px solid var(--cyan);
}

.personal-mark i {
  inset: 34px;
  background: var(--gold);
}

.personal-mark b {
  top: -4px;
  left: 43px;
  width: 4px;
  height: 4px;
  background: var(--cyan);
}

.about-cta {
  text-align: center;
}

.about-cta .how-cta-actions {
  justify-content: center;
}

/* Contact */

.contact-hero {
  position: relative;
  display: flex;
  min-height: min(720px, 100vh);
  overflow: hidden;
  align-items: center;
  padding: 8rem var(--gutter) 5rem;
  background: var(--navy);
  color: var(--ivory);
}

.contact-aurora {
  position: absolute;
  top: -20%;
  right: -8%;
  width: min(70vw, 900px);
  aspect-ratio: 1;
  border: 1px solid #43c3d744;
  border-radius: 50%;
  box-shadow:
    0 0 0 110px #43c3d70b,
    0 0 0 220px #efbf4f0a,
    inset 0 0 100px #43c3d714;
}

.contact-aurora::before,
.contact-aurora::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.contact-aurora::before {
  inset: 18%;
  border: 1px solid #efbf4f66;
}

.contact-aurora::after {
  inset: 39%;
  background: radial-gradient(circle at 35% 35%, #efbf4f, #43c3d7 45%, transparent 70%);
  opacity: 0.75;
  filter: blur(2px);
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.contact-hero-content h1 {
  font-size: clamp(3.8rem, 5.8vw, 6.2rem);
}

.contact-hero-content > p:not(.eyebrow) {
  max-width: 680px;
  margin: 2rem 0;
  color: #b4c1cc;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
}

.contact-paths {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: clamp(4rem, 9vw, 9rem);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.contact-grid article {
  min-height: 225px;
  padding: 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-grid h3 {
  margin-top: 2.2rem;
  color: var(--navy);
}

.contact-grid p {
  color: var(--muted);
}

.direct-contact {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(4rem, 9vw, 9rem);
  max-width: none;
  background: var(--navy);
  color: var(--ivory);
}

.direct-contact > div:first-child {
  padding-left: max(0px, calc((100vw - var(--max)) / 2));
}

.email-panel {
  align-self: center;
  max-width: 760px;
  padding: 3rem;
  border: 1px solid #2b455d;
}

.email-panel > p {
  margin-top: 0;
  color: #9fb0bd;
}

.email-panel a {
  display: inline-block;
  margin: 1rem 0 2rem;
  color: var(--gold);
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.7vw, 2.8rem);
  text-decoration: none;
  overflow-wrap: anywhere;
}

.email-panel small {
  display: block;
  max-width: 620px;
  color: #9fb0bd;
  font-size: 0.82rem;
  line-height: 1.7;
}

.contact-next {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: clamp(4rem, 9vw, 9rem);
  align-items: end;
}

.contact-next .button {
  margin-top: 2rem;
}

/* How Novus Works */

.subpage-hero {
  position: relative;
  min-height: min(780px, 100vh);
  overflow: hidden;
  background: var(--navy);
  color: var(--ivory);
}

.subpage-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.88);
}

.subpage-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 18, 37, 1) 0%, rgba(6, 18, 37, 0.96) 42%, rgba(6, 18, 37, 0.4) 75%, rgba(6, 18, 37, 0.14) 100%),
    linear-gradient(0deg, rgba(6, 18, 37, 0.7), transparent 45%);
}

.subpage-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: min(780px, 100vh);
  width: min(68%, 980px);
  flex-direction: column;
  justify-content: center;
  padding: 8rem 0 5rem var(--gutter);
}

.subpage-hero-content h1 {
  max-width: 900px;
  font-size: clamp(3.7rem, 5.8vw, 6.1rem);
}

.subpage-hero-content > p:not(.eyebrow) {
  max-width: 700px;
  margin: 2rem 0 0;
  color: #b4c1cc;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
}

.subpage-sequence {
  position: absolute;
  right: var(--gutter);
  bottom: 3rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #a9b8c4;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.subpage-sequence i {
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
}

.implementation-thesis,
.system-in-motion,
.engagement-work,
.how-cta {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4.75rem, 8vw, 8rem) var(--gutter);
}

.implementation-thesis > div {
  display: grid;
  grid-template-columns: 1.15fr 0.7fr;
  gap: clamp(3rem, 9vw, 9rem);
  align-items: end;
}

.implementation-thesis h2,
.motion-heading h2,
.engagement-heading h2,
.how-cta h2 {
  font-size: clamp(2.8rem, 4.5vw, 4.8rem);
}

.thesis-copy p:not(.lead),
.engagement-heading > p:not(.eyebrow) {
  color: var(--muted);
}

.foundational-moves {
  padding: clamp(4.75rem, 8vw, 8rem) var(--gutter);
  background: var(--navy);
  color: var(--ivory);
}

.moves-heading {
  max-width: var(--max);
  margin: 0 auto clamp(3rem, 6vw, 5rem);
}

.moves-heading h2 {
  max-width: 850px;
  font-size: clamp(3rem, 5vw, 5.2rem);
}

.moves-heading > p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 1.8rem;
  color: #aab9c5;
  font-size: 1.08rem;
}

.move-row {
  display: grid;
  grid-template-columns: 90px minmax(240px, 0.7fr) minmax(320px, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2.5rem, 4.5vw, 4rem) 0;
  border-top: 1px solid #2b455d;
}

.move-row:last-child {
  border-bottom: 1px solid #2b455d;
}

.move-number,
.move-title > span {
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.move-capability .move-number,
.move-capability .move-title > span {
  color: var(--cyan);
}

.move-title h3 {
  max-width: 420px;
  margin: 0.8rem 0 0;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 3.2vw, 3.4rem);
  font-weight: 400;
  line-height: 1;
}

.move-detail > p {
  margin-top: 0;
  color: #c0cad2;
  font-size: 1.05rem;
}

.move-detail ul {
  margin: 1.7rem 0 2rem;
  padding: 0;
  color: #91a4b2;
  list-style: none;
}

.move-detail li {
  position: relative;
  padding: 0.75rem 0 0.75rem 1.5rem;
  border-top: 1px solid #213b55;
}

.move-detail li::before {
  position: absolute;
  top: 1.4rem;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  content: "";
}

.move-clarity .move-detail li::before,
.move-acceleration .move-detail li::before {
  background: var(--gold);
}

.move-output {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  padding-top: 1rem;
  border-top: 1px solid #36506a;
}

.move-output span {
  color: #7790a3;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.move-output strong {
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
}

.motion-heading {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.motion-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -1rem;
}

.motion-heading .lead {
  color: var(--muted);
}

.component-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.component-grid article {
  min-height: 225px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.component-grid article:nth-child(2),
.component-grid article:nth-child(5) {
  background: #f1ecdf;
}

.component-grid article > span,
.engagement-lanes article > span {
  color: var(--cyan-deep);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.component-grid h3,
.engagement-lanes h3 {
  margin: 2.2rem 0 1rem;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.component-grid p,
.engagement-lanes p {
  color: var(--muted);
  font-size: 0.9rem;
}

.engagement-work {
  max-width: none;
  background: var(--navy-2);
  color: var(--ivory);
}

.engagement-heading,
.engagement-lanes,
.partner-note {
  max-width: var(--max);
  margin-inline: auto;
}

.engagement-heading {
  display: grid;
  grid-template-columns: 1fr 0.68fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.engagement-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -1rem;
}

.engagement-heading > p:not(.eyebrow) {
  color: #9fb0bd;
  font-size: 1.05rem;
}

.engagement-lanes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: clamp(4rem, 7vw, 6rem);
  background: #2b455d;
}

.engagement-lanes article {
  min-height: 280px;
  padding: clamp(1.5rem, 3vw, 2.8rem);
  background: var(--navy);
}

.engagement-lanes article:nth-child(2) {
  background: #0d223b;
}

.engagement-lanes p {
  color: #93a5b3;
}

.partner-note {
  margin-top: 2rem;
  color: #8094a4;
  font-size: 0.8rem;
}

.how-cta {
  text-align: center;
}

.how-cta > p:not(.eyebrow) {
  max-width: 660px;
  margin: 1.7rem auto 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.how-cta-actions {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  align-items: center;
  margin-top: 2.5rem;
}

.dark-link {
  color: var(--ink);
}

.sequence {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(4rem, 10vw, 10rem);
  padding: clamp(4.75rem, 8vw, 8rem) var(--gutter);
  background: var(--navy-2);
  color: var(--ivory);
}

.sequence-intro {
  max-width: 640px;
  margin-left: auto;
}

.sequence-track {
  position: relative;
  max-width: 700px;
}

.sequence-track::before {
  position: absolute;
  top: 1rem;
  bottom: 1rem;
  left: 10px;
  width: 1px;
  background: linear-gradient(var(--gold), var(--cyan));
  content: "";
}

.sequence-track article {
  position: relative;
  display: grid;
  grid-template-columns: 1.25rem minmax(0, 1fr);
  gap: 1.35rem;
  padding: 0 0 3rem;
}

.sequence-track article > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 20px;
  height: 20px;
  justify-self: center;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.5rem;
}

.sequence-track article:nth-child(2) > span {
  background: linear-gradient(135deg, var(--gold), var(--cyan));
}

.sequence-track article:nth-child(3) > span {
  background: var(--cyan);
}

.sequence-track h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.sequence-track p {
  margin: 0.4rem 0 0;
  max-width: 38rem;
  color: #a4b3bf;
}

.book {
  display: grid;
  grid-template-columns: 0.7fr 0.9fr;
  gap: clamp(4rem, 10vw, 10rem);
  align-items: center;
}

.book-stage {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
  overflow: hidden;
  background: var(--navy);
}

.book-stage img {
  position: relative;
  z-index: 2;
  width: min(62%, 390px);
  border: 1px solid #efbf4f99;
  box-shadow: 0 35px 80px #000a;
}

.book-orbit {
  position: absolute;
  border: 1px solid;
  border-radius: 50%;
}

.book-orbit.one {
  width: 70%;
  aspect-ratio: 1;
  border-color: #efbf4f55;
  animation: orbit 16s linear infinite;
}

.book-orbit.two {
  width: 95%;
  aspect-ratio: 1;
  border-color: #43c3d744;
  animation: orbit 24s linear infinite reverse;
}

.book-orbit::after {
  position: absolute;
  top: 50%;
  left: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
  box-shadow: 0 0 18px currentColor;
}

.book-orbit.two::after {
  top: 15%;
  right: 8%;
  left: auto;
  background: var(--cyan);
}

@keyframes orbit {
  to { transform: rotate(360deg); }
}

.book-copy h2 {
  font-size: clamp(3rem, 5vw, 5rem);
}

.book-copy > .lead {
  color: var(--muted);
}

.book-availability {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 0.8rem;
  margin: 2rem 0;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.book-availability span {
  padding-right: 0.8rem;
  border-right: 1px solid var(--gold);
  color: var(--navy);
  font-weight: 600;
}

.book-path {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 2.5rem 0;
  color: var(--muted);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.book-path i {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
}

blockquote {
  margin: 2.5rem 0 1rem;
  padding-left: 1.3rem;
  border-left: 2px solid var(--gold);
}

blockquote p {
  margin: 0;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.15;
}

.author {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.assessment-section {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: clamp(4rem, 9vw, 9rem);
  padding: clamp(4.75rem, 8vw, 8rem) var(--gutter);
  background:
    radial-gradient(circle at 12% 85%, #43c3d717, transparent 25%),
    radial-gradient(circle at 90% 8%, #efbf4f14, transparent 22%),
    var(--navy);
  color: var(--ivory);
}

.assessment-intro {
  max-width: 650px;
}

.assessment-intro > p:not(.eyebrow) {
  color: #a9b7c2;
}

.assessment-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.assessment-facts span {
  padding: 0.45rem 0.7rem;
  border: 1px solid #35516b;
  color: #99aab7;
  font-size: 0.63rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.assessment-card {
  min-height: 600px;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  border: 1px solid #35516b;
  background: #0a1c34d9;
  backdrop-filter: blur(10px);
}

#assessment-start {
  display: flex;
  min-height: 490px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.assessment-kicker,
.priority-callout > span {
  display: block;
  margin-bottom: 1.3rem;
  color: var(--cyan);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

#assessment-start h3 {
  max-width: 620px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 4.7vw, 4.7rem);
  font-weight: 400;
  line-height: 0.98;
}

#assessment-start > p {
  max-width: 540px;
  color: #a9b7c2;
}

#assessment-start .button {
  margin-top: 1.5rem;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  color: #94a6b4;
  font-size: 0.64rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.progress-track {
  height: 2px;
  margin: 0.8rem 0 3rem;
  background: #35516b;
}

.progress-track span {
  display: block;
  width: 10%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  transition: width 220ms ease;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  min-height: 160px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
}

.scale-labels {
  display: flex;
  justify-content: space-between;
  margin: 2rem 0 0.6rem;
  color: #8295a3;
  font-size: 0.62rem;
}

.rating-options {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid #35516b;
  border-left: 1px solid #35516b;
}

.rating-option {
  position: relative;
}

.rating-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.rating-option label {
  display: grid;
  min-height: 68px;
  place-items: center;
  border-right: 1px solid #35516b;
  border-bottom: 1px solid #35516b;
  cursor: pointer;
}

.rating-option input:checked + label {
  background: linear-gradient(135deg, var(--gold), var(--cyan));
  color: var(--navy);
}

.rating-option input:focus-visible + label {
  outline: 3px solid var(--cyan);
  outline-offset: -3px;
}

.form-message {
  min-height: 1.5rem;
  margin: 0.7rem 0;
  color: var(--gold);
  font-size: 0.78rem;
}

.assessment-controls,
.result-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
}

.text-button {
  padding: 0.6rem 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.result-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #35516b;
}

.result-heading small {
  color: #91a3b0;
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.result-heading h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 3.3rem;
  font-weight: 400;
}

.result-heading > strong {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 400;
  line-height: 1;
}

.result-heading > strong span {
  color: #8093a1;
  font-family: var(--sans);
  font-size: 0.72rem;
}

#result-summary {
  color: #aab8c3;
}

.priority-callout {
  margin: 1.4rem 0;
  padding: 1.2rem;
  border-left: 3px solid var(--gold);
  background: var(--navy-3);
}

.priority-callout > span {
  margin-bottom: 0.5rem;
}

.priority-callout strong {
  display: block;
}

.priority-callout p {
  margin: 0.3rem 0 0;
  color: #aebbc5;
  font-size: 0.8rem;
}

.result-bar {
  display: grid;
  grid-template-columns: 150px 1fr 2rem;
  gap: 0.8rem;
  align-items: center;
  margin: 0.5rem 0;
  font-size: 0.7rem;
}

.bar-track {
  height: 5px;
  background: #35516b;
}

.bar-track span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
}

.closing {
  text-align: center;
}

.closing-mark {
  position: relative;
  width: 190px;
  height: 80px;
  margin: 0 auto 2rem;
}

.closing-mark span {
  position: absolute;
  top: 38px;
  width: 100px;
  height: 2px;
}

.gold-line {
  left: 0;
  background: linear-gradient(90deg, transparent, var(--gold));
  transform: rotate(22deg);
}

.cyan-line {
  right: 0;
  background: linear-gradient(90deg, var(--cyan), transparent);
  transform: rotate(-22deg);
}

.closing-mark i {
  position: absolute;
  top: 34px;
  left: 91px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ink);
}

.closing h2 {
  font-size: clamp(3.2rem, 6.5vw, 6.3rem);
}

.closing > p:not(.eyebrow) {
  max-width: 680px;
  margin: 1.5rem auto 2rem;
  color: var(--muted);
}

footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 4rem;
  align-items: end;
  padding: 3rem var(--gutter);
  background: var(--navy);
  color: #91a2ae;
  font-size: 0.7rem;
}

.footer-brand {
  color: var(--ivory);
}

footer p {
  margin: 0;
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .hero-content {
    width: 78%;
  }

  .subpage-hero-content {
    width: 82%;
  }

  .manifesto-grid,
  .symbiosis,
  .sequence,
  .book,
  .assessment-section {
    grid-template-columns: 1fr;
  }

  .implementation-thesis > div,
  .motion-heading,
  .engagement-heading,
  .founder-profile,
  .partner-ecosystem,
  .personal-note,
  .contact-paths,
  .direct-contact,
  .contact-next {
    grid-template-columns: 1fr;
  }

  .about-philosophy > div:first-child {
    grid-template-columns: 1fr;
  }

  .founder-profile {
    gap: 2.5rem;
  }

  .founder-portrait {
    width: min(100%, 420px);
  }

  .personal-note {
    gap: 2.5rem;
  }

  .direct-contact > div:first-child {
    padding-left: 0;
  }

  .motion-heading .eyebrow,
  .engagement-heading .eyebrow {
    margin-bottom: 0;
  }

  .move-row {
    grid-template-columns: 56px minmax(220px, 0.7fr) 1fr;
    gap: 2rem;
  }

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

  .engagement-lanes {
    grid-template-columns: 1fr;
  }

  .signal-map {
    grid-template-columns: 1fr;
    max-width: 680px;
  }

  .signal-line {
    top: 0;
    right: auto;
    bottom: 0;
    left: 28px;
    width: 2px;
    height: auto;
  }

  .signal-line span {
    width: 100%;
    height: 32%;
    animation-name: signal-vertical;
  }

  @keyframes signal-vertical {
    from { transform: translateY(0); }
    to { transform: translateY(210%); }
  }

  .signal-map article {
    display: grid;
    grid-template-columns: 25px 38px 0.55fr 1fr;
    gap: 1rem;
    align-items: center;
    padding: 1rem 0;
    text-align: left;
  }

  .node {
    margin: 0;
  }

  .signal-map h3 {
    min-height: 0;
  }

  .domain-layer {
    grid-template-columns: repeat(2, 1fr);
    max-width: 680px;
  }

  .domain-layer > * {
    border-bottom: 1px solid #2b455d;
  }

  .domain-layer > :nth-child(even) {
    border-right: 0;
  }

  .domain-layer > :nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .domain-intro {
    grid-column: 1 / -1;
    min-height: 90px;
    border-right: 0;
  }

  .symbiosis-model {
    min-height: 600px;
  }

  .sequence-intro {
    margin-left: 0;
  }

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

  footer > p:first-of-type {
    display: none;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 72px;
    padding-inline: 1rem;
  }

  .brand small {
    display: none;
  }

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

  .hero {
    min-height: 920px;
  }

  .hero > img {
    object-position: 63% center;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(6, 18, 37, 0.98) 0%, rgba(6, 18, 37, 0.9) 56%, rgba(6, 18, 37, 0.25) 100%);
  }

  .hero-content {
    width: 100%;
    min-height: 860px;
    justify-content: flex-start;
    padding: 7rem 1.25rem 7rem;
  }

  h1 {
    font-size: clamp(3rem, 13vw, 4.1rem);
  }

  h2 {
    font-size: clamp(2.45rem, 11.5vw, 3.35rem);
  }

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

  .hero-status {
    right: 1.25rem;
    bottom: 1.25rem;
    left: 1.25rem;
  }

  .subpage-hero {
    min-height: 850px;
  }

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

  .subpage-hero-overlay {
    background: linear-gradient(180deg, rgba(6, 18, 37, 0.99) 0%, rgba(6, 18, 37, 0.9) 66%, rgba(6, 18, 37, 0.35) 100%);
  }

  .subpage-hero-content {
    min-height: 800px;
    width: 100%;
    justify-content: flex-start;
    padding: 7rem 1.25rem 7rem;
  }

  .subpage-hero-content h1 {
    font-size: clamp(2.9rem, 12.5vw, 3.8rem);
  }

  .subpage-sequence {
    right: 1.25rem;
    bottom: 1.5rem;
    left: 1.25rem;
    gap: 0.45rem;
    justify-content: space-between;
    font-size: 0.56rem;
  }

  .subpage-sequence i {
    width: 28px;
  }

  .implementation-thesis,
  .system-in-motion,
  .engagement-work,
  .how-cta,
  .founder-profile,
  .partner-ecosystem,
  .personal-note,
  .about-cta,
  .contact-paths,
  .direct-contact,
  .contact-next {
    padding-inline: 1.25rem;
  }

  .about-hero .subpage-hero-content {
    width: 100%;
  }

  .founder-intro h2,
  .about-philosophy h2,
  .ecosystem-heading h2,
  .personal-note h2,
  .about-cta h2,
  .contact-heading h2,
  .direct-contact h2,
  .contact-next h2 {
    font-size: clamp(2.5rem, 11.5vw, 3.4rem);
  }

  .founder-intro h2,
  .direct-contact h2 {
    font-size: clamp(2.25rem, 10vw, 2.7rem);
  }

  .founder-portrait {
    width: 100%;
  }

  .about-principles,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-principles article,
  .about-principles article + article {
    min-height: 0;
    padding: 2rem 0;
    border-right: 0;
    border-bottom: 1px solid #2a435a;
  }

  .about-principles article:last-child {
    border-bottom: 0;
  }

  .personal-note {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    min-height: 760px;
    padding: 7rem 1.25rem 4rem;
  }

  .contact-hero-content h1 {
    font-size: clamp(2.9rem, 12.5vw, 3.8rem);
  }

  .contact-aurora {
    top: 45%;
    right: -65%;
    width: 150vw;
  }

  .contact-grid article {
    min-height: 0;
    padding: 1.6rem;
  }

  .email-panel {
    padding: 2rem 1.25rem;
  }

  /* The email address is one unbreakable token. At the desktop clamp minimum it
     overflowed the narrow panel and broke mid-word, orphaning a single "m" on a
     second line. Size it to fit on a 390px viewport instead of letting it wrap.
     `overflow-wrap: anywhere` is kept as a safety valve for very narrow
     devices, but should never actually engage at >=360px. */
  .email-panel a {
    font-size: clamp(1.05rem, 5.1vw, 1.6rem);
    margin: 0.85rem 0 1.6rem;
    line-height: 1.25;
  }

  .implementation-thesis h2,
  .motion-heading h2,
  .engagement-heading h2,
  .how-cta h2 {
    font-size: clamp(2.5rem, 11.5vw, 3.4rem);
  }

  .foundational-moves {
    padding-inline: 1.25rem;
  }

  .moves-heading h2 {
    font-size: clamp(2.65rem, 11.5vw, 3.5rem);
  }

  .move-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding-block: 2.75rem;
  }

  .move-number {
    margin-bottom: 0.5rem;
  }

  .move-title h3 {
    font-size: 2.25rem;
  }

  .move-output {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

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

  .component-grid article {
    min-height: 180px;
  }

  .engagement-lanes article {
    min-height: 200px;
  }

  .how-cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .signal-map article {
    grid-template-columns: 20px 32px 1fr;
  }

  .framework-caption,
  .dimension-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .signal-map p {
    grid-column: 3;
    margin: 0;
  }

  .system-dimensions {
    flex-direction: column;
  }

  .domain-layer > * {
    min-height: 104px;
    padding: 1.1rem;
  }

  .symbiosis-model {
    display: grid;
    grid-template-areas:
      "human"
      "core"
      "intelligence";
    gap: 0.75rem;
    min-height: 0;
  }

  .orbit {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    min-height: 190px;
    aspect-ratio: auto;
    align-items: flex-start;
    padding: 2rem;
    border-radius: 1.5rem;
    transform: none;
    text-align: left;
  }

  .orbit-human {
    grid-area: human;
    padding: 2rem;
    border-left: 4px solid var(--gold);
  }

  .orbit-intelligence {
    grid-area: intelligence;
    align-items: flex-start;
    padding: 2rem;
    border-left: 4px solid var(--cyan);
    text-align: left;
  }

  .orbit > span {
    max-width: none;
    font-size: 1.55rem;
  }

  .orbit ul {
    max-width: none;
  }

  .orbit-core {
    position: relative;
    top: auto;
    left: auto;
    grid-area: core;
    width: 100%;
    min-height: 132px;
    aspect-ratio: auto;
    border-radius: 1.5rem;
    transform: none;
  }

  .sequence {
    padding-inline: 1.25rem;
  }

  .book-stage {
    min-height: 480px;
  }

  .book-path {
    display: grid;
    grid-template-columns: 1fr 20px 1fr;
  }

  .assessment-section {
    padding-inline: 1rem;
  }

  .assessment-card {
    min-height: 520px;
    padding: 1.25rem;
  }

  legend {
    min-height: 170px;
    font-size: 2.15rem;
  }

  .assessment-controls,
  .result-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .assessment-controls .button,
  .result-actions .button {
    width: 100%;
  }

  .result-bar {
    grid-template-columns: 112px 1fr 1.5rem;
    gap: 0.5rem;
    font-size: 0.6rem;
  }

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

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Registered entity name in the direct-contact block */
.direct-contact .entity-name {
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

/* ---------- Email capture ---------- */

.capture {
  margin: 2rem 0 2.5rem;
}

.capture label {
  display: block;
  margin-bottom: 0.85rem;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.capture-lede {
  max-width: 44ch;
  margin: -0.35rem 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.capture-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: stretch;
}

.capture-row input {
  flex: 1 1 15rem;
  min-width: 0;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #ffffff;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.capture-row input::placeholder {
  color: #9aa4ac;
}

.capture-row input:focus {
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px #efbf4f33;
  outline: none;
}

.capture-row .button {
  flex: 0 0 auto;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
}

.capture-row .button:disabled {
  cursor: default;
  opacity: 0.7;
}

.capture-note {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.capture-status {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  line-height: 1.5;
}

.capture-status:empty {
  margin: 0;
}

.capture-status[data-state="ok"] {
  color: var(--gold-deep);
}

.capture-status[data-state="error"] {
  color: #b4342b;
}

/* Dark variant — sits inside the navy assessment card */

.capture-inset {
  margin: 2.25rem 0 0;
  padding: 1.75rem;
  border: 1px solid #35516b;
  background: #06122566;
}

.capture-inset label {
  color: var(--ivory);
}

.capture-inset .capture-lede {
  color: #a9bccd;
}

.capture-inset .capture-row input {
  border-color: #35516b;
  background: #061225;
  color: var(--ivory);
}

.capture-inset .capture-row input::placeholder {
  color: #6d8399;
}

.capture-inset .capture-row input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px #efbf4f2e;
}

.capture-inset .capture-status[data-state="ok"] {
  color: var(--gold);
}

.capture-inset .capture-status[data-state="error"] {
  color: #f0a29b;
}

@media (max-width: 640px) {
  .capture-row .button {
    flex: 1 1 100%;
  }
}

/* Contact page — direct phone line.
   Scoped inside .email-panel so it overrides the panel's large gold link
   treatment (.email-panel a) without touching the email address itself. */
/* Phone line: markup commented out in contact.html on 2026-09-08 pending a
   settled phone provider. These rules are intentionally retained so restoring
   the number is an HTML-only change. Do not delete as "unused CSS." */
.email-panel .phone-line {
  margin: 2.25rem 0 0;
  padding-top: 1.85rem;
  border-top: 1px solid #2b455d;
  color: #9fb0bd;
  font-size: 0.86rem;
  line-height: 1.7;
}

.email-panel .phone-line a {
  display: inline;
  margin: 0;
  padding-bottom: 2px;
  font-family: var(--sans);
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  color: var(--ivory);
  white-space: nowrap;
  border-bottom: 1px solid var(--gold-deep);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.email-panel .phone-line a:hover,
.email-panel .phone-line a:focus-visible {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Honeypot field for Netlify Forms spam filtering. Must remain in the DOM and
   submittable — so it is visually removed rather than display:none'd, which
   some bots detect. Real visitors never see or tab into it. */
.is-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
