:root {
  --obsidian: #111316;
  --obsidian-soft: #1b1d21;
  --obsidian-lift: #25282d;
  --graphite: #2f3337;
  --slate: #4b5054;
  --stone: #697074;
  --oak: #6e7375;
  --bone: #eceeef;
  --oat: #dcdfdf;
  --paper: #eceeee;
  --paper-bright: #f6f7f7;
  --brass: #cda766;
  --brass-deep: #9d7b3d;
  --antique: #b9914d;
  --sage: #75807f;
  --ink: #111316;
  --muted-ink: #454b4f;
  --line-dark: rgba(17, 19, 22, 0.14);
  --line-light: rgba(236, 238, 239, 0.15);
  --shadow: 0 34px 90px rgba(17, 19, 22, 0.24);
  --glass-light: rgba(246, 247, 247, 0.46);
  --glass-light-strong: rgba(246, 247, 247, 0.64);
  --glass-dark: rgba(17, 19, 22, 0.68);
  --glass-dark-strong: rgba(27, 29, 33, 0.78);
  --glass-border-dark: rgba(17, 19, 22, 0.12);
  --glass-border-light: rgba(236, 238, 239, 0.18);
  --cellular-grid:
    linear-gradient(90deg, rgba(17, 19, 22, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 19, 22, 0.055) 1px, transparent 1px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  --header-fade-top: rgba(220, 223, 223, 0.94);
  --header-fade-mid: rgba(220, 223, 223, 0.78);
  --header-fade-low: rgba(220, 223, 223, 0.2);
  --header-fade-end: rgba(220, 223, 223, 0);
  margin: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.72), transparent 28%),
    radial-gradient(circle at 90% 12%, rgba(17, 19, 22, 0.13), transparent 30%),
    linear-gradient(180deg, #eff1f1 0%, #cfd4d6 48%, #f3f5f5 100%);
  color: var(--ink);
  font-family: Montserrat, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  line-height: 1.55;
}

body.header-over-dark {
  --header-fade-top: rgba(17, 19, 22, 0.98);
  --header-fade-mid: rgba(17, 19, 22, 0.9);
  --header-fade-low: rgba(17, 19, 22, 0.24);
  --header-fade-end: rgba(17, 19, 22, 0);
}

body::before {
  content: "";
  position: fixed;
  inset: 0 0 auto;
  z-index: 19;
  height: clamp(72px, 6.2vw, 104px);
  pointer-events: none;
  background: linear-gradient(
    180deg,
    var(--header-fade-top) 0%,
    var(--header-fade-top) 38%,
    var(--header-fade-mid) 62%,
    var(--header-fade-low) 84%,
    var(--header-fade-end) 100%
  );
  transition: background 180ms ease;
}

#top,
section {
  scroll-margin-top: 0;
}

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

button,
input,
select {
  font: inherit;
}

img {
  max-width: 100%;
}

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

h1 {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(62px, 9vw, 124px);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 0.88;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(40px, 5.8vw, 76px);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.02;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.2;
}

.site-header {
  --header-brand: var(--ink);
  --header-caption: var(--antique);
  --header-nav: var(--slate);
  --header-active: var(--ink);
  --header-cta-text: var(--ink);
  --header-cta-border: rgba(17, 19, 22, 0.18);
  --header-cta-bg: rgba(246, 247, 247, 0.08);
  --header-cta-hover-bg: rgba(255, 255, 255, 0.14);
  --header-cta-hover-border: rgba(17, 19, 22, 0.32);
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 62px;
  padding: 10px clamp(18px, 4.4vw, 60px);
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  color: var(--header-brand);
}

.site-header.is-over-dark {
  --header-brand: var(--bone);
  --header-caption: var(--brass);
  --header-nav: rgba(236, 238, 239, 0.76);
  --header-active: var(--brass);
  --header-cta-text: var(--bone);
  --header-cta-border: rgba(205, 167, 102, 0.48);
  --header-cta-bg: rgba(205, 167, 102, 0.08);
  --header-cta-hover-bg: rgba(205, 167, 102, 0.16);
  --header-cta-hover-border: rgba(205, 167, 102, 0.72);
}

