:root {
  --font-heading: "source-sans-pro", "Source Sans 3", "Source Sans Pro", Arial, sans-serif;
  --font-body: "avenir-lt-pro", "Avenir Next", Avenir, Arial, sans-serif;
  --navy: #030a16;
  --navy-2: #071222;
  --navy-3: #0a1728;
  --ink: #090b12;
  --paper: #f3f5f8;
  --white: #ffffff;
  --muted: #b9c2d0;
  --soft: #dde3ea;
  --purple: #b575ff;
  --violet: #7f64ff;
  --aqua: #5eead4;
  --cyan: #7ee8ff;
  --line: rgba(255,255,255,.13);
  --dark-line: rgba(6,12,24,.12);
  --radius: 18px;
  --container: 1220px;
  --shadow: 0 28px 90px rgba(0,0,0,.25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 94px; }
body {
  margin: 0;
  color: var(--white);
  background: var(--navy);
  font-family: var(--font-body);
  line-height: 1.45;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

h1, h2, h3, h4, h5, h6,
.section-kicker {
  font-family: var(--font-heading);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  z-index: 9999;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
}
.skip-link:focus { left: 16px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
.container {
  width: min(var(--container), calc(100% - 56px));
  margin-inline: auto;
}
.section-dark { background: var(--navy); color: var(--white); }
.section-light { background: var(--paper); color: var(--ink); }
.section-kicker {
  margin: 0 0 16px;
  color: #6d51cc;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.section-kicker.purple { color: var(--purple); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  /* min-height: 46px; */
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 6px 27px 12px;
  font-size: 18px;
  font-weight: 500;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {color: var(--navy);background: var(--white);min-width: 256px;}
.btn-outline { border-color: rgba(255,255,255,.86); color: var(--white); min-width: 172px; }

.cta-arrow-icon {
  width: 18px;
  height: 18px;
  display: block;
  flex: 0 0 auto;
  transition: transform .2s ease, filter .2s ease;
}
.btn:hover .cta-arrow-icon {
  transform: translateX(5px);
}
.btn-primary:hover {
  background: var(--violet);
  color: var(--white);
}
.btn-primary:hover .cta-arrow-icon {
  filter: invert(1);
}

.site-header {
  position: sticky;
  inset: 0 0 auto;
  z-index: 20;
  background: rgba(3,10,22,.88);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
}
.nav-wrap {
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { width: 174px; height: auto; }
.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.1vw, 34px);
  font-size: 14px;
  font-weight: 600;
}
.desktop-nav a:not(.btn) { color: rgba(255,255,255,.92); }
.desktop-nav a:not(.btn):hover { color: var(--aqua); }
.menu-toggle { display: none; }
.mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: 432px;
  overflow: hidden;
  padding: 90px 0px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(176,88,255,.55), transparent);
}
.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  opacity: .96;
}
.hero-video-mobile { display: none; }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(90deg, rgba(3,10,22,.98) 0%, rgba(3,10,22,.86) 26%, rgba(3,10,22,.18) 58%, rgba(3,10,22,.48) 100%); */
}
.hero-content {
  position: relative;
  min-height: 462px;
  display: flex;
  align-items: center;
}
.hero-copy { width: min(540px, 48vw); padding: 46px 0 52px; }
.hero h1 {
  margin: 0;
  font-size: clamp(48px, 5.7vw, 72px);
  line-height: .96;
  letter-spacing: 0.0em;
  font-weight: 500;
  font-family: 'avenir-lt-pro';
}
.eyebrow-large {
  margin: 35px 0 30px;
  color: var(--purple);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -.025em;
}
.hero-copy p:not(.eyebrow-large) {
  max-width: 430px;
  margin: 0 0 40px;
  font-size: 17px;
  color: rgba(255,255,255,.92);
}

.proof-strip { border-bottom: 1px solid rgba(255,255,255,.1); }
.proof-grid {
  min-height: 116px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  gap: 22px;
}
.proof-grid article {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  color: rgba(255,255,255,.95);
  font-size: 17px;
  line-height: 1.15;
  font-family: 'avenir-lt-pro';
  font-weight: 500;
}
@media (min-width: 768px) and (max-width: 1180px) and (orientation: landscape) {
  .proof-grid article {
    font-size: 15px;

  }
}

.proof-grid img { width: 28px; flex: 0 0 28px; }

.architecture {padding: 2px 0 58px;}
.architecture .section-kicker {
  color: var(--violet);
  font-size: 15px;
  letter-spacing: .08em;
  margin-bottom: 18px;
}
.arch-grid {
  display: grid;
  grid-template-columns: .85fr auto 2.15fr;
  gap: 34px;
  align-items: center;
}
.legacy-system { max-width: 390px; }
.architecture h2 {
  margin: 0 0 18px;
  font-size: 27px;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -.02em;
}
.flow-title {
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
}
.flow-title span { padding: 0 7px; }
.flow-title .inline-arrow {
  width: 18px;
  height: 18px;
  display: inline-block;
  flex: 0 0 auto;
}
.legacy-copy-lines { line-height: 1.32; }
.architecture p { color: rgba(0,0,0,.85); }
.legacy-system > p:not(.section-kicker):not(.flow-title), .poly-architecture > p:not(.flow-title) {
  max-width: 450px;
  margin: 0 0 24px;
  font-size: 16px;
}
.mini-flow, .adjudication-flow {
  display: flex;
  align-items: center;
  gap: 14px;
}
.mini-flow span, .adjudication-flow span {
  display: block;
  width: auto;
  min-width: 0;
  min-height: 0;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border: 1px solid rgba(0,0,0,.25);
  border-radius: 8px;
  background: rgba(255,255,255,.56);
  font-size: 13px;
  font-weight: 650;
  text-align: center;
}
.mini-flow small, .adjudication-flow small {
  display: block;
  margin-top: 2px;
  font-size: 14px;
  line-height: 1.05;
  white-space: nowrap;
}
.mini-flow i, .adjudication-flow i { font-style: normal; color: rgba(0,0,0,.55); }
.vs-badge {
  position: relative;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #d8dde5;
  border: 5px solid #fff;
  outline: 1px solid #cbd2dd;
  color: #3e4652;
  font-size: 14px;
  font-weight: 800;
  box-shadow: none;
  isolation: isolate;
}
.vs-badge::before,
.vs-badge::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  height: 34px;
  transform: translateX(-50%);
  background: #cdd4de;
  z-index: -2;
}
.vs-badge::before { bottom: 50%; }
.vs-badge::after { top: 50%; }
.poly-architecture {
  margin-top: 100px;
  position: relative;
  padding-left: 28px;
}
.poly-architecture::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 50%;
  width: 1px;
  height: 188px;
  transform: translateY(-50%);
  border-left: 1px dashed #c7ced8;
}
.poly-architecture .adjudication-flow {
  gap: 10px;
  max-width: 100%;
  flex-wrap: nowrap;
}
.adjudication-flow .flow-box {
  min-width: 0;
  width: auto;
  flex: 0 0 auto;
  height: auto;
  min-height: 0;
  padding: 12px 16px;
  line-height: 1.12;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
}
.adjudication-flow .flow-box-small { padding-inline: 16px; }
.adjudication-flow .flow-box-representation { min-width: 0; padding-inline: 18px; }
.adjudication-flow .flow-box-kernel {
  min-width: 0;
  padding: 12px 18px;
  flex-direction: column;
  gap: 2px;
}
.adjudication-flow .flow-box-kernel strong {
  display: block;
  font: inherit;
  font-weight: inherit;
  line-height: 1.05;
  white-space: nowrap;
}
.adjudication-flow .flow-box-kernel small {
  display: block;
  line-height: 1.05;
  white-space: nowrap;
}
.adjudication-flow .flow-box-action { padding: 12px 16px; }
.torus-orbit {
  position: relative;
  width: 132px;
  height: 132px;
  flex: 0 0 132px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(91, 143, 173, .78);
  border-radius: 50%;
}
.torus-orbit::before,
.torus-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.torus-orbit::before {
  inset: 8px;
  border: 1px solid rgba(91, 166, 200, .72);
}
.torus-orbit::after {
  inset: 12px;
  border: 5px solid rgba(255,255,255,.96);
}
.torus-orbit img {
  position: relative;
  z-index: 1;
  width: 106px;
  height: 106px;
  object-fit: contain;
}

.governance { padding: 52px 0 58px; }

@media (min-width: 768px) and (max-width: 1180px) and (orientation: landscape) {
  .governance {padding: 42px 0 58px;}
   .governance-grid {
      margin-top: 35px;
  } 
}

.governance-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.step-card, .loop-card {
  min-height: 178px;
  border: 1px solid rgba(133,173,255,.35);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(12,29,50,.93), rgba(7,17,31,.98));
  box-shadow: inset 0 1px rgba(255,255,255,.06);
}
.step-card { padding: 19px 16px 18px; }
.step-top {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 10px;
}
.step-card strong {
  display: block;
  flex: 0 0 auto;
  font-size: 32px;
  line-height: 1;
  color: #b75dff;
  position: absolute;
}
.step-icon-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 62px;
}
.step-card img {
  height: 42px;
  width: auto;
  margin: 0 0 8px;
}
.step-card h3, .research-points h3, .claim-legend h3 {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 800;
}
.step-card .step-icon-title h3 {
  margin: 0;
  line-height: 1.05;
}
.step-card:nth-child(2) strong, .step-card:nth-child(4) strong { color: var(--aqua); }
.step-card:nth-child(3) strong { color: #8fa8ff; }
.step-card p, .loop-card p { margin: 0; color: rgba(255,255,255,.9); font-size: 14px; line-height: 1.25; }
.loop-card {
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.loop-card img { width: 150px; height: auto; object-fit: contain; margin-bottom: 12px; }

.research {
  position: relative;
  overflow: hidden;
  padding: 56px 0 46px;
}
.research-bg {
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  background: url('../images/research-network-bg.webp') center bottom / cover no-repeat;
  opacity: .32;
  pointer-events: none;
}
.research-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.45fr .82fr 1fr .95fr;
  gap: 28px;
  align-items: center;
}
.research-copy h2 {
  margin: 0 0 22px;
  font-size: clamp(20px, 1.9vw, 28px);
  line-height: 1.08;
  letter-spacing: -.025em;
  font-weight: 600;
  max-width: 640px;
}
.research-copy h2 span {
  display: block;
  white-space: nowrap;
}
.research-copy p:not(.section-kicker) { max-width: 500px; margin: 0; color: rgba(0,0,0,.72); }
.research-points {display: grid;gap: 34px;top: 22px;position: relative;}
.research-points article {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: start;
  gap: 16px;
}
.research-points p { margin: 0; color: rgba(0,0,0,.77); font-size: 13px; }
.mobius-media { aspect-ratio: 1; border-radius: 50%; overflow: hidden; mix-blend-mode: multiply; }
.mobius-media video {width: 100%;height: 100%;object-fit: cover;position: relative;top: 20px;}
.focus-bar {
  position: relative;
  z-index: 1;
  margin-top: 42px;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
  padding: 0 24px;
  border-radius: 8px;
  background: linear-gradient(90deg, #091325, #211e3a);
  color: var(--white);
  font-size: 15px;
}
.focus-bar i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--aqua);
}

