:root {
  --ink: #0b0d0e;
  --ink-soft: #111416;
  --panel: #15191b;
  --panel-light: #1a1e20;
  --white: #f2f0e9;
  --muted: #c8c2b8;
  --muted-dark: #a9aaa4;
  --gold: #d9b861;
  --gold-bright: #f0d589;
  --line: rgba(242, 240, 233, 0.13);
  --line-gold: rgba(217, 184, 97, 0.44);
  --radius-button: 14px;
  --display: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --pad: clamp(1.4rem, 4vw, 5rem);
  --font-size-body: clamp(16px, 0.95vw, 18px);
  --font-size-nav: clamp(15px, 0.86vw, 17px);
  --font-size-button: clamp(15px, 0.9vw, 17px);
  --font-size-label: clamp(13px, 0.74vw, 15px);
  --font-size-small: clamp(14px, 0.8vw, 15px);
  --font-size-meta: clamp(13px, 0.72vw, 14px);
  --font-size-h1: clamp(42px, 6vw, 84px);
  --font-size-h2: clamp(32px, 4vw, 56px);
  --font-size-h3: clamp(24px, 2.5vw, 36px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

[id] {
  scroll-margin-top: 88px;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--body);
  font-size: var(--font-size-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: clip;
  overflow-wrap: break-word;
  hyphens: none;
}

h1,
h2,
h3,
p,
li,
a,
button {
  min-width: 0;
  overflow-wrap: break-word;
}

body.menu-open {
  overflow: hidden;
}

.experience-page {
  background: var(--ink);
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

button,
input,
select {
  font: inherit;
}

button {
  color: inherit;
}

h1,
h2,
h3,
.button,
.primary-button,
.header-assessment-link,
.desktop-nav a,
.site-nav a,
.language-switch,
.experience-kicker,
.experience-section-heading span,
.assessment-step legend,
.assessment-step label,
.report-card h2,
.knowledge-section-link,
.knowledge-engine-card,
.legal-hero h1 {
  hyphens: none;
  word-break: normal;
  overflow-wrap: normal;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

[hidden] {
  display: none !important;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 15;
  width: 100%;
  min-height: 88px;
  padding: 0.7rem var(--pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, height 0.4s ease;
}

.site-header.scrolled {
  min-height: 72px;
  background: rgba(11, 13, 14, 0.9);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  width: fit-content;
}

.brand > span:last-child {
  display: none;
}

.brand strong {
  font-size: clamp(1.05rem, 1.2vw, 1.25rem);
  letter-spacing: 0.12em;
  line-height: 1;
}

.brand-text-only {
  color: var(--gold-bright);
}

.brand-mark {
  position: relative;
  width: clamp(190px, 18vw, 330px);
  height: clamp(52px, 5vw, 82px);
  display: grid;
  place-items: center;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.brand-name {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

sup {
  position: relative;
  top: -0.25em;
  margin-left: 0.08em;
  color: var(--gold);
  font-size: 0.43em;
}

.site-nav {
  display: none;
  gap: clamp(0.7rem, 1.3vw, 1.4rem);
}

.site-nav a,
.header-cta {
  position: relative;
  color: #c5c5bf;
  font-size: var(--font-size-nav);
  font-weight: 500;
  letter-spacing: 0.06em;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.6rem;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  color: var(--white);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.5rem;
  min-width: 0;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted-dark);
  font-size: var(--font-size-label);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.language-switch a {
  color: var(--muted-dark);
  transition: color 0.2s ease;
}

.language-switch a:hover,
.language-switch a:focus-visible,
.language-switch a.active {
  color: var(--gold-bright);
}

.header-cta span,
.text-link span {
  margin-left: 0.5rem;
  color: var(--gold);
  transition: transform 0.25s ease;
  display: inline-block;
}

.header-cta:hover span,
.text-link:hover span {
  transform: translate(3px, -3px);
}

.menu-toggle {
  display: none;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(0.7rem, 1.3vw, 1.4rem);
  min-width: 0;
}

.desktop-nav a,
.language-state,
.language-switch {
  color: #c5c5bf;
  font-size: var(--font-size-nav);
  font-weight: 500;
  letter-spacing: 0.06em;
}

.nav-muted {
  color: var(--muted);
  font-size: var(--font-size-meta);
}

.header-assessment-link {
  min-height: 42px;
  padding: 0 1.15rem;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(217, 184, 97, 0.46);
  border-radius: var(--radius-button);
  background: rgba(217, 184, 97, 0.08);
  color: var(--gold-bright);
  font-size: var(--font-size-button);
  font-weight: 600;
  letter-spacing: 0.06em;
  max-width: none;
  white-space: nowrap;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 10px 34px rgba(217, 184, 97, 0.08);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.header-assessment-link:hover,
.header-assessment-link:focus-visible {
  border-color: rgba(240, 213, 137, 0.72);
  background: rgba(217, 184, 97, 0.14);
  box-shadow: 0 14px 42px rgba(217, 184, 97, 0.13);
  transform: translateY(-1px);
}

.language-state {
  color: var(--muted-dark);
}

.hero-description {
  max-width: 680px;
  margin-bottom: 2rem;
  color: rgba(242, 240, 233, 0.82);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.7;
}

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

.principles-grid .principle-card {
  min-height: 220px;
  flex-direction: row;
  gap: 2rem;
  justify-content: flex-start;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(11, 13, 14, 0.2);
  border-left: 1px solid rgba(11, 13, 14, 0.2);
}

.module-card {
  min-height: 330px;
  padding: clamp(1.8rem, 3vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(11, 13, 14, 0.2);
  border-bottom: 1px solid rgba(11, 13, 14, 0.2);
}

.module-card .module-code {
  font-size: var(--font-size-label);
  letter-spacing: 0.12em;
}

.module-kicker {
  margin-bottom: 0.7rem;
  color: #7a5d25;
  font-size: var(--font-size-label);
  letter-spacing: 0.08em;
}

.module-card h3 {
  margin-bottom: 1rem;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 400;
}

.module-card p {
  color: #5e605d;
}

.module-card a {
  color: #7a5d25;
  font-size: var(--font-size-button);
  font-weight: 600;
}

.quality-panel {
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--line-gold);
  background: rgba(199, 166, 90, 0.04);
}

.quality-panel span {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--gold-bright);
  font-size: var(--font-size-label);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.quality-panel p {
  margin-bottom: 2rem;
  color: var(--muted);
}

.quality-panel p:last-child {
  margin-bottom: 0;
}

.primary-button {
  min-height: 58px;
  padding: 0 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  border: 1px solid var(--gold);
  border-radius: var(--radius-button);
  color: var(--gold-bright);
  font-size: var(--font-size-button);
  font-weight: 600;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 11rem var(--pad) 3rem;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: clamp(2rem, 5vw, 7rem);
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    radial-gradient(circle at 78% 48%, rgba(199, 166, 90, 0.11), transparent 27%),
    linear-gradient(105deg, #0b0d0e 0%, #0d1011 58%, #111312 100%);
}

.hero-grid {
  position: absolute;
  z-index: -2;
  top: 0;
  right: -12%;
  width: 68%;
  height: 100%;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to left, black, transparent);
  transform: perspective(800px) rotateY(-18deg) rotateZ(-6deg) scale(1.2);
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(199, 166, 90, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  right: -17vw;
  bottom: -42vw;
  width: 90vw;
  height: 90vw;
}

.orbit-two {
  right: 3vw;
  bottom: -26vw;
  width: 58vw;
  height: 58vw;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 830px;
}

.hero-product {
  max-width: 650px;
  margin: clamp(2.6rem, 6vh, 5.5rem) 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(242, 240, 233, 0.1);
  color: #d5d3cb;
  font-size: clamp(0.72rem, 0.9vw, 0.86rem);
  letter-spacing: 0.015em;
}

.hero-intelligence {
  --pointer-x: 0px;
  --pointer-y: 0px;
  position: relative;
  z-index: 1;
  width: min(47vw, 680px);
  justify-self: end;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transform: translate3d(var(--pointer-x), var(--pointer-y), 0);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-intelligence::before,
.hero-intelligence::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.hero-intelligence::before {
  inset: 9%;
  border: 1px solid rgba(242, 240, 233, 0.045);
  box-shadow:
    inset 0 0 80px rgba(199, 166, 90, 0.025),
    0 0 120px rgba(199, 166, 90, 0.035);
}

.hero-intelligence::after {
  inset: 23%;
  border: 1px solid rgba(199, 166, 90, 0.07);
}

.intelligence-aura {
  position: absolute;
  inset: 19%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(199, 166, 90, 0.13) 0%,
    rgba(199, 166, 90, 0.045) 34%,
    transparent 70%
  );
  filter: blur(16px);
  animation: intelligence-breathe 8s ease-in-out infinite;
}

.intelligence-map {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.signal {
  fill: #b7b8b3;
  opacity: 0.32;
  transform-box: fill-box;
  transform-origin: center;
  animation: signal-drift 7s ease-in-out infinite alternate;
}

.signal-b,
.signal-e,
.signal-h {
  animation-delay: -2.4s;
  animation-duration: 8.5s;
}

.signal-c,
.signal-f {
  animation-delay: -4.1s;
  animation-duration: 6.6s;
}

.signal-d,
.signal-g {
  animation-delay: -1.2s;
  animation-duration: 9.2s;
}

.connection,
.outcome-flow,
.growth-arc {
  fill: none;
  stroke-linecap: round;
}

.connection {
  stroke: rgba(199, 166, 90, 0.44);
  stroke-width: 1.25;
  stroke-dasharray: 1 220;
  stroke-dashoffset: 0;
  animation: connection-emerge 9s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

.connection-b { animation-delay: 0.35s; }
.connection-c { animation-delay: 0.7s; }
.connection-d { animation-delay: 1.05s; }
.connection-e { animation-delay: 1.4s; }
.connection-f { animation-delay: 1.75s; }
.connection-g { animation-delay: 2.1s; }
.connection-h { animation-delay: 2.45s; }

.decision-orbit {
  fill: none;
  stroke: rgba(226, 200, 126, 0.13);
  stroke-width: 1;
  stroke-dasharray: 3 10;
  transform-origin: 340px 330px;
}

.orbit-a {
  animation: orbit-clockwise 26s linear infinite;
}

.orbit-b {
  opacity: 0.55;
  animation: orbit-counter 38s linear infinite;
}

.decision-core-glow {
  fill: rgba(199, 166, 90, 0.08);
  stroke: rgba(226, 200, 126, 0.18);
  stroke-width: 1;
  transform-origin: 340px 330px;
  animation: core-pulse 4.8s ease-in-out infinite;
}

.decision-core {
  transform-origin: 340px 330px;
  animation: core-resolve 9s ease-in-out infinite;
}

.decision-point {
  fill: var(--gold-bright);
  opacity: 0.66;
  transform-origin: 340px 330px;
  animation: point-pulse 4s ease-in-out infinite;
}

.point-b { animation-delay: -1s; }
.point-c { animation-delay: -2s; }
.point-d { animation-delay: -3s; }

.outcome-flow {
  stroke: url("#value-flow");
  stroke-width: 1.6;
  stroke-dasharray: 4 8;
  opacity: 0;
  animation: outcome-resolve 9s ease-in-out infinite;
}

.outcome-growth {
  animation-delay: 0.45s;
}

.outcome-node {
  fill: rgba(199, 166, 90, 0.055);
  stroke: rgba(226, 200, 126, 0.52);
  stroke-width: 1;
  transform-box: fill-box;
  transform-origin: center;
  animation: outcome-node 9s ease-in-out infinite;
}

.growth-node {
  animation-delay: 0.45s;
}

.growth-arc {
  stroke: rgba(226, 200, 126, 0.48);
  stroke-width: 1.25;
  stroke-dasharray: 2 7;
  opacity: 0;
  animation: growth-expand 9s ease-in-out infinite;
}

.growth-arc-secondary {
  opacity: 0;
  animation-delay: 0.3s;
}

.map-labels text {
  fill: #7d7f7b;
  font-family: var(--body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
}

.map-labels .label-core {
  fill: rgba(226, 200, 126, 0.76);
}

.intelligence-caption {
  position: absolute;
  right: 9%;
  bottom: 9%;
  left: 9%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #6f726f;
  font-size: 0.52rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.intelligence-caption i {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, rgba(199, 166, 90, 0.12), rgba(199, 166, 90, 0.48));
  transform-origin: left;
  animation: caption-flow 9s ease-in-out infinite;
}

@keyframes signal-drift {
  0% { transform: translate3d(-4px, 3px, 0); opacity: 0.2; }
  50% { opacity: 0.48; }
  100% { transform: translate3d(6px, -5px, 0); opacity: 0.3; }
}

@keyframes connection-emerge {
  0%, 10% { stroke-dasharray: 1 220; opacity: 0.08; }
  34%, 70% { stroke-dasharray: 220 1; opacity: 0.72; }
  88%, 100% { stroke-dasharray: 1 220; opacity: 0.08; }
}

@keyframes core-pulse {
  0%, 100% { transform: scale(0.92); opacity: 0.34; }
  50% { transform: scale(1.12); opacity: 0.88; }
}

@keyframes core-resolve {
  0%, 24%, 100% { transform: scale(0.86); opacity: 0.52; }
  42%, 78% { transform: scale(1); opacity: 1; }
}

@keyframes point-pulse {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.92; }
}

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

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

@keyframes outcome-resolve {
  0%, 34%, 100% { stroke-dashoffset: 80; opacity: 0; }
  48%, 78% { stroke-dashoffset: 0; opacity: 0.86; }
}

@keyframes outcome-node {
  0%, 40%, 100% { transform: scale(0.72); opacity: 0.18; }
  55%, 82% { transform: scale(1); opacity: 1; }
}

@keyframes growth-expand {
  0%, 48%, 100% { stroke-dashoffset: 30; opacity: 0; }
  63%, 84% { stroke-dashoffset: 0; opacity: 0.72; }
}

@keyframes intelligence-breathe {
  0%, 100% { transform: scale(0.92); opacity: 0.54; }
  50% { transform: scale(1.08); opacity: 1; }
}

@keyframes caption-flow {
  0%, 16% { transform: scaleX(0.12); opacity: 0.2; }
  42%, 82% { transform: scaleX(1); opacity: 1; }
  100% { transform: scaleX(0.12); opacity: 0.2; }
}

.eyebrow {
  margin: 0 0 2.2rem;
  color: var(--gold-bright);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--display);
  font-weight: 300;
  letter-spacing: -0.045em;
}

h1 {
  margin-bottom: 2.3rem;
  font-size: clamp(3.5rem, 7.5vw, 8.5rem);
  line-height: 0.95;
}

.hero-claim {
  max-width: 950px;
  font-size: clamp(3.1rem, 5.7vw, 6.7rem);
  line-height: 0.98;
}

h1 em,
h2 em {
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-intro {
  max-width: 660px;
  margin-bottom: 2.7rem;
  color: #b1b2ad;
  font-size: clamp(1rem, 1.35vw, 1.25rem);
}

.hero-intro strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--white);
  font-weight: 500;
}

.hero-thesis {
  max-width: 650px;
  margin: 0 0 2rem;
  padding-left: 1.2rem;
  border-left: 1px solid var(--gold);
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: clamp(0.9rem, 1.25vw, 1.1rem);
  font-weight: 400;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.button {
  min-height: 58px;
  padding: 0 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  border: 1px solid transparent;
  border-radius: var(--radius-button);
  font-size: var(--font-size-button);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
  overflow-wrap: normal;
  cursor: pointer;
  box-shadow: 0 12px 34px rgba(217, 184, 97, 0.08);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

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

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

.button-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--ink);
  border-color: rgba(240, 213, 137, 0.62);
  box-shadow: 0 16px 46px rgba(217, 184, 97, 0.18);
}

.button-gold:hover {
  background: linear-gradient(135deg, #e4c46d, #ffe39a);
  box-shadow: 0 20px 58px rgba(217, 184, 97, 0.26);
}

.text-link {
  width: fit-content;
  font-size: var(--font-size-button);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.hero-system {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
}

.system-rings {
  position: relative;
  width: min(40vw, 520px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.ring {
  position: absolute;
  border: 1px solid rgba(199, 166, 90, 0.3);
  border-radius: 50%;
}

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

.ring-outer {
  inset: 0;
  animation: rotate 35s linear infinite;
}

.ring-middle {
  inset: 15%;
  border-color: rgba(242, 240, 233, 0.14);
  animation: rotate 24s linear reverse infinite;
}

.ring-inner {
  inset: 31%;
  border-color: rgba(199, 166, 90, 0.22);
  animation: rotate 18s linear infinite;
}

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

.system-core {
  position: relative;
  z-index: 2;
  width: 36%;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  background: rgba(11, 13, 14, 0.72);
  box-shadow: 0 0 80px rgba(199, 166, 90, 0.08);
  backdrop-filter: blur(8px);
}

.system-core strong {
  margin: 0.3rem 0;
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.3vw, 2rem);
  letter-spacing: 0.12em;
}

.system-core span {
  color: var(--muted);
  font-size: 0.52rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.node {
  position: absolute;
  z-index: 3;
  min-width: 50px;
  padding: 0.35rem 0.5rem;
  border: 1px solid var(--line-gold);
  background: var(--ink);
  color: var(--gold-bright);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-align: center;
}

.node-1 { top: 5%; left: 25%; }
.node-2 { top: 20%; right: 2%; }
.node-3 { right: -1%; bottom: 22%; }
.node-4 { right: 26%; bottom: 3%; }
.node-5 { bottom: 19%; left: 2%; }
.node-6 { top: 25%; left: -2%; }

.hero-foot {
  grid-column: 1 / -1;
  padding-top: 2rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
  color: var(--muted-dark);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-foot span:not(:first-child) {
  text-align: center;
}

.hero-foot span:last-child {
  text-align: right;
}

.section {
  position: relative;
  padding: 30px var(--pad);
  border-top: 1px solid var(--line);
}

.section-index {
  position: absolute;
  top: 3rem;
  left: var(--pad);
  color: var(--muted-dark);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
}

.statement {
  padding-top: clamp(3.8rem, 6.5vw, 6.2rem);
  padding-bottom: clamp(3.8rem, 6.5vw, 6.2rem);
  background: var(--white);
  color: var(--ink);
}

.statement-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.statement-kicker {
  margin: 0 0 1.8rem;
  color: #8c8d88;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.statement-copy {
  max-width: 1080px;
}

.statement .eyebrow {
  margin-bottom: 1.35rem;
  color: #98752e;
}

.statement h2,
.section-heading h2,
.quality h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(2.6rem, 5vw, 5.6rem);
  line-height: 1.02;
}

.statement-support {
  max-width: 780px;
  margin: clamp(1.8rem, 3vw, 2.8rem) 0 0;
  color: #555752;
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
  line-height: 1.55;
  letter-spacing: -0.015em;
}

.statement-flow {
  max-width: 780px;
  margin-top: clamp(2.3rem, 4vw, 3.6rem);
  padding-top: clamp(2rem, 3vw, 2.8rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-top: 1px solid rgba(11, 13, 14, 0.13);
}

.statement-flow-term {
  color: #171a1b;
  font-family: var(--display);
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.statement-flow-term:last-child {
  color: #8a6929;
}

.statement-flow-arrow {
  height: 1.9rem;
  display: grid;
  place-items: center;
  color: rgba(138, 105, 41, 0.65);
  font-family: var(--display);
  font-size: 0.9rem;
  line-height: 1;
  animation: statement-flow 3.6s ease-in-out infinite;
}

.statement-flow-arrow:nth-of-type(4) {
  animation-delay: -0.7s;
}

.statement-flow-arrow:nth-of-type(6) {
  animation-delay: -1.4s;
}

.statement-flow-arrow:nth-of-type(8) {
  animation-delay: -2.1s;
}

@keyframes statement-flow {
  0%, 100% {
    opacity: 0.28;
    transform: translateY(-2px);
  }
  50% {
    opacity: 0.86;
    transform: translateY(3px);
  }
}

.statement-detail {
  padding-top: 3.3rem;
  align-self: end;
}

.statement-detail .lead {
  margin-bottom: 2rem;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.35;
}

.statement-detail > p:not(.lead) {
  color: #5e605d;
}

.statement-detail .text-link {
  margin-top: 2.5rem;
  display: inline-block;
  font-weight: 600;
}

.canonical-section {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(6.5rem, 10vw, 11.5rem);
  align-items: start;
}

.canonical-light {
  background: var(--white);
  color: var(--ink);
}

.canonical-dark {
  background:
    radial-gradient(circle at 82% 20%, rgba(199, 166, 90, 0.06), transparent 24%),
    var(--ink);
}

.canonical-light .eyebrow {
  color: #98752e;
}

.canonical-heading {
  position: sticky;
  top: 120px;
  min-width: 0;
  width: 100%;
}

.canonical-heading h2 {
  margin: 0;
  font-size: clamp(2.7rem, 4.4vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  overflow-wrap: normal;
  hyphens: none;
  text-wrap: balance;
}

.canonical-copy {
  max-width: 760px;
  padding-top: 0.5rem;
  min-width: 0;
  width: 100%;
}

.canonical-copy-line {
  margin: 0 0 clamp(1.2rem, 2vw, 1.8rem);
  color: var(--muted);
  font-family: var(--display);
  font-size: clamp(1.06rem, 1.32vw, 1.36rem);
  line-height: 1.55;
  letter-spacing: -0.02em;
  overflow-wrap: normal;
  hyphens: none;
}

.canonical-light .canonical-copy-line {
  color: #4f514e;
}

.canonical-copy-line:last-child {
  margin-bottom: 0;
}

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

.belief-list li {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.canonical-light .belief-list {
  border-top-color: rgba(11, 13, 14, 0.16);
}

.canonical-light .belief-list li {
  border-bottom-color: rgba(11, 13, 14, 0.16);
  color: var(--ink);
}

.foundation {
  padding-top: clamp(4rem, 7vw, 7rem);
  padding-bottom: clamp(4rem, 7vw, 7rem);
  display: grid;
  grid-template-columns: 0.38fr 1.62fr;
  gap: 8vw;
  align-items: start;
  background:
    radial-gradient(circle at 78% 50%, rgba(199, 166, 90, 0.08), transparent 28%),
    var(--ink);
}

.foundation-label {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--gold-bright);
  font-size: var(--font-size-label);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.foundation-label i {
  width: 100%;
  height: 1px;
  display: block;
  background: var(--line-gold);
}

.foundation-copy {
  max-width: 1050px;
}

.foundation-copy h2 {
  margin-bottom: 1.7rem;
  color: var(--muted);
  font-family: var(--display);
  font-size: var(--font-size-label);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.foundation-copy p {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(1.65rem, 3vw, 3.4rem);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.science {
  background: var(--white);
  color: var(--ink);
}

.science .eyebrow,
.science-grid article > span {
  color: #98752e;
}

.science .section-heading > p {
  color: #5e605d;
}

.science-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(11, 13, 14, 0.2);
  border-left: 1px solid rgba(11, 13, 14, 0.2);
}

.science-grid article {
  min-height: 300px;
  padding: clamp(2rem, 4vw, 4rem);
  border-right: 1px solid rgba(11, 13, 14, 0.2);
  border-bottom: 1px solid rgba(11, 13, 14, 0.2);
}

.science-grid article > span {
  font-size: var(--font-size-label);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.science-grid h3 {
  max-width: 540px;
  margin: 4rem 0 1rem;
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-weight: 400;
  line-height: 1.25;
}

.science-grid p {
  max-width: 560px;
  margin: 0;
  color: #626461;
  font-size: var(--font-size-small);
}

.domain-band {
  padding: 2rem 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-bottom: 1px solid rgba(11, 13, 14, 0.2);
  color: #757773;
  font-size: var(--font-size-label);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.architecture {
  background:
    radial-gradient(circle at 80% 20%, rgba(199, 166, 90, 0.07), transparent 26%),
    var(--ink);
}

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

.architecture-flow li {
  min-width: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.architecture-flow a {
  min-height: 235px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: background 0.3s ease;
}

.architecture-flow a:hover,
.architecture-flow a:focus-visible {
  background: rgba(199, 166, 90, 0.07);
}

.architecture-flow span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: var(--font-size-label);
}

.architecture-flow strong {
  margin: auto 0 0.8rem;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 400;
}

.architecture-flow small {
  min-height: 3.8rem;
  color: var(--muted);
  font-size: var(--font-size-small);
  line-height: 1.5;
}

.architecture-page-hero {
  grid-template-columns: minmax(0, 1fr);
}

.architecture-page-hero .hero-copy {
  max-width: 980px;
}

.architecture-flow.architecture-flow-vertical {
  max-width: 720px;
  grid-template-columns: 1fr;
  gap: 2.2rem;
  border: 0;
}

.architecture-flow-vertical li {
  position: relative;
  border: 1px solid var(--line);
}

.architecture-flow-vertical li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2.2rem;
  width: 1px;
  height: 2.2rem;
  background: var(--line);
}

.architecture-flow-vertical a {
  position: relative;
  min-height: 0;
}

.architecture-flow-vertical strong {
  margin-top: 3rem;
}

.architecture-flow-vertical small {
  min-height: 0;
}

.architecture-arrow {
  position: absolute;
  left: 50%;
  bottom: -2.05rem;
  z-index: 1;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 0.75rem;
  font-style: normal;
  line-height: 1;
  transform: translateX(-50%);
}

.architecture-card-section .knowledge-grid {
  max-width: 1180px;
  margin: 0 auto;
}

.content-meta {
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted-dark);
  font-size: 0.6rem;
  letter-spacing: 0.04em;
}

.content-meta a {
  color: var(--gold-bright);
}

.constitution-meta {
  margin-top: -4rem;
  margin-bottom: 3rem;
}

.principles {
  background:
    linear-gradient(120deg, rgba(199, 166, 90, 0.04), transparent 38%),
    var(--ink-soft);
}

.section-heading {
  margin-bottom: clamp(4rem, 8vw, 7rem);
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: 8vw;
  align-items: end;
}

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

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

.principle-card {
  min-height: 300px;
  padding: clamp(2rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.4s ease;
}

.principle-card:hover {
  background: rgba(199, 166, 90, 0.055);
}

.card-number,
.outcome-grid article > span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 0.8rem;
}

.principle-card h3,
.outcome-grid h3 {
  margin-bottom: 0.7rem;
  font-family: var(--display);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 400;
}

.principle-card p,
.outcome-grid p {
  max-width: 420px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.modules {
  background: var(--white);
  color: var(--ink);
}

.modules .eyebrow,
.modules .module-code,
.modules .module-name > span {
  color: #98752e;
}

.modules .section-heading > p {
  color: #5e605d;
}

.executive-problem {
  background:
    radial-gradient(circle at 82% 20%, rgba(199, 166, 90, 0.06), transparent 24%),
    var(--ink-soft);
}

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

.tension-row {
  min-height: 118px;
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) 1fr;
  gap: clamp(2rem, 8vw, 9rem);
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.tension-row strong,
.tension-row span {
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.75rem);
  font-weight: 400;
  line-height: 1.3;
}

.tension-row strong {
  color: var(--white);
}

.tension-row span {
  color: var(--muted);
}

.module-list {
  border-top: 1px solid rgba(11, 13, 14, 0.2);
}

.module-row {
  position: relative;
  min-height: 142px;
  display: grid;
  grid-template-columns: 0.45fr 1.15fr 1fr auto;
  gap: 2rem;
  align-items: center;
  border-bottom: 1px solid rgba(11, 13, 14, 0.2);
  outline: none;
  overflow: hidden;
  transition: padding 0.35s ease, color 0.35s ease;
}

.module-row::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: var(--ink);
  transform: translateX(-101%);
  transition: transform 0.5s cubic-bezier(0.68, 0, 0.18, 1);
}

.module-row:hover::before,
.module-row:focus-visible::before {
  transform: translateX(0);
}

.module-row:hover,
.module-row:focus-visible {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  color: var(--white);
}

.module-row > * {
  position: relative;
  z-index: 1;
}

.module-code {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  letter-spacing: -0.04em;
}

.module-name {
  display: flex;
  gap: 1rem;
  align-items: baseline;
}

.module-name > span {
  font-size: var(--font-size-label);
  font-weight: 600;
}

.module-name h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  font-weight: 500;
}

.module-row p {
  margin: 0;
  color: #6a6c69;
  font-size: var(--font-size-small);
  transition: color 0.35s ease;
}

.module-row:hover p,
.module-row:focus-visible p {
  color: var(--muted);
}

.module-arrow {
  color: var(--gold);
  font-size: 1.2rem;
}

.decision-quality {
  background:
    radial-gradient(circle at 18% 70%, rgba(199, 166, 90, 0.08), transparent 28%),
    var(--ink);
}

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

.decision-point {
  min-height: 280px;
  padding: 2.8rem clamp(1.5rem, 3vw, 3rem) 2rem;
  border-right: 1px solid var(--line);
}

.decision-point:first-child {
  padding-left: 0;
}

.decision-point:last-child {
  border-right: 0;
}

.decision-point > span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 0.8rem;
}

.decision-point h3 {
  margin: 5rem 0 0.8rem;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 400;
}

.decision-point p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
}

.quality {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(4rem, 9vw, 10rem);
  align-items: center;
  background:
    radial-gradient(circle at 12% 50%, rgba(199, 166, 90, 0.08), transparent 26%),
    var(--ink);
}

.quality-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 2.4rem 0 3rem;
  color: var(--muted);
}

.quality-meta {
  display: flex;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.quality-meta div {
  display: flex;
  flex-direction: column;
}

.quality-meta strong {
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 300;
}

.quality-meta span {
  color: var(--muted-dark);
  font-size: var(--font-size-label);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.score-panel {
  position: relative;
  padding: clamp(2rem, 4vw, 4rem);
  border: 1px solid var(--line-gold);
  background:
    linear-gradient(135deg, rgba(199, 166, 90, 0.06), transparent 50%),
    var(--panel);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.3);
}

.score-panel::before,
.score-panel::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: var(--gold);
}

.score-panel::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid;
  border-left: 2px solid;
}

.score-panel::after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid;
  border-bottom: 2px solid;
}

.score-topline {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: var(--font-size-label);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.score-main {
  margin: 2rem 0 3rem;
  padding-bottom: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid var(--line);
}

.score-value strong {
  font-family: var(--display);
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 300;
  line-height: 0.8;
}

.score-value span {
  color: var(--muted-dark);
  font-size: 0.8rem;
}

.score-status {
  color: var(--gold-bright);
  font-size: var(--font-size-label);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.score-status i {
  width: 6px;
  height: 6px;
  margin-right: 0.5rem;
  display: inline-block;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}

.score-bars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.score-bar {
  width: 100%;
  padding: 0.3rem 0;
  display: grid;
  grid-template-columns: 128px 1fr 30px;
  gap: 1rem;
  align-items: center;
  border: 0;
  background: none;
  color: var(--muted);
  text-align: left;
  cursor: pointer;
}

.score-bar > span {
  font-size: var(--font-size-label);
}

.score-bar > i {
  height: 2px;
  display: block;
  background: rgba(242, 240, 233, 0.1);
}

.score-bar b {
  width: 0;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, #8a713c, var(--gold-bright));
  transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1), height 0.25s ease;
}

.score-panel.visible .score-bar b {
  width: var(--score);
}

.score-bar strong {
  color: var(--white);
  font-size: var(--font-size-label);
  font-weight: 500;
  text-align: right;
}

.score-bar:hover,
.score-bar.active {
  color: var(--white);
}

.score-bar:hover b,
.score-bar.active b {
  height: 4px;
  background: var(--gold-bright);
}

.score-hint {
  margin: 1.6rem 0 0;
  color: var(--muted-dark);
  font-size: var(--font-size-meta);
}

.knowledge {
  background: var(--white);
  color: var(--ink);
}

.knowledge .eyebrow,
.knowledge .term-number,
.knowledge .anchor-link {
  color: #98752e;
}

.knowledge .section-heading > p {
  color: #5e605d;
}

.knowledge-index {
  margin-bottom: 4rem;
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  border-top: 1px solid rgba(11, 13, 14, 0.2);
  border-bottom: 1px solid rgba(11, 13, 14, 0.2);
}

.knowledge-index a {
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(11, 13, 14, 0.16);
  color: #525451;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.knowledge-index a:hover,
.knowledge-index a:focus-visible {
  border-color: #98752e;
  background: rgba(199, 166, 90, 0.08);
  color: var(--ink);
}

.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(11, 13, 14, 0.2);
  border-left: 1px solid rgba(11, 13, 14, 0.2);
}

.knowledge-card {
  min-width: 0;
  padding: clamp(2rem, 3.5vw, 3.5rem);
  border-right: 1px solid rgba(11, 13, 14, 0.2);
  border-bottom: 1px solid rgba(11, 13, 14, 0.2);
  background: rgba(255, 255, 255, 0.22);
}

.knowledge-card:target {
  background: rgba(199, 166, 90, 0.09);
  box-shadow: inset 3px 0 0 #98752e;
}

.knowledge-card header {
  margin-bottom: 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: baseline;
}

.term-number {
  font-family: Georgia, serif;
  font-size: 0.66rem;
}

.knowledge-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1.2;
}

.anchor-link {
  font-size: 0.8rem;
  font-weight: 600;
}

.term-definition {
  min-height: 6.2rem;
  margin-bottom: 2rem;
  color: #3f413f;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.knowledge-card dl {
  margin: 0;
}

.knowledge-card dl > div {
  padding: 0.9rem 0;
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 1rem;
  border-top: 1px solid rgba(11, 13, 14, 0.12);
}

.knowledge-card dt {
  color: #98752e;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.knowledge-card dd {
  margin: 0;
  color: #646663;
  font-size: 0.76rem;
  line-height: 1.55;
}

.knowledge-card dd a {
  color: var(--ink);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(152, 117, 46, 0.45);
  text-underline-offset: 0.2em;
}

.term-meta {
  margin-top: 1.5rem;
  padding-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.2rem;
  border-top: 1px solid rgba(11, 13, 14, 0.18);
  color: #888a86;
  font-size: 0.55rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.outcomes {
  background: var(--ink-soft);
}

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

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

.outcome-grid article {
  min-height: 260px;
  padding: 2.5rem 2rem 1rem;
  border-right: 1px solid var(--line);
}

.outcome-grid article:first-child {
  padding-left: 0;
}

.outcome-grid article:last-child {
  border-right: 0;
}

.outcome-grid h3 {
  margin-top: 5rem;
}

.faq {
  background:
    radial-gradient(circle at 82% 18%, rgba(199, 166, 90, 0.07), transparent 24%),
    var(--ink);
}

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

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

.faq-item summary {
  min-height: 92px;
  display: grid;
  grid-template-columns: 45px 1fr 28px;
  gap: 1.5rem;
  align-items: center;
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary > span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 0.7rem;
}

.faq-item h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1rem, 1.6vw, 1.4rem);
  font-weight: 400;
}

.faq-item summary i {
  position: relative;
  width: 18px;
  height: 18px;
}

.faq-item summary i::before,
.faq-item summary i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transition: transform 0.25s ease;
}

.faq-item summary i::after {
  transform: rotate(90deg);
}

.faq-item[open] summary i::after {
  transform: rotate(0);
}

.faq-item > p {
  max-width: 900px;
  margin: -0.5rem 0 2rem 60px;
  color: var(--muted);
}

.faq-item > p a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(4rem, 10vw, 12rem);
  background: var(--white);
  color: var(--ink);
}

.contact .eyebrow {
  color: #98752e;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 2.5rem 0 4rem;
  color: #60625f;
}

.contact-action {
  align-self: center;
  padding: clamp(2rem, 5vw, 4rem);
  border-top: 1px solid rgba(11, 13, 14, 0.18);
  border-bottom: 1px solid rgba(11, 13, 14, 0.18);
}

.contact-action p {
  margin: 0 0 2rem;
  color: #8b6a29;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.contact-action span {
  color: #6b6d69;
  font-size: var(--font-size-label);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-signature {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-signature span {
  font-family: var(--display);
  font-weight: 600;
}

.contact-signature small {
  color: #767875;
}

.advisory-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.5rem;
  align-content: start;
}

.advisory-form label {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.advisory-form label > span {
  color: #6a6c69;
  font-size: var(--font-size-label);
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.advisory-form input,
.advisory-form select {
  width: 100%;
  min-height: 52px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(11, 13, 14, 0.28);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
  font-size: var(--font-size-body);
  transition: border-color 0.2s ease;
}

.advisory-form input:focus,
.advisory-form select:focus {
  border-color: var(--gold);
}

.advisory-form input.invalid,
.advisory-form select.invalid {
  border-color: #a04436;
}

.advisory-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #4f514e 50%),
    linear-gradient(135deg, #4f514e 50%, transparent 50%);
  background-position:
    calc(100% - 15px) calc(50% + 1px),
    calc(100% - 10px) calc(50% + 1px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.form-submit {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 1rem;
  border: 0;
}

.form-note {
  grid-column: 1 / -1;
  margin: -1rem 0 0;
  color: rgba(242, 240, 233, 0.72);
  font-size: var(--font-size-meta);
}

.form-success {
  grid-column: 1 / -1;
  padding: 1.4rem;
  display: none;
  flex-direction: column;
  border: 1px solid rgba(152, 117, 46, 0.4);
  background: rgba(199, 166, 90, 0.08);
}

.form-success.show {
  display: flex;
}

.form-success span {
  color: rgba(242, 240, 233, 0.72);
  font-size: 0.8rem;
}

.site-footer {
  padding: clamp(6rem, 10vw, 9rem) var(--pad) 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  background: #070909;
}

.footer-brand p {
  margin: 1.8rem 0 0;
  color: rgba(242, 240, 233, 0.78);
  font-family: var(--display);
  font-size: 1.1rem;
  line-height: 1.5;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-mark {
  width: clamp(220px, 22vw, 360px);
  height: clamp(58px, 7vw, 104px);
  display: grid;
  place-items: center;
  opacity: 1;
  filter: drop-shadow(0 0 34px rgba(217, 184, 97, 0.16));
}

.footer-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.footer-brand strong {
  display: none;
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.footer-brand span {
  max-width: 390px;
  color: rgba(242, 240, 233, 0.78);
  font-family: var(--display);
  font-size: clamp(1rem, 1.05vw, 1.18rem);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  min-width: 0;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links span {
  margin-bottom: 0.8rem;
  color: var(--gold);
  font-size: var(--font-size-label);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links a {
  width: fit-content;
  max-width: 100%;
  color: rgba(242, 240, 233, 0.76);
  font-size: var(--font-size-small);
  line-height: 1.4;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.footer-note {
  color: rgba(242, 240, 233, 0.68) !important;
  font-size: var(--font-size-meta) !important;
  font-weight: 300 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

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

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: rgba(242, 240, 233, 0.68);
  font-size: var(--font-size-meta);
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) and (min-width: 1001px) {
  .desktop-nav {
    gap: clamp(0.9rem, 1.1vw, 1.25rem);
  }

  .header-assessment-link {
    display: none;
  }

  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }
}

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

  .desktop-nav {
    display: none;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    padding: 8rem var(--pad) 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    background: rgba(11, 13, 14, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    font-family: var(--display);
    font-size: clamp(1.65rem, 7vw, 3.5rem);
    font-weight: 300;
    overflow-wrap: normal;
    hyphens: none;
  }

  .header-cta {
    display: none;
  }

  .header-actions {
    gap: 1rem;
  }

  .language-switch {
    position: absolute;
    right: 58px;
    top: 50%;
    transform: translateY(-50%);
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    width: 44px;
    height: 44px;
    padding: 0;
    display: block;
    border: 0;
    background: transparent;
  }

  .menu-toggle > span:not(.sr-only) {
    position: absolute;
    right: 6px;
    width: 24px;
    height: 1px;
    background: var(--white);
    transition: transform 0.25s ease, top 0.25s ease;
  }

  .menu-toggle > span:first-child {
    top: 14px;
  }

  .menu-toggle > span:nth-child(2) {
    top: 22px;
  }

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

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    top: 18px;
    transform: rotate(-45deg);
  }

  .hero {
    padding-top: 9rem;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hero-intelligence {
    width: min(78vw, 620px);
    justify-self: center;
    margin-top: -1rem;
  }

  .quality,
  .contact {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  .statement-detail {
    max-width: 700px;
    padding-top: 0;
  }

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

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

  .decision-point,
  .decision-point:first-child {
    min-height: 220px;
    padding: 2.2rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .decision-point:last-child {
    border-bottom: 0;
  }

  .decision-point h3 {
    margin-top: 3.5rem;
  }

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

  .outcome-grid article {
    border-bottom: 1px solid var(--line);
  }

  .outcome-grid article:nth-child(2) {
    border-right: 0;
  }

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

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

  .term-definition {
    min-height: 0;
  }
}

@media (min-width: 1001px) and (max-width: 1400px) {
  .header-cta {
    display: none;
  }

  .header-actions {
    margin-left: 1rem;
  }
}

@media (min-width: 1001px) and (max-height: 820px) {
  .hero {
    padding-top: 7.5rem;
  }

  h1 {
    margin-bottom: 1.2rem;
    font-size: clamp(3.5rem, 6vw, 5.7rem);
  }

  .hero-claim {
    font-size: clamp(3.2rem, 4.5vw, 4.7rem);
  }

  .hero-intro {
    margin-bottom: 1.3rem;
  }

  .hero-system {
    min-height: 450px;
  }

  .system-rings {
    width: min(36vw, 460px);
  }
}

@media (max-width: 700px) {
  :root {
    --pad: 1.25rem;
  }

  .site-header,
  .site-header.scrolled {
    height: 68px;
  }

  .header-actions {
    gap: 0.6rem;
  }

  .language-state {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 9rem;
    padding-bottom: 6rem;
  }

  .hero-copy {
    max-width: 100%;
  }

  h1 {
    font-size: clamp(3rem, 14.5vw, 5rem);
  }

  .hero-claim {
    max-width: 100%;
    font-size: clamp(2.45rem, 10.8vw, 4.2rem);
    line-height: 1.02;
    overflow-wrap: normal;
  }

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

  .hero-intelligence {
    width: 100%;
    max-width: 480px;
    margin: 0 auto -2rem;
  }

  .hero-product {
    margin-top: 2.4rem;
  }

  .intelligence-caption {
    right: 13%;
    left: 13%;
    font-size: 0.46rem;
    gap: 0.4rem;
  }

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

  .tension-row {
    min-height: 150px;
    grid-template-columns: 1fr;
    gap: 0.7rem;
    align-content: center;
  }

  .principles-grid .principle-card,
  .module-card {
    min-height: 0;
  }

  .system-rings {
    width: min(88vw, 390px);
  }

  .system-core {
    width: 41%;
  }

  .system-core span {
    font-size: 0.42rem;
  }

  .node {
    min-width: 42px;
    font-size: 0.55rem;
  }

  .hero-foot {
    padding-top: 1.5rem;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
  }

  .hero-foot span:not(:first-child),
  .hero-foot span:last-child {
    text-align: left;
  }

  .section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .canonical-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .canonical-heading {
    position: static;
  }

  .canonical-copy-line {
    font-size: clamp(1.05rem, 5vw, 1.28rem);
  }

  .foundation {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .science-grid article {
    min-height: 260px;
  }

  .science-grid h3 {
    margin-top: 3rem;
  }

  .domain-band {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 0;
  }

  .architecture-flow {
    grid-template-columns: 1fr;
  }

  .architecture-flow a {
    min-height: 190px;
  }

  .foundation-label i {
    max-width: 110px;
  }

  .statement h2,
  .section-heading h2,
  .quality h2,
  .contact h2,
  .knowledge h2,
  .faq h2 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .statement {
    padding-top: 3.6rem;
    padding-bottom: 3.8rem;
  }

  .statement-kicker {
    margin-bottom: 1.3rem;
  }

  .statement .eyebrow {
    margin-bottom: 1rem;
  }

  .statement-support {
    margin-top: 1.6rem;
  }

  .statement-flow {
    margin-top: 2rem;
    padding-top: 1.7rem;
  }

  .statement-flow-arrow {
    height: 1.65rem;
  }

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

  .principle-card {
    min-height: 260px;
  }

  .module-row {
    padding: 1.8rem 0;
    grid-template-columns: 0.65fr 1fr auto;
    gap: 1rem;
  }

  .module-row p {
    display: none;
  }

  .module-row:hover,
  .module-row:focus-visible {
    padding-right: 0.8rem;
    padding-left: 0.8rem;
  }

  .module-name {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.2rem;
  }

  .quality-meta {
    gap: 1.5rem;
  }

  .score-panel {
    margin-right: -0.25rem;
    margin-left: -0.25rem;
  }

  .score-topline span:last-child {
    display: none;
  }

  .score-bar {
    grid-template-columns: 100px 1fr 25px;
    gap: 0.65rem;
  }

  .constitution-meta {
    margin-top: -2rem;
  }

  .knowledge-index {
    margin-bottom: 2.5rem;
  }

  .knowledge-card {
    padding: 2rem 1.4rem;
  }

  .knowledge-card dl > div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .faq-item summary {
    min-height: 82px;
    grid-template-columns: 28px 1fr 20px;
    gap: 0.8rem;
  }

  .faq-item > p {
    margin-left: 36px;
  }

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

  .outcome-grid article,
  .outcome-grid article:first-child {
    min-height: 220px;
    padding: 2rem 0;
    border-right: 0;
  }

  .outcome-grid h3 {
    margin-top: 3.5rem;
  }

  .advisory-form {
    grid-template-columns: 1fr;
  }

  .contact-action {
    padding-right: 0;
    padding-left: 0;
  }

  .form-submit,
  .form-note,
  .form-success {
    grid-column: 1;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

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

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

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

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

  .connection {
    stroke-dasharray: none;
    opacity: 0.48;
  }

  .outcome-flow,
  .growth-arc,
  .outcome-node {
    opacity: 0.72;
  }
}

/* HAUFFE public homepage v3 */
.hero-v3 .eyebrow,
.canonical-section .eyebrow,
.founder-section .eyebrow {
  font-size: clamp(0.92rem, 1vw, 1.08rem);
  letter-spacing: 0.18em;
}

.hero-v3 {
  min-height: 100svh;
  padding: calc(clamp(5.25rem, 8vh, 7.2rem) + 12px) var(--pad) clamp(5.5rem, 9vh, 8rem);
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
  gap: clamp(2.8rem, 6vw, 7rem);
  background:
    radial-gradient(circle at 74% 34%, rgba(199, 166, 90, 0.16), transparent 24%),
    radial-gradient(circle at 18% 76%, rgba(226, 200, 126, 0.08), transparent 30%),
    linear-gradient(135deg, #07090a 0%, #0b0d0e 48%, #101313 100%);
}

.hero-v3::before {
  background:
    linear-gradient(90deg, rgba(11, 13, 14, 0.2), rgba(11, 13, 14, 0.88)),
    radial-gradient(circle at 63% 48%, rgba(199, 166, 90, 0.12), transparent 34%);
}

.hero-v3::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  z-index: -1;
  background: linear-gradient(to top, rgba(11, 13, 14, 0.98), transparent);
  pointer-events: none;
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.hero-atmosphere span {
  position: absolute;
  border: 1px solid rgba(199, 166, 90, 0.14);
  border-radius: 50%;
  opacity: 0.58;
  animation: orbit-pulse 9s ease-in-out infinite;
}

.hero-atmosphere span:nth-child(1) {
  right: 4vw;
  top: 16vh;
  width: 38vw;
  height: 38vw;
}

.hero-atmosphere span:nth-child(2) {
  right: 17vw;
  bottom: 7vh;
  width: 20vw;
  height: 20vw;
  animation-delay: -2.8s;
}

.hero-atmosphere span:nth-child(3) {
  left: -16vw;
  bottom: -22vw;
  width: 54vw;
  height: 54vw;
  opacity: 0.32;
  animation-delay: -5.5s;
}

@keyframes orbit-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.04);
    opacity: 0.62;
  }
}

.hero-copy-v3 {
  max-width: 980px;
}

.hero-v3 .hero-claim {
  max-width: 1060px;
  margin-bottom: clamp(2.2rem, 4.4vw, 4rem);
  font-size: clamp(3.8rem, 7.8vw, 9.3rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.hero-subcopy {
  max-width: 620px;
  margin-bottom: clamp(1.5rem, 2.8vw, 2.3rem);
}

.hero-subline {
  margin: 0 0 0.35rem;
  color: #d8d6cf;
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  line-height: 1.38;
  letter-spacing: -0.025em;
}

.hero-support {
  max-width: 560px;
  padding-left: 1.2rem;
  border-left: 1px solid rgba(226, 200, 126, 0.72);
}

.hero-support-line {
  margin: 0 0 0.55rem;
  color: #aeb0ab;
  font-size: clamp(0.98rem, 1.2vw, 1.15rem);
  line-height: 1.55;
}

.hero-support-line:last-child {
  margin-bottom: 0;
}

.hero-v3 .hero-actions {
  margin-top: clamp(2rem, 3.5vw, 3.2rem);
}

.hero-visual-stack {
  position: relative;
  min-height: clamp(560px, 62vw, 780px);
  align-self: center;
  justify-self: stretch;
}

.decision-motion {
  position: absolute;
  top: 4%;
  right: 12%;
  align-self: center;
  justify-self: center;
  width: min(46vw, 660px);
  min-width: 390px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(226, 200, 126, 0.16), transparent 17%),
    radial-gradient(circle at 50% 50%, rgba(199, 166, 90, 0.08), transparent 46%);
  filter: drop-shadow(0 0 90px rgba(199, 166, 90, 0.16));
}

.decision-motion.reveal {
  transform: translateY(25px) scale(1.34);
}

.decision-motion.reveal.visible {
  transform: translateY(0) scale(1.34);
}

.decision-motion::before,
.decision-motion::after {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(242, 240, 233, 0.08);
  border-radius: 50%;
  animation: motion-orbit 18s linear infinite;
}

.decision-motion::after {
  inset: 24%;
  border-color: rgba(199, 166, 90, 0.16);
  animation-duration: 13s;
  animation-direction: reverse;
}

.decision-motion-core {
  position: absolute;
  inset: 38%;
  z-index: 3;
  display: grid;
  place-items: center;
  border: 1px solid rgba(226, 200, 126, 0.5);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(226, 200, 126, 0.78), rgba(199, 166, 90, 0.24) 42%, rgba(11, 13, 14, 0.6) 72%);
  box-shadow:
    0 0 34px rgba(226, 200, 126, 0.28),
    0 0 120px rgba(199, 166, 90, 0.16);
}

.decision-motion-core::before,
.decision-motion-core::after {
  content: none;
  position: absolute;
  inset: 30%;
  border-radius: 50%;
  background: #0a0c0d;
  box-shadow: 0 0 24px rgba(7, 9, 10, 0.42);
}

.decision-motion-core::after {
  inset: 44% 24% 24% 24%;
  border-radius: 999px 999px 50% 50%;
  background: rgba(7, 9, 10, 0.86);
  transform: rotate(-18deg);
  transform-origin: center;
}

.decision-motion-core span {
  color: #090b0c;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.decision-motion-core img {
  position: relative;
  z-index: 2;
  width: 52%;
  height: 52%;
  display: block;
  object-fit: contain;
  opacity: 0.96;
}

.hero-founder {
  position: absolute;
  right: clamp(-2rem, -2vw, -0.5rem);
  bottom: -2%;
  z-index: 3;
  width: min(34vw, 440px);
  min-width: 300px;
  pointer-events: none;
}

.hero-founder::before {
  content: "";
  position: absolute;
  inset: 12% 8% 5%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226, 200, 126, 0.2), transparent 68%);
  filter: blur(18px);
}

.hero-founder::after {
  content: none;
}

.hero-founder img {
  width: 100%;
  display: block;
  filter: brightness(1.08) saturate(0.98) contrast(1.03);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 84%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 0%, black 84%, transparent 100%);
}

.decision-signal {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(242, 240, 233, 0.72);
  box-shadow: 0 0 18px rgba(242, 240, 233, 0.35);
  animation: signal-breathe-v3 4.8s ease-in-out infinite;
}

.signal-one { top: 12%; left: 24%; }
.signal-two { top: 28%; right: 13%; animation-delay: -1s; }
.signal-three { right: 20%; bottom: 17%; animation-delay: -2s; }
.signal-four { bottom: 24%; left: 12%; animation-delay: -3s; }

.decision-line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, rgba(226, 200, 126, 0), rgba(226, 200, 126, 0.75), rgba(242, 240, 233, 0));
  transform-origin: left center;
  opacity: 0.68;
  animation: line-flow-v3 4.8s ease-in-out infinite;
}

.line-one { transform: rotate(-34deg); }
.line-two { transform: rotate(42deg); animation-delay: -1.5s; }
.line-three { transform: rotate(164deg); animation-delay: -3s; }

.decision-motion-labels {
  position: absolute;
  inset: auto 8% 7%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.55rem;
  color: rgba(242, 240, 233, 0.48);
  font-size: clamp(0.68rem, 0.8vw, 0.82rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.decision-motion-labels span {
  min-width: 0;
  overflow-wrap: normal;
  hyphens: none;
}

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

@keyframes signal-breathe-v3 {
  0%, 100% {
    opacity: 0.34;
    transform: scale(0.82);
  }
  50% {
    opacity: 1;
    transform: scale(1.35);
  }
}

@keyframes line-flow-v3 {
  0%, 100% {
    opacity: 0.18;
    width: 26%;
  }
  50% {
    opacity: 0.82;
    width: 44%;
  }
}

.button-quiet {
  border-color: rgba(242, 240, 233, 0.18);
  color: var(--white);
  background: rgba(242, 240, 233, 0.035);
}

.button-quiet:hover,
.button-quiet:focus-visible {
  border-color: rgba(226, 200, 126, 0.5);
  background: rgba(226, 200, 126, 0.08);
}

.founder-card {
  position: relative;
  align-self: end;
  justify-self: center;
  width: min(100%, 430px);
  padding: 1px;
  border: 1px solid rgba(226, 200, 126, 0.18);
  background:
    linear-gradient(145deg, rgba(226, 200, 126, 0.18), transparent 45%),
    rgba(242, 240, 233, 0.035);
  box-shadow:
    0 30px 120px rgba(0, 0, 0, 0.42),
    0 0 90px rgba(199, 166, 90, 0.08);
}

.founder-card::before {
  content: "";
  position: absolute;
  inset: -18% -24% auto auto;
  width: 72%;
  aspect-ratio: 1;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226, 200, 126, 0.22), transparent 66%);
  filter: blur(12px);
}

.founder-portrait {
  position: relative;
  min-height: clamp(420px, 52vw, 560px);
  overflow: hidden;
  background:
    radial-gradient(circle at 48% 48%, rgba(199, 166, 90, 0.14), transparent 42%),
    #090b0c;
}

.founder-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(7, 9, 10, 0.62), transparent 32%),
    linear-gradient(90deg, rgba(7, 9, 10, 0.28), transparent 26%, rgba(7, 9, 10, 0.18));
  pointer-events: none;
}

.founder-portrait img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  object-position: 49% 50%;
  filter: saturate(0.95) contrast(1.02);
  mix-blend-mode: normal;
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 86%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 0%, black 86%, transparent 100%);
}

.founder-caption {
  position: absolute;
  right: 1.2rem;
  bottom: 1.15rem;
  left: 1.2rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  color: var(--white);
}

.founder-caption strong {
  font-family: var(--display);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.founder-caption span {
  color: var(--gold-bright);
  font-size: var(--font-size-label);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.canonical-section.story-copy,
.canonical-section.story-questions,
.canonical-section.story-beliefs,
.canonical-section.story-final {
  min-height: 72vh;
  align-items: center;
}

.canonical-section.story-founder {
  min-height: 82vh;
  align-items: center;
  grid-template-columns: minmax(420px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2.5rem, 4vw, 4.5rem);
  background:
    radial-gradient(circle at 18% 50%, rgba(199, 166, 90, 0.1), transparent 30%),
    radial-gradient(circle at 84% 44%, rgba(226, 200, 126, 0.08), transparent 30%),
    #07090a;
}

.story-founder .canonical-copy {
  max-width: 1080px;
}

.founder-chapter {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 4vw, 4rem);
}

.founder-chapter-copy {
  max-width: 960px;
  column-count: 2;
  column-gap: clamp(1.5rem, 3vw, 2.8rem);
}

.founder-chapter-copy .canonical-copy-line {
  break-inside: avoid;
}

.founder-identity {
  width: max-content;
  max-width: 100%;
  display: grid;
  grid-template-columns: max-content minmax(180px, 260px);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: end;
}

.founder-identity-copy {
  padding-bottom: 0;
  align-self: end;
}

.founder-role-label {
  display: block;
  margin-bottom: clamp(0.65rem, 1.2vw, 1rem);
  padding-bottom: 0;
  color: var(--gold-bright);
  font-size: var(--font-size-label);
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  writing-mode: horizontal-tb;
}

.founder-chapter-image {
  position: relative;
  display: block;
  margin: 0;
  height: clamp(260px, 24vw, 365px);
  min-height: 0;
  width: min(100%, 260px);
  overflow: hidden;
  border: 0;
  background: transparent;
  transform: none;
  line-height: 0;
}

.founder-chapter-image::before {
  content: none;
  position: absolute;
  inset: 8% -8% 0 -12%;
  z-index: 0;
  background:
    radial-gradient(circle at 58% 46%, rgba(226, 200, 126, 0.24), transparent 58%),
    linear-gradient(90deg, rgba(226, 200, 126, 0.1), transparent 46%);
  filter: blur(18px);
}

.founder-chapter-image::after {
  content: none;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 22%;
  z-index: 2;
  background:
    linear-gradient(to top, #07090a 6%, rgba(7, 9, 10, 0.48) 34%, rgba(7, 9, 10, 0)),
    linear-gradient(90deg, rgba(7, 9, 10, 0.42) 0%, rgba(7, 9, 10, 0));
  pointer-events: none;
}

.founder-chapter-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 8%;
  filter: saturate(0.96) contrast(1.04);
  transform: translateX(1%) scale(1.08);
  transform-origin: center top;
}

.founder-portrait-name {
  display: block;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(2rem, 3.8vw, 4.2rem);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 0.95;
  white-space: nowrap;
}

.canonical-section.story-questions {
  background:
    radial-gradient(circle at 14% 24%, rgba(199, 166, 90, 0.1), transparent 26%),
    radial-gradient(circle at 88% 78%, rgba(242, 240, 233, 0.04), transparent 24%),
    #080a0b;
}

.canonical-section.story-final {
  min-height: 76vh;
  background:
    radial-gradient(circle at 70% 44%, rgba(199, 166, 90, 0.14), transparent 30%),
    linear-gradient(145deg, #080a0b 0%, #111416 100%);
}

.canonical-section.story-final .canonical-heading h2 {
  color: var(--gold-bright);
}

.canonical-section.story-final .canonical-copy-line:first-child {
  color: var(--white);
  font-size: clamp(1.55rem, 2.6vw, 2.45rem);
  line-height: 1.22;
}

.story-questions .belief-list {
  border-top-color: rgba(226, 200, 126, 0.2);
}

.story-questions .belief-list li {
  padding: clamp(1.2rem, 2.2vw, 1.8rem) 0;
  color: #f2f0e9;
  font-size: clamp(1.25rem, 2vw, 1.95rem);
  line-height: 1.25;
}

.story-questions .canonical-copy-line {
  color: var(--gold-bright);
}

.story-copy .canonical-copy-line {
  max-width: 760px;
  font-size: clamp(1.06rem, 1.32vw, 1.36rem);
  line-height: 1.5;
}

.story-beliefs .canonical-copy-line {
  max-width: 760px;
  margin-bottom: clamp(1rem, 1.8vw, 1.45rem);
  padding-bottom: clamp(1rem, 1.8vw, 1.45rem);
  border-bottom: 1px solid rgba(242, 240, 233, 0.11);
  color: var(--white);
  font-size: clamp(1.06rem, 1.32vw, 1.36rem);
  line-height: 1.5;
}

.canonical-light.story-beliefs .canonical-copy-line {
  border-bottom-color: rgba(11, 13, 14, 0.12);
  color: #222522;
}

.story-founder .canonical-copy-line {
  max-width: 760px;
  color: #d9d7d0;
  font-size: clamp(1.06rem, 1.32vw, 1.36rem);
  line-height: 1.5;
}

.founder-signature {
  margin-top: clamp(3rem, 5.5vw, 5rem);
  padding-top: clamp(1.6rem, 3vw, 2.4rem);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  max-width: 760px;
  border-top: 1px solid rgba(226, 200, 126, 0.32);
}

.founder-signature span {
  color: var(--gold-bright);
  font-size: var(--font-size-label);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.founder-signature strong {
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4.4rem);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 1;
}

.canonical-light.story-copy .canonical-copy-line {
  color: #3d403d;
}

.canonical-light.story-questions {
  background:
    radial-gradient(circle at 80% 20%, rgba(199, 166, 90, 0.12), transparent 24%),
    var(--white);
  color: var(--ink);
}

.canonical-light.story-questions .belief-list {
  border-top-color: rgba(11, 13, 14, 0.16);
}

.canonical-light.story-questions .belief-list li {
  border-bottom-color: rgba(11, 13, 14, 0.16);
  color: var(--ink);
}

.canonical-light.story-questions .canonical-copy-line {
  color: #8a6929;
}

.founder-section {
  min-height: 70vh;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 46%, rgba(199, 166, 90, 0.17), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(242, 240, 233, 0.055), transparent 26%),
    #07090a;
}

.founder-image-shell {
  position: relative;
  align-self: center;
  min-height: clamp(390px, 42vw, 560px);
}

.founder-image-shell::before {
  content: "";
  position: absolute;
  inset: 12% -8% 4%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226, 200, 126, 0.18), transparent 66%);
  filter: blur(20px);
}

.founder-image-shell::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 24%;
  background: linear-gradient(to top, #07090a 8%, rgba(7, 9, 10, 0));
  pointer-events: none;
}

.founder-image-shell img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: contain;
  object-position: center bottom;
  filter: saturate(0.96) contrast(1.04);
  mix-blend-mode: normal;
  transform: scale(1.04);
  transform-origin: center bottom;
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 84%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 0%, black 84%, transparent 100%);
}

.founder-voice {
  max-width: 900px;
}

.founder-voice h2 {
  margin: 0 0 clamp(1.8rem, 3.5vw, 3rem);
  font-size: clamp(3.2rem, 7vw, 8rem);
  line-height: 0.95;
}

.founder-role {
  margin: 0 0 clamp(2.5rem, 5vw, 4.5rem);
  color: var(--gold-bright);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.founder-statement {
  max-width: 920px;
  padding-top: clamp(1.5rem, 3vw, 2.2rem);
  border-top: 1px solid rgba(226, 200, 126, 0.28);
}

.founder-line {
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(2rem, 4.2vw, 4.9rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.founder-line + .founder-line {
  margin-top: 0.55rem;
  color: var(--gold-bright);
}

.canonical-dark.story-final .canonical-copy-line {
  color: #aeb0ab;
}

@media (max-width: 1180px) and (min-width: 761px) {
  .hero-v3 {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    padding-top: calc(5rem + 12px);
  }

  .hero-v3 .hero-claim {
    font-size: clamp(3.15rem, 7vw, 5.5rem);
  }

  .hero-subline {
    font-size: clamp(1rem, 1.7vw, 1.25rem);
  }

  .decision-motion {
    right: 7%;
    width: min(42vw, 480px);
    min-width: 320px;
  }

  .decision-motion-labels {
    font-size: 0.58rem;
    letter-spacing: 0.08em;
  }

  .decision-motion.reveal,
  .decision-motion.reveal.visible {
    transform: scale(1.18);
  }

  .hero-visual-stack {
    min-height: clamp(500px, 62vw, 660px);
  }

  .hero-founder {
    right: -1rem;
    width: min(36vw, 360px);
    min-width: 260px;
  }

  .founder-section {
    grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.35fr);
    gap: clamp(2rem, 5vw, 5rem);
  }
}

@media (max-width: 900px) {
  .canonical-section {
    grid-template-columns: 1fr;
    gap: clamp(2.5rem, 7vw, 4rem);
  }

  .canonical-heading {
    position: static;
  }

  .canonical-copy,
  .story-copy .canonical-copy-line,
  .story-founder .canonical-copy-line {
    max-width: 100%;
  }

  .canonical-heading h2 {
    font-size: clamp(3rem, 10vw, 5.5rem);
  }

  .canonical-section.story-founder {
    grid-template-columns: 1fr;
  }

  .founder-chapter {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .founder-chapter-copy {
    column-count: 1;
  }
}

@media (max-width: 760px) {
  .section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .hero-v3 {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: calc(5.1rem + 12px);
  }

  .hero-v3 .hero-claim {
    font-size: clamp(2.7rem, 11.5vw, 4.1rem);
  }

  .hero-v3 .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 0.8rem;
  }

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

  .decision-motion {
    position: absolute;
    top: 0;
    right: 50%;
    width: min(86vw, 430px);
    min-width: 0;
    margin: 0 auto;
  }

  .decision-motion.reveal,
  .decision-motion.reveal.visible {
    transform: translateX(50%) scale(1.05);
  }

  .hero-visual-stack {
    min-height: clamp(410px, 108vw, 560px);
    margin-top: -0.5rem;
  }

  .hero-founder {
    right: 50%;
    bottom: -4%;
    width: min(78vw, 350px);
    min-width: 0;
    transform: translateX(50%);
  }

  .decision-motion-labels {
    inset: auto 9% 6%;
    gap: 0.3rem;
    font-size: 0.5rem;
    letter-spacing: 0.08em;
  }

  .founder-section {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .founder-image-shell {
    min-height: 320px;
    max-width: 320px;
  }

  .founder-image-shell img {
    transform: scale(1.04);
  }

  .founder-section .reveal {
    opacity: 1;
    transform: none;
  }

  .canonical-section.story-copy,
  .canonical-section.story-questions,
  .canonical-section.story-beliefs,
  .canonical-section.story-founder,
  .canonical-section.story-final {
    min-height: auto;
  }

  .canonical-section.story-founder {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .founder-chapter {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
  }

  .founder-portrait-signature {
    justify-self: start;
    width: max-content;
    max-width: 100%;
  }

  .founder-identity {
    width: min(100%, 320px);
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .founder-identity-copy {
    padding-bottom: 0;
  }

  .founder-portrait-row {
    display: flex;
    flex-direction: column-reverse;
    gap: 0.55rem;
    align-items: flex-start;
  }

  .founder-role-label {
    font-size: 0.66rem;
    padding-bottom: 0;
  }

  .founder-chapter-image {
    height: 250px;
    width: min(100%, 250px);
    max-width: 250px;
    justify-self: start;
    border: 0;
    transform: none;
  }

  .founder-chapter-image img {
    transform: translateX(0) scale(1.06);
  }

  .founder-portrait-name {
    font-size: clamp(1.9rem, 9vw, 2.9rem);
  }

  .story-copy .canonical-copy-line,
  .story-beliefs .canonical-copy-line,
  .story-questions .belief-list li {
    font-size: clamp(1.06rem, 4.8vw, 1.36rem);
  }
}

.experience-hero,
.flow-shell,
.report-shell,
.application-shell,
.thank-you-shell {
  min-height: 100svh;
  padding: clamp(7rem, 12vw, 10rem) var(--pad) clamp(4rem, 8vw, 7rem);
}

.experience-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(2.5rem, 5vw, 6rem);
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(242, 240, 233, 0.07);
  padding-top: clamp(6.2rem, 8vw, 8rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

.experience-hero::before,
.flow-shell::before,
.report-shell::before,
.application-shell::before,
.thank-you-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 78% 24%, rgba(199, 166, 90, 0.1), transparent 28%),
    linear-gradient(120deg, #0b0d0e 0%, #101314 62%, #0b0d0e 100%);
}

.experience-copy {
  max-width: 920px;
}

.experience-kicker {
  margin: 0 0 1.6rem;
  color: var(--gold-bright);
  font-size: var(--font-size-label);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.experience-copy h1,
.flow-intro h1,
.report-hero h1,
.application-intro h1,
.thank-you-shell h1 {
  max-width: 1120px;
  margin-bottom: 2rem;
  font-size: clamp(3.35rem, 6.15vw, 6.65rem);
  line-height: 0.94;
}

.experience-thesis {
  max-width: 780px;
  margin: 0 0 2rem;
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.25vw, 2.15rem);
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.experience-body {
  max-width: 760px;
  color: rgba(242, 240, 233, 0.84);
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  line-height: 1.6;
}

.experience-body p {
  margin-bottom: 1rem;
}

.experience-note {
  margin: 1.6rem 0 0;
  color: rgba(242, 240, 233, 0.74);
  font-size: var(--font-size-small);
  letter-spacing: 0.02em;
}

.decision-network {
  position: relative;
  width: min(34vw, 540px);
  min-width: 300px;
  aspect-ratio: 1;
  justify-self: center;
  border: 1px solid rgba(242, 240, 233, 0.08);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(199, 166, 90, 0.1), transparent 52%),
    radial-gradient(circle at 50% 50%, rgba(242, 240, 233, 0.035), transparent 42%);
  box-shadow:
    0 0 80px rgba(199, 166, 90, 0.08),
    inset 0 0 80px rgba(242, 240, 233, 0.025);
}

.decision-network::before,
.decision-network::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(199, 166, 90, 0.14);
}

.decision-network::before {
  inset: 17%;
  animation: rotate 34s linear infinite;
}

.decision-network::after {
  inset: 31%;
  border-color: rgba(242, 240, 233, 0.1);
  animation: rotate 46s linear reverse infinite;
}

.network-node,
.network-line,
.network-core {
  position: absolute;
  display: block;
}

.network-node {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 26px rgba(226, 200, 126, 0.5);
  animation: point-pulse 4.5s ease-in-out infinite;
}

.node-a { top: 17%; left: 32%; }
.node-b { top: 34%; right: 16%; animation-delay: -1s; }
.node-c { right: 26%; bottom: 18%; animation-delay: -2s; }
.node-d { bottom: 24%; left: 17%; animation-delay: -3s; }
.node-e { top: 48%; left: 12%; animation-delay: -4s; }

.network-line {
  height: 1px;
  width: 35%;
  background: linear-gradient(90deg, transparent, rgba(199, 166, 90, 0.72), transparent);
  transform-origin: left;
  opacity: 0.55;
  animation: caption-flow 7s ease-in-out infinite;
}

.network-line-a { top: 39%; left: 31%; transform: rotate(22deg); }
.network-line-b { top: 55%; left: 22%; transform: rotate(-15deg); animation-delay: -1.8s; }
.network-line-c { top: 63%; right: 18%; transform: rotate(50deg); animation-delay: -3.2s; }

.network-core {
  inset: 38%;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: clamp(0.9rem, 1.6vw, 1.25rem);
  line-height: 1.1;
  text-align: center;
  background: rgba(11, 13, 14, 0.72);
  backdrop-filter: blur(12px);
}

.experience-signal-rail {
  padding: 1.05rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 1.8rem);
  border-bottom: 1px solid rgba(242, 240, 233, 0.07);
  background: rgba(11, 13, 14, 0.94);
  color: rgba(242, 240, 233, 0.72);
  font-size: var(--font-size-label);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.experience-signal-rail i {
  width: clamp(24px, 5vw, 78px);
  height: 1px;
  display: block;
  background: linear-gradient(90deg, transparent, rgba(199, 166, 90, 0.62), transparent);
  animation: caption-flow 5.5s ease-in-out infinite;
}

.experience-section {
  padding: clamp(5.5rem, 9vw, 9rem) var(--pad);
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
  min-width: 0;
}

.experience-light {
  background: var(--white);
  color: var(--ink);
}

.experience-dark {
  background:
    radial-gradient(circle at 82% 18%, rgba(199, 166, 90, 0.07), transparent 26%),
    var(--ink);
}

.experience-section-heading span {
  display: block;
  margin-bottom: 1.3rem;
  color: var(--gold-bright);
  font-size: var(--font-size-label);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.experience-light .experience-section-heading span {
  color: #98752e;
}

.experience-section-heading h2,
.experience-statement h2,
.experience-final h2 {
  margin: 0;
  font-size: clamp(3.1rem, 6vw, 6.6rem);
  line-height: 1.02;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.experience-section-copy {
  max-width: 760px;
  color: rgba(242, 240, 233, 0.82);
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.55vw, 1.45rem);
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.experience-light .experience-section-copy {
  color: #4f514e;
}

.section-subline {
  max-width: 620px;
  margin: 1.5rem 0 0;
  color: rgba(242, 240, 233, 0.78);
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.45vw, 1.32rem);
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.experience-light .section-subline {
  color: #5f625d;
}

.ceo-section {
  align-items: start;
}

.ceo-section-body {
  display: grid;
  gap: clamp(1.4rem, 3vw, 2.2rem);
}

.ceo-case-card,
.ceo-benefit-box {
  padding: clamp(1.35rem, 2.8vw, 2.4rem);
  border: 1px solid rgba(199, 166, 90, 0.24);
  background:
    linear-gradient(135deg, rgba(242, 240, 233, 0.055), rgba(242, 240, 233, 0.018)),
    rgba(11, 13, 14, 0.42);
}

.ceo-case-card h3,
.ceo-benefit-box h3 {
  margin: 0 0 1.1rem;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.55vw, 2.45rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.05;
  text-wrap: balance;
}

.ceo-case-card p,
.ceo-cta p {
  margin: 0 0 1rem;
  color: rgba(242, 240, 233, 0.82);
  font-family: var(--display);
  font-size: clamp(1rem, 1.1vw, 1.2rem);
  line-height: 1.7;
  letter-spacing: -0.015em;
}

.ceo-case-card strong {
  display: block;
  margin-top: 1.4rem;
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 500;
  line-height: 1.2;
}

.ceo-benefit-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ceo-benefit-box li {
  padding: 0.85rem 0;
  border-top: 1px solid rgba(242, 240, 233, 0.11);
  color: rgba(242, 240, 233, 0.82);
  font-size: clamp(1rem, 1.05vw, 1.16rem);
  line-height: 1.5;
}

.ceo-benefit-box li:first-child {
  border-top: 0;
}

.ceo-cta {
  padding-top: 0.8rem;
}

.ceo-cta .button,
.ceo-trigger .button {
  margin-top: 0.7rem;
}

.ceo-trigger .large-question {
  margin-top: 1.8rem;
}

.ceo-insight {
  background:
    radial-gradient(circle at 50% 0%, rgba(199, 166, 90, 0.1), transparent 28rem),
    var(--ink);
}

.ceo-insight h2 {
  max-width: 1220px;
  font-size: clamp(2.55rem, 5.25vw, 5.65rem);
}

.decision-logic-section {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  background:
    radial-gradient(circle at 18% 0%, rgba(217, 184, 97, 0.1), transparent 34rem),
    radial-gradient(circle at 90% 28%, rgba(242, 240, 233, 0.045), transparent 28rem),
    #090b0c;
}

.decision-logic-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(242, 240, 233, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 240, 233, 0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

.decision-logic-section > * {
  position: relative;
  z-index: 1;
}

.decision-logic-content {
  display: grid;
  gap: clamp(2rem, 4vw, 3.8rem);
  min-width: 0;
}

.decision-logic-intro {
  max-width: 820px;
  color: rgba(242, 240, 233, 0.84);
}

.decision-insight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  min-width: 0;
}

.decision-insight-grid article {
  min-width: 0;
  padding: clamp(1.25rem, 2vw, 1.8rem);
  border: 1px solid rgba(217, 184, 97, 0.22);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(242, 240, 233, 0.065), rgba(242, 240, 233, 0.022)),
    rgba(11, 13, 14, 0.58);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.decision-insight-grid h3 {
  margin: 0 0 0.9rem;
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.1;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.decision-insight-grid p {
  margin: 0;
  color: rgba(242, 240, 233, 0.8);
  font-size: clamp(1rem, 1.05vw, 1.13rem);
  line-height: 1.65;
}

.decision-logic-statement {
  padding: clamp(1.5rem, 3vw, 2.6rem);
  border: 1px solid rgba(240, 213, 137, 0.42);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 0%, rgba(240, 213, 137, 0.14), transparent 18rem),
    rgba(217, 184, 97, 0.075);
}

.decision-logic-statement p {
  max-width: 980px;
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.5vw, 2.35rem);
  line-height: 1.25;
  letter-spacing: -0.055em;
}

.decision-logic-statement span {
  display: block;
  max-width: 860px;
  margin-top: 1.4rem;
  color: rgba(242, 240, 233, 0.82);
  font-size: clamp(1.05rem, 1.25vw, 1.28rem);
  line-height: 1.55;
}

.decision-logic-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.large-question {
  color: inherit;
  font-size: clamp(1.45rem, 2.35vw, 2.15rem);
  line-height: 1.25;
}

.rating-stack {
  display: grid;
  gap: 0.75rem;
}

.rating-stack > p {
  margin: 0;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
  color: #c9c9c2;
}

.rating-stack span {
  color: var(--muted);
}

.rating-stack strong {
  color: var(--gold-bright);
  font-weight: 500;
}

.experience-statement,
.experience-final {
  padding: clamp(6rem, 11vw, 11rem) var(--pad);
  background: var(--ink);
  text-align: center;
}

.experience-statement h2,
.experience-final h2 {
  max-width: 1180px;
  margin: 0 auto;
}

.clarity-lines,
.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.clarity-lines {
  justify-content: center;
  margin: 2.5rem auto 0;
}

.clarity-lines span,
.clarity-lines strong,
.proof-row span {
  padding: 0.8rem 1rem;
  border: 1px solid rgba(199, 166, 90, 0.24);
  color: rgba(242, 240, 233, 0.82);
  font-size: var(--font-size-small);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.clarity-lines strong {
  color: var(--gold-bright);
  font-weight: 600;
}

.proof-row {
  margin: 2rem 0;
}

.proof-row span {
  color: #5f625d;
  border-color: rgba(11, 13, 14, 0.16);
}

.proof-dark span {
  color: rgba(242, 240, 233, 0.82);
  border-color: rgba(199, 166, 90, 0.24);
}

.experience-founder {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
}

.experience-founder figure {
  margin: 0;
}

.experience-founder img {
  width: 100%;
  display: block;
  object-fit: contain;
}

.experience-founder figcaption {
  margin-top: 0.9rem;
  color: var(--white);
  font-family: var(--display);
  font-size: 1.2rem;
  line-height: 1.25;
}

.experience-founder figcaption span {
  color: var(--muted);
  font-size: var(--font-size-label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.experience-final .button {
  margin-top: 2.5rem;
}

.flow-shell,
.report-shell,
.application-shell,
.thank-you-shell {
  display: grid;
  align-items: center;
}

.flow-intro,
.assessment-flow,
.report-hero,
.report-card,
.application-intro,
.application-form,
.thank-you-shell section {
  width: min(100%, 980px);
}

.assessment-flow {
  margin: 0 auto;
}

.assessment-progress {
  margin-bottom: 2rem;
  color: rgba(242, 240, 233, 0.78);
  font-size: var(--font-size-label);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.assessment-note {
  max-width: 760px;
  margin: -0.8rem 0 2rem;
  color: rgba(242, 240, 233, 0.82);
  font-size: clamp(1rem, 1.05vw, 1.15rem);
  line-height: 1.55;
}

.form-status {
  display: none;
  margin: 0 0 1.2rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(199, 166, 90, 0.28);
  border-radius: 14px;
  background: rgba(199, 166, 90, 0.07);
  color: var(--gold-bright);
  font-size: var(--font-size-small);
  line-height: 1.45;
}

.form-status.show {
  display: block;
}

.form-status.error {
  border-color: rgba(255, 112, 112, 0.38);
  background: rgba(255, 112, 112, 0.08);
  color: #ffb6a8;
}

.assessment-progress div {
  height: 2px;
  margin-top: 0.8rem;
  background: rgba(242, 240, 233, 0.12);
}

.assessment-progress i {
  display: block;
  width: 14.285%;
  height: 100%;
  background: var(--gold-bright);
  transition: width 0.3s ease;
}

.assessment-step {
  margin: 0;
  padding: 0;
  display: none;
  border: 0;
}

.assessment-step.active {
  display: grid;
  gap: 0.75rem;
}

.assessment-step legend {
  max-width: 980px;
  margin-bottom: 2rem;
  padding: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.assessment-step label,
.application-form label {
  display: block;
  color: rgba(242, 240, 233, 0.84);
  font-size: clamp(1rem, 1.15vw, 1.2rem);
}

.assessment-step label {
  padding: 1.05rem 1.15rem;
  border: 1px solid rgba(242, 240, 233, 0.12);
  border-radius: 18px;
  background: rgba(242, 240, 233, 0.025);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.assessment-step label:hover,
.assessment-step label:focus-within {
  border-color: rgba(199, 166, 90, 0.45);
  background: rgba(199, 166, 90, 0.055);
  transform: translateY(-1px);
}

.assessment-step input {
  margin-right: 0.8rem;
  accent-color: var(--gold);
}

.assessment-actions,
.report-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.button-quiet {
  border-color: rgba(242, 240, 233, 0.18);
  color: var(--white);
}

.report-shell {
  align-items: start;
}

.report-hero {
  margin: 0 auto 3rem;
}

.report-intro {
  color: var(--muted);
  font-family: var(--display);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
}

.report-card {
  margin: 0 auto;
  display: grid;
  border-top: 1px solid var(--line);
}

.report-card article {
  padding: 2rem 0;
  display: grid;
  grid-template-columns: 70px minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.report-card span {
  grid-column: 1;
  color: var(--gold-bright);
  font-size: var(--font-size-label);
}

.report-card h2 {
  grid-column: 2;
  margin: 0;
  font-size: clamp(1.4rem, 2.2vw, 2.2rem);
  line-height: 1.1;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.report-card p {
  grid-column: 3;
  margin: 0 0 0.8rem;
  color: var(--muted);
  font-size: clamp(1.125rem, 1.25vw, 1.2rem);
  line-height: 1.5;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.report-actions {
  width: min(100%, 980px);
  margin-right: auto;
  margin-left: auto;
  align-items: stretch;
}

.report-actions .button {
  min-width: min(100%, 240px);
  min-height: 3.25rem;
  justify-content: center;
  font-size: max(1rem, var(--font-size-button));
  text-align: center;
  white-space: nowrap;
}

.application-form {
  margin: 0 auto;
}

.application-intro {
  margin: 0 auto 3rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.application-form input,
.application-form textarea {
  width: 100%;
  margin-top: 0.45rem;
  padding: 1rem;
  border: 1px solid rgba(242, 240, 233, 0.18);
  border-radius: 16px;
  background: rgba(242, 240, 233, 0.035);
  color: var(--white);
  font: inherit;
}

.application-form input:focus,
.application-form textarea:focus {
  outline: 1px solid var(--gold-bright);
}

.full-field {
  grid-column: 1 / -1;
}

.application-form .assessment-note {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 0;
}

.application-form .button {
  margin-top: 1.1rem;
}

.legal-shell {
  width: min(100%, 960px);
  margin: 0 auto;
  padding: clamp(7rem, 12vw, 10rem) var(--pad) clamp(4rem, 8vw, 6rem);
}

.legal-hero {
  max-width: 820px;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.legal-hero h1 {
  margin: 0;
  max-width: min(100%, 12ch);
  font-family: var(--display);
  font-size: clamp(3.4rem, 8vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 1.02;
  overflow-wrap: break-word;
}

.legal-intro {
  max-width: 680px;
  margin: 1.6rem 0 0;
  color: rgba(242, 240, 233, 0.82);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
}

.legal-meta {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: var(--font-size-small);
}

.legal-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.legal-card {
  min-width: 0;
  padding: clamp(1.25rem, 2vw, 2rem);
  border: 1px solid rgba(242, 240, 233, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(242, 240, 233, 0.065), rgba(242, 240, 233, 0.025)),
    rgba(11, 13, 14, 0.55);
}

.legal-card h2 {
  margin: 0 0 1rem;
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.8vw, 1.7rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.legal-card p {
  margin: 0.45rem 0;
  color: rgba(242, 240, 233, 0.78);
  font-size: clamp(1rem, 1.05vw, 1.16rem);
  line-height: 1.65;
}

.legal-card,
.legal-card p,
.legal-card h2 {
  overflow-wrap: break-word;
  hyphens: none;
}

.knowledge-page {
  background:
    radial-gradient(circle at 70% 0%, rgba(35, 84, 153, 0.15), transparent 34rem),
    var(--ink);
}

.knowledge-hero,
.knowledge-article {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: clamp(7rem, 12vw, 10rem) var(--pad) clamp(3rem, 6vw, 5rem);
}

.knowledge-hero h1,
.knowledge-article-hero h1 {
  margin: 0;
  max-width: 10ch;
  font-family: var(--display);
  font-size: clamp(3.3rem, 8vw, 7.6rem);
  font-weight: 500;
  letter-spacing: -0.085em;
  line-height: 0.92;
}

.knowledge-search {
  max-width: 760px;
  margin-top: 2rem;
}

.knowledge-search label {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--gold-bright);
  font-size: var(--font-size-label);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.knowledge-search input {
  width: 100%;
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(242, 240, 233, 0.18);
  border-radius: 999px;
  background: rgba(242, 240, 233, 0.06);
  color: var(--white);
  font: inherit;
}

.knowledge-sections,
.knowledge-engine-grid {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 0 var(--pad) clamp(3rem, 6vw, 5rem);
}

.knowledge-sections {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.knowledge-section-link,
.knowledge-engine-card {
  min-width: 0;
  border: 1px solid rgba(242, 240, 233, 0.12);
  border-radius: 24px;
  background: rgba(242, 240, 233, 0.045);
}

.knowledge-section-link {
  display: grid;
  gap: 0.45rem;
  padding: 1.2rem;
}

.knowledge-section-link span,
.knowledge-engine-card span,
.article-meta span {
  color: var(--gold-bright);
  font-size: var(--font-size-label);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.knowledge-section-link strong {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 500;
}

.knowledge-section-link small {
  color: var(--muted);
  font-size: var(--font-size-small);
  line-height: 1.5;
}

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

.knowledge-engine-card {
  display: grid;
  gap: 0.9rem;
  padding: clamp(1.4rem, 2.4vw, 2.2rem);
}

.knowledge-engine-card h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1;
}

.knowledge-engine-card p,
.knowledge-article p,
.knowledge-article li {
  color: rgba(242, 240, 233, 0.78);
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
  line-height: 1.75;
}

.knowledge-engine-card footer {
  color: var(--muted);
  font-size: var(--font-size-small);
}

.knowledge-article {
  max-width: 900px;
}

.knowledge-article-hero {
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  margin-top: 1.6rem;
}

.knowledge-article section {
  padding: clamp(1.5rem, 4vw, 2.8rem) 0;
  border-top: 1px solid rgba(242, 240, 233, 0.12);
}

.knowledge-article h2 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(1.9rem, 4vw, 3.8rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 1;
}

.knowledge-article ul {
  margin: 0;
  padding-left: 1.2rem;
}

.knowledge-article details {
  padding: 1rem 0;
  border-top: 1px solid rgba(242, 240, 233, 0.1);
}

.knowledge-article summary {
  cursor: pointer;
  color: var(--white);
  font-family: var(--display);
  font-size: 1.15rem;
}

.related-concepts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.related-concepts a {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(242, 240, 233, 0.16);
  border-radius: 999px;
  color: var(--gold-bright);
}

.knowledge-article-cta {
  padding-top: 2rem;
}

@media (max-width: 980px) {
  .experience-hero,
  .experience-section,
  .experience-founder {
    grid-template-columns: 1fr;
  }

  .decision-network {
    width: min(82vw, 520px);
  }

  .experience-signal-rail {
    flex-wrap: wrap;
  }

  .report-card article {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .report-card span,
  .report-card h2,
  .report-card p {
    grid-column: auto;
  }

  .legal-content {
    grid-template-columns: 1fr;
  }

  .knowledge-sections,
  .knowledge-engine-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .experience-hero,
  .flow-shell,
  .report-shell,
  .application-shell,
  .thank-you-shell,
  .legal-shell {
    padding-top: 6.6rem;
  }

  .experience-copy h1,
  .flow-intro h1,
  .report-hero h1,
  .application-intro h1,
  .thank-you-shell h1,
  .legal-hero h1 {
    font-size: clamp(2.85rem, 12vw, 4.8rem);
  }

  .experience-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    min-width: 0;
    overflow-x: clip;
  }

  .experience-section > *,
  .experience-section-heading,
  .experience-section-copy,
  .decision-logic-content,
  .proof-row {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .decision-insight-grid {
    grid-template-columns: 1fr;
  }

  .decision-logic-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .decision-logic-actions .button {
    width: 100%;
  }

  .header-assessment-link,
  .language-state {
    display: none;
  }

  .experience-signal-rail {
    justify-content: flex-start;
    gap: 0.7rem;
    overflow: hidden;
  }

  .experience-signal-rail i {
    width: 28px;
  }

  .experience-hero {
    min-height: 100svh;
    gap: 1.5rem;
  }

  .experience-copy {
    position: relative;
    z-index: 2;
  }

  .experience-hero .decision-network {
    position: absolute;
    right: 0;
    bottom: 1.2rem;
    width: min(82vw, 400px);
    min-width: 280px;
    opacity: 0.34;
    pointer-events: none;
  }

  .experience-body {
    font-size: clamp(1rem, 4.6vw, 1.2rem);
  }

  .experience-section-heading h2,
  .experience-statement h2,
  .experience-final h2 {
    font-size: clamp(2.5rem, 11vw, 4.2rem);
  }

  .assessment-step legend {
    font-size: clamp(2rem, 10vw, 3.4rem);
  }

  .assessment-step label {
    padding: 0.95rem;
    border-radius: 14px;
  }

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

  .assessment-actions .button,
  .hero-actions .button,
  .report-actions .button,
  .application-form .button {
    width: 100%;
  }
}

@media print {
  .site-header,
  .site-footer,
  .knowledge-search,
  .button {
    display: none !important;
  }

  body,
  .knowledge-page {
    background: #fff;
    color: #111;
  }

  .knowledge-article,
  .knowledge-hero {
    max-width: none;
    padding: 0;
  }

  .knowledge-article p,
  .knowledge-article li {
    color: #111;
  }
}