.brand,
.main-nav,
.hero-actions,
.hero-proof,
.hero-rail,
.life-status,
.site-footer,
.site-footer div {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  color: var(--header-brand);
  letter-spacing: 0;
  transition: color 160ms ease;
}

.brand img,
.site-footer img {
  border-radius: 9px;
}

.brand img {
  width: 34px;
  height: 34px;
}

.brand-lockup {
  display: grid;
  gap: 1px;
}

.brand-name {
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}

.brand-caption {
  color: var(--header-caption);
  font-size: 8px;
  font-weight: 600;
  line-height: 1.15;
  transition: color 160ms ease;
}

.main-nav {
  gap: 26px;
  color: var(--header-nav);
  font-size: 13px;
  font-weight: 500;
  transition: color 160ms ease;
}

.main-nav a,
.nav-cta {
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.main-nav a:hover {
  color: var(--header-active);
}

.main-nav a.is-active {
  color: var(--header-active);
}

.nav-cta,
.button,
.section-index,
.statement-label,
.column-title,
.visual-kicker,
.life-status,
.hero-proof,
.hero-rail span,
.problem-grid span,
.core-services span,
.capability-matrix span,
.standards-row,
.defence-stack span,
.cost-grid span,
.operating-grid span,
.form-note {
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-cta {
  border: 1px solid var(--header-cta-border);
  border-radius: 8px;
  background: var(--header-cta-bg);
  color: var(--header-cta-text);
  font-size: 10px;
  font-weight: 600;
  padding: 8px 11px;
}

.nav-cta:hover {
  border-color: var(--header-cta-hover-border);
  background: var(--header-cta-hover-bg);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.54fr);
  gap: 54px 70px;
  min-height: calc(94svh - 62px);
  overflow: hidden;
  padding: 76px clamp(20px, 5vw, 72px) 32px;
  background:
    radial-gradient(circle at 76% 28%, rgba(17, 19, 22, 0.1), transparent 33%),
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.38), transparent 35%),
    linear-gradient(116deg, rgba(246, 247, 247, 0.42) 0%, rgba(224, 228, 229, 0.24) 40%, rgba(183, 190, 193, 0.2) 76%, rgba(128, 137, 142, 0.26) 100%);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(22px) saturate(160%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--cellular-grid);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 70% 36%, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.12) 45%, transparent 72%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 42%;
  background: linear-gradient(0deg, rgba(17, 19, 22, 0.1), transparent);
  pointer-events: none;
}

.hero-life-canvas {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.44;
  pointer-events: none;
}

.hero-copy {
  align-self: center;
  max-width: 920px;
}