.monday {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.monday-video {
  position: absolute;
  inset: 0 0 0 auto;
  /* width: 74%; */
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
}
.monday-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(90deg, var(--navy) 0%, rgba(3,10,22,.96) 26%, rgba(3,10,22,.52) 56%, rgba(3,10,22,.25) 100%); */
}
.monday-content { position: relative; padding: 62px 0; }
.monday-content h2 {
  max-width: 520px;
  margin: 0 0 25px;
  font-size: clamp(20px, 1.9vw, 30px);
  line-height: 1.3;
  /* line-height: 1.08; */
  letter-spacing: -.015em;
  font-family: 'source-sans-pro';
  font-weight: 600;
}
.monday-content h2 span { display: block; }
.monday-content p:not(.section-kicker) { max-width: 450px; margin: 0 0 12px; color: rgba(255,255,255,.9); font-size: 16px; }
.aqua-text {
  max-width: 470px !important;
  font-size: clamp(18px, 1.45vw, 22px) !important;
  line-height: 1.2;
  margin-top: 26px !important;
}
.aqua-text span {
  display: block;
  background: linear-gradient(90deg, #58e5bd 0%, #8d5dff 40%, #c39bff 72%, #efb694 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.aqua-text em {
  font-style: normal;
  color: inherit;
  -webkit-text-fill-color: inherit;
}

.recoverability {padding: 64px 0 42px;background: #00040c;}
.recovery-grid {
  display: grid;
  grid-template-columns: .86fr 1.6fr;
  grid-template-areas: "copy flow" "copy legend";
  align-items: center;
  gap: 24px 48px;
}
.recovery-copy { grid-area: copy; }
.recovery-copy h2, .kernel-copy h2, .applications-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(20px, 1.9vw, 28px);
  line-height: 1.08;
  letter-spacing: -.025em;
  font-weight: 600;
  max-width: 560px;
}
.recovery-copy p:not(.section-kicker), .kernel-copy p, .applications-copy p { margin: 0; color: rgba(255,255,255,.76); }
.recovery-flow {
  grid-area: flow;
  display: grid;
  grid-template-columns: 1fr 36px 1fr 36px 1fr 36px 1fr;
  align-items: center;
  gap: 18px;
}

@media (min-width: 768px) and (max-width: 1180px) and (orientation: landscape) {
  .recovery-flow {
    gap: 8px;
  }
  .flow-arrow {
      width: 20px;
    }   
}


.recovery-flow article {
  min-height: 178px;
  display: grid;
  place-items: center;
  padding: 18px 14px;
  text-align: center;
  border: 1px solid rgba(126,166,255,.24);
  border-radius: 9px;
  background: rgba(255,255,255,.04);
}
.recovery-flow article span {margin-top: 15px;font-size: 14px;font-weight: 700;color: rgba(255,255,255,.88);}
.flow-arrow { opacity: .9; justify-self: center; }
.recovery-legend {
  grid-area: legend;
  display: grid;
  grid-template-columns: 1fr 36px 1fr 36px 1fr 36px 1fr;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  border: 1px solid rgba(126,166,255,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.72);
  font-size: 15px;
  text-align: center;
}

@media (min-width: 768px) and (max-width: 1180px) and (orientation: landscape) {
  .recovery-flow article span { font-size: 14px; }
}
.recovery-legend b {
  display: grid;
  place-items: center;
  font-weight: 600;
}
.recovery-legend span:nth-of-type(2) { color: var(--aqua); }
.recovery-legend span:nth-of-type(4) { color: #ff6cb9; }

.kernel {padding: 12px 0 5px;background: var(--navy);}
.kernel-grid {
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(0, 1fr);
  grid-template-areas: "copy visual" "metrics metrics";
  gap: 32px 50px;
  align-items: center;
}
.kernel-copy { grid-area: copy; }
.kernel-copy h2 {
  max-width: none;
  white-space: nowrap;
}
.kernel-visual {
  grid-area: visual;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 22px;
  align-items: center;
  min-height: 0;
}
.kernel-visual > img {
  width: 100%;
  max-height: 250px;
  height: auto;
  object-fit: contain;
  opacity: .95;
}
.claim-legend {
  position: static;
  width: 150px;
  padding: 16px 16px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(8px);
}
.claim-legend h3 {font-size: 15px;margin-bottom: 12px;}
.claim-legend span {display: flex;align-items: center;gap: 8px;margin: 7px 0;color: rgba(255,255,255,.86);font-size: 14px;}
@media (min-width: 768px) and (max-width: 1180px) and (orientation: landscape) {
  .claim-legend span {  font-size: 13px; }
  .claim-legend {
    margin-top: 25px;
  }  
.kernel-visual {
    grid-template-columns: minmax(0, 1fr) 120px;
    left: -30px;
    position: relative;
}  
}



.dot { width: 9px; height: 9px; border-radius: 50%; }
.dot.green { background: #42e38f; }
.dot.blue { background: #58c8ff; }
.dot.red { background: #ff615d; }
.dot.orange { background: #ffc653; }
.dot.grey { background: #b5b9c2; }
.metrics-row {
  grid-area: metrics;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.metrics-row article {
  display: grid;
  grid-template-columns: 54px 1fr;
  grid-template-areas: "icon number" "icon label";
  align-items: center;
  min-height: 82px;
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 9px;
  background: rgba(255,255,255,.05);
}
.metrics-row .metric-icon {
  grid-area: icon;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  box-sizing: border-box;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  background: rgba(255,255,255,.035);
}
.metrics-row .metric-icon img {
  display: block;
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 0;
  padding: 0;
  object-fit: contain;
}
.metrics-row strong { grid-area: number; font-size: 25px; line-height: 1; }
.metrics-row span {grid-area: label;font-size: 15px;color: rgba(255,255,255,.72);}
@media (min-width: 768px) and (max-width: 1180px) and (orientation: landscape) {
  .metrics-row span{ font-size: 14px;}
}


.applications { padding: 42px 0 46px; }
.applications-grid {
  display: grid;
  grid-template-columns: .95fr 2.1fr;
  gap: 36px;
  align-items: center;
}
@media (min-width: 768px) and (max-width: 1180px) and (orientation: landscape) {
  .applications-grid {
    grid-template-columns: none;
  }
}



.applications-copy p:not(.section-kicker) { color: rgba(0,0,0,.72); max-width: 460px; }
.app-card-row {
  display: grid;
  grid-template-columns: repeat(7, minmax(88px, 1fr));
  gap: 10px;
}
.app-card-row article {
  min-height: 174px;
  border: 1px solid rgba(0,0,0,.16);
  border-radius: 8px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0,0,0,.04);
}
.app-card-row img { width: 100%; height: 116px; object-fit: cover; }
.app-card-row span {display: block;padding: 13px 8px 13px;text-align: center;color: #111827;font-size: 12px;line-height: 1.2;font-weight: 700;}

.imagine { padding: 104px 0 112px; text-align: center; border-top: 1px solid rgba(255,255,255,.06); }
.imagine h2 {margin: 0;font-size: 30px;letter-spacing: .01em;background: linear-gradient(90deg, #58e5bd 0%, #8d5dff 40%, #c39bff 45%, #efb694 55%);-webkit-background-clip: text;background-clip: text;color: transparent;-webkit-text-fill-color: transparent;}
.site-footer {
  padding: 72px 0 92px;
  border-top: 1px solid rgba(255,255,255,.1);
  background: #061120;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 50px;
}
.footer-brand img { width: 174px; height: auto; }
.site-footer nav, .footer-legal { display: grid; gap: 15px; align-content: start; }
.site-footer a, .site-footer p { color: rgba(255,255,255,.82); font-size: 14px; margin: 0; }
.footer-legal a { color: #b98cff; }


.about-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
}
.about-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.about-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3,10,22,.78);
  backdrop-filter: blur(10px);
}
.about-modal-panel {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
  max-height: min(86vh, 760px);
  overflow-y: auto;
  padding: 42px 46px 44px;
  border: 1px solid rgba(127,100,255,.22);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f6fa 100%);
  color: var(--ink);
  box-shadow: 0 34px 120px rgba(0,0,0,.38);
  opacity: 0;
  transform: translateY(-28px);
  transition: opacity .28s ease, transform .28s cubic-bezier(.2,.8,.2,1);
}
.about-modal.is-open .about-modal-panel {
  opacity: 1;
  transform: translateY(0);
}
.about-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(6,12,24,.12);
  border-radius: 50%;
  background: rgba(255,255,255,.75);
  cursor: pointer;
}
.about-modal-close::before,
.about-modal-close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #111827;
}
.about-modal-close::before { transform: translate(-50%,-50%) rotate(45deg); }
.about-modal-close::after { transform: translate(-50%,-50%) rotate(-45deg); }
.about-modal-title {
  margin: 0 0 14px;
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.08;
  letter-spacing: -.025em;
  font-weight: 600;
  color: var(--ink);
}
.about-modal-intro {
  max-width: 680px;
  margin: 0 0 32px;
  color: rgba(9,11,18,.72);
  font-size: 15px;
  line-height: 1.55;
}
.about-modal-people {
  display: grid;
  gap: 22px;
}
.about-person {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 22px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(6,12,24,.1);
  border-radius: 14px;
  background: rgba(255,255,255,.62);
}
.about-person-icon {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(127,100,255,.28);
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(127,100,255,.12), rgba(94,234,212,.08));
}
.about-person-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.about-person-photo-wrap {
  overflow: hidden;
  padding: 0;
  background: rgba(255,255,255,.74);
}
.about-person-photo-wrap .about-person-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 50%;
}
.about-person h3 {
  margin: 0 0 2px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.15;
  font-weight: 600;
}
.about-person-role {
  margin: 0 0 10px;
  color: var(--violet);
  font-family: var(--font-heading);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.about-person p:not(.about-person-role) {
  margin: 0;
  color: rgba(9,11,18,.68);
  font-size: 14px;
  line-height: 1.5;
}
body.modal-open { overflow: hidden; }

.briefing-kicker { color: var(--violet); }
.briefing-modal-panel {
  min-height: 560px;
}
.briefing-modal-title {
  color: var(--ink);
}
.briefing-form {
  display: grid;
  gap: 22px;
}
.briefing-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.briefing-form input,
.briefing-form textarea {
  width: 100%;
  border: 1px solid rgba(6,12,24,.14);
  border-radius: 10px;
  background: rgba(255,255,255,.82);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.3;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.briefing-form input {
  min-height: 48px;
  padding: 13px 15px;
}
.briefing-form textarea {
  grid-column: 1 / -1;
  min-height: 116px;
  padding: 14px 15px;
  resize: vertical;
}
.briefing-form input::placeholder,
.briefing-form textarea::placeholder {
  color: rgba(9,11,18,.48);
}
.briefing-form input:focus,
.briefing-form textarea:focus {
  border-color: rgba(127,100,255,.5);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(127,100,255,.1);
}
.briefing-submit {
  justify-self: start;
  min-width: 0;
  min-height: 44px;
  padding: 5px 22px 9px;
  gap: 14px;
  border: 1px solid rgba(127,100,255,.18);
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.briefing-submit:hover {
  background: var(--violet);
  color: var(--white);
  border-color: var(--violet);
  box-shadow: 0 14px 34px rgba(127,100,255,.22);
}
.briefing-submit:hover .cta-arrow-icon {
  transform: translateX(6px);
  filter: invert(1);
}
.briefing-success {
  display: none;
  min-height: 288px;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: 34px 20px;
}
.briefing-success h3 {
  margin: 0 0 10px;
  color: var(--violet);
  font-family: var(--font-heading);
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -.025em;
}
.briefing-success p {
  margin: 0;
  color: rgba(9,11,18,.72);
  font-size: 15px;
  line-height: 1.55;
}
.briefing-modal.is-submitted .briefing-form,
.briefing-modal.is-submitted .about-modal-intro,
.briefing-modal.is-submitted .briefing-kicker,
.briefing-modal.is-submitted .briefing-modal-title {
  display: none;
}
.briefing-modal.is-submitted .briefing-modal-panel {
  display: grid;
  align-content: center;
}
.briefing-modal.is-submitted .briefing-success {
  display: grid;
}

.legal-kicker {
  color: var(--violet);
}
.legal-modal-panel {
  width: min(920px, 100%);
}
.legal-modal-title {
  color: var(--ink);
  margin-bottom: 22px;
}
.legal-modal-content {
  display: grid;
  gap: 16px;
  color: rgba(9,11,18,.74);
  font-size: 14px;
  line-height: 1.58;
}
.legal-modal-content h3 {
  margin: 14px 0 0;
  color: var(--violet);
  font-family: var(--font-heading);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.legal-modal-content p {
  margin: 0;
}
.legal-modal-content ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}
.legal-modal-content li {
  padding-left: 4px;
}
.legal-modal-content li::marker {
  color: var(--violet);
}

@media (max-width: 1120px) {
  :root {
  --font-heading: "source-sans-pro", "Source Sans 3", "Source Sans Pro", Arial, sans-serif;
  --font-body: "avenir-lt-pro", "Avenir Next", Avenir, Arial, sans-serif; --container: 960px; }
  .desktop-nav { gap: 17px; font-size: 13px; }
  .desktop-nav .btn { min-width: auto; padding-inline: 20px; }
  .proof-grid { grid-template-columns: repeat(3, 1fr); padding: 24px 0; }
  .arch-grid { grid-template-columns: .85fr auto 2.15fr; gap: 24px; }
  .poly-architecture { padding-left: 22px; }
  .poly-architecture::before { left: -16px; height: 156px; }
  .poly-architecture .adjudication-flow { gap: 7px; }
  .adjudication-flow .flow-box { width: auto; flex: 0 0 auto; min-height: 0; padding: 10px 12px; font-size: 11px; }
  .adjudication-flow .flow-box-small { padding-inline: 12px; }
  .adjudication-flow .flow-box-representation { min-width: 0; padding-inline: 14px; }
  .adjudication-flow .flow-box-kernel { min-width: 0; padding: 10px 14px; }
  .adjudication-flow .flow-box-action { padding: 10px 12px; }
  .torus-orbit { width: 108px; height: 108px; flex-basis: 108px; }
  .torus-orbit img { width: 86px; height: 86px; }
  .governance-grid { grid-template-columns: repeat(3, 1fr); }
  .research-grid { grid-template-columns: 1.15fr .85fr; }
  .research-copy { grid-column: 1 / -1; max-width: 620px; }
  .mobius-media { grid-column: 2; grid-row: 2 / span 2; }
  .right-points { grid-column: 1 / -1; grid-template-columns: repeat(2, 1fr); }
  .kernel-grid { grid-template-columns: minmax(480px, 1fr) minmax(0, 1fr); gap: 30px; }
  .kernel-copy h2 { font-size: clamp(20px, 1.75vw, 26px); }
  .kernel-visual { grid-template-columns: minmax(0, 1fr) 140px; gap: 18px; }
  .claim-legend { width: 140px; padding: 14px; }
  .applications-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px), (orientation: portrait) and (max-width: 1180px) {
  .container { width: min(100% - 40px, 680px); }

  html { scroll-padding-top: 72px; }
  .about-modal { padding: 18px; }
  .about-modal-panel { padding: 34px 24px 32px; border-radius: 14px; }
  .about-modal-title { font-size: clamp(24px, 7vw, 30px); }
  .about-person { grid-template-columns: 1fr; text-align: center; justify-items: center; padding: 22px 18px; }
  .about-person-icon { width: 78px; height: 78px; }
  .briefing-modal-panel { min-height: 560px; }
  .briefing-form-grid { grid-template-columns: 1fr; }
  .briefing-submit { width: 100%; justify-self: stretch; }
  .site-header { position: sticky; }
  .nav-wrap { height: 72px; }
  .brand img { width: 140px; }
  .desktop-nav { display: none; }
  .menu-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: var(--white);
    position: relative;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .menu-toggle span:not(.sr-only) {
    position: absolute;
    width: 25px;
    height: 2px;
    border-radius: 4px;
    background: var(--white);
    transition: transform .2s ease;
  }
  .menu-toggle span:nth-child(2) { transform: translateY(-5px); }
  .menu-toggle span:nth-child(3) { transform: translateY(5px); }
  .mobile-menu {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 100;
    background: #030814;
    transform: translateX(105%);
    opacity: 0;
    transition: transform .28s ease, opacity .28s ease;
    overflow-y: auto;
  }
  .mobile-menu.is-open { transform: translateX(0); opacity: 1; }
  body.menu-open { overflow: hidden; }
  .mobile-menu-inner { min-height: 100vh; padding: 55px 34px 80px; }
  .mobile-menu-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
  .mobile-menu .brand img { width: 265px; max-width: 68vw; }
  .mobile-close {
    width: 58px;
    height: 58px;
    border: 0;
    background: transparent;
    position: relative;
    flex: 0 0 auto;
  }
  .mobile-close::before, .mobile-close::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 60px;
    height: 5px;
    border-radius: 10px;
    background: #fff;
  }
  .mobile-close::before { transform: translate(-50%,-50%) rotate(45deg); }
  .mobile-close::after { transform: translate(-50%,-50%) rotate(-45deg); }
  .mobile-cta {
    margin: 150px auto 96px;
    width: min(760px, 100%);
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 52px;
    padding: 0 46px;
    border-radius: 999px;
    background: var(--white);
    color: #050815;
    font-size: clamp(26px, 8vw, 44px);
    line-height: 1;
    font-weight: 500;
  }

  .mobile-cta .cta-arrow-icon {
    width: 34px;
    height: 34px;
  }
  .mobile-nav { display: grid; }
  .mobile-nav a {
    min-height: 116px;
    display: grid;
    place-items: center;
    border-top: 1px solid rgba(184,59,255,.22);
    color: var(--white);
    font-size: clamp(30px, 8.4vw, 48px);
    font-weight: 500;
    letter-spacing: -.03em;
  }
  .mobile-nav a:last-child { border-bottom: 1px solid rgba(184,59,255,.22); }

  .hero { min-height: auto; padding-top: 0; }
  .hero-media { position: relative; height: 322px; }
  .hero-video-desktop { display: none; }
  .hero-video-mobile { display: block; object-position: center top; }
  .hero-media::after { background: linear-gradient(180deg, rgba(3,10,22,.02), rgba(3,10,22,.2) 55%, var(--navy) 100%); }
  .hero-content { min-height: unset; display: block; }
  .hero-copy { width: 100%; padding: 2px 0 42px; }
  .hero h1 { font-size: clamp(44px, 12vw, 72px); max-width: 470px; }
  .eyebrow-large { font-size: 24px; margin: 24px 0 17px; max-width: 430px; }
  .hero-copy p:not(.eyebrow-large) { font-size: 15px; max-width: 390px; }
  .btn-primary { width: 100%; max-width: 330px; }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 18px;
    padding: 22px 0 28px;
  }
  .proof-grid article { font-size: 12px; }

  .architecture { padding: 38px 0 44px; }
  .arch-grid { grid-template-columns: 1fr; gap: 30px; }
  .legacy-system, .poly-architecture { max-width: none; padding: 0; }
  .vs-badge { margin-inline: auto; box-shadow: none; }
  .vs-badge::before, .vs-badge::after { height: 32px; }
  .adjudication-flow { flex-wrap: wrap; }
  .poly-architecture::before { display: none; }
  .poly-architecture .adjudication-flow { gap: 10px; flex-wrap: wrap; }
  .torus-orbit { width: 96px; height: 96px; flex-basis: 96px; }
  .torus-orbit img { width: 76px; height: 76px; }

  .governance { padding: 42px 0; }
  .governance-grid { grid-template-columns: 1fr; }
  .step-card, .loop-card { min-height: auto; }
  .loop-card img { width: 170px; height: auto; }

  .research { padding: 42px 0; }
  .research-grid { grid-template-columns: 1fr; gap: 24px; }
  .research-copy h2, .monday-content h2, .recovery-copy h2, .kernel-copy h2, .applications-copy h2 { font-size: clamp(22px, 6vw, 28px); }
  .research-copy h2 span { white-space: normal; }
  .mobius-media { grid-column: auto; grid-row: auto; width: min(300px, 80vw); margin-inline: auto; }
  .research-points, .right-points { grid-template-columns: 1fr; gap: 22px; }
  .focus-bar { flex-direction: column; align-items: stretch; text-align: center; padding: 18px; gap: 12px; }
  .focus-bar i { margin-inline: auto; }

  .monday { min-height: 620px; align-items: end; }
  .monday-video { width: 100%; height: 58%; top: 0; bottom: auto; object-position: 48% center; }
  .monday-overlay { background: linear-gradient(180deg, rgba(3,10,22,.18) 0%, rgba(3,10,22,.62) 38%, var(--navy) 70%); }
  .monday-content { padding: 305px 0 42px; }

  .recoverability { padding: 42px 0; }
  .recovery-grid { grid-template-columns: 1fr; grid-template-areas: "copy" "flow" "legend"; gap: 28px; }
  .recovery-flow { grid-template-columns: 1fr; gap: 12px; }
  .recovery-flow article { min-height: 128px; }
  .flow-arrow { transform: rotate(90deg); margin: 4px auto; }
  .recovery-legend {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
  }

  .kernel { padding: 42px 0; }
  .kernel-grid { grid-template-columns: 1fr; grid-template-areas: "copy" "visual" "metrics"; }
  .kernel-copy h2 { white-space: normal; }
  .kernel-visual { grid-template-columns: 1fr; gap: 16px; }
  .kernel-visual > img { width: 100%; max-height: none; }
  .claim-legend { position: static; margin: 0 auto; width: min(240px, 100%); }
  .metrics-row { grid-template-columns: repeat(2, 1fr); }

  .app-card-row { grid-template-columns: repeat(2, 1fr); }
  .app-card-row article { min-height: 190px; }
  .app-card-row img { height: 140px; object-fit: cover; }
  .imagine { padding: 78px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 42px; }
}

@media (max-width: 460px) {
  .container { width: min(100% - 32px, 420px); }
  .mobile-menu-inner { padding: 32px 26px 70px; }
  .mobile-cta { margin: 125px auto 78px; min-height: 72px; gap: 28px; }
  .mobile-nav a { min-height: 100px; }
  .hero-media { height: 295px; }
  .hero h1 { font-size: 40px; }
  .eyebrow-large { font-size: 21px; }
  .proof-grid { grid-template-columns: 1fr; }
  .mini-flow { flex-wrap: wrap; }
  .adjudication-flow span, .mini-flow span { min-width: 0; }
  .governance-grid { gap: 12px; }
  .monday { min-height: 650px; }
  .monday-content { padding-top: 315px; }
  .metrics-row { grid-template-columns: 1fr; }
  .app-card-row { grid-template-columns: 1fr; }
  .app-card-row img { height: 180px; }
}



/* Subtle icon hover animations */
.animated-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  line-height: 0;
}
.step-icon-title .animated-icon {
  width: auto;
  height: 42px;
  margin: 0 0 8px;
}
.step-icon-title .animated-icon svg {
  display: block;
  width: auto;
  height: 42px;
  overflow: visible;
}
.recovery-flow article .animated-icon {
  width: 68px;
  height: 68px;
}
.recovery-flow article .animated-icon svg {
  display: block;
  width: 68px;
  height: 68px;
  overflow: visible;
}
.animated-icon svg,
.animated-icon svg * {
  transform-box: fill-box;
  transform-origin: center;
  will-change: transform, opacity;
}
.step-card,
.recovery-flow article {
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
@media (hover: hover) and (pointer: fine) {
  .step-card:hover,
  .recovery-flow article:hover {
    transform: translateY(-2px);
    border-color: rgba(255,255,255,.22);
    box-shadow: 0 16px 34px rgba(0,0,0,.16), inset 0 1px rgba(255,255,255,.08);
  }
  .step-card:nth-child(1):hover .tech-icon-01 svg {
    animation: iconSoftPulse 1.25s ease-in-out infinite;
  }
  .step-card:nth-child(2):hover .tech-icon-02 svg path:nth-of-type(1),
  .step-card:nth-child(2):hover .tech-icon-02 svg path:nth-of-type(3) {
    animation: iconBarLift 1s ease-in-out infinite;
  }
  .step-card:nth-child(2):hover .tech-icon-02 svg path:nth-of-type(2),
  .step-card:nth-child(2):hover .tech-icon-02 svg path:nth-of-type(4) {
    animation: iconBarDip 1s ease-in-out infinite;
  }
  .step-card:nth-child(3):hover .tech-icon-03 svg {
    animation: iconScaleBalance 1.05s ease-in-out infinite;
  }
  .step-card:nth-child(4):hover .tech-icon-04 svg path:nth-of-type(7) {
    animation: iconDotSlideA 1.25s ease-in-out infinite;
  }
  .step-card:nth-child(4):hover .tech-icon-04 svg path:nth-of-type(8) {
    animation: iconDotSlideB 1.25s ease-in-out infinite;
  }
  .step-card:nth-child(4):hover .tech-icon-04 svg path:nth-of-type(9) {
    animation: iconDotSlideC 1.25s ease-in-out infinite;
  }
  .step-card:nth-child(5):hover .tech-icon-05 svg,
  .recovery-flow article:nth-of-type(3):hover .rec-icon-03 svg {
    animation: iconSlowSpin 5.2s linear infinite;
  }
  .recovery-flow article:nth-of-type(1):hover .rec-icon-01 svg {
    animation: iconNodeShift 1.35s ease-in-out infinite;
  }
  .recovery-flow article:nth-of-type(2):hover .rec-icon-02 svg polygon {
    animation: iconTriangleTrace 1.45s ease-in-out infinite;
  }
  .recovery-flow article:nth-of-type(4):hover .rec-icon-04 svg {
    animation: iconArrowOrbit 1.45s ease-in-out infinite;
  }
}
@keyframes iconSoftPulse {
  0%, 100% { transform: scale(1) translateY(0); }
  45% { transform: scale(1.045) translateY(-2px); }
}
@keyframes iconBarLift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@keyframes iconBarDip {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}
@keyframes iconScaleBalance {
  0%, 100% { transform: rotate(0deg) translateY(0); }
  25% { transform: rotate(-4deg) translateX(-1px); }
  75% { transform: rotate(4deg) translateX(1px); }
}
@keyframes iconDotSlideA {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}
@keyframes iconDotSlideB {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-5px); }
}
@keyframes iconDotSlideC {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}
@keyframes iconSlowSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes iconNodeShift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(2px, -2px) scale(1.025); }
}
@keyframes iconTriangleTrace {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(4px, -2px) rotate(2deg); }
  50% { transform: translate(0, 4px) rotate(0deg); }
  75% { transform: translate(-4px, -2px) rotate(-2deg); }
}
@keyframes iconArrowOrbit {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(4deg) scale(1.015); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  video { animation: none !important; }
}