.hero-line {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(31px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.04;
}

.hero-subtitle,
.section-heading p,
.lead-copy,
.mission-panel p,
.access-copy p {
  color: var(--muted-ink);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.65;
}

.hero-subtitle {
  max-width: 790px;
  margin-bottom: 34px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  padding: 14px 17px;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

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

.button-primary {
  background: var(--obsidian);
  color: var(--bone);
  box-shadow: 0 18px 40px rgba(17, 19, 22, 0.2);
}

.button-secondary {
  border-color: rgba(17, 19, 22, 0.2);
  background: rgba(246, 247, 247, 0.22);
  color: var(--ink);
  backdrop-filter: blur(20px) saturate(145%);
}

.section-dark .button-secondary {
  border-color: rgba(236, 238, 239, 0.24);
  background: transparent;
  color: var(--bone);
}

.hero-proof {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
  color: rgba(17, 19, 22, 0.72);
  font-size: 10px;
  font-weight: 600;
}

.hero-proof span {
  border: 1px solid rgba(205, 167, 102, 0.34);
  border-radius: 999px;
  background: rgba(246, 247, 247, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.46);
  backdrop-filter: blur(18px) saturate(140%);
  padding: 8px 10px;
}

.hero-visual {
  align-self: center;
  justify-self: end;
  display: grid;
  gap: 18px;
  width: min(100%, 430px);
}

.dynamic-mark {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(7px, 1vw, 11px);
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid rgba(236, 238, 239, 0.08);
  border-radius: 23%;
  background:
    radial-gradient(circle at 70% 28%, rgba(236, 238, 239, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 40%),
    var(--obsidian);
  box-shadow: 0 34px 90px rgba(17, 19, 22, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: clamp(25px, 5vw, 48px);
}

.dynamic-mark span,
.life-grid span {
  display: block;
  border: 1.5px solid rgba(236, 238, 239, 0.25);
  border-radius: 8px;
  background: transparent;
  transition: background 360ms ease, border-color 360ms ease, box-shadow 360ms ease, transform 360ms ease;
}

.dynamic-mark span.is-alive,
.life-grid span.is-alive {
  border-color: transparent;
  background: var(--bone);
  box-shadow: inset 0 0 0 1px rgba(17, 19, 22, 0.05);
}

.dynamic-mark span.is-foundation {
  border-color: transparent;
  background: var(--bone);
  box-shadow: inset 0 0 0 1px rgba(17, 19, 22, 0.05);
}

.dynamic-mark span.is-foundation.is-kinetic {
  background: #f4f6f6;
  box-shadow: 0 0 18px rgba(236, 238, 239, 0.16), inset 0 0 0 1px rgba(17, 19, 22, 0.04);
  transform: translateY(-1px);
}

.dynamic-mark span.is-alive:not(.is-foundation) {
  border-color: rgba(205, 167, 102, 0.36);
  background: rgba(205, 167, 102, 0.22);
  box-shadow: 0 0 18px rgba(205, 167, 102, 0.18);
}

.dynamic-mark span.is-command,
.life-grid span.is-command {
  border-color: transparent;
  background: var(--brass);
  box-shadow: 0 0 24px rgba(205, 167, 102, 0.42);
  transform: scale(1.04);
}

.visual-card {
  border: 1px solid rgba(236, 238, 239, 0.1);
  border-radius: 8px;
  background: #08090b;
  color: var(--bone);
  padding: 20px;
  box-shadow: 0 22px 54px rgba(17, 19, 22, 0.28);
  backdrop-filter: none;
}

.visual-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--brass);
  font-size: 11px;
  font-weight: 700;
}

.visual-card p {
  margin: 0;
  color: rgba(236, 238, 239, 0.72);
  font-size: 15px;
  line-height: 1.6;
}

.hero-rail {
  grid-column: 1 / -1;
  align-self: end;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--glass-border-dark);
  border-radius: 8px;
  background: rgba(246, 247, 247, 0.14);
  box-shadow: 0 22px 60px rgba(17, 19, 22, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.54);
  backdrop-filter: blur(26px) saturate(150%);
}

.hero-rail div {
  min-height: 142px;
  padding: 20px 22px 18px;
  border-right: 1px solid var(--line-dark);
  background: transparent;
}

.hero-rail div:last-child {
  border-right: 0;
}

.hero-rail span,
.section-index {
  display: block;
  margin-bottom: 14px;
  color: var(--antique);
  font-size: 11px;
  font-weight: 700;
}

.hero-rail strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}

.hero-rail p {
  margin: 0;
  color: #51575b;
  font-size: 14px;
  line-height: 1.55;
}

.section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 112px clamp(20px, 5vw, 72px);
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 82% 12%, rgba(17, 19, 22, 0.11), transparent 28%),
    radial-gradient(circle at 8% 72%, rgba(255, 255, 255, 0.6), transparent 26%),
    var(--cellular-grid);
  background-size: auto, auto, 84px 84px;
  opacity: 0.42;
  pointer-events: none;
}

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

.north-star,
.capabilities,
.operating {
  background:
    linear-gradient(135deg, rgba(246, 247, 247, 0.58), rgba(207, 212, 214, 0.72)),
    var(--oat);
}

.north-star-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.38fr);
  gap: clamp(56px, 7vw, 120px);
  align-items: start;
  max-width: 1700px;
  margin: 0 auto;
}

.north-star .section-index {
  max-width: 1700px;
  margin-right: auto;
  margin-left: auto;
}

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

.north-star h2 {
  max-width: 1000px;
  font-size: clamp(30px, 2.35vw, 42px);
  line-height: 1.18;
}

.statement-label {
  display: block;
  margin-bottom: 22px;
  color: var(--antique);
  font-size: 11px;
  font-weight: 700;
}

.mission-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  justify-self: end;
  width: min(100%, 520px);
  margin-top: 39px;
  border: 1px solid var(--glass-border-dark);
  border-radius: 8px;
  background: rgba(246, 247, 247, 0.38);
  box-shadow: 0 18px 48px rgba(17, 19, 22, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.48);
  padding: 28px;
  backdrop-filter: blur(22px) saturate(140%);
}

.mission-panel p {
  margin: auto 0 0;
  color: #3f4549;
  font-size: clamp(17px, 1.2vw, 21px);
  line-height: 1.62;
}

.problem,
.governance {
  background:
    linear-gradient(145deg, rgba(246, 247, 247, 0.9), rgba(218, 222, 224, 0.78)),
    var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.48fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 56px;
}

.problem-grid,
.cost-grid,
.operating-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--glass-border-dark);
  border-radius: 8px;
  background: rgba(246, 247, 247, 0.24);
  box-shadow: 0 24px 64px rgba(17, 19, 22, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(16px) saturate(126%);
}

.problem-grid article,
.cost-grid article,
.operating-grid div {
  min-height: 268px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(246, 247, 247, 0.12);
  padding: 26px;
}

.problem-grid span,
.cost-grid span,
.operating-grid span {
  display: block;
  margin-bottom: 32px;
  color: var(--antique);
  font-size: 11px;
  font-weight: 700;
}

.problem-grid p,
.cost-grid p,
.operating-grid p {
  margin: 0;
  color: #4a5054;
}

.section-dark {
  background:
    radial-gradient(circle at 82% 10%, rgba(236, 238, 239, 0.11), transparent 28%),
    radial-gradient(circle at 12% 84%, rgba(205, 167, 102, 0.08), transparent 24%),
    linear-gradient(135deg, rgba(236, 238, 239, 0.06), transparent 40%),
    var(--obsidian);
  color: var(--bone);
}

.section-dark::before {
  background:
    radial-gradient(circle at 80% 18%, rgba(236, 238, 239, 0.1), transparent 24%),
    linear-gradient(90deg, rgba(236, 238, 239, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(236, 238, 239, 0.045) 1px, transparent 1px);
  background-size: auto, 84px 84px, 84px 84px;
  opacity: 0.52;
}

.section-dark .section-index {
  color: var(--brass);
}

.section-dark p,
.section-dark .section-heading p {
  color: rgba(236, 238, 239, 0.68);
}

.architecture {
  display: grid;
  grid-template-columns: minmax(230px, 0.78fr) minmax(320px, 1fr) minmax(230px, 0.78fr);
  overflow: hidden;
  border: 1px solid var(--glass-border-light);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(236, 238, 239, 0.12), rgba(17, 19, 22, 0.34));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(132%);
}

.architecture-column,
.architecture-core {
  background: rgba(17, 19, 22, 0.2);
  border-right: 1px solid var(--glass-border-light);
  padding: 28px;
}

.architecture-column:last-child {
  border-right: 0;
}

.column-title {
  display: block;
  margin-bottom: 22px;
  color: rgba(236, 238, 239, 0.52);
  font-size: 11px;
  font-weight: 700;
}

.architecture ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.architecture li {
  border-bottom: 1px solid rgba(236, 238, 239, 0.12);
  color: rgba(236, 238, 239, 0.78);
  font-size: 15px;
  padding: 11px 0;
}

.architecture-core {
  display: grid;
  place-items: center;
  text-align: center;
  padding-block: 62px;
}