/* Mobile and portrait tablet layout polish. Desktop and landscape tablet remain unchanged. */
@media (max-width: 860px), (orientation: portrait) and (max-width: 1180px) {
  :root { --container: 680px; }
  html { scroll-padding-top: 58px; }
  .container { width: min(100% - 36px, 680px); }

  .site-header {
    background: rgba(3,10,22,.96);
    backdrop-filter: blur(12px);
  }
  .nav-wrap { height: 58px; }
  .brand img { width: 132px; }
  .menu-toggle {
    width: 34px;
    height: 34px;
  }
  .menu-toggle span:not(.sr-only) {
    width: 23px;
    height: 2px;
  }
  .menu-toggle span:nth-child(2) { transform: translateY(-4px); }
  .menu-toggle span:nth-child(3) { transform: translateY(4px); }

  .mobile-menu-inner {
    min-height: 100svh;
    padding: 42px 34px 80px;
  }
  .mobile-menu .brand img {
    width: 210px;
    max-width: 60vw;
  }
  .mobile-close {
    width: 56px;
    height: 56px;
  }
  .mobile-close::before,
  .mobile-close::after {
    width: 54px;
    height: 4px;
  }
  .mobile-cta {
    width: min(760px, calc(100% - 110px));
    min-height: 78px;
    margin: 142px auto 92px;
    padding: 0 42px;
    gap: 44px;
    font-size: clamp(26px, 7vw, 38px);
  }
  .mobile-cta .cta-arrow-icon {
    width: 31px;
    height: 31px;
  }
  .mobile-nav a {
    min-height: 108px;
    font-size: clamp(30px, 7.8vw, 42px);
    border-color: rgba(184,59,255,.23);
  }

  .hero {
    min-height: 0;
    padding: 0;
    border-bottom: 0;
  }
  .hero-media {
    position: relative;
    height: clamp(210px, 58vw, 300px);
  }
  .hero-video-mobile {
    display: block;
    object-fit: cover;
    object-position: center top;
  }
  .hero-video-desktop { display: none; }
  .hero-media::after {
    background: linear-gradient(180deg, rgba(3,10,22,.02) 0%, rgba(3,10,22,.3) 64%, var(--navy) 100%);
  }
  .hero-content {
    min-height: 0;
    display: block;
  }
  .hero-copy {
    width: 100%;
    max-width: 420px;
    padding: 12px 0 36px;
  }
  .hero h1 {
    max-width: 330px;
    font-size: clamp(31px, 9vw, 42px);
    line-height: .98;
    letter-spacing: -.045em;
  }
  .eyebrow-large {
    max-width: 320px;
    margin: 16px 0 12px;
    font-size: clamp(16px, 4.7vw, 22px);
    line-height: 1.06;
  }
  .hero-copy p:not(.eyebrow-large) {
    max-width: 320px;
    margin-bottom: 18px;
    font-size: 13px;
    line-height: 1.45;
  }
  .btn-primary {
    max-width: 100%;
    min-width: 0;
    min-height: 34px;
    padding: 6px 22px 8px;
    gap: 22px;
    font-size: 12px;
  }
  .btn-primary .cta-arrow-icon {
    width: 15px;
    height: 15px;
  }

  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
    padding: 20px 0 23px;
    gap: 16px 14px;
  }
  .proof-grid article {
    align-items: flex-start;
    gap: 10px;
    font-size: 11px;
    line-height: 1.13;
  }
  .proof-grid img {
    width: 22px;
    flex-basis: 22px;
  }

  .architecture {
    padding: 30px 0 36px;
  }
  .arch-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: left;
  }
  .architecture .section-kicker,
  .section-kicker {
    font-size: 11px;
    letter-spacing: .15em;
    margin-bottom: 10px;
  }
  .architecture h2 {
    margin-bottom: 12px;
    font-size: 18px;
  }
  .legacy-system,
  .poly-architecture {
    max-width: none;
    margin-top: 10px;
    padding: 0;
  }
  .legacy-system > p:not(.section-kicker):not(.flow-title),
  .poly-architecture > p:not(.flow-title) {
    max-width: none;
    margin-bottom: 18px;
    font-size: 12px;
    line-height: 1.42;
  }
  .flow-title {
    margin-bottom: 12px;
    gap: 7px;
    font-size: 14px;
  }
  .mini-flow {
    justify-content: flex-start;
    gap: 7px;
    flex-wrap: nowrap;
  }
  .mini-flow span,
  .adjudication-flow span {
    padding: 9px 11px;
    border-radius: 4px;
    font-size: 11px;
  }
  .mini-flow i,
  .adjudication-flow i {
    font-size: 12px;
  }
  .vs-badge {
    width: 38px;
    height: 38px;
    margin: 0 auto;
    font-size: 11px;
  }
  .vs-badge::before,
  .vs-badge::after {
    height: 22px;
  }
  .poly-architecture::before { display: none; }
  .poly-architecture .adjudication-flow {
    flex-direction: column;
    align-items: center;
    gap: 7px;
    flex-wrap: nowrap;
  }
  .poly-architecture .adjudication-flow i {
    transform: rotate(90deg);
    line-height: 1;
  }
  .adjudication-flow .flow-box {
    min-width: 164px;
    padding: 9px 14px;
    font-size: 15px;
  }
  .torus-orbit {
    width: 86px;
    height: 86px;
    flex-basis: 86px;
  }
  .torus-orbit::before { inset: 5px; }
  .torus-orbit::after { inset: 8px; border-width: 4px; }
  .torus-orbit img {
    width: 68px;
    height: 68px;
  }

  .governance {
    padding: 34px 0 40px;
  }
  .governance-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .step-card,
  .loop-card {
    min-height: 132px;
    border-radius: 7px;
  }
  .step-card {
    padding: 17px 18px 16px;
  }
  .step-top {
    justify-content: center;
    gap: 16px;
    margin-bottom: 12px;
  }
  .step-card strong {
    font-size: 28px;
  }
  .step-icon-title img {
    height: 37px;
    margin-bottom: 7px;
  }
  .step-card .step-icon-title h3 {
    font-size: 12px;
  }
  .step-card p,
  .loop-card p {
    font-size: 12px;
    line-height: 1.25;
  }
  .loop-card img {
    width: 126px;
    margin-bottom: 9px;
  }

  .research {
    padding: 34px 0 35px;
  }
  .research-bg {
    height: 110px;
    opacity: .24;
  }
  .research-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .research-copy { order: 1; }
  .left-points { order: 2; }
  .right-points { order: 3; }
  .mobius-media { order: 4; }
  .research-copy h2,
  .monday-content h2,
  .recovery-copy h2,
  .kernel-copy h2,
  .applications-copy h2 {
    max-width: 100%;
    margin-bottom: 16px;
    font-size: clamp(20px, 5.7vw, 25px);
    line-height: 1.08;
    font-weight: 600;
    letter-spacing: -.025em;
  }
  .research-copy h2 span {
    display: block;
    white-space: normal;
  }
  .research-copy p:not(.section-kicker) {
    max-width: 100%;
    font-size: 12px;
    line-height: 1.45;
  }
  .research-points {
    gap: 18px;
  }
  .research-points article {
    grid-template-columns: 30px 1fr;
    gap: 12px;
  }
  .research-points article img {
    width: 28px;
    height: 28px;
  }
  .research-points h3 {
    font-size: 12px;
    margin-bottom: 3px;
  }
  .research-points p {
    font-size: 11px;
    line-height: 1.35;
  }
  .mobius-media {
    width: min(250px, 78vw);
    margin: 0px auto 20px;
  }
  .focus-bar {
    /* display: grid; */
    margin-top: 20px;
    min-height: 0;
    gap: 7px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    font-size: 11px;
  }
  .focus-bar i { display: none; }
  .focus-bar span {
    position: relative;
    min-height: 30px;
    display: flex;
    align-items: center;
    padding: 8px 14px 8px 30px;
    border-radius: 5px;
    background: linear-gradient(90deg, #091325, #211e3a);
  }
  .focus-bar span::before {
    content: "+";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--aqua);
    font-weight: 700;
  }

  .monday {
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
  }
  .monday-content {
    order: 1;
    padding: 34px 0 24px;
  }
  .monday-video {
    order: 2;
    position: relative;
    inset: auto;
    width: 100%;
    height: clamp(220px, 62vw, 300px);
    object-fit: cover;
    object-position: 48% center;
  }
  .monday-overlay { display: none; }
  .monday-content p:not(.section-kicker) {
    max-width: 100%;
    margin-bottom: 9px;
    font-size: 12px;
    line-height: 1.45;
  }
  .aqua-text {
    max-width: 320px !important;
    margin-top: 16px !important;
    font-size: clamp(14px, 4.3vw, 18px) !important;
  }

  .recoverability {
    padding: 34px 0 36px;
  }
  .recovery-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "copy" "flow" "legend";
    gap: 22px;
  }
  .recovery-copy p:not(.section-kicker),
  .kernel-copy p,
  .applications-copy p {
    font-size: 12px;
    line-height: 1.45;
  }
  .recovery-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .recovery-flow .flow-arrow {
    display: none;
  }
  .recovery-flow article {
    min-height: 138px;
    padding: 16px 12px;
  }
  .recovery-flow article img {
    width: 58px;
    height: 58px;
  }
  .recovery-flow article span {
    margin-top: 12px;
    font-size: 11px;
  }
  .recovery-legend {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
    font-size: 10px;
  }
  .recovery-legend b { display: none; }
  .recovery-legend span {
    padding: 6px 4px;
  }

  .kernel {
    padding: 34px 0 36px;
  }
  .kernel-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "copy" "visual" "metrics";
    gap: 22px;
  }
  .kernel-copy h2 {
    white-space: normal;
  }
  .kernel-visual {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .kernel-visual > img {
    width: 100%;
    max-height: 190px;
    object-fit: contain;
  }
  .claim-legend {
    width: min(220px, 100%);
    justify-self: center;
    padding: 12px 14px;
  }
  .claim-legend h3 {
    font-size: 12px;
    margin-bottom: 8px;
  }
  .claim-legend span {
    margin: 5px 0;
    font-size: 10px;
  }
  .metrics-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .metrics-row article {
    grid-template-columns: 38px 1fr;
    min-height: 68px;
    padding: 10px 12px;
    align-items: flex-start;
  }
  .metrics-row .metric-icon {
    width: 34px;
    height: 34px;
  }
  .metrics-row .metric-icon img {
    width: 20px;
    height: 20px;
  }
  .metrics-row strong {
    font-size: 18px;
  }
  .metrics-row span {
    font-size: 9px;
  }

  .applications {
    padding: 34px 0 38px;
  }
  .applications-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .applications-copy p:not(.section-kicker) {
    max-width: 100%;
    font-size: 12px;
    line-height: 1.45;
  }
  .app-card-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }
  .app-card-row article {
    min-height: 154px;
    border-radius: 6px;
  }
  .app-card-row img {
    height: 112px;
    object-fit: cover;
  }
  .app-card-row span {
    padding: 7px 6px 9px;
    font-size: 10px;
  }
  .app-card-row article:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: calc(50% - 5px);
    justify-self: center;
  }

  .imagine {
    padding: 66px 0;
  }
  .imagine h2 {
    font-size: 25px;
  }
  .site-footer {
    padding: 44px 0 58px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-brand img {
    width: 206px;
  }
  .site-footer nav,
  .footer-legal {
    gap: 8px;
  }
  .site-footer a,
  .site-footer p {
    font-size: 17px;
    padding-bottom: 10px;
  }

  .about-modal-panel {
    width: min(100%, 640px);
    padding: 30px 22px 28px;
  }
  .briefing-modal-panel {
    min-height: 560px;
  }
}

@media (max-width: 460px) {
  .container { width: min(100% - 30px, 430px); }
  .mobile-menu-inner { padding: 34px 28px 72px; }
  .mobile-menu .brand img { width: 172px; }
  .mobile-close::before,
  .mobile-close::after {
    width: 42px;
    height: 3px;
  }
  .mobile-cta {
    width: min(100%, 276px);
    min-height: 56px;
    margin: 94px auto 74px;
    padding: 0 26px;
    gap: 26px;
    font-size: 24px;
  }
  .mobile-cta .cta-arrow-icon {
    width: 23px;
    height: 23px;
  }
  .mobile-nav a {
    min-height: 76px;
    font-size: 25px;
  }
  .hero-media { height: 178px; }
  .hero-copy { padding-bottom: 30px; }
  .hero h1 { font-size: 30px; }
  .eyebrow-large { font-size: 16px; }
  .mini-flow { gap: 5px; }
  .mini-flow span {padding: 8px 8px;font-size: 15px;}
  .mini-flow i { font-size: 10px; }
  .step-top { justify-content: flex-start; }
  .monday-video { height: 206px; }
  .app-card-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Mobile overflow and hero correction: desktop rules above remain untouched. */
@media (max-width: 860px), (orientation: portrait) and (max-width: 1180px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  @supports not (overflow-x: clip) {
    html,
    body {
      overflow-x: hidden;
    }
  }

  .site-header,
  .nav-wrap,
  .mobile-menu,
  .mobile-menu-inner {
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .site-header {
    left: 0;
    right: 0;
    width: 100%;
    overflow-x: clip;
  }

  .mobile-menu {
    width: 100dvw;
    max-width: 100%;
    transform: none !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    clip-path: inset(0 0 0 100%);
    overflow-x: hidden;
    transition: clip-path .32s ease, opacity .24s ease, visibility 0s linear .32s;
  }

  .mobile-menu.is-open {
    transform: none !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    clip-path: inset(0 0 0 0);
    transition: clip-path .32s ease, opacity .24s ease;
  }

  .mobile-menu-inner {
    width: 100%;
    overflow-x: hidden;
  }

  .mobile-cta {
    max-width: calc(100vw - 56px);
  }

  .hero {
    background: var(--navy);
    overflow: hidden;
  }

  .hero-media {
    height: clamp(238px, 68vw, 326px);
  }

  .hero-video-mobile {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(3,10,22,0) 0%, rgba(3,10,22,.08) 46%, var(--navy) 100%);
  }

  .hero-copy {
    max-width: 360px;
    padding: 14px 0 34px;
  }

  .hero h1 {
    max-width: 330px;
    font-size: clamp(31px, 8.4vw, 40px);
    line-height: .98;
  }

  .eyebrow-large {
    max-width: 330px;
    margin: 15px 0 12px;
    font-size: clamp(17px, 4.7vw, 22px);
    line-height: 1.05;
  }

  .hero-copy p:not(.eyebrow-large) {
    max-width: 330px;
    margin-bottom: 18px;
    font-size: 13px;
    line-height: 1.42;
  }

  .hero .btn-primary {
    width: min(100%, 238px);
    max-width: 238px;
    min-height: 34px;
    padding: 7px 20px;
    gap: 24px;
    justify-content: center;
    font-size: 11px;
  }
}

@media (max-width: 460px) {
  .hero-media {
    height: clamp(232px, 68vw, 285px);
  }

  .hero-copy {
    padding-top: 10px;
    padding-bottom: 32px;
  }
}


/* Mobile header/menu/hero refinement. Desktop and iPad landscape remain untouched. */
@media (max-width: 860px), (orientation: portrait) and (max-width: 1180px) {
  .site-header {
    z-index: 1200;
    overflow: visible !important;
  }

  .nav-wrap {
    position: relative;
    z-index: 1202;
  }

  .menu-toggle {
    z-index: 1203;
  }

  .menu-toggle span:not(.sr-only) {
    width: 24px;
    height: 2px;
    transform-origin: center;
    transition: transform .24s ease, opacity .18s ease;
  }

  .menu-toggle span:nth-child(2) { transform: translateY(-7px); }
  .menu-toggle span:nth-child(3) { transform: translateY(0); }
  .menu-toggle span:nth-child(4) { transform: translateY(7px); }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(4) { transform: rotate(-45deg); }

  .mobile-menu {
    position: fixed;
    top: 58px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1199;
    width: 100%;
    max-width: 100%;
    background: #030814;
    transform: translateY(-18px) !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    clip-path: none;
    overflow-x: hidden;
    overflow-y: auto;
    transition: opacity .24s ease, transform .28s ease, visibility 0s linear .28s;
  }

  .mobile-menu.is-open {
    transform: translateY(0) !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity .24s ease, transform .28s ease;
  }

  .mobile-menu-top {
    display: none !important;
  }

  .mobile-menu-inner {
    min-height: calc(100svh - 58px);
    padding: 76px 28px 72px;
  }

  .mobile-cta {
    width: min(100%, 276px);
    min-height: 56px;
    margin: 0 auto 74px;
    padding: 0 26px;
    gap: 26px;
    font-size: 24px;
  }

  .mobile-cta .cta-arrow-icon {
    width: 23px;
    height: 23px;
  }

  .mobile-nav a {
    min-height: 76px;
    font-size: 25px;
  }

  .hero-media {
    height: min(96vw, 520px);
  }

  .hero-video-mobile {
    object-fit: contain;
    object-position: center top;
    background: var(--navy);
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(3,10,22,0) 0%, rgba(3,10,22,.04) 70%, var(--navy) 100%);
  }

  .hero-content {
    padding-left: 10px;
    padding-right: 10px;
  }

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

  .hero .btn-primary {
    width: 100%;
    max-width: none;
    min-height: 38px;
    font-size: 15px;
    padding: 8px 22px 9px;
  }
}