.architecture-core img {
  width: 118px;
  margin-bottom: 28px;
  border-radius: 23%;
}

.architecture-core span {
  display: block;
  max-width: 450px;
  margin-bottom: 12px;
  color: var(--paper);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.14;
}

.architecture-core p {
  max-width: 430px;
  margin: 0;
}

.core-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 42px;
  overflow: hidden;
  background: rgba(236, 238, 239, 0.1);
  border: 1px solid var(--glass-border-light);
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px) saturate(128%);
}

.core-services div {
  min-height: 162px;
  background: rgba(27, 29, 33, 0.78);
  padding: 22px;
}

.core-services span {
  display: block;
  margin-bottom: 28px;
  color: var(--brass);
  font-size: 11px;
  font-weight: 700;
}

.core-services p {
  margin: 0;
  font-size: 14px;
}

.capabilities-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(460px, 0.74fr);
  gap: 76px;
  align-items: start;
}

.lead-copy {
  max-width: 690px;
  margin: 30px 0 0;
  color: var(--muted-ink);
}

.capability-matrix {
  display: grid;
  gap: 12px;
}

.capability-matrix div {
  display: grid;
  grid-template-columns: 42px minmax(0, 0.42fr) minmax(0, 0.78fr);
  gap: 18px;
  align-items: start;
  border: 1px solid var(--glass-border-dark);
  border-radius: 8px;
  background: rgba(246, 247, 247, 0.3);
  box-shadow: 0 14px 38px rgba(17, 19, 22, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.42);
  padding: 18px;
  backdrop-filter: blur(14px) saturate(126%);
}

.capability-matrix span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--obsidian);
  color: var(--bone);
  font-size: 11px;
  font-weight: 700;
}

.capability-matrix strong {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.capability-matrix p {
  margin: 0;
  color: #4a5054;
  font-size: 14px;
}

.governance-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.52fr);
  gap: 92px;
  align-items: center;
}

.governance-copy > p {
  max-width: 720px;
  margin: 26px 0 34px;
  color: var(--muted-ink);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.65;
}

.standards-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 34px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
}

.standards-row span {
  border: 1px solid rgba(17, 19, 22, 0.16);
  border-radius: 999px;
  background: rgba(246, 247, 247, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.36);
  padding: 8px 10px;
  backdrop-filter: blur(12px);
}

.defence-stack {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--glass-border-dark);
  border-radius: 8px;
  background: rgba(246, 247, 247, 0.24);
  box-shadow: 0 20px 52px rgba(17, 19, 22, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(16px) saturate(126%);
}

.defence-stack div {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  border-bottom: 1px solid var(--line-dark);
  background: transparent;
  color: #4a5054;
  padding: 14px 18px;
}

.defence-stack span {
  color: var(--antique);
  font-size: 11px;
  font-weight: 700;
}

.life-panel {
  justify-self: end;
  width: min(100%, 430px);
  border: 1px solid var(--glass-border-light);
  border-radius: 8px;
  background:
    radial-gradient(circle at 70% 20%, rgba(236, 238, 239, 0.1), transparent 32%),
    linear-gradient(135deg, rgba(236, 238, 239, 0.08), rgba(17, 19, 22, 0.72)),
    var(--obsidian);
  box-shadow: 0 34px 90px rgba(17, 19, 22, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  padding: 52px;
  backdrop-filter: blur(18px) saturate(136%);
}

.life-grid {
  display: grid;
  grid-template-columns: repeat(5, 42px);
  grid-auto-rows: 42px;
  gap: 10px;
  justify-content: center;
}

.life-status {
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  color: rgba(236, 238, 239, 0.58);
  font-size: 11px;
  font-weight: 700;
}

.life-status button {
  border: 1px solid rgba(236, 238, 239, 0.18);
  border-radius: 8px;
  background: transparent;
  color: var(--bone);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  padding: 9px 12px;
  text-transform: uppercase;
}

.cost-grid {
  border-color: var(--glass-border-light);
  background: rgba(236, 238, 239, 0.1);
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px) saturate(130%);
}

.cost-grid article {
  border-color: rgba(236, 238, 239, 0.16);
  background: rgba(27, 29, 33, 0.78);
}

.cost-grid span {
  color: var(--brass);
}

.cost-grid h3,
.cost-grid p {
  color: var(--bone);
}

.cost-grid p {
  color: rgba(236, 238, 239, 0.68);
}

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

.operating-grid div {
  min-height: 248px;
}

.access {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.54fr);
  gap: 88px;
  align-items: start;
}

.access-copy p {
  max-width: 700px;
  margin-top: 26px;
}

.access-form {
  display: grid;
  gap: 15px;
  border: 1px solid var(--glass-border-light);
  border-radius: 8px;
  background: rgba(17, 19, 22, 0.72);
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  padding: 24px;
  backdrop-filter: blur(18px) saturate(136%);
}

.access-form label {
  display: grid;
  gap: 8px;
  color: rgba(236, 238, 239, 0.72);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.access-form input,
.access-form select {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(236, 238, 239, 0.18);
  border-radius: 8px;
  background: rgba(17, 19, 22, 0.86);
  color: var(--bone);
  padding: 0 13px;
}

.access-form input:focus,
.access-form select:focus {
  outline: 3px solid rgba(205, 167, 102, 0.22);
  border-color: var(--brass);
}

.form-note {
  margin: 0;
  color: rgba(236, 238, 239, 0.48) !important;
  font-size: 11px !important;
  text-transform: none;
}

.site-footer {
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(236, 238, 239, 0.04), transparent 30%),
    var(--obsidian);
  border-top: 1px solid rgba(236, 238, 239, 0.1);
  color: rgba(236, 238, 239, 0.64);
}

.site-footer div {
  gap: 10px;
  color: var(--bone);
  font-weight: 400;
}

.about-hero {
  min-height: calc(82svh - 74px);
  background:
    radial-gradient(circle at 82% 20%, rgba(17, 19, 22, 0.12), transparent 31%),
    radial-gradient(circle at 10% 12%, rgba(255, 255, 255, 0.6), transparent 28%),
    linear-gradient(130deg, rgba(246, 247, 247, 0.68), rgba(207, 212, 214, 0.58)),
    var(--oat);
}

.about-hero-layout,
.about-origin-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.46fr);
  gap: clamp(56px, 7vw, 112px);
  align-items: end;
}

.about-hero-layout {
  align-items: center;
}

.about-hero-copy {
  max-width: 1050px;
}

.about-hero h1 {
  max-width: 980px;
  margin-bottom: 30px;
  font-size: clamp(50px, 6.2vw, 102px);
  line-height: 0.96;
}

.about-hero p,
.origin-copy p {
  color: var(--muted-ink);
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.72;
}

.about-hero p {
  max-width: 850px;
  margin-bottom: 0;
}

.about-panel {
  justify-self: end;
  width: min(100%, 520px);
  border: 1px solid var(--glass-border-dark);
  border-radius: 8px;
  background: rgba(246, 247, 247, 0.28);
  box-shadow: 0 22px 62px rgba(17, 19, 22, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.42);
  padding: 30px;
  backdrop-filter: blur(24px) saturate(145%);
}

.about-panel span,
.about-principles span,
.founder-role {
  display: block;
  color: var(--antique);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-panel span {
  margin-bottom: 42px;
}

.about-panel p {
  margin: 0;
  color: #3f4549;
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.55;
}

.about-origin-layout {
  align-items: start;
}

.about-origin h2 {
  max-width: 900px;
}

.origin-copy {
  display: grid;
  gap: 22px;
}

.origin-copy p {
  margin: 0;
  color: rgba(236, 238, 239, 0.72);
}

.about-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 62px;
  overflow: hidden;
  border: 1px solid var(--glass-border-light);
  border-radius: 8px;
  background: rgba(236, 238, 239, 0.1);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px) saturate(128%);
}

.about-principles div {
  min-height: 190px;
  background: rgba(27, 29, 33, 0.78);
  padding: 24px;
}