@media (max-width: 460px) {
  .hero-media {
    height: min(96vw, 390px);
  }
}

/* Mobile menu rebuild: keeps desktop untouched and prevents the menu from sitting behind the hero. */
@media (max-width: 860px), (orientation: portrait) and (max-width: 1180px) {
  .site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000 !important;
    overflow: visible !important;
    isolation: isolate;
  }

  .nav-wrap {
    position: relative;
    z-index: 10003 !important;
  }

  .menu-toggle {
    position: relative;
    z-index: 10004 !important;
  }

  .mobile-menu {
    display: block !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    width: 100% !important;
    max-width: none !important;
    height: calc(100svh - 58px) !important;
    max-height: 0 !important;
    z-index: 10002 !important;
    background: #030814;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none !important;
    clip-path: none !important;
    overflow: hidden !important;
    border-top: 1px solid rgba(184, 59, 255, .16);
    transition: max-height .34s cubic-bezier(.22, .61, .36, 1), opacity .2s ease, visibility 0s linear .34s;
  }

  .mobile-menu.is-open {
    max-height: calc(100svh - 58px) !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    overflow-y: auto !important;
    transition: max-height .34s cubic-bezier(.22, .61, .36, 1), opacity .2s ease;
  }

  .mobile-menu-inner {
    width: 100% !important;
    min-height: auto !important;
    height: auto !important;
    padding: 38px 28px 72px !important;
    overflow: visible !important;
  }

  .mobile-menu-top,
  .mobile-close {
    display: none !important;
  }

  .mobile-cta {
    width: min(72vw, 660px) !important;
    max-width: 100% !important;
    min-height: clamp(52px, 8vw, 70px) !important;
    margin: 0 auto 54px !important;
    padding: 0 clamp(22px, 5vw, 42px) !important;
    gap: clamp(20px, 4vw, 38px) !important;
    font-size: clamp(18px, 4.7vw, 32px) !important;
    line-height: 1 !important;
  }

  .mobile-cta .cta-arrow-icon {
    width: clamp(20px, 4.3vw, 30px) !important;
    height: clamp(20px, 4.3vw, 30px) !important;
  }

  .mobile-nav a {
    min-height: clamp(76px, 12vw, 112px) !important;
    font-size: clamp(25px, 5.4vw, 40px) !important;
  }

  body.menu-open {
    overflow: hidden !important;
  }

  .hero-media {
    height: min(96vw, 768px) !important;
  }

  .hero-video-mobile {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center top !important;
    background: var(--navy);
  }
}

/* Final mobile menu hard fix: fixed dropdown above hero video. Desktop remains untouched. */
@media (max-width: 860px), (orientation: portrait) and (max-width: 1180px) {
  .site-header {
    z-index: 2147480000 !important;
    overflow: visible !important;
  }

  .mobile-menu {
    display: block !important;
    position: fixed !important;
    top: 58px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    width: 100vw !important;
    height: calc(100svh - 58px) !important;
    max-height: 0 !important;
    z-index: 2147479999 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: none !important;
    clip-path: none !important;
    overflow: hidden !important;
    background: #030814 !important;
    transition: max-height .34s cubic-bezier(.22, .61, .36, 1), opacity .22s ease, visibility 0s linear .34s !important;
  }

  .mobile-menu.is-open {
    max-height: calc(100svh - 58px) !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    overflow-y: auto !important;
    transition: max-height .34s cubic-bezier(.22, .61, .36, 1), opacity .22s ease !important;
  }

  .mobile-menu-inner {
    min-height: auto !important;
    height: auto !important;
    padding-top: 38px !important;
  }

  .mobile-cta {
    font-size: clamp(17px, 4.5vw, 30px) !important;
  }
}

/* Mobile menu sizing and gradient dividers refinement. Desktop remains untouched. */
@media (max-width: 860px), (orientation: portrait) and (max-width: 1180px) {
  .mobile-menu-inner {
    padding-top: 34px !important;
    padding-bottom: 46px !important;
  }

  .mobile-cta {
    min-height: clamp(50px, 7.4vw, 66px) !important;
    margin: 0 auto 40px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    font-size: clamp(16px, 4.1vw, 29px) !important;
  }

  .mobile-cta .cta-arrow-icon {
    width: clamp(18px, 4vw, 28px) !important;
    height: clamp(18px, 4vw, 28px) !important;
  }

  .mobile-nav a {
    position: relative !important;
    min-height: clamp(62px, 10.4vw, 84px) !important;
    border-top: 0 !important;
    border-bottom: 0 !important;
    font-size: clamp(20px, 4.6vw, 35px) !important;
  }

  .mobile-nav a::before,
  .mobile-nav a:last-child::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(184, 59, 255, 0) 0%, rgba(184, 59, 255, .62) 50%, rgba(184, 59, 255, 0) 100%);
  }

  .mobile-nav a::before { top: 0; }
  .mobile-nav a:last-child::after { bottom: 0; }
}

@media (max-width: 380px) {
  .mobile-menu-inner {
    padding-top: 28px !important;
    padding-bottom: 36px !important;
  }

  .mobile-cta {
    min-height: 48px !important;
    margin-bottom: 30px !important;
    font-size: 16px !important;
  }

  .mobile-nav a {
    min-height: 58px !important;
    font-size: 20px !important;
  }
}


@media (max-width: 860px), (orientation: portrait) and (max-width: 1180px) {
  main > section > .container,
  main > section > .container.proof-grid,
  main > section > .container.arch-grid {
    width: min(100% - 56px, 680px) !important;
  }

  .hero-content {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

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

  .hero .btn-primary {
    width: 100% !important;
    max-width: none !important;
    justify-content: center !important;
    padding-left: 22px !important;
    padding-right: 22px !important;
  }

  .proof-grid {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .architecture h2 {
    font-weight: 600 !important;
  }

  .flow-title {
    font-size: 13px !important;
    font-weight: 500 !important;
    gap: 6px !important;
  }

  .flow-title .inline-arrow {
    width: 15px !important;
    height: 15px !important;
  }

  .mini-flow {
    width: 100% !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    gap: 5px !important;
  }

  .mini-flow span {
    flex: 1 1 0 !important;
    width: auto !important;
    min-width: 0 !important;
    min-height: 58px !important;
    flex-direction: column;
    padding: 9px 6px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1.08 !important;
    white-space: normal !important;
  }

  .mini-flow small {
    display: block !important;
    margin-top: 3px !important;
    font-size: 11px !important;
    line-height: 1 !important;
  }

  .mini-flow i {
    flex: 0 0 auto !important;
    align-self: center !important;
    font-size: 11px !important;
  }

  .vs-badge {
    width: 58px !important;
    height: 58px !important;
    margin: 8px auto 0px !important;
    border-width: 6px !important;
    font-size: 15px !important;
    line-height: 1 !important;
    z-index: 1 !important;
    isolation: isolate !important;
  }

  .vs-badge::before,
  .vs-badge::after {
    top: 50% !important;
    bottom: auto !important;
    width: calc(50vw - 66px) !important;
    height: 1px !important;
    background: #cdd4de !important;
    transform: none !important;
    z-index: -1 !important;
  }

  .vs-badge::before {
    left: auto !important;
    right: 115% !important;
  }

  .vs-badge::after {
    left: 115% !important;
    right: auto !important;
  }

  .poly-architecture {
    position: relative !important;
  }

  .poly-architecture::before {
    display: n!important;
    content: "" !important;
    position: absolute !important;
    top: -42px !important;
    left: 50% !important;
    width: 95% !important;
    height: 0 !important;
    border-left: 0 !important;
    border-top: 1px dashed #c7ced8 !important;
    transform: translateX(-50%) !important;
  }
}
/* Mobile architecture spacing and flow alignment refinements. Desktop remains untouched. */
@media (max-width: 767px) {
  .flow-title {
    font-size: 15px !important;
  }
  .flow-title span {
      padding: 0 1px !important;
  }  
  .aqua-text span {
      font-size: 18px !important;
  }

}  

/* Governance card refinement: title colours apply on desktop and mobile. */
.step-card:nth-child(1) .step-icon-title h3,
.step-card:nth-child(4) .step-icon-title h3 {
  color: #9ff2d5;
}

.step-card:nth-child(2) .step-icon-title h3,
.step-card:nth-child(5) .step-icon-title h3 {
  color: #d9c4ff;
}

.step-card:nth-child(3) .step-icon-title h3 {
  color: #9ed8ff;
}

/* Mobile-only governance section refinements. Desktop layout remains untouched. */
@media (max-width: 860px), (orientation: portrait) and (max-width: 1180px) {
  .governance .section-kicker {
    text-align: center !important;
    margin-bottom: 28px !important;
  }

  .governance-grid {
    gap: 14px !important;
  }

  .governance .step-card,
  .governance .loop-card {
    text-align: center !important;
    border: 1px solid transparent !important;
    background:
      linear-gradient(180deg, rgba(12,29,50,.94), rgba(7,17,31,.98)) padding-box,
      conic-gradient(from 135deg, rgba(255,255,255,.78), rgba(2,8,18,.78), rgba(255,255,255,.68), rgba(2,8,18,.78), rgba(255,255,255,.78)) border-box !important;
    box-shadow: inset 0 1px rgba(255,255,255,.06) !important;
  }

  .governance .step-card {
    padding: 18px 20px 17px !important;
  }

  .governance .step-top {
    justify-content: center !important;
    align-items: flex-start !important;
    margin-bottom: 12px !important;
  }

  .governance .step-card strong {
    font-size: 24px !important;
    line-height: 1 !important;
  }

  .governance .step-icon-title {
    align-items: center !important;
    text-align: center !important;
  }

  .governance .step-icon-title img {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .governance .step-card p,
  .governance .loop-card p {
    max-width: 260px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }
}

@media (max-width: 380px) {
  .governance .section-kicker {
    margin-bottom: 24px !important;
  }

  .governance .step-card {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}


/* Mobile research and governance refinements. Desktop remains untouched. */
@media (max-width: 860px), (orientation: portrait) and (max-width: 1180px) {
  .governance .step-card {
    position: relative !important;
    padding: 24px 20px 19px !important;
  }

  .governance .step-top {
    display: block !important;
    margin-bottom: 10px !important;
  }

  .governance .step-card strong {
    position: absolute !important;
    top: 8px !important;
    left: 8px !important;
    font-size: 20px !important;
    line-height: 1 !important;
    margin: 0 !important;
  }

  .governance .step-icon-title {
    width: 100% !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    margin: 0 auto !important;
  }

  .governance .step-icon-title img {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .governance .step-card p {
    max-width: 260px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .research-copy {
    padding-bottom: 10px !important;
  }

  .research-points {
    gap: 20px !important;
  }

  .research-points article {
    grid-template-columns: 36px 1fr !important;
    align-items: start !important;
    gap: 12px !important;
  }

  .research-points article img {
    width: 36px !important;
    height: 36px !important;
    padding: 6px !important;
    border: 1px solid rgba(8, 20, 36, .22) !important;
    border-radius: 6px !important;
    object-fit: contain !important;
    box-sizing: border-box !important;
  }

  .focus-bar {
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .focus-bar span {
    width: 100% !important;
    border-radius: 7px !important;
    padding-left: 28px !important;
  }

  .focus-bar span::before {
    content: "" !important;
    left: 12px !important;
    width: 5px !important;
    height: 5px !important;
    border-radius: 50% !important;
    background: var(--aqua) !important;
    color: transparent !important;
  }
}

/* Final desktop VS divider correction: keeps the vertical lines outside the circle. */
.vs-badge::before,
.vs-badge::after {
  left: 50%;
  right: auto;
  width: 1px;
  height: 34px;
  transform: translateX(-50%);
  z-index: -2;
}

.vs-badge::before {
  top: auto;
  bottom: calc(100% + 5px);
}

.vs-badge::after {
  top: calc(100% + 5px);
  bottom: auto;
}

/* Mobile refinements only. Desktop and iPad landscape remain untouched. */
@media (max-width: 860px), (orientation: portrait) and (max-width: 1180px) {
  /* keep mobile VS horizontal, while desktop uses the corrected vertical lines above */
  .vs-badge::before,
  .vs-badge::after {
    top: 50% !important;
    bottom: auto !important;
    width: calc(50vw - 66px) !important;
    height: 1px !important;
    background: #cdd4de !important;
    transform: none !important;
    z-index: -1 !important;
  }

  .vs-badge::before {
    left: auto !important;
    right: 115% !important;
  }

  .vs-badge::after {
    left: 115% !important;
    right: auto !important;
  }

  /* remove the lower recovery legend on mobile only */
  .recovery-grid {
    grid-template-areas: "copy" "flow" !important;
  }

  .recovery-legend {
    display: none !important;
  }

  /* mobile claim graph order and layout */
  .kernel-visual {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 16px !important;
  }

  .claim-legend {
    order: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    justify-self: stretch !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    grid-template-rows: auto auto auto !important;
    column-gap: 10px !important;
    row-gap: 7px !important;
    padding: 14px 14px 15px !important;
  }

  .claim-legend h3 {
    grid-column: 1 / -1 !important;
    grid-row: 1 !important;
    margin: 0 0 3px !important;
  }

  .claim-legend span {
    margin: 0 !important;
    gap: 6px !important;
    font-size: 10px !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
  }

  .claim-legend span:nth-of-type(1) { grid-column: 1 !important; grid-row: 2 !important; }
  .claim-legend span:nth-of-type(2) { grid-column: 1 !important; grid-row: 3 !important; }
  .claim-legend span:nth-of-type(3) { grid-column: 2 !important; grid-row: 2 !important; }
  .claim-legend span:nth-of-type(4) { grid-column: 2 !important; grid-row: 3 !important; }
  .claim-legend span:nth-of-type(5) { grid-column: 3 !important; grid-row: 2 !important; }

  .kernel-visual > img {
    order: 2 !important;
    width: 100% !important;
    max-height: 190px !important;
    object-fit: contain !important;
  }

  .metrics-row .metric-icon {
    width: 31px !important;
    height: 31px !important;
  }

  .metrics-row .metric-icon img {
    width: 17px !important;
    height: 17px !important;
  }

  .applications .section-kicker {
    color: var(--purple) !important;
    margin-bottom: 22px !important;
  }

  .applications-copy h2 {
    margin-top: 0 !important;
  }

  .app-card-row article {
    padding: 2px 2px 0 !important;
    border-radius: 6px !important;
    overflow: hidden !important;
    background: #fff !important;
  }

  .app-card-row img {
    width: 100% !important;
    height: 152px !important;
    object-fit: cover !important;
    border-radius: 4px 4px 0 0 !important;
  }
}

@media (max-width: 380px) {
  .claim-legend {
    column-gap: 6px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .claim-legend span {
    font-size: 9px !important;
    gap: 5px !important;
  }

  .dot {
    width: 7px !important;
    height: 7px !important;
  }
}


/* Final footer/header polish requested after mobile pass. */
/* Desktop only: give the VS divider a clean gap above and below the circle. */
@media (min-width: 861px) and (orientation: landscape), (min-width: 1181px) {
  .vs-badge::before {
    bottom: calc(100% + 5px) !important;
  }

  .vs-badge::after {
    top: calc(100% + 5px) !important;
  }
}

/* Mobile only: keep the header visible in both closed and open menu states, and centre the footer. */
@media (max-width: 860px), (orientation: portrait) and (max-width: 1180px) {
  body {
    padding-top: 58px !important;
  }

  .site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 2147480000 !important;
  }

  .mobile-menu {
    top: 58px !important;
    max-height: 0 !important;
  }

  .mobile-menu.is-open {
    max-height: calc(100svh - 58px) !important;
  }

  .site-footer {
    position: relative !important;
    border-top: 0 !important;
    text-align: center !important;
  }

  .site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28px;
    right: 28px;
    height: 1px;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(184, 59, 255, 0) 0%, rgba(184, 59, 255, .62) 50%, rgba(184, 59, 255, 0) 100%);
  }

  .footer-grid {
    justify-items: center !important;
    text-align: center !important;
  }

  .footer-brand {
    display: inline-flex !important;
    justify-content: center !important;
  }

  .site-footer nav {
    justify-items: center !important;
    align-items: center !important;
    text-align: center !important;
    padding-left: 0 !important;
  }

  .footer-legal {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    text-align: center !important;
  }

  .footer-legal a {
    display: inline-flex !important;
    align-items: center !important;
  }

  .footer-legal a:first-child::after {
    content: "|";
    margin-left: 15px;
    margin-right: 15px;
    color: rgba(255,255,255,.45);
  }

  .footer-legal p {
    flex: 0 0 100% !important;
    margin-top: 11px !important;
    text-align: center !important;
  }
}


/* Legal modal polish for mobile and desktop footer links. */
@media (max-width: 860px), (orientation: portrait) and (max-width: 1180px) {
  .legal-modal-panel {
    padding: 34px 24px 32px !important;
    max-height: min(86svh, 720px) !important;
  }

  .legal-modal-content {
    font-size: 13px;
    line-height: 1.55;
    gap: 14px;
  }

  .legal-modal-content h3 {
    font-size: 12px;
  }
}

/* iPad Mini / iPad Air landscape refinements only. Desktop and mobile portrait remain untouched. */
@media (min-width: 861px) and (max-width: 1180px) and (orientation: landscape) {
  :root {
    --container: 1040px;
  }

  .container {
    width: min(var(--container), calc(100% - 48px));
  }

  .hero {
    min-height: 390px;
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .hero-content {
    min-height: 390px;
  }

  .hero-copy {
    width: min(470px, 42vw);
    padding-top: 28px;
    padding-bottom: 36px;
  }

  .hero h1 {
    font-size: clamp(44px, 5vw, 62px);
  }

  .eyebrow-large {
    font-size: clamp(21px, 2vw, 27px);
  }

  .hero-copy p:not(.eyebrow-large) {
    max-width: 390px;
    font-size: 16px;
  }

  .hero-video-desktop {
    display: block;
    top: 7%;
    right: 0;
    bottom: auto;
    left: auto;
    width: 58%;
    height: 86%;
    object-fit: contain;
    object-position: right center;
  }

  .hero-video-mobile {
    display: none !important;
  }

  .hero-media::after {
    /* background: linear-gradient(90deg, rgba(3,10,22,1) 0%, rgba(3,10,22,.96) 34%, rgba(3,10,22,.5) 52%, rgba(3,10,22,.12) 72%, rgba(3,10,22,.34) 100%); */
  }

  .arch-grid {
    grid-template-columns: .78fr auto minmax(0, 1.82fr);
    gap: 18px;
  }

  .legacy-system {
    max-width: 340px;
    margin-top: 24px;
  }

  .architecture h2 {
    font-size: 25px;
  }

  .flow-title {
    font-size: 16px;
  }

  .legacy-system > p:not(.section-kicker):not(.flow-title),
  .poly-architecture > p:not(.flow-title) {
    max-width: 360px;
    font-size: 16px;
  }

  .mini-flow {
    gap: 8px;
  }

  .mini-flow span {
    display: flex;
    flex-direction: column;
    min-height: 52px;
    padding: 10px 11px;
    font-size: 12px;
    line-height: 1.08;
  }

  .mini-flow small {
    display: block !important;
    margin-top: 3px;
    font-size: 10px;
    line-height: 1;
    white-space: nowrap;
  }

  .poly-architecture {
    padding-left: 16px;
  }

  .poly-architecture::before {
    left: -12px;
    height: 150px;
  }

  .poly-architecture .adjudication-flow {
    gap: 5px;
  }

  .adjudication-flow .flow-box {
    padding: 9px 9px;
    font-size: 10px;
  }

  .adjudication-flow .flow-box-representation {
    padding-inline: 11px;
  }

  .adjudication-flow .flow-box-kernel {
    padding: 9px 11px;
  }

  .adjudication-flow .flow-box-action {
    padding: 9px 10px;
  }

  .torus-orbit {
    width: 96px;
    height: 96px;
    flex-basis: 96px;
  }

  .torus-orbit::before {
    inset: 7px;
  }

  .torus-orbit::after {
    inset: 10px;
    border-width: 4px;
  }

  .torus-orbit img {
    width: 76px;
    height: 76px;
  }
}

/* iPad Mini / iPad Air landscape final refinements */
@media (min-width: 861px) and (max-width: 1180px) and (orientation: landscape) {
  .hero,
  .hero-media {
    background: #00020a;
  }

  .hero-video-desktop {
    top: 2%;
    width: 64%;
    height: 96%;
    object-fit: contain;
    object-position: right center;
  }

  .hero-media::after {
    /* background: linear-gradient(90deg, rgba(3,10,22,1) 0%, rgba(3,10,22,.96) 32%, rgba(3,10,22,.46) 50%, rgba(6,17,32,.08) 72%, rgba(6,17,32,.22) 100%); */
  }

  .poly-architecture {
    padding-left: 21px;
  }

  .research-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(220px, .72fr);
    grid-template-areas:
      "copy media"
      "left media"
      "right media";
    gap: 22px 34px;
    align-items: center;
  }

  .research-copy {
    grid-area: copy;
    grid-column: auto;
    max-width: 560px;
  }

  .left-points {
    grid-area: left;
  }

  .right-points {
    grid-area: right;
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .research-points {
    gap: 22px;
  }

  .research-points article {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .mobius-media {
    grid-area: media;
    grid-column: auto;
    grid-row: auto;
    align-self: center;
    justify-self: center;
    width: min(245px, 27vw);
  }
}


/* iPad Mini / iPad Air landscape: research video size and vertical alignment refinement. */
@media (min-width: 861px) and (max-width: 1180px) and (orientation: landscape) {
  .research-grid {
    align-items: center !important;
  }

  .mobius-media {
    width: min(305px, 32vw) !important;
    align-self: center !important;
    justify-self: center !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
}

/* iPad Mini / iPad Air landscape nav polish. Keeps full desktop and mobile untouched. */
@media (min-width: 861px) and (max-width: 1180px) and (orientation: landscape) {
  .desktop-nav {
    gap: clamp(10px, 1.35vw, 16px) !important;
    font-size: 12px !important;
  }

  .desktop-nav .btn,
  .desktop-nav .btn-outline {
    min-width: 0 !important;
    padding: 5px 15px 9px !important;
    font-size: 12px !important;
    white-space: nowrap !important;
  }
}

/* iPad Mini / iPad Air portrait refinements only. Phones and desktop remain untouched. */
@media (min-width: 700px) and (max-width: 1180px) and (orientation: portrait) {
  .hero-media {
    height: clamp(330px, 49vw, 440px) !important;
  }

  .hero-video-mobile {
    object-fit: contain !important;
    object-position: center top !important;
  }

  .hero-copy {
    padding-top: 4px !important;
  }

  .hero .btn-primary {
    width: auto !important;
    max-width: none !important;
    min-width: 260px !important;
    display: inline-flex !important;
  }

  .poly-architecture .adjudication-flow {
    width: 100% !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 7px !important;
  }

  .poly-architecture .adjudication-flow i {
    transform: none !important;
    flex: 0 0 auto !important;
  }

  .adjudication-flow .flow-box {
    min-width: 0 !important;
    width: auto !important;
    flex: 0 0 auto !important;
    padding: 8px 10px !important;
    font-size: 10px !important;
    line-height: 1.08 !important;
  }

  .adjudication-flow .flow-box-representation {
    padding-inline: 10px !important;
  }

  .adjudication-flow .flow-box-kernel {
    padding: 8px 10px !important;
  }

  .adjudication-flow .flow-box-action {
    padding: 8px 10px !important;
  }

  .torus-orbit {
    width: 82px !important;
    height: 82px !important;
    flex: 0 0 82px !important;
  }

  .torus-orbit img {
    width: 64px !important;
    height: 64px !important;
  }

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

  .research-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(230px, .75fr) !important;
    grid-template-areas:
      "copy copy"
      "left media"
      "right media" !important;
    gap: 22px 28px !important;
    align-items: center !important;
  }

  .research-copy {
    grid-area: copy !important;
    order: initial !important;
    padding-bottom: 4px !important;
  }

  .left-points {
    grid-area: left !important;
    order: initial !important;
  }

  .right-points {
    grid-area: right !important;
    order: initial !important;
  }

  .mobius-media {
    grid-area: media !important;
    order: initial !important;
    align-self: center !important;
    justify-self: center !important;
    width: min(265px, 34vw) !important;
    margin: 0 auto !important;
  }

  .research-points {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .focus-bar {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    align-items: stretch !important;
  }

  .focus-bar span {
    width: 100% !important;
  }

  .applications .app-card-row {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .applications .app-card-row article {
    min-height: 150px !important;
  }

  .applications .app-card-row img {
    height: 108px !important;
  }

  .applications .app-card-row article:last-child:nth-child(odd) {
    grid-column: 2 / 3 !important;
    width: 100% !important;
    justify-self: stretch !important;
  }
}

/* iPad Pro portrait: use the same refined tablet treatment as iPad Mini/Air landscape. */
@media (min-width: 1000px) and (max-width: 1180px) and (orientation: portrait) {
  :root {
    --container: 1040px;
  }

  /* body {
    padding-top: 0 !important;
  } */

  .container {
    width: min(var(--container), calc(100% - 48px)) !important;
  }

  /* .site-header {
    position: sticky !important;
    top: 0 !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    z-index: 1200 !important;
  } */

  /* .nav-wrap {
    height: 82px !important;
  } */

  /* .brand img {
    width: 154px !important;
  } */

  /* .desktop-nav {
    display: flex !important;
    gap: clamp(9px, 1.2vw, 14px) !important;
    font-size: 12px !important;
  } */

  /* .desktop-nav .btn,
  .desktop-nav .btn-outline {
    min-width: 0 !important;
    padding: 5px 14px 9px !important;
    font-size: 11px !important;
    white-space: nowrap !important;
  } */

  /* .menu-toggle,
  .mobile-menu {
    display: none !important;
  } */

  /* .hero,
  .hero-media {
    background: #01050e !important;
  }

  .hero {
    min-height: 390px !important;
    padding-top: 62px !important;
    padding-bottom: 62px !important;
    border-bottom: 1px solid rgba(255,255,255,.08) !important;
  }

  .hero-media {
    position: absolute !important;
    inset: 0 !important;
    height: auto !important;
    overflow: hidden !important;
  }

  .hero-content {
    min-height: 390px !important;
    display: flex !important;
    align-items: center !important;
  }

  .hero-copy {
    width: min(470px, 42vw) !important;
    padding-top: 28px !important;
    padding-bottom: 36px !important;
  }

  .hero h1 {
    max-width: none !important;
    font-size: clamp(44px, 5vw, 62px) !important;
  }

  .eyebrow-large {
    max-width: 430px !important;
    font-size: clamp(21px, 2vw, 27px) !important;
  }

  .hero-copy p:not(.eyebrow-large) {
    max-width: 390px !important;
    font-size: 16px !important;
  }

  .hero-video-desktop {
    display: block !important;
    top: 2% !important;
    right: 0 !important;
    bottom: auto !important;
    left: auto !important;
    width: 64% !important;
    height: 96% !important;
    object-fit: contain !important;
    object-position: right center !important;
  }

  .hero-video-mobile {
    display: none !important;
  }

  .hero-media::after {
    background: linear-gradient(90deg, rgba(3,10,22,1) 0%, rgba(3,10,22,.96) 32%, rgba(3,10,22,.46) 50%, rgba(6,17,32,.08) 72%, rgba(6,17,32,.22) 100%) !important;
  } */

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

  .architecture {
    padding: 42px 0 58px !important;
  }

  .arch-grid {
    grid-template-columns: .78fr auto minmax(0, 1.82fr) !important;
    gap: 18px !important;
    align-items: center !important;
  }

  .legacy-system {
    max-width: 340px !important;
  }

  .poly-architecture {
    max-width: none !important;
    padding-left: 21px !important;
  }

  .architecture h2 {
    font-size: 22px !important;
  }

  .flow-title {
    font-size: 16px !important;
  }

  .legacy-system > p:not(.section-kicker):not(.flow-title),
  .poly-architecture > p:not(.flow-title) {
    max-width: 360px !important;
    font-size: 14px !important;
  }

  .mini-flow,
  .adjudication-flow {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
  }

  .mini-flow {
    gap: 8px !important;
  }

  .mini-flow span {
    display: flex !important;
    flex-direction: column !important;
    min-height: 52px !important;
    padding: 10px 11px !important;
    font-size: 12px !important;
    line-height: 1.08 !important;
  }

  .mini-flow small {
    display: block !important;
    margin-top: 3px !important;
    font-size: 10px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  .mini-flow i,
  .adjudication-flow i,
  .poly-architecture .adjudication-flow i {
    transform: none !important;
    line-height: 1 !important;
    flex: 0 0 auto !important;
  }

  .vs-badge {
    width: 44px !important;
    height: 44px !important;
    margin: 0 !important;
    border-width: 5px !important;
    font-size: 12px !important;
    z-index: 1 !important;
    isolation: isolate !important;
  }

  .vs-badge::before,
  .vs-badge::after {
    left: 50% !important;
    right: auto !important;
    width: 1px !important;
    height: 34px !important;
    background: #cdd4de !important;
    transform: translateX(-50%) !important;
    z-index: -2 !important;
  }

  .vs-badge::before {
    top: auto !important;
    bottom: calc(100% + 5px) !important;
  }

  .vs-badge::after {
    top: calc(100% + 5px) !important;
    bottom: auto !important;
  }

  .poly-architecture::before {
    display: block !important;
    left: -12px !important;
    height: 150px !important;
  }

  .poly-architecture .adjudication-flow {
    width: auto !important;
    justify-content: flex-start !important;
    gap: 5px !important;
  }

  .adjudication-flow .flow-box {
    min-width: 0 !important;
    width: auto !important;
    flex: 0 0 auto !important;
    padding: 9px 9px !important;
    font-size: 10px !important;
    line-height: 1.08 !important;
  }

  .adjudication-flow .flow-box-representation {
    padding-inline: 11px !important;
  }

  .adjudication-flow .flow-box-kernel {
    padding: 9px 11px !important;
  }

  .adjudication-flow .flow-box-action {
    padding: 9px 10px !important;
  }

  .torus-orbit {
    width: 96px !important;
    height: 96px !important;
    flex: 0 0 96px !important;
  }

  .torus-orbit::before {
    inset: 7px !important;
  }

  .torus-orbit::after {
    inset: 10px !important;
    border-width: 4px !important;
  }

  .torus-orbit img {
    width: 76px !important;
    height: 76px !important;
  }

  .governance-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .research-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1.05fr) minmax(220px, .72fr) !important;
    grid-template-areas:
      "copy media"
      "left media"
      "right media" !important;
    gap: 22px 34px !important;
    align-items: center !important;
  }

  .research-copy {
    grid-area: copy !important;
    grid-column: auto !important;
    max-width: 560px !important;
    order: initial !important;
    padding-bottom: 0 !important;
  }

  .left-points {
    grid-area: left !important;
    order: initial !important;
  }

  .right-points {
    grid-area: right !important;
    grid-column: auto !important;
    grid-template-columns: 1fr !important;
    order: initial !important;
  }

  .research-points {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .research-points article {
    grid-template-columns: 42px minmax(0, 1fr) !important;
  }

  .mobius-media {
    grid-area: media !important;
    grid-column: auto !important;
    grid-row: auto !important;
    order: initial !important;
    align-self: center !important;
    justify-self: center !important;
    width: min(305px, 32vw) !important;
    margin: auto !important;
  }

  .focus-bar {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    min-height: 0 !important;
    margin-top: 42px !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    font-size: 15px !important;
  }

  .focus-bar i {
    display: none !important;
  }

  .focus-bar span {
    width: 100% !important;
    min-height: 52px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 12px 16px !important;
    border-radius: 10px !important;
    background: linear-gradient(90deg, #091325, #211e3a) !important;
    color: #fff !important;
  }

  /* .focus-bar span::before {
    display: none !important;
  } */
}


/* Loader and refined motion layer */
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #01050e;
  opacity: 1;
  visibility: visible;
  transition: opacity .65s ease, visibility .65s ease;
}
.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.site-loader-inner {
  display: grid;
  justify-items: center;
  gap: 24px;
}
.site-loader img {
  width: 174px;
  height: auto;
}
.site-loader-ring {
  width: 34px;
  height: 34px;
  animation: loaderSpin 1s linear infinite;
}
.site-loader-ring circle {
  fill: none;
  stroke: rgba(181,117,255,.96);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 86 34;
}

.site-header .brand,
.desktop-nav > *,
.menu-toggle,
.hero-video,
.hero-copy > *,
.proof-grid article {
  will-change: transform, opacity;
}

html.js body:not(.is-loaded) .site-header .brand,
html.js body:not(.is-loaded) .desktop-nav > *,
html.js body:not(.is-loaded) .menu-toggle,
html.js body:not(.is-loaded) .hero-video,
html.js body:not(.is-loaded) .hero-copy > *,
html.js body:not(.is-loaded) .proof-grid article {
  opacity: 0;
}

body.is-loaded .site-header .brand {
  animation: fadeDownSoft .55s ease both;
}
body.is-loaded .desktop-nav > *,
body.is-loaded .menu-toggle {
  animation: fadeDownSoft .55s ease both;
}
body.is-loaded .desktop-nav > *:nth-child(1) { animation-delay: .08s; }
body.is-loaded .desktop-nav > *:nth-child(2) { animation-delay: .11s; }
body.is-loaded .desktop-nav > *:nth-child(3) { animation-delay: .14s; }
body.is-loaded .desktop-nav > *:nth-child(4) { animation-delay: .17s; }
body.is-loaded .desktop-nav > *:nth-child(5) { animation-delay: .20s; }
body.is-loaded .desktop-nav > *:nth-child(6) { animation-delay: .23s; }
body.is-loaded .desktop-nav > *:nth-child(7) { animation-delay: .26s; }
body.is-loaded .desktop-nav > *:nth-child(8) { animation-delay: .29s; }
body.is-loaded .desktop-nav > *:nth-child(9) { animation-delay: .32s; }
body.is-loaded .menu-toggle { animation-delay: .12s; }

body.is-loaded .hero-video {
  animation: fadeInSoft 1s ease both;
}
body.is-loaded .hero-copy > * {
  animation: fadeUpSoft .72s cubic-bezier(.2,.8,.2,1) both;
}
body.is-loaded .hero-copy > *:nth-child(1) { animation-delay: .18s; }
body.is-loaded .hero-copy > *:nth-child(2) { animation-delay: .28s; }
body.is-loaded .hero-copy > *:nth-child(3) { animation-delay: .38s; }
body.is-loaded .hero-copy > *:nth-child(4) { animation-delay: .48s; }

body.is-loaded .proof-grid article {
  animation: fadeUpSoft .58s cubic-bezier(.2,.8,.2,1) both;
}
body.is-loaded .proof-grid article:nth-child(1) { animation-delay: .58s; }
body.is-loaded .proof-grid article:nth-child(2) { animation-delay: .64s; }
body.is-loaded .proof-grid article:nth-child(3) { animation-delay: .70s; }
body.is-loaded .proof-grid article:nth-child(4) { animation-delay: .76s; }
body.is-loaded .proof-grid article:nth-child(5) { animation-delay: .82s; }
body.is-loaded .proof-grid article:nth-child(6) { animation-delay: .88s; }

.reveal-item {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .72s ease, transform .72s cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
}
.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-item.reveal-delay-1 { transition-delay: .08s; }
.reveal-item.reveal-delay-2 { transition-delay: .14s; }
.reveal-item.reveal-delay-3 { transition-delay: .20s; }

@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}
@keyframes fadeInSoft {
  from { opacity: 0; }
  to { opacity: .96; }
}
@keyframes fadeDownSoft {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUpSoft {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* iPad Pro portrait Monday video height adjustment only. */
@media (min-width: 1000px) and (max-width: 1180px) and (orientation: portrait) {
  .monday-video {
    height: 370px !important;
  }
}

@media (max-width: 860px), (orientation: portrait) and (max-width: 1180px) {
  .site-loader img {
    width: 132px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-loader,
  .site-loader-ring,
  .site-header .brand,
  .desktop-nav > *,
  .menu-toggle,
  .hero-video,
  .hero-copy > *,
  .proof-grid article,
  .reveal-item {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .site-loader.is-hidden {
    opacity: 0 !important;
    visibility: hidden !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .animated-icon svg,
  .animated-icon svg * {
    animation: none !important;
    transform: none !important;
  }
}

/* Inline SVG animation sizing safeguards */
.step-icon-title .animated-icon {
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 20px;
}
.recovery-flow article .animated-icon {
  margin-top: 0 !important;
  font-size: 0 !important;
  color: inherit !important;
}
.recovery-flow article .animated-icon + span {
  margin-top: 15px;
}
@media (max-width: 860px), (orientation: portrait) and (max-width: 1180px) {
  .governance .step-icon-title .animated-icon {
    display: inline-grid !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .recovery-flow article .animated-icon {
    width: 58px !important;
    height: 58px !important;
  }
  .recovery-flow article .animated-icon svg {
    width: 58px !important;
    height: 58px !important;
  }
  .recovery-flow article .animated-icon + span {
    margin-top: 12px !important;
  }
}

/* =========================================================
   Polymenta final refinement pass from change document
   ========================================================= */

/* Sticky gradient stroke on the nav bar */
.site-header {
  border-bottom: 0;
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(181,117,255,0), rgba(181,117,255,.82) 50%, rgba(181,117,255,0));
}

/* CTA refinements */
.btn-outline {
  transition: transform .2s ease, background-color .22s ease, color .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.btn-outline:hover,
.btn-outline:focus-visible {
  /* background: #fff; */
  color: var(--navy);
  border-color: var(--purple);
  box-shadow: 0 14px 34px rgba(255,255,255,.12);
  color: var(--purple);
}
.btn-outline:hover .cta-arrow-icon,
.btn-outline:focus-visible .cta-arrow-icon {
  filter: none;
  transform: translateX(5px);
}

/* Hero typography and mockup-style line breaks */
.hero h1 span,
.eyebrow-large span {
  display: block;
}
.eyebrow-large {
  font-family: var(--font-body);
  letter-spacing: .018em;
  line-height: 1.16;
}
.hero-copy p:not(.eyebrow-large) {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.58;
}

/* Section kicker and heading rhythm */
.section-kicker {
  letter-spacing: .08em;
}
.governance .section-kicker,
.research .section-kicker,
.monday .section-kicker,
.recoverability .section-kicker,
.kernel .section-kicker,
.applications .section-kicker,
.architecture .section-kicker {
  margin-bottom: 22px;
}
.recovery-copy h2,
.kernel-copy h2,
.applications-copy h2,
.monday-content h2,
.research-copy h2 {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: clamp(20px, 1.9vw, 30px);
  line-height: 1.3;
  /* line-height: 1.08; */
  letter-spacing: -.015em;
  font-family: 'source-sans-pro';
  font-weight: 600;
}

/* Desktop architecture refinements */
@media (min-width: 861px) and (orientation: landscape), (min-width: 1181px) {
  .arch-grid {
    align-items: center;
  }
  .poly-architecture {
    transform: translateY(12px);
  }
  .poly-architecture::before {
    display: none;
  }
  .vs-badge {
    width: 52px;
    position: relative;
    height: 52px;
    border-width: 6px;
    font-size: 15px;
    top: 12px;
  }
  .vs-badge::before,
  .vs-badge::after {
    height: 112px;
    z-index: -2;
  }
  .vs-badge::before {
    bottom: calc(100% + 4px);
  }
  .vs-badge::after {
    top: calc(100% + 4px);
  }
  .torus-orbit img {
    animation: torusSlowRotate 24s linear infinite;
    transform-origin: center center;
  }
}
@keyframes torusSlowRotate {
  to { transform: rotate(360deg); }
}

/* Governance card desktop/general polish */
.step-card,
.loop-card,
.recovery-flow article {
  transition: transform .24s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease;
}
.step-card {
  min-height: 196px;
  padding: 22px 17px 20px;
}
.step-top {
  margin-bottom: 6px;
}
.step-icon-title {
  align-items: center;
  justify-content: center;
  width: 100%;
}
.step-icon-title .animated-icon,
.step-card img {
  margin-left: auto;
  margin-right: auto;
}
.step-card h3 {
  margin-top: 12px;
  margin-bottom: 12px;
  font-size: 17px;
  line-height: 1.14;
}
.step-card p,
.loop-card p {
  font-size: 16px;
  line-height: 1.42;
  text-align: center;
}
@media (hover: hover) and (pointer: fine) {
  .step-card:hover,
  .step-card:focus-within,
  .loop-card:hover,
  .loop-card:focus-within,
  .recovery-flow article:hover,
  .recovery-flow article:focus-within {
    border-color: rgba(181,117,255,.86);
    box-shadow: 0 18px 42px rgba(91,63,255,.16), inset 0 1px rgba(255,255,255,.09);
  }
}

/* Research section supplied asset and lock boxes */
.research-bg {
  /* background: url('../images/glowing-orbs.webp') center bottom / cover no-repeat; */
  opacity: .98;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.18) 20%, #000 52%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.18) 20%, #000 52%, #000 100%);
}
.research-copy p:not(.section-kicker) {
  font-size: 16px;
  line-height: 1.6;
}
.research-points article {
  gap: 14px;
}
.research-points article > img {
  width: 34px;
  height: 34px;
  padding: 7px;
  border: 1px solid rgba(9,11,18,.16);
  border-radius: 6px;
  background: rgba(255,255,255,.62);
  object-fit: contain;
}
.research-points h3 {
  font-size: 15px;
  line-height: 1.12;
  margin-bottom: 4px;
}
.research-points p {
  font-size: 15px;
  line-height: 1.32;
}
.focus-bar {
  font-family: var(--font-body);
  font-size: 16px;
}

/* Monday video fixed-height treatment */
.monday {
  min-height: 430px;
  background: #000212;
}
.monday-video {
  height: 100%;
  max-height: 100%;
}
.monday-content p:not(.section-kicker) {
  font-size: 16px;
  line-height: 1.5;
}

/* Kernel and application readability */
.kernel-copy p,
.applications-copy p,
.recovery-copy p:not(.section-kicker) {
  /* font-size: 16px; */
  /* line-height: 1.58; */
}
.applications .section-kicker {
  color: var(--violet);
}

/* Footer hovers */
.site-footer a {
  transition: color .2s ease, opacity .2s ease;
}
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--aqua);
}

/* Briefing modal copy and CTA */
.briefing-submit {
  width: 100%;
  justify-self: stretch;
  min-height: 46px;
  justify-content: center;
}
.briefing-submit.is-loading {
  opacity: .72;
  cursor: progress;
}

/* Mobile global readability pass */
@media (max-width: 860px), (orientation: portrait) and (max-width: 1180px) {
  body {
    font-size: 16px;
  }
  .section-kicker {
    font-size: 13px !important;
    line-height: 1.28 !important;
    letter-spacing: .135em !important;
  }
  .hero h1 {
    font-size: clamp(36px, 9.7vw, 48px) !important;
  }
  .eyebrow-large {
    font-size: clamp(20px, 5.3vw, 26px) !important;
    line-height: 1.15 !important;
    margin: 30px 0px;
  }
  .hero-copy p:not(.eyebrow-large),
  .legacy-system > p:not(.section-kicker):not(.flow-title),
  .poly-architecture > p:not(.flow-title),
  .research-copy p:not(.section-kicker),
  .monday-content p:not(.section-kicker),
  .recovery-copy p:not(.section-kicker),
  .kernel-copy p,
  .applications-copy p {
    font-size: 15px !important;
    line-height: 1.55 !important;
  }
  .proof-grid article {
    font-size: 13px !important;
    line-height: 1.22 !important;
  }
  .architecture h2,
  .research-copy h2,
  .monday-content h2,
  .recovery-copy h2,
  .kernel-copy h2,
  .applications-copy h2 {
    font-size: clamp(26px, 6.6vw, 34px) !important;
    line-height: 1.12 !important;
  }
  .mobile-nav a {
    font-size: clamp(22px, 5.2vw, 37px) !important;
    line-height: 1.22 !important;
  }

  .torus-orbit {
    width: 112px !important;
    height: 112px !important;
    flex-basis: 112px !important;
  }
  .torus-orbit img {
    width: 90px !important;
    height: 90px !important;
  }

  .governance .section-kicker {
    padding-bottom: 8px !important;
  }
  .governance-grid {
    gap: 16px !important;
  }
  .step-card,
  .loop-card {
    min-height: 190px !important;
    padding: 24px 18px 22px !important;
  }
  .step-card strong {
    font-size: 28px !important;
  }
  .step-card h3 {
    font-size: 16px !important;
  }
  .step-card p,
  .loop-card p {
    font-size: 14.5px !important;
    line-height: 1.45 !important;
  }

  .research-bg {
    background-size: auto 95% !important;
    background-position: center bottom !important;
    height: 300px;
  }
  .research-points article > img {
    width: 40px !important;
    height: 40px !important;
    padding: 8px !important;
  }
  .research-points h3 {
    font-size: 16px !important;
  }
  .research-points p {
    font-size: 14.5px !important;
  }

  .focus-bar span {
    font-size: 14.5px !important;
  }

  .claim-legend span {
    font-size: 13px !important;
    gap: 6px !important;
  }
  .metrics-row strong {
    font-size: 26px !important;
  }
  .metrics-row span {
    font-size: 13px !important;
    line-height: 1.3 !important;
  }

  .app-card-row span {
    font-size: 13px !important;
    line-height: 1.22 !important;
  }
}

/* Small mobile specific refinements */
@media (max-width: 700px) {
  .adjudication-flow .flow-box {
    min-width: 0 !important;
    padding-inline: 40px !important;
  }
  .torus-orbit {
    width: 118px !important;
    height: 118px !important;
    flex-basis: 118px !important;
  }
  .torus-orbit img {
    width: 94px !important;
    height: 94px !important;
  }
  .monday-video {
    height: 58% !important;
  }
}

/* iPad Mini / Air landscape refinements from change document */
@media (min-width: 768px) and (max-width: 1180px) and (orientation: landscape) {
  .site-header {
    background: rgba(1,5,14,.94);
  }
  .desktop-nav {
    gap: 20px !important;
    font-size: 15px !important;
    font-weight: 400;
  }
  .desktop-nav .btn {
    font-size: 13px !important;
    padding: 6px 16px 8px !important;
    white-space: nowrap !important;
  }
  .hero {
    background: #00020b !important;
    min-height: 420px !important;
    padding: 60px 0 !important;
  }
  .hero-content {
    min-height: 360px !important;
  }
  .hero-copy {
    width: min(455px, 43vw) !important;
  }
  .hero h1 {
    font-size: clamp(44px, 5vw, 58px) !important;
  }
  .eyebrow-large {
    font-size: clamp(20px, 2.1vw, 25px) !important;
  }
  .hero-copy p:not(.eyebrow-large) {
    font-size: 16px !important;
  }
  .hero-video-desktop {
    object-fit: contain !important;
    object-position: right center !important;
    background: #000009 !important;
    transform: scale(1.52) translateX(2%);
    transform-origin: right center;
  }
  .hero-media::after {
    /* background: linear-gradient(90deg, #01050e 0%, rgba(1,5,14,.94) 32%, rgba(1,5,14,.14) 62%, rgba(1,5,14,.15) 100%) !important; */
  }

  .arch-grid {
    grid-template-columns: .78fr auto 1.78fr !important;
    gap: 22px !important;
  }
  .poly-architecture {
    margin-top: 61px;
    padding-left: 27px !important;
    transform: translateY(16px) !important;
  }
  .mini-flow span,
  .adjudication-flow .flow-box {
    font-size: 14px !important;
  }
  .mini-flow small,
  .adjudication-flow small {
    display: block !important;
  }

  .step-card,
  .loop-card {
    min-height: 182px !important;
    padding: 18px 13px 17px !important;
  }
  .step-card h3 {
    font-size: 15px !important;
  }
  .step-card p,
  .loop-card p {
    font-size: 14px !important;
  }

  .research-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(290px, .78fr) !important;
    grid-template-areas:
      "copy media"
      "left media"
      "right media" !important;
    gap: 20px 40px !important;
    align-items: center !important;
  }
  .research-copy { grid-area: copy !important; grid-column: auto !important; max-width: 600px !important; }
  .left-points { grid-area: left !important; }
  .right-points { grid-area: right !important; grid-column: auto !important; grid-template-columns: 1fr !important; }
  .research-points { grid-template-columns: 1fr !important; gap: 16px !important; }
  .research-points article { grid-template-columns: 40px minmax(0, 1fr) !important; align-items: center !important; }
  .mobius-media {
    grid-area: media !important;
    grid-column: auto !important;
    grid-row: auto !important;
    align-self: center !important;
    justify-self: center !important;
    width: min(390px, 36vw) !important;
    margin: auto !important;
  }
  .mobius-media video {
    object-fit: cover !important;
  }

  .metrics-row .metric-icon {
    width: 42px !important;
    height: 42px !important;
  }
  .metrics-row .metric-icon img {
    width: 23px !important;
    height: 23px !important;
  }
}

/* iPad Air / iPad Mini portrait */
@media (min-width: 700px) and (max-width: 980px) and (orientation: portrait) {
  .container,
  main > section > .container,
  main > section > .container.proof-grid,
  main > section > .container.arch-grid {
    width: min(100% - 56px, 850px) !important;
  }
  .hero-media {
    height: 470px !important;
  }
  .hero-copy {
    max-width: 680px !important;
    margin-inline: auto !important;
    text-align: center !important;
    padding-top: 16px !important;
  }
  .hero h1 span,
  .eyebrow-large span {
    display: inline !important;
    margin: 0px 6px;
  }
  .hero h1 {
    max-width: none !important;
    font-size: clamp(42px, 6.4vw, 58px) !important;
  }
  .eyebrow-large {
    max-width: none !important;
    font-size: clamp(22px, 3.4vw, 30px) !important;
    margin: 25px 0px;
  }
  .hero-copy p:not(.eyebrow-large) {
    max-width: none !important;
    margin-bottom: 35px;
  }
  .hero .btn-primary {
    width: auto !important;
    max-width: none !important;
  }
  .proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 23px !important;
  }
  .proof-grid article {
    gap: 7px !important;
    font-size: 14px !important;
    /* white-space: nowrap !important; */
    position: relative;
  }
  .proof-grid img {
    width: 21px !important;
    flex-basis: 21px !important;
  }

  .poly-architecture .adjudication-flow {
    flex-wrap: nowrap !important;
    justify-content: center !important;
    gap: 7px !important;
  }
  .poly-architecture > p:not(.flow-title),
  .poly-architecture .flow-title,
  .poly-architecture h2 {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .adjudication-flow .flow-box {
    padding: 9px 10px !important;
    font-size: 11px !important;
  }
  .torus-orbit {
    width: 104px !important;
    height: 104px !important;
    flex: 0 0 104px !important;
  }
  .torus-orbit img {
    width: 82px !important;
    height: 82px !important;
  }

  .governance-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .step-card,
  .loop-card {
    min-height: 180px !important;
    padding: 22px 14px 18px !important;
  }

  .research-grid {
    grid-template-columns: minmax(0, 1fr) minmax(230px, .82fr) !important;
    grid-template-areas:
      "copy media"
      "left media"
      "right media" !important;
    align-items: center !important;
    gap: 20px 28px !important;
  }
  .research-copy { grid-area: copy !important; grid-column: auto !important; text-align: left !important; }
  .left-points { grid-area: left !important; }
  .right-points { grid-area: right !important; grid-column: auto !important; grid-template-columns: 1fr !important; }
  .research-points { grid-template-columns: 1fr !important; gap: 14px !important; }
  .mobius-media {
    grid-area: media !important;
    grid-column: auto !important;
    grid-row: auto !important;
    width: min(260px, 31vw) !important;
    align-self: center !important;
    justify-self: center !important;
  }
  .focus-bar {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    padding: 0 !important;
    background: transparent !important;
  }
  .focus-bar i { display: none !important; }
  .focus-bar span {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 52px !important;
    padding: 12px 16px !important;
    border-radius: 10px !important;
    background: linear-gradient(90deg, #091325, #211e3a) !important;
    color: #fff !important;
  }

  .monday-video {
    height: 100% !important;
  }
  .recovery-grid {
    grid-template-columns: 1fr !important;
    grid-template-areas: "copy" "flow" "legend" !important;
  }
  .recovery-flow {
    grid-template-columns: 1fr 28px 1fr 28px 1fr 28px 1fr !important;
    gap: 10px !important;
    margin-top: 10px;
  }
  .recovery-flow article {
    min-height: 148px !important;
    padding: 14px 10px !important;
  }
  .flow-arrow {
    display: block !important;
    transform: none !important;
  }

  .kernel-visual {
    grid-template-columns: minmax(0, 1fr) 150px !important;
    align-items: center !important;
  }
  .claim-legend {
    width: 150px !important;
  }
  .app-card-row {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .app-card-row article:last-child {
    grid-column: 2 / 3 !important;
  }
  .app-card-row img {
    height: 118px !important;
  }
}

/* iPad Pro portrait follows the refined tablet landscape treatment */
@media (min-width: 1000px) and (max-width: 1180px) and (orientation: portrait) {
  .monday-video {
    height: 550px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .torus-orbit img {
    animation: none !important;
  }
}


/* iPad portrait hero video supplied after change-doc pass. */
.hero-video-ipad-portrait {
  display: none;
}

@media (min-width: 700px) and (max-width: 1180px) and (orientation: portrait) {
  .hero-video-desktop,
  .hero-video-mobile {
    display: none !important;
  }

  .hero-video-ipad-portrait {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    background: #01050e !important;
  }
}

/* @media (min-width: 1000px) and (max-width: 1180px) and (orientation: portrait) {
  .hero-video-ipad-portrait {
    object-fit: contain !important;
    object-position: right center !important;
  }
} */


/* iPad Mini / Air / Pro landscape research layout refinement.
   Matches desktop-style four-column research layout while keeping tablet sizing controlled. */
@media (min-width: 1000px) and (max-width: 1366px) and (orientation: landscape) and (max-height: 1024px) {
  .research-grid {
    grid-template-columns: minmax(305px, 1fr) minmax(190px, .74fr) minmax(145px, .46fr) minmax(190px, .74fr) !important;
    grid-template-areas: none !important;
    gap: 18px 0px !important;
    align-items: center !important;
  }

  .research-copy,
  .left-points,
  .right-points,
  .mobius-media {
    grid-area: auto / auto / auto / auto !important;
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .research-copy {
    max-width: 300px !important;
    align-self: center !important;
  }

  .research-copy p:not(.section-kicker) {
    max-width: 355px !important;
  }

  .research-points {
    top: 0 !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    align-self: center !important;
  }

  .research-points article {
    grid-template-columns: 38px minmax(0, 1fr) !important;
    gap: 13px !important;
    align-items: flex-start !important;
  }

  .right-points {
    grid-template-columns: 1fr !important;
  }

  .mobius-media {
    width: clamp(178px, 13vw, 220px) !important;
    align-self: center !important;
    justify-self: center !important;
    margin: auto !important;
  }

  .mobius-media video {
    object-fit: cover !important;
    width: 85%;
    height: 85%;
    top: 0px;
  }
}

/* Slightly roomier version for iPad Pro landscape only. */
@media (min-width: 1181px) and (max-width: 1366px) and (orientation: landscape) and (max-height: 1024px) {
  .research-grid {
    grid-template-columns: minmax(360px, 1fr) minmax(220px, .78fr) minmax(165px, .44fr) minmax(220px, .78fr) !important;
    gap: 22px 28px !important;
  }

  .research-copy {
    max-width: 430px !important;
  }

  .research-copy p:not(.section-kicker) {
    max-width: 410px !important;
  }

  .mobius-media {
    width: clamp(205px, 15.5vw, 245px) !important;
  }
}


/* iPad portrait hero copy and proof-strip line-break refinements. */
.ipad-portrait-break {
  display: none;
}

@media (min-width: 700px) and (max-width: 1180px) and (orientation: portrait) {
  .hero .eyebrow-large span {
    display: block !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .hero-copy p:not(.eyebrow-large) .ipad-portrait-break {
    /* display: block !important; */
  }

  .proof-grid article span {
    white-space: nowrap !important;
  }

  .proof-grid article span br {
    display: none !important;
  }
}


/* iPad portrait proof strip alignment and spacing refinement only. */
@media (min-width: 700px) and (max-width: 1180px) and (orientation: portrait) {
  .proof-grid {
    column-gap: 14px !important;
    row-gap: 12px !important;
    align-items: center !important;
  }

  .proof-grid article {
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 6px !important;
    line-height: 1 !important;
  }

  .proof-grid article span {
    display: inline-flex !important;
    align-items: center !important;
    white-space: nowrap !important;
    line-height: 1 !important;
  }

  .proof-grid article span br {
    display: none !important;
  }
}


/* iPad portrait architecture section refinement only */
@media (min-width: 700px) and (max-width: 1180px) and (orientation: portrait) {
  .architecture .arch-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    align-items: stretch !important;
  }

  .architecture .legacy-system,
  .architecture .poly-architecture {
    width: 100% !important;
    max-width: none !important;
    padding-left: 0 !important;
    text-align: center !important;
  }

  .architecture .section-kicker,
  .architecture h2,
  .legacy-system .flow-title,
  .poly-architecture .flow-title,
  .legacy-copy-lines,
  .legacy-system > p:not(.section-kicker):not(.flow-title),
  .poly-architecture > p:not(.flow-title) {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .legacy-system .flow-title,
  .poly-architecture .flow-title {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    line-height: 1.15 !important;
  }

  .legacy-copy-lines {
    max-width: none !important;
    white-space: normal !important;
  }

  .legacy-copy-lines br {
    display: none !important;
  }

  .architecture h2 {
    font-weight: 600 !important;
  }

  .mini-flow {
    justify-content: center !important;
  }

  .vs-badge {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .poly-architecture::before {
    display: none !important;
  }

  .poly-architecture > p:not(.flow-title) {
    max-width: 100% !important;
  }

  .poly-architecture .adjudication-flow {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 8px !important;
  }

  .poly-architecture .adjudication-flow i {
    flex: 0 0 auto !important;
    transform: none !important;
    font-size: 14px !important;
    line-height: 1 !important;
  }

  .adjudication-flow .flow-box {
    flex: 1 1 0 !important;
    width: auto !important;
    min-width: 0 !important;
    min-height: 46px !important;
    padding: 10px 10px !important;
    font-size: 15px !important;
    line-height: 1.05 !important;
    white-space: nowrap !important;
  }

  .adjudication-flow .flow-box-kernel {
    flex-direction: row !important;
    gap: 4px !important;
  }

  .adjudication-flow .flow-box-kernel strong,
  .adjudication-flow .flow-box-kernel small,
  .adjudication-flow .flow-box-action {
    font-size: 15px !important;
    line-height: 1.05 !important;
  }

  .adjudication-flow .flow-box-kernel small {
    display: inline !important;
    margin-top: 0 !important;
    white-space: nowrap !important;
  }

  .adjudication-flow .flow-box-action br {
    display: none !important;
  }

  .torus-orbit {
    width: 94px !important;
    height: 94px !important;
    flex: 0 0 94px !important;
  }

  .torus-orbit img {
    width: 74px !important;
    height: 74px !important;
  }

  /* Nikolai - Fix for app card row layout on iPad portrait */
  .applications .app-card-row {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    justify-items: stretch !important;
    place-items: stretch !important; /* undo place-items: center */
  }
  .applications .app-card-row article:nth-child(6) {
    grid-column: 2 !important;
    grid-row: 2 !important;
    /* hift half the width to the right */
    transform: translateX(calc(50% + 5px)) !important;
  }
  .applications .app-card-row article:nth-child(7),
  .applications .app-card-row article:last-child:nth-child(odd) {
    grid-column: 4 !important;
    grid-row: 2 !important;
    width: auto !important;
    justify-self: stretch !important;
    /* Shift half the width to the left */
    transform: translateX(calc(-50% - 5px)) !important;
  }
}

@media (min-width: 700px) and (max-width: 780px) and (orientation: portrait) {
  .adjudication-flow .flow-box,
  .adjudication-flow .flow-box-kernel strong,
  .adjudication-flow .flow-box-kernel small,
  .adjudication-flow .flow-box-action {
    font-size: 14px !important;
  }

  .torus-orbit {
    width: 86px !important;
    height: 86px !important;
    flex-basis: 86px !important;
  }

  .torus-orbit img {
    width: 68px !important;
    height: 68px !important;
  }
}


/* iPad portrait research section refinement only */
.ipad-research-break { display: none; }

@media (min-width: 700px) and (max-width: 1180px) and (orientation: portrait) {
  .research {
    padding-top: 54px !important;
    padding-bottom: 54px !important;
  }

  .research-bg {
    background-size: 150% auto !important;
    background-position: center bottom !important;
  }

  .research-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) clamp(175px, 21vw, 215px) minmax(0, 1fr) !important;
    grid-template-areas:
      "copy copy copy"
      "left media right" !important;
    gap: 34px 22px !important;
    align-items: center !important;
  }

  .research-copy {
    grid-area: copy !important;
    grid-column: auto !important;
    order: initial !important;
    max-width: 760px !important;
    margin-inline: auto !important;
    padding-bottom: 0 !important;
    text-align: center !important;
  }

  .research-copy .section-kicker,
  .research-copy h2,
  .research-copy p:not(.section-kicker) {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .research-copy p:not(.section-kicker) {
    max-width: 680px !important;
  }

  .left-points {
    grid-area: left !important;
    grid-column: auto !important;
    order: initial !important;
    align-self: center !important;
  }

  .right-points {
    grid-area: right !important;
    grid-column: auto !important;
    order: initial !important;
    align-self: center !important;
  }

  .research-points {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    top: 0 !important;
    position: relative !important;
  }

  .research-points article {
    grid-template-columns: 42px minmax(0, 1fr) !important;
    gap: 12px !important;
    align-items: center !important;
  }

  .research-points h3 {
    margin-bottom: 6px !important;
  }

  .research-points p {
    line-height: 1.22 !important;
  }

  .ipad-research-break {
    display: block !important;
  }

  .mobius-media {
    grid-area: media !important;
    grid-column: auto !important;
    grid-row: auto !important;
    width: clamp(175px, 21vw, 215px) !important;
    height: auto !important;
    align-self: center !important;
    justify-self: center !important;
    margin: 0 auto !important;
  }

  .mobius-media video {
    top: 0 !important;
  }

  .research .focus-bar {
    margin-top: 42px !important;
  }
}

@media (min-width: 700px) and (max-width: 780px) and (orientation: portrait) {
  .research-grid {
    grid-template-columns: minmax(0, 1fr) clamp(160px, 21vw, 185px) minmax(0, 1fr) !important;
    gap: 30px 16px !important;
  }

  .mobius-media {
    width: clamp(160px, 21vw, 185px) !important;
  }

  .research-points article {
    grid-template-columns: 38px minmax(0, 1fr) !important;
    gap: 10px !important;
  }

  .research-points p {
    font-size: 12px !important;
  }
}

/* Final correction: iPad portrait research programme layout only.
   Copy sits full-width above a strict three-column lock/media/lock row. */
@media (min-width: 700px) and (max-width: 1180px) and (orientation: portrait) {
  .research.section-light {
    padding-top: 58px !important;
    padding-bottom: 58px !important;
  }

  .research.section-light .research-bg {
    height: 260px !important;
    background-size: 150% auto !important;
    background-position: center bottom !important;
  }

  .research.section-light .container.research-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) clamp(205px, 25vw, 265px) minmax(0, 1fr) !important;
    grid-template-areas:
      "copy copy copy"
      "left media right" !important;
    align-items: center !important;
    justify-items: stretch !important;
    column-gap: clamp(18px, 3vw, 36px) !important;
    row-gap: 36px !important;
  }

  .research.section-light .research-copy {
    grid-area: copy !important;
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-width: 820px !important;
    margin: 0 auto !important;
    text-align: center !important;
    order: initial !important;
  }

  .research.section-light .research-copy .section-kicker,
  .research.section-light .research-copy h2,
  .research.section-light .research-copy p:not(.section-kicker) {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .research.section-light .research-copy h2 {
    max-width: 760px !important;
    margin-bottom: 18px !important;
  }

  .research.section-light .research-copy h2 span {
    display: block !important;
    white-space: nowrap !important;
  }

  .research.section-light .research-copy p:not(.section-kicker) {
    max-width: 680px !important;
    line-height: 1.45 !important;
  }

  .research.section-light .left-points {
    grid-area: left !important;
    grid-column: auto !important;
    grid-row: auto !important;
    align-self: center !important;
    justify-self: stretch !important;
    order: initial !important;
  }

  .research.section-light .mobius-media {
    grid-area: media !important;
    grid-column: auto !important;
    grid-row: auto !important;
    width: clamp(205px, 25vw, 265px) !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
    align-self: center !important;
    justify-self: center !important;
    order: initial !important;
  }

  .research.section-light .mobius-media video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    top: 0 !important;
  }

  .research.section-light .right-points {
    grid-area: right !important;
    grid-column: auto !important;
    grid-row: auto !important;
    align-self: center !important;
    justify-self: stretch !important;
    order: initial !important;
  }

  .research.section-light .research-points {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    top: 0 !important;
    position: relative !important;
    width: 100% !important;
  }

  .research.section-light .research-points article {
    display: grid !important;
    grid-template-columns: 42px minmax(0, 1fr) !important;
    gap: 12px !important;
    align-items: center !important;
    width: 100% !important;
  }

  .research.section-light .research-points article > img {
    width: 34px !important;
    height: 34px !important;
  }

  .research.section-light .research-points h3 {
    margin-bottom: 6px !important;
    line-height: 1.15 !important;
  }

  .research.section-light .research-points p {
    line-height: 1.22 !important;
  }

  .research.section-light .ipad-research-break {
    display: block !important;
  }

  .research.section-light .focus-bar {
    margin-top: 46px !important;
  }
}

@media (min-width: 700px) and (max-width: 780px) and (orientation: portrait) {
  .research.section-light .container.research-grid {
    grid-template-columns: minmax(0, 1fr) clamp(175px, 24vw, 205px) minmax(0, 1fr) !important;
    column-gap: 14px !important;
    row-gap: 30px !important;
  }

  .research.section-light .mobius-media {
    width: clamp(175px, 24vw, 205px) !important;
  }

  .research.section-light .research-points {
    gap: 18px !important;
  }

  .research.section-light .research-points article {
    grid-template-columns: 36px minmax(0, 1fr) !important;
    gap: 9px !important;
  }

  .research.section-light .research-points article > img {
    width: 30px !important;
    height: 30px !important;
  }

  .research.section-light .research-points p {
    font-size: 12px !important;
  }
}

/* iPad portrait lower-section alignment pass only */
@media (min-width: 700px) and (max-width: 1180px) and (orientation: portrait) {
  .monday-content,
  .recovery-copy,
  .kernel-copy,
  .applications-copy {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .monday-content .section-kicker,
  .monday-content h2,
  .monday-content p,
  .recovery-copy .section-kicker,
  .recovery-copy h2,
  .recovery-copy p,
  .kernel-copy .section-kicker,
  .kernel-copy h2,
  .kernel-copy p,
  .applications-copy .section-kicker,
  .applications-copy h2,
  .applications-copy p {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .monday-content h2 span,
  .monday-content .aqua-text span {
    display: inline !important;
  }

  .monday-content .aqua-text span {
    font-size: 18px !important;
  }


@media (min-width: 700px) and (max-width: 780px) and (orientation: portrait) {
  .monday-content .aqua-text span {
        font-size: 18px;
  }
}
  .monday-content h2 {
    max-width: none !important;
    white-space: nowrap !important;
  }

  .monday-content p br {
    display: none !important;
  }

  .monday-content p:not(.section-kicker) {
    max-width: 840px !important;
  }

  .monday-content .aqua-text {
    max-width: none !important;
    white-space: nowrap !important;
  }

  .recovery-copy p:not(.section-kicker),
  .kernel-copy p,
  .applications-copy p {
    max-width: 760px !important;
  }

  .kernel-visual {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 210px !important;
    align-items: center !important;
    gap: 24px !important;
  }

  .kernel-visual > img {
    order: initial !important;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    justify-self: stretch !important;
  }

  .claim-legend {
    order: initial !important;
    width: 210px !important;
    max-width: 210px !important;
    margin: 0 !important;
    justify-self: end !important;
    display: block !important;
    padding: 18px 18px !important;
  }

  .claim-legend h3 {
    display: block !important;
    margin: 0 0 12px !important;
    text-align: left !important;
    font-size: 14px !important;
  }

  .claim-legend span {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 8px 0 !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
  }

  .claim-legend .dot {
    flex: 0 0 9px !important;
    width: 9px !important;
    height: 9px !important;
    border-radius: 50% !important;
  }
}

@media (min-width: 700px) and (max-width: 780px) and (orientation: portrait) {
  .kernel-visual {
    grid-template-columns: minmax(0, 1fr) 185px !important;
    gap: 18px !important;
  }

  .claim-legend {
    width: 185px !important;
    max-width: 185px !important;
    padding: 15px !important;
  }

  .claim-legend span {
    font-size: 11px !important;
  }
}

/* iPad portrait final refinements: research points, gradient line spacing, applications grid */
@media (min-width: 700px) and (max-width: 1180px) and (orientation: portrait) {
  .research.section-light .research-points article {
    align-items: start !important;
  }

  .research.section-light .research-points article > img {
    align-self: start !important;
    margin-top: 1px !important;
  }

  .research.section-light .ipad-research-break {
    display: none !important;
  }

  .monday-content .aqua-text span:first-child::after {
    content: " ";
  }

  .app-card-row {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 14px !important;
    align-items: stretch !important;
    justify-items: stretch !important;
    justify-content: center;
    place-content: center;
    place-items: center;
  }

  .app-card-row article {
    width: auto !important;
    min-width: 0 !important;
  }

  .app-card-row article:nth-child(6) {
    /* grid-column: 2 !important; */
  }

  .app-card-row article:nth-child(7) {
    grid-column: 4 !important;
  }
}

@media (min-width: 700px) and (max-width: 780px) and (orientation: portrait) {
  .app-card-row {
    gap: 10px !important;
  }

  .app-card-row article span {
    font-size: 10px !important;
  }
}

/* iPad portrait architecture flow final spacing refinement only */
@media (min-width: 700px) and (max-width: 1180px) and (orientation: portrait) {
  .poly-architecture .adjudication-flow {
    justify-content: center !important;
    align-items: center !important;
    gap: 10px !important;
  }

  .poly-architecture .adjudication-flow i {
    flex: 0 0 auto !important;
  }

  .adjudication-flow .flow-box {
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 0 !important;
    min-height: 0 !important;
    padding: 5px 15px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    font-size: 15px !important;
    line-height: 1.22 !important;
    white-space: nowrap !important;
  }

  .adjudication-flow .flow-box-small,
  .adjudication-flow .flow-box-representation,
  .adjudication-flow .flow-box-kernel,
  .adjudication-flow .flow-box-action {
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 0 !important;
    padding: 5px 15px !important;
  }

  .adjudication-flow .flow-box-kernel {
    flex-direction: column !important;
    gap: 3px !important;
  }

  .adjudication-flow .flow-box-kernel strong,
  .adjudication-flow .flow-box-kernel small,
  .adjudication-flow .flow-box-action {
    font-size: 15px !important;
    line-height: 1.22 !important;
  }

  .adjudication-flow .flow-box-kernel small {
    display: block !important;
    margin-top: 0 !important;
  }

  .adjudication-flow .flow-box-action br {
    display: block !important;
  }
}

@media (min-width: 700px) and (max-width: 780px) and (orientation: portrait) {
  .poly-architecture .adjudication-flow {
    gap: 8px !important;
  }

  .adjudication-flow .flow-box,
  .adjudication-flow .flow-box-kernel strong,
  .adjudication-flow .flow-box-kernel small,
  .adjudication-flow .flow-box-action {
    font-size: 14px !important;
  }
}

/* iPad portrait architecture action label refinement only */
@media (min-width: 700px) and (max-width: 1180px) and (orientation: portrait) {
  .adjudication-flow .flow-box-action {
    font-size: 0 !important;
    line-height: 0 !important;
  }

  .adjudication-flow .flow-box-action br {
    display: none !important;
  }

  .adjudication-flow .flow-box-action::before {
    content: "Assert / Revise\A/ Refuse";
    display: block;
    white-space: pre-line;
    font-size: 15px !important;
    line-height: 1.22 !important;
    text-align: center;
  }
}

@media (min-width: 700px) and (max-width: 780px) and (orientation: portrait) {
  .adjudication-flow .flow-box-action::before {
    font-size: 14px !important;
  }
}

/* Mobile phone Monday copy flow refinement only */
@media (max-width: 699px) {
  .monday-content > p:not(.section-kicker):not(.aqua-text) br {
    display: none !important;
  }
}


/* Mobile phone text alignment refinement only */
@media (max-width: 699px) {
  .hero-copy,
  .legacy-system,
  .poly-architecture,
  .research-copy,
  .monday-content,
  .recovery-copy,
  .kernel-copy,
  .applications-copy {
    text-align: center !important;
  }

  .hero-copy h1,
  .hero-copy .eyebrow-large,
  .hero-copy p,
  .legacy-system .section-kicker,
  .legacy-system h2,
  .legacy-system .flow-title,
  .legacy-system .legacy-copy-lines,
  .poly-architecture h2,
  .poly-architecture .flow-title,
  .poly-architecture > p,
  .research-copy .section-kicker,
  .research-copy h2,
  .research-copy p,
  .monday-content .section-kicker,
  .monday-content h2,
  .monday-content p,
  .recovery-copy .section-kicker,
  .recovery-copy h2,
  .recovery-copy p,
  .kernel-copy .section-kicker,
  .kernel-copy h2,
  .kernel-copy p,
  .applications-copy .section-kicker,
  .applications-copy h2,
  .applications-copy p {
    text-align: center !important;
    margin-left: auto !important;
    /* margin-top: 0px; */
    margin-right: auto !important;
  }

  .legacy-system .flow-title,
  .poly-architecture .flow-title {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .hero-copy .btn-primary {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .monday-content > p:not(.section-kicker):not(.aqua-text) br {
    display: none !important;
  }
}

/* Mobile + iPad portrait architecture torus spin and mobile flow-label refinement */
@media (max-width: 699px), (min-width: 700px) and (max-width: 1180px) and (orientation: portrait) {
  .torus-orbit img {
    animation: torusSlowRotate 24s linear infinite !important;
    transform-origin: center center !important;
  }
}

@media (max-width: 699px) {
  .poly-architecture .adjudication-flow {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 9px !important;
  }

  .poly-architecture .adjudication-flow i {
    flex: 0 0 auto !important;
    transform: rotate(90deg) !important;
    line-height: 1 !important;
  }

  .adjudication-flow .flow-box,
  .adjudication-flow .flow-box-small,
  .adjudication-flow .flow-box-representation,
  .adjudication-flow .flow-box-kernel,
  .adjudication-flow .flow-box-action {
    width: 85% !important;
    max-width: 360px !important;
    min-width: 0 !important;
    flex: 0 0 auto !important;
    box-sizing: border-box !important;
    padding: 7px 15px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    font-size: 15px !important;
    line-height: 1.22 !important;
    white-space: nowrap !important;
  }

  .adjudication-flow .flow-box-kernel {
    flex-direction: row !important;
    gap: 0 !important;
  }

  .adjudication-flow .flow-box-kernel strong {
    display: inline !important;
    font-size: 15px !important;
    line-height: 1.22 !important;
    white-space: nowrap !important;
  }

  .adjudication-flow .flow-box-kernel strong::after {
    content: " Kernel";
  }

  .adjudication-flow .flow-box-kernel small {
    display: none !important;
  }

  .adjudication-flow .flow-box-action {
    font-size: 0 !important;
    line-height: 0 !important;
  }

  .adjudication-flow .flow-box-action br {
    display: none !important;
  }

  .adjudication-flow .flow-box-action::before {
    content: "Assert / Revise / Refuse";
    display: block !important;
    font-size: 15px !important;
    line-height: 1.22 !important;
    white-space: nowrap !important;
    text-align: center !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .torus-orbit img {
    animation: none !important;
  }
}


/* Mobile-only recoverability flow: 2x2 cards with directional arrows */
@media (max-width: 699px) {
  .recoverability .recovery-grid {
    grid-template-areas: "copy" "flow" "legend" !important;
  }

  .recoverability .recovery-flow {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 18px minmax(0, 1fr) !important;
    grid-template-areas:
      "transport arrow-right external"
      ". . arrow-down"
      "reconstructed arrow-left pure" !important;
    align-items: center !important;
    gap: 8px 7px !important;
  }

  .recoverability .recovery-flow > article:nth-of-type(1) {
    grid-area: transport !important;
  }

  .recoverability .recovery-flow > article:nth-of-type(2) {
    grid-area: external !important;
  }

  .recoverability .recovery-flow > article:nth-of-type(3) {
    grid-area: pure !important;
  }

  .recoverability .recovery-flow > article:nth-of-type(4) {
    grid-area: reconstructed !important;
  }

  .recoverability .recovery-flow > .flow-arrow:nth-of-type(1) {
    grid-area: arrow-right !important;
    transform: none !important;
  }

  .recoverability .recovery-flow > .flow-arrow:nth-of-type(2) {
    grid-area: arrow-down !important;
    transform: rotate(90deg) !important;
  }

  .recoverability .recovery-flow > .flow-arrow:nth-of-type(3) {
    grid-area: arrow-left !important;
    transform: rotate(180deg) !important;
  }

  .recoverability .recovery-flow .flow-arrow {
    display: block !important;
    width: 18px !important;
    height: auto !important;
    margin: 0 !important;
    justify-self: center !important;
    align-self: center !important;
    opacity: .95 !important;
  }

  .recoverability .recovery-flow article {
    min-height: 124px !important;
    padding: 13px 8px !important;
  }
}


/* Mobile-only kernel metric refinements */
.metric-mobile-break {
  display: none;
}

@media (max-width: 767px) {
  .metric-desktop-space {
    display: none !important;
  }

  .metric-mobile-break {
    display: block !important;
  }

  .metrics-row article {
    align-items: start !important;
    row-gap: 4px !important;
  }

  .metrics-row .metric-icon {
    align-self: start !important;
    justify-self: start !important;
  }

  .metrics-row strong {
    align-self: start !important;
  }

  .metrics-row span {
    margin-top: 4px !important;
    line-height: 1.18 !important;
  }
}

/* iPad Mini landscape only final proof/action refinements */
@media (min-width: 900px) and (max-width: 1138px) and (max-height: 780px) and (orientation: landscape) {
  .proof-grid article span {
    white-space: nowrap !important;
  }

  .proof-grid article span br {
    display: none !important;
  }

  .adjudication-flow .flow-box-action {
    font-size: 0px !important;
    line-height: 0 !important;
  }

  .adjudication-flow .flow-box-action br {
    display: none !important;
  }

  .adjudication-flow .flow-box-action::before {
    content: "Assert /\A Revise /\A Refuse";
    display: block !important;
    white-space: pre-line !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
    text-align: left!important;
  }
}

/* iPad Air portrait only: Monday title spacing and gradient statement sizing */
@media (min-width: 790px) and (max-width: 900px) and (orientation: portrait) {
  .monday-content h2 span:first-child::after {
    content: " " !important;
  }

  .monday-content .aqua-text {
    font-size: 25px !important;
  }
}


/* iPad landscape only: lift key section heading sizes slightly */
@media (min-width: 900px) and (max-width: 1366px) and (max-height: 1024px) and (orientation: landscape) {
  .research-copy h2,
  .monday-content h2,
  .recovery-copy h2,
  .kernel-copy h2,
  .applications-copy h2 {
    font-size: calc(clamp(20px, 2.2vw, 30px) + 2px) !important;
  }
}

/* Ipad portrait only: lift key section heading sizes slightly */
@media (min-width: 700px) and (max-width: 1180px) and (orientation: portrait) {
  .proof-grid {
    row-gap: 5px !important;
  }

  .mobile-nav a {
    font-size: clamp(22px, 5.2vw, 24px) !important;
    line-height: 1.22 !important;
  }

  .mobile-cta {
    min-height: clamp(50px, 6.4vw, 66px) !important;
    width: min(50vw, 660px) !important;
    font-size: clamp(16px, 4.1vw, 24px) !important;
    gap: clamp(20px, 0vw, 38px) !important;
  }
}

/* Ipad Mini Landscape only: lift key section heading sizes slightly */
@media (min-width: 900px) and (max-width: 1138px) and (max-height: 780px) and (orientation: landscape) {
  .proof-grid {
    row-gap: 5px !important;
  }
}

/* IPad mini Landscape only: lift key section heading sizes slightly */
@media (min-width: 900px) and (max-width: 1138px) and (max-height: 780px) and (orientation: landscape) {
  .metrics-row article {
    padding: 16px 12px !important;
  }
}

@media (min-width: 1000px) and (max-width: 1180px) and (orientation: portrait) {
  main > section > .container {
    width: min(100% - 56px, 800px) !important;
  }

  .hero-media {    
    height: min(96vw, 768px) !important;
  }
  
  .hero-copy {
    max-width: 680px !important;
    margin-inline: auto !important;
    text-align: center !important;
    padding-top: 16px !important;
  }

  .hero h1 {
    max-width: none !important;
    font-size: clamp(42px, 6.4vw, 58px) !important;
  }

  .hero h1 span,
  .eyebrow-large span {
    display: inline !important;
    margin: 0 6px !important;
  }

  .eyebrow-large {
    max-width: none !important;
    font-size: clamp(22px, 3.4vw, 30px) !important;
    margin: 25px 0 !important;
  }

  .hero-copy p:not(.eyebrow-large) {
    max-width: none !important;
    margin-bottom: 35px !important;
  }

  .hero .btn-primary {
    width: auto !important;
    max-width: none !important;
    min-width: 260px !important;
    display: inline-flex !important;
  }

  .hero-video-ipad-portrait {
    object-fit: cover !important;
    object-position: center center !important;
  }

  /* .vs-badge::before,
  .vs-badge::after {
    width: 1px !important;
    height: 34px !important;
    left: 50% !important;
    right: auto !important;
    top: auto !important;
    transform: translateX(-50%) !important;
  }

  .vs-badge::before {
    bottom: calc(100% + 5px) !important;
    top: auto !important;
  }

  .vs-badge::after {
    top: calc(100% + 5px) !important;
    bottom: auto !important;
  } */

  .vs-badge::before,
  .vs-badge::after {
    top: 50% !important;
    bottom: auto !important;
    width: calc(50vw - 66px) !important;
    height: 1px !important;
    background: #cdd4de !important;
    transform: none !important;
    z-index: -1 !important;
  }

  .vs-badge::before {
    left: auto !important;
    right: 115% !important;
  }

  .vs-badge::after {
    left: 115% !important;
    right: auto !important;
  }

  .focus-bar {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    padding: 0 !important;
    background: transparent !important;
    min-height: 0 !important;
  }

  .focus-bar span {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 52px !important;
    padding: 12px 16px !important;
    border-radius: 10px !important;
    background: linear-gradient(90deg, #091325, #211e3a) !important;
    color: #fff !important;
  }

  .focus-bar span::before {
    content: "" !important;
    left: 12px !important;
    width: 5px !important;
    height: 5px !important;
    border-radius: 50% !important;
    background: var(--aqua) !important;
    color: transparent !important;
  }

  .recovery-grid {
    grid-template-columns: 1fr !important;
    grid-template-areas: "copy" "flow" "legend" !important;
  }

  .recovery-flow {
    grid-template-columns: 1fr 28px 1fr 28px 1fr 28px 1fr !important;
    gap: 10px !important;
    margin-top: 10px;
  }

  .recovery-flow article {
    min-height: 148px !important;
    padding: 14px 10px !important;
  }
  
  .recovery-flow .flow-arrow,
  .flow-arrow {
    display: block !important;
    transform: none !important;
  }
}