.about-principles span {
  margin-bottom: 34px;
  color: var(--brass);
}

.about-principles p {
  margin: 0;
  color: rgba(236, 238, 239, 0.7);
}

.founders {
  background:
    linear-gradient(135deg, rgba(246, 247, 247, 0.62), rgba(207, 212, 214, 0.72)),
    var(--oat);
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.founder-card {
  overflow: hidden;
  border: 1px solid var(--glass-border-dark);
  border-radius: 8px;
  background: rgba(246, 247, 247, 0.32);
  box-shadow: 0 20px 52px rgba(17, 19, 22, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(18px) saturate(132%);
}

.founder-photo-frame {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background:
    var(--cellular-grid),
    linear-gradient(145deg, rgba(17, 19, 22, 0.96), rgba(37, 40, 45, 0.86));
  background-size: 52px 52px, auto;
  color: rgba(236, 238, 239, 0.88);
}

.founder-photo-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(0deg, rgba(17, 19, 22, 0.46), transparent);
}

.founder-photo-frame span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(236, 238, 239, 0.18);
  border-radius: 8px;
  background: rgba(236, 238, 239, 0.08);
  color: var(--bone);
  font-size: 21px;
  font-weight: 500;
  backdrop-filter: blur(16px);
}

.founder-photo-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-card-body {
  min-height: 172px;
  padding: 22px;
}

.founder-card h3 {
  margin-bottom: 16px;
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 400;
  line-height: 1.12;
}

.founder-role {
  margin: 0 0 8px;
}

.founder-credential {
  margin: 0;
  color: #4a5054;
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    justify-self: start;
    width: min(100%, 330px);
  }

  .hero-rail,
  .problem-grid,
  .cost-grid,
  .core-services {
    grid-template-columns: repeat(2, 1fr);
  }

  .north-star-grid,
  .section-heading,
  .capabilities-layout,
  .governance-layout,
  .access,
  .about-hero-layout,
  .about-origin-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-panel {
    justify-self: start;
    width: 100%;
  }

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

  .mission-panel {
    justify-self: start;
    width: 100%;
    margin-top: 0;
    border: 1px solid var(--glass-border-dark);
    padding: 28px;
  }

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

  .architecture-column,
  .architecture-core {
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .architecture-column:last-child {
    border-bottom: 0;
  }

  .life-panel {
    justify-self: start;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 58px;
    gap: 14px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .main-nav {
    display: none;
  }

  .brand-name {
    font-size: 18px;
  }

  .brand-caption {
    font-size: 7.5px;
  }

  .nav-cta {
    padding: 8px 9px;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
    gap: 42px;
  }

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

  .hero-subtitle,
  .section-heading p,
  .lead-copy,
  .mission-panel p,
  .access-copy p,
  .governance-copy > p {
    font-size: 17px;
  }

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

  .button {
    width: 100%;
  }

  .hero-proof {
    align-items: stretch;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-proof span {
    text-align: center;
  }

  .hero-rail,
  .problem-grid,
  .cost-grid,
  .core-services,
  .operating-grid,
  .about-principles {
    grid-template-columns: 1fr;
  }

  .about-hero {
    min-height: auto;
  }

  .about-hero h1 {
    font-size: clamp(46px, 12vw, 74px);
  }

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

  .hero-rail div {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .hero-rail div:last-child {
    border-bottom: 0;
  }

  .problem-grid article,
  .cost-grid article,
  .operating-grid div {
    min-height: auto;
  }

  .capability-matrix div {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .capability-matrix p {
    grid-column: 2;
  }

  .defence-stack div {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .life-panel {
    padding: 34px 22px;
  }

  .life-grid {
    grid-template-columns: repeat(5, 31px);
    grid-auto-rows: 31px;
    gap: 7px;
  }

  .access-form {
    padding: 18px;
  }

  .site-footer,
  .life-status {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .hero-proof {
    grid-template-columns: 1fr;
  }

  .dynamic-mark {
    padding: 24px;
  }
}

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