:root {
  --navy: #071827;
  --navy-2: #0c2238;
  --background: #071827;
  --background-edge: #071827;
  --ink: #1b242c;
  --cream: #efeae0;
  --bone: #f5f1e8;
  --white: #f5f1e8;
  --blue: #0c2238;
  --mid-blue: #4e89ab;
  --yellow: #ffd400;
  --line: rgba(7, 24, 39, 0.1);
  --line-light: rgba(239, 234, 224, 0.13);
  --grid-opacity: 0.2;
  --grid-unit: 44px;
  --grid-half: 22px;
  --ease: cubic-bezier(0.62, 0, 0.18, 1);
  --page-pad: clamp(22px, 5vw, 88px);
  --section-pad: clamp(82px, 8.5vw, 124px);
  --max: 1232px;
  --section-inline: max(var(--page-pad), calc((100vw - var(--max)) / 2));
  --section-title-size: clamp(3rem, 4.8vw, 5.2rem);
  --muted-on-dark: rgba(239, 234, 224, 0.76);
  --muted-on-dark-strong: rgba(239, 234, 224, 0.84);
  --muted-on-light: rgba(12, 34, 56, 0.74);
  --muted-on-light-strong: rgba(12, 34, 56, 0.82);
  --highlight-blue: rgba(78, 137, 171, 0.34);
  --font-head: "Geist", Inter, Arial, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--background-edge);
  color: var(--cream);
  font-family: var(--font-body);
}

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

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

a:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 5px;
}

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

h1,
h2,
h3 {
  font-family: var(--font-head);
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3.2rem, 7.5vw, 7.1rem);
  line-height: 0.94;
  font-weight: 800;
}

h2 {
  font-size: clamp(2.35rem, 5.15vw, 5.9rem);
  line-height: 0.98;
  font-weight: 800;
}

#proof-title,
#investment-title,
#board-title,
#contact-title,
#regulatory-title {
  font-size: var(--section-title-size);
  line-height: 0.98;
}

h3 {
  font-size: clamp(1.12rem, 1.55vw, 1.45rem);
  line-height: 1.14;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: var(--grid-half) var(--section-inline);
  border-bottom: 1px solid rgba(7, 24, 39, 0.1);
  background: rgba(239, 234, 224, 0.94);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: min(246px, 54vw);
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 26px);
  color: rgba(27, 36, 44, 0.72);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 800;
}

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

.menu-toggle {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(7, 24, 39, 0.14);
  background: rgba(245, 241, 232, 0.72);
  color: var(--navy);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: currentColor;
  transition:
    transform 0.24s var(--ease),
    opacity 0.24s var(--ease),
    top 0.24s var(--ease);
}

.menu-toggle span:nth-child(1) {
  top: 15px;
}

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

.menu-toggle span:nth-child(3) {
  top: 31px;
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  top: 23px;
  transform: rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  top: 23px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  --grid-opacity: 0.16;
  min-height: calc(92vh - 84px);
  min-height: calc(92svh - 84px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(66px, 6vw, 88px) var(--section-inline);
  background:
    radial-gradient(circle at 70% 38%, rgba(78, 137, 171, 0.34), transparent 32%),
    radial-gradient(circle at 22% 20%, rgba(78, 137, 171, 0.22), transparent 36%),
    linear-gradient(135deg, #123a5a 0%, #1f648e 48%, #0c2238 100%);
  background-size: auto;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(7, 24, 39, 0.58) 0%, rgba(12, 34, 56, 0.32) 42%, rgba(12, 34, 56, 0.04) 70%, transparent 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 212, 0, 0.18), transparent);
  opacity: 0;
  transform: translateX(-100%);
  animation: heroScan 9400ms var(--ease) infinite;
}

.hero-copy {
  position: relative;
  z-index: 5;
  width: min(700px, 49vw);
  max-width: 720px;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--yellow);
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-copy > p:not(.eyebrow),
.proof-band p,
.investment-intro,
.copy-stack,
.contact-section p {
  color: var(--muted-on-dark);
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  line-height: 1.65;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 26px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 66px;
  margin-top: 34px;
  padding: 0 42px;
  overflow: hidden;
  border: 1px solid rgba(255, 212, 0, 0.34);
  background:
    linear-gradient(90deg, rgba(255, 212, 0, 0.28), rgba(255, 212, 0, 0.08)),
    rgba(12, 34, 56, 0.78);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
  isolation: isolate;
  transition: border-color 0.26s ease-out, background 0.26s ease-out, color 0.26s ease-out, transform 0.26s ease-out;
}

.button span {
  position: relative;
  z-index: 2;
}

.button::before,
.button::after {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: -1;
  pointer-events: none;
  opacity: 0.72;
  transition: opacity 0.26s ease-out, transform 0.26s ease-out, background-size 0.26s ease-out;
}

.button::before {
  background:
    linear-gradient(var(--yellow), var(--yellow)) left top / 30px 5px no-repeat,
    linear-gradient(var(--yellow), var(--yellow)) left top / 5px 30px no-repeat,
    linear-gradient(var(--yellow), var(--yellow)) right bottom / 30px 5px no-repeat,
    linear-gradient(var(--yellow), var(--yellow)) right bottom / 5px 30px no-repeat;
}

.button::after {
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 212, 0, 0.26), transparent);
  opacity: 0;
  transform: translateX(-110%);
}

.button.primary::after {
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.36), transparent),
    linear-gradient(var(--blue), var(--blue)) right 25px center / 18px 3px no-repeat,
    linear-gradient(45deg, transparent 45%, var(--blue) 46% 58%, transparent 59%) right 19px center / 14px 14px no-repeat;
}

.button:hover,
.button:focus-visible,
.button.is-touch-active {
  border-color: rgba(255, 212, 0, 0.92);
  background:
    linear-gradient(90deg, rgba(255, 212, 0, 0.38), rgba(255, 212, 0, 0.12)),
    rgba(12, 34, 56, 0.92);
  transform: translateY(-4px);
}

.button:hover::before,
.button:focus-visible::before,
.button.is-touch-active::before {
  opacity: 1;
  transform: scale(1.06);
  background:
    linear-gradient(var(--yellow), var(--yellow)) left top / 30px 5px no-repeat,
    linear-gradient(var(--yellow), var(--yellow)) left top / 5px 30px no-repeat,
    linear-gradient(var(--yellow), var(--yellow)) right bottom / 30px 5px no-repeat,
    linear-gradient(var(--yellow), var(--yellow)) right bottom / 5px 30px no-repeat;
}

.button:hover::after,
.button:focus-visible::after,
.button.is-touch-active::after {
  animation: buttonSweep 720ms var(--ease) 1;
}

.button.primary {
  min-width: 218px;
  border-color: rgba(255, 212, 0, 0.96);
  background:
    linear-gradient(135deg, #ffe15a, var(--yellow) 48%, #e7b900);
  color: var(--blue);
  box-shadow:
    0 22px 46px rgba(0, 7, 13, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.button.primary.corner-cta {
  overflow: visible;
}

.button.corner-cta {
  overflow: visible;
}

.button.corner-cta::after {
  display: none;
}

.button.primary::before {
  background:
    linear-gradient(var(--blue), var(--blue)) left top / 30px 5px no-repeat,
    linear-gradient(var(--blue), var(--blue)) left top / 5px 30px no-repeat,
    linear-gradient(var(--blue), var(--blue)) right bottom / 30px 5px no-repeat,
    linear-gradient(var(--blue), var(--blue)) right bottom / 5px 30px no-repeat;
  opacity: 0.62;
}

.button.primary:hover,
.button.primary:focus-visible,
.button.primary.is-touch-active {
  border-color: rgba(255, 212, 0, 1);
  background:
    linear-gradient(135deg, #fff0a0, var(--yellow) 44%, #f2bf00);
  color: var(--blue);
  box-shadow:
    0 24px 52px rgba(0, 7, 13, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.34) inset,
    0 0 20px rgba(255, 212, 0, 0.16);
}

.button.primary:hover::before,
.button.primary:focus-visible::before,
.button.primary.is-touch-active::before {
  background:
    linear-gradient(var(--blue), var(--blue)) left top / 34px 5px no-repeat,
    linear-gradient(var(--blue), var(--blue)) left top / 5px 34px no-repeat,
    linear-gradient(var(--blue), var(--blue)) right bottom / 34px 5px no-repeat,
    linear-gradient(var(--blue), var(--blue)) right bottom / 5px 34px no-repeat;
}

.button-corner {
  position: absolute;
  right: -20px;
  top: -20px;
  width: 42px;
  aspect-ratio: 1;
  background:
    linear-gradient(var(--yellow), var(--yellow)) right top / 100% 9px no-repeat,
    linear-gradient(var(--yellow), var(--yellow)) right top / 9px 100% no-repeat;
  filter: drop-shadow(0 10px 16px rgba(255, 212, 0, 0.16));
  pointer-events: none;
  transition:
    opacity 0.26s var(--ease),
    transform 0.26s var(--ease);
}

.button.corner-cta:hover .button-corner,
.button.corner-cta:focus-visible .button-corner,
.button.corner-cta.is-touch-active .button-corner {
  transform: translate(5px, -5px);
}

.hero-system {
  position: absolute;
  z-index: 1;
  right: clamp(20px, 4vw, 86px);
  top: 50%;
  width: min(62vw, 860px);
  aspect-ratio: 1;
  transform: translateY(-50%);
  opacity: 0.9;
}

#motionSystem {
  width: 100%;
  height: 100%;
  display: block;
}

.background {
  fill: transparent;
}

.minor-grid {
  fill: url("#grid");
  opacity: 0;
}

.major-grid {
  fill: url("#majorGrid");
  opacity: 0;
}

.grid-line,
.major-line,
.system-guides line,
.system-guides rect {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.grid-line {
  stroke: rgba(169, 190, 205, 0.18);
  stroke-width: 1;
}

.major-line {
  stroke: rgba(169, 190, 205, 0.27);
  stroke-width: 1;
}

.system-guides {
  stroke: rgba(169, 190, 205, 0.16);
  stroke-width: 1.2;
}

.focus-echo {
  display: none;
}

.guide-blue {
  stroke: rgba(104, 141, 166, 0.23);
}

.cornerstone {
  fill: var(--yellow);
  filter: url("#yellowDepth");
  shape-rendering: crispEdges;
}

.cornerstone-shadow {
  fill: rgba(255, 212, 0, 0.09);
  shape-rendering: crispEdges;
}

.positioning-section {
  --position-grid: var(--grid-unit);
  --position-grid-width: calc(var(--position-grid) * 28);
  --position-grid-height: calc(var(--position-grid) * 14);
  --position-grid-shift: 0px;
  --position-grid-shift-y: 0px;
  --position-max-columns: 28;
  --position-min-columns: 12;
  position: relative;
  display: block;
  padding: var(--section-pad) var(--section-inline);
  background:
    linear-gradient(rgba(7, 24, 39, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 24, 39, 0.055) 1px, transparent 1px),
    var(--cream);
  background-size: var(--position-grid) var(--position-grid), var(--position-grid) var(--position-grid), auto;
  background-position: left top;
  color: var(--blue);
  overflow: hidden;
}

.positioning-copy {
  position: relative;
  z-index: 1;
  width: min(100%, var(--position-grid-width));
  max-width: calc(var(--position-grid) * 28);
  margin: 0 auto;
  transform: translate3d(var(--position-grid-shift), var(--position-grid-shift-y), 0);
}

.positioning-copy h2 {
  max-width: min(100%, 18ch);
  color: var(--navy-2);
  font-size: clamp(3rem, 4.2vw, 5.1rem);
  text-wrap: balance;
}

.positioning-copy h2 span {
  display: block;
}

.statement-frame {
  position: relative;
  box-sizing: border-box;
  display: grid;
  align-content: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  height: var(--position-grid-height);
  min-height: var(--position-grid-height);
  padding:
    calc(var(--position-grid) * 3)
    calc(var(--position-grid) * 4)
    calc(var(--position-grid) * 3);
}

.frame-corner {
  position: absolute;
  z-index: 0;
  width: var(--position-grid);
  height: var(--position-grid);
  background: var(--yellow);
  box-shadow:
    var(--position-grid) 0 0 var(--yellow),
    calc(var(--position-grid) * 2) 0 0 var(--yellow),
    0 var(--position-grid) 0 var(--yellow),
    0 calc(var(--position-grid) * 2) 0 var(--yellow);
  filter: drop-shadow(0 14px 18px rgba(255, 212, 0, 0.12));
  pointer-events: none;
}

.frame-tl {
  left: 0;
  top: 0;
  transform: none;
}

.frame-br {
  left: calc(var(--position-grid-width) - var(--position-grid));
  top: calc(var(--position-grid-height) - var(--position-grid));
  right: auto;
  bottom: auto;
  box-shadow:
    calc(var(--position-grid) * -1) 0 0 var(--yellow),
    calc(var(--position-grid) * -2) 0 0 var(--yellow),
    0 calc(var(--position-grid) * -1) 0 var(--yellow),
    0 calc(var(--position-grid) * -2) 0 var(--yellow);
  transform: none;
  opacity: 0.9;
}

.statement-frame h2,
.statement-frame p {
  position: relative;
  z-index: 2;
  justify-self: start;
}

.statement-frame p {
  max-width: min(100%, 42ch);
  margin: calc(var(--position-grid) * 0.65) 0 0;
  color: var(--muted-on-light);
  font-size: clamp(1.35rem, 1.55vw, 1.72rem);
  font-weight: 700;
  line-height: 1.22;
  text-wrap: balance;
}

.proof-band {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 66vh;
  overflow: hidden;
  padding: var(--section-pad) var(--section-inline);
  text-align: center;
  background:
    radial-gradient(circle at 72% 24%, rgba(78, 137, 171, 0.12), transparent 30%),
    radial-gradient(circle at 18% 76%, rgba(255, 212, 0, 0.045), transparent 28%),
    linear-gradient(135deg, var(--navy-2), var(--navy));
  background-size: auto;
}

.proof-inner,
.proof-motion {
  position: relative;
  z-index: 1;
}

.proof-inner {
  width: min(1232px, 100%);
}

.proof-band h2 {
  max-width: 900px;
  margin: 0 auto;
}

.proof-band p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px auto 0;
}

.about-proof {
  place-items: stretch;
  text-align: left;
}

.about-proof .proof-inner {
  margin: 0 auto;
}

.about-proof h2 {
  position: relative;
  z-index: 1;
  max-width: none;
  margin: 0;
  white-space: nowrap;
}

.about-columns {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--grid-half);
  margin-top: var(--grid-unit);
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.about-columns article {
  position: relative;
  min-height: 260px;
  padding: var(--grid-unit) 32px;
  border: 1px solid rgba(78, 137, 171, 0.22);
  background:
    linear-gradient(90deg, rgba(78, 137, 171, 0.1), rgba(12, 34, 56, 0.2)),
    rgba(12, 34, 56, 0.24);
  overflow: hidden;
  transform: translateY(0);
  transition:
    background 0.28s var(--ease),
    box-shadow 0.28s var(--ease),
    transform 0.28s var(--ease);
}

.about-columns article:last-child {
  border-right: 1px solid rgba(78, 137, 171, 0.22);
}

.about-columns article::before {
  content: "";
  position: absolute;
  left: 32px;
  top: 0;
  width: 32px;
  height: 3px;
  background: var(--yellow);
  opacity: 0.7;
  transition:
    opacity 0.28s var(--ease),
    width 0.28s var(--ease);
}

.about-columns article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(78, 137, 171, 0.16), transparent);
  opacity: 0;
  transform: translateX(-120%);
  pointer-events: none;
}

.about-columns article:hover,
.about-columns article:focus-within,
.about-columns article.is-touch-active {
  background: rgba(78, 137, 171, 0.13);
  box-shadow: 0 18px 46px rgba(7, 24, 39, 0.16) inset;
  transform: translateY(-4px);
}

.about-columns article:hover::before,
.about-columns article:focus-within::before,
.about-columns article.is-touch-active::before {
  width: 64px;
  opacity: 1;
}

.about-columns article:hover::after,
.about-columns article:focus-within::after,
.about-columns article.is-touch-active::after {
  animation: aboutSweep 900ms var(--ease) both;
}

.about-columns p {
  position: relative;
  z-index: 1;
  max-width: none;
  margin: 16px 0 0;
  color: var(--muted-on-dark);
  font-size: clamp(0.96rem, 1vw, 1.04rem);
  line-height: 1.62;
  transition: color 0.28s var(--ease);
}

.about-columns h3 {
  position: relative;
  z-index: 1;
  max-width: 210px;
  color: var(--cream);
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  line-height: 1.12;
}

.about-columns article:hover p,
.about-columns article:focus-within p,
.about-columns article.is-touch-active p {
  color: var(--muted-on-dark-strong);
}

.about-columns article:hover h3,
.about-columns article:focus-within h3,
.about-columns article.is-touch-active h3 {
  color: var(--yellow);
}

.about-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-half);
  margin-top: calc(var(--grid-unit) * 1.35);
  border: 0;
  background: transparent;
}

.about-stat-grid article {
  position: relative;
  padding: 32px;
  border: 1px solid rgba(78, 137, 171, 0.2);
  background:
    linear-gradient(90deg, rgba(78, 137, 171, 0.16), rgba(78, 137, 171, 0.06)),
    rgba(12, 34, 56, 0.38);
  overflow: hidden;
  transform: translateY(0);
  transition:
    background 0.28s var(--ease),
    transform 0.28s var(--ease),
    box-shadow 0.28s var(--ease);
}

.about-stat-grid article:last-child {
  border-right: 1px solid rgba(78, 137, 171, 0.2);
}

.about-stat-grid article::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 24px;
  width: 34px;
  aspect-ratio: 1;
  border-top: 4px solid rgba(255, 212, 0, 0.46);
  border-right: 4px solid rgba(255, 212, 0, 0.46);
  transition:
    border-color 0.28s var(--ease),
    opacity 0.28s var(--ease),
    transform 0.28s var(--ease);
}

.about-stat-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 20%, rgba(78, 137, 171, 0.16), transparent 34%);
  opacity: 0;
  transition: opacity 0.28s var(--ease);
}

.about-stat-grid article:hover,
.about-stat-grid article:focus-within,
.about-stat-grid article.is-touch-active {
  background: rgba(78, 137, 171, 0.1);
  box-shadow: 0 18px 46px rgba(7, 24, 39, 0.12) inset;
  transform: translateY(-5px);
}

.about-stat-grid article:hover::before,
.about-stat-grid article:focus-within::before,
.about-stat-grid article.is-touch-active::before {
  opacity: 1;
}

.about-stat-grid article:hover::after,
.about-stat-grid article:focus-within::after,
.about-stat-grid article.is-touch-active::after {
  border-color: var(--yellow);
  opacity: 1;
  transform: translate(6px, -6px);
}

.about-stat-grid strong {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--yellow);
  font-family: var(--font-head);
  font-size: clamp(3rem, 5.6vw, 5.6rem);
  line-height: 0.92;
  font-weight: 800;
}

.about-stat-grid strong small {
  color: rgba(255, 212, 0, 0.86);
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.about-stat-grid span {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 10px;
  color: rgba(239, 234, 224, 0.8);
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 800;
  line-height: 1.25;
}

.proof-motion {
  position: absolute;
  inset: clamp(38px, 6vw, 84px) clamp(28px, 9vw, 150px);
  z-index: 0;
  pointer-events: none;
}

.proof-motion::before {
  content: none;
}

.proof-corner {
  position: absolute;
  width: clamp(54px, 7vw, 92px);
  aspect-ratio: 1;
  background:
    linear-gradient(var(--yellow), var(--yellow)) left top / 100% 33.333% no-repeat,
    linear-gradient(var(--yellow), var(--yellow)) left top / 33.333% 100% no-repeat;
  opacity: 0;
  filter: drop-shadow(0 14px 22px rgba(255, 212, 0, 0.08));
  animation: proofFrame 5200ms var(--ease) infinite;
}

.pc-a {
  left: 0;
  top: 0;
}

.pc-b {
  right: 0;
  top: 0;
  transform: rotate(90deg);
  animation-name: proofFrameB;
}

.pc-c {
  right: 0;
  bottom: 0;
  transform: rotate(180deg);
  animation-name: proofFrameC;
}

.pc-d {
  left: 0;
  bottom: 0;
  transform: rotate(270deg);
  animation-name: proofFrameD;
}

.proof-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(239, 234, 224, 0.14);
  background: rgba(239, 234, 224, 0.1);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.proof-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 212, 0, 0.11), transparent);
  transform: translateX(-110%);
  animation: moduleSweep 5200ms var(--ease) infinite;
}

.proof-strip span {
  position: relative;
  min-height: 112px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 22px 28px;
  border-right: 1px solid rgba(7, 24, 39, 0.22);
  color: var(--muted-on-dark-strong);
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.22;
  text-align: left;
}

.proof-strip span:last-child {
  border-right: 0;
}

.proof-strip strong {
  color: var(--yellow);
  font-family: var(--font-head);
  font-size: clamp(2.3rem, 4.4vw, 4.2rem);
  line-height: 0.95;
}

.investment-section {
  padding: var(--section-pad) var(--section-inline);
  background:
    radial-gradient(circle at 82% 16%, var(--highlight-blue), transparent 32%),
    radial-gradient(circle at 16% 78%, rgba(78, 137, 171, 0.18), transparent 28%),
    linear-gradient(135deg, #0f3f60 0%, #194f72 42%, var(--blue) 100%);
  background-size: auto;
  color: var(--cream);
}

.section-heading {
  max-width: var(--max);
  margin: 0 auto;
}

.investment-section .section-heading {
  max-width: var(--max);
  display: grid;
  grid-template-columns: 1fr;
  justify-items: start;
  gap: 16px;
  padding-bottom: 0;
  text-align: left;
}

.investment-section h2 {
  color: var(--cream);
  font-size: var(--section-title-size);
}

.risk-line {
  max-width: var(--max);
  margin: calc(var(--grid-half) * 0.85) auto 0;
  padding: 14px 18px 14px 20px;
  border-left: 3px solid rgba(255, 212, 0, 0.58);
  background: rgba(7, 24, 39, 0.22);
  color: var(--muted-on-dark-strong);
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.5;
}

.strong-risk {
  border-left-color: var(--yellow);
  background: rgba(7, 24, 39, 0.32);
}

.subheading {
  margin-top: 8px;
  color: var(--yellow);
  font-size: clamp(1.08rem, 1.7vw, 1.55rem);
  font-weight: 800;
  line-height: 1.2;
}

.investment-intro {
  max-width: calc(var(--grid-unit) * 18);
  margin: 0;
  text-align: left;
  color: var(--muted-on-dark);
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  line-height: 1.58;
}

.figure-grid {
  max-width: var(--max);
  margin: calc(var(--grid-unit) * 0.85) auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
  gap: var(--grid-half);
  padding: var(--grid-half);
  border: 1px solid rgba(239, 234, 224, 0.14);
  background: rgba(7, 24, 39, 0.1);
  box-shadow: 0 28px 82px rgba(7, 24, 39, 0.18);
}

.figure-card {
  position: relative;
  min-height: calc(var(--grid-unit) * 7);
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 34px var(--grid-half);
  background:
    radial-gradient(circle at 86% 12%, rgba(78, 137, 171, 0.28), transparent 30%),
    linear-gradient(135deg, rgba(26, 82, 124, 0.92), rgba(15, 58, 92, 0.91));
  border: 1px solid rgba(239, 234, 224, 0.12);
  overflow: hidden;
  isolation: isolate;
  transform: translateY(0);
  transition:
    transform 0.34s var(--ease),
    border-color 0.34s var(--ease),
    box-shadow 0.34s var(--ease),
    background 0.34s var(--ease);
}

.figure-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, transparent, rgba(255, 212, 0, 0.09), transparent),
    radial-gradient(circle at 86% 16%, rgba(78, 137, 171, 0.2), transparent 24%);
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 0.32s ease-out;
  animation: cardSignal 7800ms var(--ease) infinite;
  animation-delay: var(--signal-delay, 0ms);
}

.figure-card:nth-child(2)::before {
  --signal-delay: 900ms;
}

.figure-card:nth-child(3)::before {
  --signal-delay: 1800ms;
}

.figure-card::after {
  content: "";
  position: absolute;
  right: var(--grid-half);
  top: var(--grid-half);
  width: var(--grid-unit);
  aspect-ratio: 1;
  background: rgba(255, 212, 0, 0.34);
  box-shadow:
    var(--grid-unit) 0 0 rgba(255, 212, 0, 0.34),
    0 var(--grid-unit) 0 rgba(255, 212, 0, 0.34);
  opacity: 0.28;
  transition:
    opacity 0.34s var(--ease),
    transform 0.34s var(--ease),
    background 0.34s var(--ease),
    box-shadow 0.34s var(--ease);
}

.figure-card:hover,
.figure-card:focus-within,
.figure-card.is-touch-active {
  transform: translateY(-8px);
  border-color: rgba(255, 212, 0, 0.38);
  background:
    radial-gradient(circle at 82% 12%, rgba(78, 137, 171, 0.42), transparent 30%),
    linear-gradient(135deg, rgba(26, 84, 126, 0.96), rgba(13, 45, 72, 0.95));
  box-shadow:
    0 24px 54px rgba(7, 24, 39, 0.22),
    0 0 0 1px rgba(255, 212, 0, 0.08) inset;
}

.figure-card:hover::before,
.figure-card:focus-within::before,
.figure-card.is-touch-active::before {
  opacity: 1;
  animation: cardHoverSignal 980ms var(--ease) both;
}

.figure-card:hover::after,
.figure-card:focus-within::after,
.figure-card.is-touch-active::after {
  opacity: 0.66;
  background: var(--yellow);
  box-shadow:
    var(--grid-unit) 0 0 var(--yellow),
    0 var(--grid-unit) 0 var(--yellow);
  transform: translate(calc(var(--grid-half) * 0.5), calc(var(--grid-half) * -0.5));
}

.figure-card strong,
.figure-card h3,
.figure-card p {
  transition:
    color 0.34s var(--ease),
    transform 0.34s var(--ease);
}

.figure-card:hover strong,
.figure-card:focus-within strong,
.figure-card.is-touch-active strong {
  transform: translateY(-2px);
}

.figure-card:hover p,
.figure-card:focus-within p,
.figure-card.is-touch-active p {
  color: var(--muted-on-dark-strong);
}

.figure-card strong {
  color: var(--yellow);
  font-family: var(--font-head);
  font-size: clamp(2.75rem, 5vw, 4.9rem);
  line-height: 0.94;
  font-weight: 800;
}

.figure-card h3 {
  max-width: 300px;
  color: var(--cream);
  font-size: clamp(1.1rem, 1.35vw, 1.32rem);
}

.figure-card p {
  color: var(--muted-on-dark);
  font-size: 0.92rem;
  line-height: 1.5;
}

.market-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(239, 234, 224, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239, 234, 224, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 18% 14%, rgba(255, 212, 0, 0.08), transparent 22%),
    radial-gradient(circle at 84% 78%, rgba(78, 137, 171, 0.14), transparent 34%),
    linear-gradient(135deg, #061321 0%, #071827 42%, #0a2034 100%);
  background-size: 56px 56px, 56px 56px, auto, auto, auto;
}

.market-section .figure-grid {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.market-section .figure-card {
  min-height: calc(var(--grid-unit) * 6);
  padding: clamp(28px, 3vw, 42px);
  border-color: rgba(78, 137, 171, 0.28);
  background:
    linear-gradient(rgba(239, 234, 224, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239, 234, 224, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(12, 34, 56, 0.9), rgba(6, 19, 33, 0.98));
  background-size: 28px 28px, 28px 28px, auto;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.market-section .figure-card::before {
  background:
    linear-gradient(var(--yellow), var(--yellow)) left top / 46px 8px no-repeat,
    linear-gradient(var(--yellow), var(--yellow)) left top / 8px 46px no-repeat;
  opacity: 0.68;
  transform: none;
  animation: none;
}

.market-section .figure-card::after {
  display: none;
}

.market-section .figure-card:hover,
.market-section .figure-card:focus-within,
.market-section .figure-card.is-touch-active {
  border-color: rgba(255, 212, 0, 0.44);
  background:
    linear-gradient(rgba(239, 234, 224, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239, 234, 224, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(14, 44, 70, 0.98), rgba(6, 19, 33, 0.98));
}

.market-section .figure-card h3 {
  max-width: none;
  padding-top: 42px;
  color: var(--yellow);
  font-size: clamp(1.25rem, 1.65vw, 1.65rem);
}

.market-section .figure-card p {
  color: rgba(239, 234, 224, 0.78);
  font-size: 0.96rem;
  line-height: 1.64;
}

.board-section .eyebrow {
  color: var(--blue);
}

.copy-stack {
  display: grid;
  gap: 20px;
  margin-top: 28px;
  color: var(--muted-on-light);
}

.board-section {
  padding: var(--section-pad) var(--section-inline);
  background:
    radial-gradient(circle at 18% 12%, rgba(78, 137, 171, 0.2), transparent 28%),
    linear-gradient(rgba(7, 24, 39, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 24, 39, 0.045) 1px, transparent 1px),
    var(--bone);
  background-size: auto, 56px 56px, 56px 56px, auto;
  color: var(--blue);
}

.board-heading {
  display: block;
}

.board-intro {
  max-width: 760px;
  margin-top: 22px;
  color: var(--muted-on-light);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  font-weight: 700;
  line-height: 1.5;
}

.team-flow {
  max-width: var(--max);
  margin: clamp(30px, 4vw, 48px) auto 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: var(--grid-half);
  align-items: stretch;
}

.team-actions {
  max-width: var(--max);
  margin: var(--grid-unit) auto 0;
  display: flex;
  justify-content: center;
}

.board-section .team-card p:not(.role) {
  display: none;
}

.team-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(18, 58, 90, 0.96), rgba(12, 34, 56, 0.98)),
    var(--blue);
  color: var(--cream);
  border: 1px solid rgba(78, 137, 171, 0.24);
  box-shadow: 0 22px 60px rgba(7, 24, 39, 0.12);
  transition: transform 0.24s ease-out, border-color 0.24s ease-out, box-shadow 0.24s ease-out;
  isolation: isolate;
}

.team-card:hover,
.team-card.is-touch-active {
  transform: translateY(-9px);
  border-color: rgba(255, 212, 0, 0.62);
  box-shadow: 0 34px 78px rgba(7, 24, 39, 0.15);
}

.team-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 3;
  background:
    linear-gradient(var(--yellow), var(--yellow)) left top / 48px 10px no-repeat,
    linear-gradient(var(--yellow), var(--yellow)) left top / 10px 48px no-repeat,
    linear-gradient(var(--yellow), var(--yellow)) right bottom / 48px 10px no-repeat,
    linear-gradient(var(--yellow), var(--yellow)) right bottom / 10px 48px no-repeat;
  opacity: 0.16;
  pointer-events: none;
  transition: opacity 0.24s ease-out, transform 0.24s ease-out;
}

.team-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(115deg, transparent 0 36%, rgba(255, 212, 0, 0.22) 48%, transparent 62%),
    repeating-linear-gradient(135deg, transparent 0 12px, rgba(29, 53, 110, 0.06) 12px 13px);
  opacity: 0;
  transform: translateX(-62%);
  pointer-events: none;
}

.team-card:hover::before,
.team-card:focus-within::before,
.team-card.is-visible::before,
.team-card.is-touch-active::before {
  opacity: 1;
  transform: scale(1.07);
  background:
    linear-gradient(var(--yellow), var(--yellow)) left top / 72px 12px no-repeat,
    linear-gradient(var(--yellow), var(--yellow)) left top / 12px 72px no-repeat,
    linear-gradient(var(--yellow), var(--yellow)) right bottom / 72px 12px no-repeat,
    linear-gradient(var(--yellow), var(--yellow)) right bottom / 12px 72px no-repeat;
}

.team-card:hover::after,
.team-card:focus-within::after,
.team-card.is-visible::after,
.team-card.is-touch-active::after {
  animation: teamSweep 820ms var(--ease) 1;
}

.team-card img {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: cover;
  filter: grayscale(1) saturate(0.68) sepia(0.12) hue-rotate(165deg) brightness(0.9);
  transform: scale(1.01) translateY(var(--portrait-y, 0));
  transition: filter 0.34s ease-out, transform 0.34s ease-out;
}

.team-card[href*="kyle-tattersall"],
.team-card[href*="marcus-nagle"],
.team-card#kyle-tattersall,
.team-card#marcus-nagle {
  --portrait-y: 7px;
}

.team-card:hover img,
.team-card:focus-within img,
.team-card.is-visible img,
.team-card.is-touch-active img {
  filter: grayscale(0.18) saturate(1.02) sepia(0.08) hue-rotate(175deg);
  transform: scale(1.065) translateY(calc(var(--portrait-y, 0px) - 2px));
}

.team-card > div:not(.team-placeholder) {
  position: relative;
  z-index: 4;
  padding: var(--grid-half);
  background:
    linear-gradient(180deg, rgba(12, 34, 56, 0.72), rgba(7, 24, 39, 0.98)),
    var(--blue);
  transition: transform 0.24s ease-out;
}

.team-card:hover > div:not(.team-placeholder),
.team-card:focus-within > div:not(.team-placeholder),
.team-card.is-visible > div:not(.team-placeholder),
.team-card.is-touch-active > div:not(.team-placeholder) {
  transform: translateY(-4px);
}

.team-card h3 {
  color: var(--cream);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
}

.team-card .role {
  margin-top: 8px;
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 800;
}

.team-card p:not(.role) {
  margin-top: 12px;
  color: rgba(239, 234, 224, 0.68);
  font-size: 0.84rem;
  line-height: 1.48;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}

.team-card .bio-pending {
  color: rgba(239, 234, 224, 0.46);
  font-style: italic;
}

.team-placeholder {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(239, 234, 224, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239, 234, 224, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 50% 42%, rgba(78, 137, 171, 0.18), transparent 34%),
    rgba(12, 34, 56, 0.92);
  background-size: 28px 28px, 28px 28px, auto, auto;
  color: var(--yellow);
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  overflow: hidden;
}

.team-placeholder::before,
.team-placeholder::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.team-placeholder::before {
  inset: 18px;
  border: 1px solid rgba(78, 137, 171, 0.24);
  background:
    linear-gradient(rgba(239, 234, 224, 0.08), rgba(239, 234, 224, 0.08)) center / 1px 100% no-repeat,
    linear-gradient(90deg, rgba(239, 234, 224, 0.08), rgba(239, 234, 224, 0.08)) center / 100% 1px no-repeat;
}

.team-placeholder::after {
  right: 24px;
  top: 24px;
  width: 46px;
  aspect-ratio: 1;
  background:
    linear-gradient(var(--yellow), var(--yellow)) right top / 100% 9px no-repeat,
    linear-gradient(var(--yellow), var(--yellow)) right top / 9px 100% no-repeat;
  opacity: 0.32;
  transition:
    opacity 0.28s var(--ease),
    transform 0.28s var(--ease);
}

.team-card:hover .team-placeholder::after,
.team-card:focus-within .team-placeholder::after,
.team-card.is-touch-active .team-placeholder::after {
  opacity: 0.58;
  transform: translate(5px, -5px);
}

.team-page {
  background: var(--bone);
  color: var(--blue);
}

.team-page-hero {
  padding: clamp(88px, 10vw, 148px) var(--section-inline) clamp(54px, 7vw, 92px);
  background:
    linear-gradient(rgba(7, 24, 39, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 24, 39, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 76% 18%, rgba(78, 137, 171, 0.12), transparent 26%),
    var(--bone);
  background-size: 56px 56px, 56px 56px, auto, auto;
}

.team-page-hero-inner,
.team-section-heading,
.team-directory-grid {
  max-width: var(--max);
  margin: 0 auto;
}

.team-page-hero .eyebrow {
  color: var(--yellow);
}

.team-page-hero h1 {
  max-width: 980px;
  color: var(--blue);
  font-size: var(--section-title-size);
  line-height: 0.94;
}

.team-directory-section {
  padding: clamp(64px, 8vw, 104px) var(--section-inline) var(--section-pad);
  background:
    linear-gradient(rgba(7, 24, 39, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 24, 39, 0.045) 1px, transparent 1px),
    var(--bone);
  background-size: 56px 56px, 56px 56px, auto;
}

.team-directory-section + .team-directory-section {
  padding-top: 0;
}

.team-section-heading {
  margin-bottom: clamp(34px, 4vw, 64px);
}

.team-section-heading .eyebrow {
  color: var(--yellow);
}

.team-section-heading h2 {
  max-width: 880px;
  color: var(--blue);
  font-size: clamp(2.2rem, 4.2vw, 4.6rem);
  line-height: 0.96;
}

.team-directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 2.4vw, 42px);
  align-items: stretch;
}

.team-advisors-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  row-gap: clamp(28px, 2.4vw, 42px);
}

.team-advisors-grid .team-card {
  grid-column: span 2;
}

.team-advisors-grid .team-card:nth-last-child(2) {
  grid-column: 2 / span 2;
}

.team-page .team-card {
  min-height: clamp(340px, 32vw, 450px);
  grid-template-rows: 1fr;
  overflow: visible;
}

.team-page .team-card:hover,
.team-page .team-card:focus-visible,
.team-page .team-card.is-touch-active {
  z-index: 12;
}

.team-page .team-card img,
.team-page .team-placeholder,
.team-page .team-card > div:not(.team-placeholder) {
  grid-area: 1 / 1;
}

.team-page .team-card img,
.team-page .team-placeholder {
  height: 100%;
}

.team-page .team-card > div:not(.team-placeholder) {
  align-self: end;
  max-height: 40%;
  overflow: hidden;
  transition:
    max-height 0.28s var(--ease),
    transform 0.24s ease-out,
    background 0.28s var(--ease);
}

.team-page .team-card:hover > div:not(.team-placeholder),
.team-page .team-card:focus-visible > div:not(.team-placeholder),
.team-page .team-card:focus-within > div:not(.team-placeholder),
.team-page .team-card.is-touch-active > div:not(.team-placeholder) {
  max-height: 100%;
  background:
    linear-gradient(180deg, rgba(12, 34, 56, 0.9), rgba(7, 24, 39, 0.98)),
    var(--blue);
}

.team-page .team-card p:not(.role) {
  display: block;
  max-height: 0;
  margin-top: 0;
  overflow: auto;
  opacity: 0;
  -webkit-line-clamp: unset;
  transition:
    max-height 0.28s var(--ease),
    margin-top 0.28s var(--ease),
    opacity 0.22s ease-out;
}

.team-page .team-card:hover p:not(.role),
.team-page .team-card:focus-visible p:not(.role),
.team-page .team-card:focus-within p:not(.role),
.team-page .team-card.is-touch-active p:not(.role) {
  max-height: 260px;
  margin-top: 12px;
  opacity: 1;
}

.team-page .team-placeholder {
  min-height: 0;
  aspect-ratio: auto;
}

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(340px, 0.58fr);
  gap: clamp(34px, 7vw, 100px);
  align-items: center;
  padding: var(--section-pad) var(--section-inline);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 22%, rgba(255, 212, 0, 0.055), transparent 24%),
    radial-gradient(circle at 16% 18%, rgba(78, 137, 171, 0.12), transparent 28%),
    linear-gradient(135deg, var(--ink) 0%, var(--navy-2) 58%, var(--navy) 100%);
  background-size: auto;
}

.contact-section h2 {
  max-width: 760px;
}

.contact-section .eyebrow {
  color: var(--yellow);
}

.contact-section p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 22px;
}

.contact-links {
  display: grid;
  gap: 8px;
  margin-top: var(--grid-half);
  color: rgba(239, 234, 224, 0.82);
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  font-weight: 700;
}

.contact-links a:hover {
  color: var(--yellow);
}

.contact-map-block {
  display: grid;
  gap: var(--grid-half);
}

.map-panel {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid rgba(239, 234, 224, 0.34);
  background: #f1eee7;
  box-shadow: 0 28px 84px rgba(7, 24, 39, 0.22);
}

.map-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.styled-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: none;
  opacity: 0.76;
  filter: saturate(0.66) contrast(0.88);
}

.map-land {
  fill: #f4f0e8;
}

.map-blocks path {
  fill: #e9e3d8;
  stroke: rgba(7, 24, 39, 0.026);
  stroke-width: 1;
  opacity: 0.72;
}

.map-roads path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.map-roads-minor path {
  stroke: rgba(255, 254, 250, 0.88);
  stroke-width: 20;
  filter: drop-shadow(0 0 1px rgba(7, 24, 39, 0.08));
}

.map-roads-major path {
  stroke: rgba(255, 254, 250, 0.92);
  stroke-width: 28;
  filter: drop-shadow(0 0 1px rgba(7, 24, 39, 0.1));
}

.map-roads-major-core path {
  stroke: rgba(78, 137, 171, 0.24);
  stroke-width: 4;
}

.map-stations circle {
  fill: rgba(78, 137, 171, 0.72);
  stroke: #fffdf4;
  stroke-width: 2;
}

.map-labels text {
  fill: rgba(7, 24, 39, 0.46);
  font-family: var(--font-body);
  font-size: 9.4px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  paint-order: stroke;
  stroke: rgba(244, 240, 232, 0.86);
  stroke-linejoin: round;
  stroke-width: 2.4px;
}

.map-labels .near-office {
  fill: rgba(7, 24, 39, 0.32);
  stroke: rgba(244, 240, 232, 0.9);
  stroke-width: 3px;
}

.map-labels .station-label {
  fill: rgba(7, 24, 39, 0.5);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
  stroke-width: 3px;
}

.map-labels .office-kicker {
  fill: var(--yellow);
  font-size: 11px;
  letter-spacing: 0.12em;
  paint-order: normal;
  stroke: none;
}

.map-labels .office-label {
  fill: var(--navy);
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  paint-order: normal;
  stroke: none;
}

.map-focus-device {
  position: absolute;
  left: 43.6%;
  top: 56.8%;
  z-index: 1;
  width: clamp(68px, 6.5vw, 88px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 14px 22px rgba(255, 212, 0, 0.28));
  pointer-events: none;
  animation: mapFocusBreathe 2.8s var(--ease) infinite;
}

.map-focus-device::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 3px solid rgba(255, 212, 0, 0.68);
  opacity: 0;
  transform: scale(0.72);
  animation: mapFocusPulse 2.8s var(--ease) infinite;
}

.map-focus-device::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  aspect-ratio: 1;
  background: var(--yellow);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(255, 212, 0, 0.68);
  animation: mapFocusDot 2.8s var(--ease) infinite;
}

.map-focus-device span {
  position: absolute;
  width: 28px;
  aspect-ratio: 1;
  border-color: var(--yellow);
  border-style: solid;
  animation: mapFocusCorners 2.8s var(--ease) infinite;
}

.map-focus-device span:nth-child(1) {
  left: 0;
  top: 0;
  border-width: 8px 0 0 8px;
}

.map-focus-device span:nth-child(2) {
  right: 0;
  top: 0;
  border-width: 8px 8px 0 0;
}

.map-focus-device span:nth-child(3) {
  right: 0;
  bottom: 0;
  border-width: 0 8px 8px 0;
}

.map-focus-device span:nth-child(4) {
  left: 0;
  bottom: 0;
  border-width: 0 0 8px 8px;
}

.map-details {
  padding: var(--grid-half);
  border: 1px solid rgba(255, 212, 0, 0.16);
  background: rgba(239, 234, 224, 0.08);
}

.map-details span {
  display: block;
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-details strong {
  display: block;
  color: var(--cream);
  font-family: var(--font-head);
  font-size: 1.3rem;
}

.map-details p,
.map-details a {
  display: block;
  margin-top: 6px;
  color: var(--muted-on-dark);
  font-size: 0.94rem;
  line-height: 1.4;
}

.map-details a:hover {
  color: var(--yellow);
}

.regulatory-section {
  padding: var(--section-pad) var(--section-inline);
  background:
    radial-gradient(circle at 78% 16%, rgba(78, 137, 171, 0.34), transparent 30%),
    radial-gradient(circle at 18% 82%, rgba(78, 137, 171, 0.2), transparent 28%),
    linear-gradient(135deg, #15577e 0%, #1f6f9e 46%, #0f3f60 100%);
  background-size: auto;
}

.regulatory-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.regulatory-section .section-heading {
  max-width: none;
}

.regulatory-section h2 {
  color: var(--cream);
  font-size: var(--section-title-size);
}

.regulatory-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-half);
  margin-top: var(--grid-unit);
}

.regulatory-stack > article {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 14px;
  padding: var(--grid-half);
  border: 1px solid rgba(239, 234, 224, 0.16);
  background: rgba(7, 24, 39, 0.16);
  transform: translateY(0);
  transition:
    border-color 0.3s var(--ease),
    background 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.regulatory-stack > article.is-touch-active,
.regulatory-stack > article:hover,
.regulatory-stack > article:focus-within {
  border-color: rgba(255, 212, 0, 0.28);
  background: rgba(7, 24, 39, 0.24);
  transform: translateY(-4px);
}

.regulatory-stack > article h3 {
  color: var(--yellow);
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.regulatory-stack > article p {
  color: var(--muted-on-dark);
  font-size: 0.86rem;
  line-height: 1.55;
}

.legal-page {
  background: var(--bone);
  color: var(--ink);
}

.legal-hero {
  padding: clamp(74px, 8vw, 118px) var(--section-inline) clamp(38px, 5vw, 70px);
  background:
    linear-gradient(90deg, rgba(255, 212, 0, 0.24), transparent 28%),
    linear-gradient(135deg, var(--cream) 0%, var(--bone) 100%);
}

.legal-hero-inner,
.legal-document {
  width: min(100%, 980px);
}

.legal-hero .eyebrow {
  color: rgba(12, 34, 56, 0.64);
}

.legal-hero h1 {
  margin-top: 16px;
  font-size: clamp(3rem, 6vw, 6.4rem);
  line-height: 0.94;
}

.legal-hero p:not(.eyebrow) {
  margin-top: 22px;
  color: var(--muted-on-light);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  font-weight: 700;
}

.legal-content {
  padding: clamp(42px, 6vw, 86px) var(--section-inline) var(--section-pad);
}

.legal-document {
  display: grid;
  gap: 30px;
  color: rgba(27, 36, 44, 0.86);
  font-size: clamp(0.98rem, 1.12vw, 1.08rem);
  line-height: 1.72;
}

.legal-document section {
  display: grid;
  gap: 14px;
}

.legal-document h2 {
  margin-top: 10px;
  color: var(--navy);
  font-size: clamp(1.55rem, 2.2vw, 2.2rem);
  line-height: 1.05;
}

.legal-document h3 {
  margin-top: 8px;
  color: var(--navy);
}

.legal-document p,
.legal-document ul {
  margin: 0;
}

.legal-document ul {
  display: grid;
  gap: 10px;
  padding-left: 1.2rem;
}

.legal-document li::marker {
  color: var(--yellow);
}

.legal-document a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: var(--grid-unit) var(--section-inline) 0;
  background:
    radial-gradient(circle at 84% 10%, rgba(78, 137, 171, 0.1), transparent 28%),
    linear-gradient(180deg, var(--navy-2), var(--navy));
  color: var(--muted-on-dark);
  font-size: 0.82rem;
  line-height: 1.55;
}

.site-footer::before {
  content: none;
  position: absolute;
  right: clamp(24px, 7vw, 112px);
  top: clamp(34px, 5vw, 68px);
  width: min(150px, 24vw);
  aspect-ratio: 1;
  background:
    linear-gradient(var(--yellow), var(--yellow)) left top / 100% 28% no-repeat,
    linear-gradient(var(--yellow), var(--yellow)) left top / 28% 100% no-repeat;
  opacity: 0.08;
  transform: rotate(180deg);
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  width: min(100%, var(--max));
  margin: 0 auto;
  display: block;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.8fr 1fr;
  gap: var(--grid-unit);
  align-items: start;
}

.footer-columns h3 {
  margin: 0 0 10px;
  color: var(--yellow);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-columns p,
.footer-columns address {
  margin: 0;
  color: rgba(239, 234, 224, 0.68);
  font-style: normal;
}

.footer-columns div {
  display: grid;
  align-content: start;
  gap: 6px;
}

.footer-columns a {
  color: rgba(239, 234, 224, 0.76);
}

.social-link span {
  display: inline-grid;
  place-items: center;
  width: 20px;
  aspect-ratio: 1;
  margin-right: 7px;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 900;
}

.footer-columns a:hover,
.footer-bottom a:hover {
  color: var(--yellow);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  min-height: 44px;
  margin: var(--grid-half) auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-top: 1px solid rgba(239, 234, 224, 0.13);
  color: var(--muted-on-dark);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
}

.footer-bottom a {
  position: absolute;
  right: 0;
  color: var(--yellow);
}

.cookie-bar {
  position: fixed;
  left: var(--grid-half);
  right: var(--grid-half);
  bottom: var(--grid-half);
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: var(--grid-half);
  max-width: 720px;
  margin: 0 auto;
  padding: 22px 24px;
  border: 1px solid rgba(78, 137, 171, 0.24);
  background: rgba(7, 24, 39, 0.96);
  color: rgba(239, 234, 224, 0.82);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.34);
  overflow: visible;
}

.cookie-bar::before,
.cookie-bar::after {
  content: "";
  position: absolute;
  width: 18px;
  aspect-ratio: 1;
  pointer-events: none;
  opacity: 0.2;
}

.cookie-bar::before {
  left: 10px;
  top: 10px;
  background:
    linear-gradient(var(--yellow), var(--yellow)) left top / 100% 4px no-repeat,
    linear-gradient(var(--yellow), var(--yellow)) left top / 4px 100% no-repeat;
}

.cookie-bar::after {
  right: 10px;
  bottom: 10px;
  background:
    linear-gradient(var(--yellow), var(--yellow)) right bottom / 100% 4px no-repeat,
    linear-gradient(var(--yellow), var(--yellow)) right bottom / 4px 100% no-repeat;
}

.cookie-bar.is-visible {
  display: flex;
}

.cookie-bar p {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  font-size: 0.9rem;
  line-height: 1.35;
}

.cookie-more {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  color: rgba(255, 212, 0, 0.86);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.cookie-more:hover,
.cookie-more:focus-visible {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cookie-bar .button {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  min-width: 176px;
  min-height: 54px;
  margin-top: 0;
  padding: 0 34px;
  font-size: 0.92rem;
  cursor: pointer;
}

.cookie-bar .button.primary::before {
  background:
    linear-gradient(var(--blue), var(--blue)) left top / 25px 4px no-repeat,
    linear-gradient(var(--blue), var(--blue)) left top / 4px 25px no-repeat,
    linear-gradient(var(--blue), var(--blue)) right bottom / 25px 4px no-repeat,
    linear-gradient(var(--blue), var(--blue)) right bottom / 4px 25px no-repeat;
}

.cookie-bar .button.primary:hover::before,
.cookie-bar .button.primary:focus-visible::before,
.cookie-bar .button.primary.is-touch-active::before {
  background:
    linear-gradient(var(--blue), var(--blue)) left top / 28px 4px no-repeat,
    linear-gradient(var(--blue), var(--blue)) left top / 4px 28px no-repeat,
    linear-gradient(var(--blue), var(--blue)) right bottom / 28px 4px no-repeat,
    linear-gradient(var(--blue), var(--blue)) right bottom / 4px 28px no-repeat;
}

.cookie-bar .button-corner {
  right: -16px;
  top: -16px;
  width: 34px;
  background:
    linear-gradient(var(--yellow), var(--yellow)) right top / 100% 7px no-repeat,
    linear-gradient(var(--yellow), var(--yellow)) right top / 7px 100% no-repeat;
}

.investor-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  place-items: center;
  padding: var(--page-pad);
  background: rgba(7, 24, 39, 0.78);
  backdrop-filter: blur(12px);
}

.investor-modal.is-visible {
  display: grid;
}

.investor-card {
  width: min(1180px, 100%);
  max-height: min(92vh, 900px);
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid rgba(255, 212, 0, 0.28);
  background: linear-gradient(135deg, var(--navy-2), var(--navy));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
}

.investor-card h2 {
  color: var(--cream);
  font-size: clamp(2rem, 3.5vw, 3.35rem);
}

.investor-notice {
  max-height: 52vh;
  margin-top: var(--grid-half);
  padding: var(--grid-half);
  overflow-x: hidden;
  overflow-y: auto;
  border: 1px solid rgba(78, 137, 171, 0.22);
  background: rgba(7, 24, 39, 0.22);
  overscroll-behavior: contain;
}

.investor-notice p,
.investor-notice li {
  color: rgba(239, 234, 224, 0.74);
  font-size: 0.9rem;
  line-height: 1.58;
}

.investor-notice p + p,
.investor-notice p + ul,
.investor-notice ul + p {
  margin-top: var(--grid-half);
}

.investor-notice ul {
  margin-bottom: 0;
  padding-left: 1.2rem;
  break-inside: avoid;
}

.investor-notice li + li {
  margin-top: 8px;
}

.investor-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  margin-top: var(--grid-unit);
}

.investor-actions .button {
  flex: 0 0 auto;
  width: auto;
  min-width: 168px;
  margin-top: 0;
  border: 0;
}

.investor-actions > a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 4px;
  color: rgba(239, 234, 224, 0.68);
  font-weight: 800;
}

.about-columns article.is-visible,
.about-stat-grid article.is-visible,
.figure-card.is-visible,
.team-card.is-visible,
.regulatory-stack > article.is-visible {
  animation: revealLift 820ms var(--ease);
}

@keyframes heroScan {
  0%, 62% { opacity: 0; transform: translateX(-100%); }
  72% { opacity: 0.24; }
  100% { opacity: 0; transform: translateX(100%); }
}

@keyframes revealLift {
  0% {
    opacity: 0;
    transform: translateY(22px) scale(0.985);
  }
  58% {
    opacity: 1;
    transform: translateY(-4px) scale(1);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes cardSignal {
  0%, 68% { opacity: 0; transform: translateX(-100%); }
  78% { opacity: 1; }
  100% { opacity: 0; transform: translateX(100%); }
}

@keyframes cardHoverSignal {
  0% { opacity: 0; transform: translateX(-110%); }
  42% { opacity: 1; }
  100% { opacity: 0; transform: translateX(110%); }
}

@keyframes aboutSweep {
  0% { opacity: 0; transform: translateX(-120%); }
  38% { opacity: 1; }
  100% { opacity: 0; transform: translateX(120%); }
}

@keyframes buttonSweep {
  0% { opacity: 0; transform: translateX(-110%); }
  34% { opacity: 1; }
  100% { opacity: 0; transform: translateX(110%); }
}

@keyframes teamSweep {
  0% { opacity: 0; transform: translateX(-62%); }
  38% { opacity: 1; }
  100% { opacity: 0; transform: translateX(62%); }
}

@keyframes proofFrame {
  0%, 22% { opacity: 0; transform: translate(18px, 18px) scale(0.72); }
  50%, 76% { opacity: 0.58; transform: translate(0, 0) scale(1); }
  100% { opacity: 0.18; transform: translate(0, 0) scale(0.94); }
}

@keyframes proofFrameB {
  0%, 22% { opacity: 0; transform: translate(-18px, 18px) rotate(90deg) scale(0.72); }
  50%, 76% { opacity: 0.58; transform: translate(0, 0) rotate(90deg) scale(1); }
  100% { opacity: 0.18; transform: translate(0, 0) rotate(90deg) scale(0.94); }
}

@keyframes proofFrameC {
  0%, 22% { opacity: 0; transform: translate(-18px, -18px) rotate(180deg) scale(0.72); }
  50%, 76% { opacity: 0.58; transform: translate(0, 0) rotate(180deg) scale(1); }
  100% { opacity: 0.18; transform: translate(0, 0) rotate(180deg) scale(0.94); }
}

@keyframes proofFrameD {
  0%, 22% { opacity: 0; transform: translate(18px, -18px) rotate(270deg) scale(0.72); }
  50%, 76% { opacity: 0.58; transform: translate(0, 0) rotate(270deg) scale(1); }
  100% { opacity: 0.18; transform: translate(0, 0) rotate(270deg) scale(0.94); }
}

@keyframes proofScan {
  0%, 30% { opacity: 0; transform: scaleX(0); }
  54%, 72% { opacity: 0.58; transform: scaleX(1); }
  100% { opacity: 0; transform: scaleX(1); }
}

@keyframes moduleSweep {
  0%, 34% { transform: translateX(-110%); opacity: 0; }
  58%, 74% { opacity: 0.82; }
  100% { transform: translateX(310%); opacity: 0; }
}

@keyframes mapFocusBreathe {
  0%, 100% {
    filter: drop-shadow(0 14px 22px rgba(255, 212, 0, 0.26));
  }
  44% {
    filter: drop-shadow(0 20px 34px rgba(255, 212, 0, 0.48));
  }
}

@keyframes mapFocusPulse {
  0% {
    opacity: 0;
    transform: scale(0.68);
  }
  18% {
    opacity: 0.72;
  }
  72%, 100% {
    opacity: 0;
    transform: scale(1.52);
  }
}

@keyframes mapFocusDot {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 212, 0, 0.62);
  }
  44% {
    box-shadow: 0 0 0 14px rgba(255, 212, 0, 0);
  }
}

@keyframes mapFocusCorners {
  0%, 100% {
    opacity: 0.94;
    transform: scale(1);
  }
  44% {
    opacity: 1;
    transform: scale(1.1);
  }
}

@media (max-width: 1180px) and (min-width: 1041px) {
  .hero-copy {
    width: min(700px, 58vw);
  }

  .hero-system {
    right: clamp(-30px, 1vw, 28px);
    width: min(58vw, 760px);
    opacity: 0.72;
  }
}

@media (max-width: 1040px) {
  .positioning-section,
  .investment-section .section-heading,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: calc(100vh - 84px);
    min-height: calc(100svh - 84px);
    display: flex;
    align-items: center;
  }

  .hero-copy {
    width: min(100%, 760px);
  }

  .statement-frame {
    height: var(--position-grid-height);
    min-height: var(--position-grid-height);
    padding:
      calc(var(--position-grid) * 3)
      calc(var(--position-grid) * 2.5)
      calc(var(--position-grid) * 3)
      calc(var(--position-grid) * 3);
  }

  .positioning-copy h2 {
    max-width: min(100%, 16.5ch);
    font-size: clamp(3rem, 5.8vw, 4.55rem);
  }

  .statement-frame p {
    max-width: min(100%, 40ch);
    margin-top: calc(var(--position-grid) * 0.55);
    font-size: clamp(1.32rem, 2.35vw, 1.65rem);
  }

  .frame-br {
    right: auto;
    bottom: auto;
  }

  .hero-system {
    position: absolute;
    left: 50%;
    right: auto;
    top: 52%;
    width: min(118vw, 900px);
    margin: 0;
    transform: translate3d(-50%, -50%, 0);
    opacity: 0.42;
  }

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

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

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

  .team-advisors-grid .team-card,
  .team-advisors-grid .team-card:nth-last-child(2) {
    grid-column: auto;
  }

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

  .regulatory-stack {
    grid-template-columns: 1fr;
  }

  .regulatory-stack article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .about-columns article,
  .about-columns article:nth-child(2n),
  .about-columns article:nth-child(-n + 2) {
    border: 1px solid rgba(78, 137, 171, 0.22);
  }

  .about-stat-grid {
    grid-template-columns: 1fr;
  }

  .about-stat-grid article {
    border: 1px solid rgba(78, 137, 171, 0.2);
  }

  .about-stat-grid article:last-child {
    border: 1px solid rgba(78, 137, 171, 0.2);
  }

}

@media (max-width: 720px) {
  :root {
    --section-title-size: clamp(2.75rem, 11vw, 4rem);
  }

  .site-header {
    align-items: center;
    min-height: 116px;
    gap: 16px;
    flex-wrap: nowrap;
    padding-block: 22px;
  }

  .brand {
    flex: 1;
    min-width: 0;
    align-self: center;
  }

  .brand img {
    width: min(246px, 68vw);
  }

  .team-page-hero {
    padding-top: clamp(64px, 14vw, 92px);
  }

  .team-directory-grid {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0 var(--section-inline);
    border-top: 0 solid rgba(7, 24, 39, 0.1);
    background: rgba(239, 234, 224, 0.97);
    opacity: 0;
    transition:
      max-height 0.3s var(--ease),
      opacity 0.24s var(--ease),
      border-top-width 0.24s var(--ease);
  }

  .site-header.is-menu-open nav {
    max-height: 340px;
    border-top-width: 1px;
    opacity: 1;
  }

  nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(7, 24, 39, 0.08);
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2.35rem, 11vw, 4rem);
  }

  .positioning-section {
    --position-grid: clamp(38px, 6.1vw, 44px);
    --position-max-columns: 18;
    --position-min-columns: 9;
    padding:
      clamp(58px, 10vw, 80px)
      var(--page-pad)
      clamp(76px, 14vw, 104px);
  }

  .positioning-copy {
    width: min(100%, var(--position-grid-width));
  }

  .statement-frame {
    height: var(--position-grid-height);
    min-height: var(--position-grid-height);
    padding:
      calc(var(--position-grid) * 3.25)
      calc(var(--position-grid) * 1.5)
      calc(var(--position-grid) * 3.25)
      calc(var(--position-grid) * 1.5);
  }

  .positioning-copy h2 {
    max-width: min(100%, 12.8ch);
    font-size: clamp(2.9rem, 8.2vw, 4.15rem);
    line-height: 0.99;
  }

  .statement-frame p {
    max-width: min(100%, 29ch);
    margin-top: calc(var(--position-grid) * 0.25);
    padding-right: 0;
    font-size: clamp(1.28rem, 3.65vw, 1.58rem);
    line-height: 1.2;
  }

  .frame-tl {
    left: 0;
    top: 0;
  }

  .frame-br {
    right: auto;
    bottom: auto;
  }

  .hero {
    min-height: calc(100vh - 84px);
    min-height: calc(100svh - 84px);
    display: flex;
    align-items: center;
  }

  .hero-system {
    position: absolute;
    left: 50%;
    right: auto;
    top: 54%;
    width: min(170vw, 760px);
    margin: 0;
    transform: translate3d(-50%, -50%, 0);
    opacity: 0.34;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

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

  .map-panel {
    min-height: 280px;
  }

  .map-labels text {
    font-size: 8.7px;
    fill: rgba(7, 24, 39, 0.4);
  }

  .map-labels .near-office {
    fill: rgba(7, 24, 39, 0.26);
  }

  .map-labels .station-label {
    font-size: 10px;
  }

  .about-proof h2 {
    white-space: normal;
  }

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

  .about-columns article {
    min-height: auto;
    border: 1px solid rgba(78, 137, 171, 0.22);
  }

  .about-columns article:last-child {
    border: 1px solid rgba(78, 137, 171, 0.22);
  }

  .proof-strip span {
    border-right: 0;
    border-bottom: 1px solid rgba(7, 24, 39, 0.22);
  }

  .proof-strip span:last-child {
    border-bottom: 0;
  }

  .proof-motion {
    inset: 26px;
  }

  .figure-card {
    min-height: auto;
  }

  .footer-bottom {
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding-block: 12px;
  }

  .footer-columns,
  .regulatory-stack,
  .regulatory-stack article {
    grid-template-columns: 1fr;
  }

  .footer-bottom a {
    position: static;
  }

  .cookie-bar {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .cookie-more {
    align-self: flex-start;
  }

  .investor-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .investor-notice {
    max-height: 48vh;
  }
}

@media (max-width: 520px) {
  .site-header {
    min-height: 112px;
    padding-block: 20px;
  }

  .brand img {
    width: min(220px, 60vw);
  }

  .positioning-section {
    --position-grid: clamp(36px, 10.9vw, 40px);
    --position-max-columns: 12;
    --position-min-columns: 8;
  }

  .positioning-copy {
    width: min(100%, var(--position-grid-width));
  }

  .statement-frame {
    height: var(--position-grid-height);
    min-height: var(--position-grid-height);
    padding:
      calc(var(--position-grid) * 3.15)
      calc(var(--position-grid) * 0.65)
      calc(var(--position-grid) * 3.45)
      calc(var(--position-grid) * 0.65);
  }

  .positioning-copy h2 {
    max-width: min(100%, 12.4ch);
    font-size: clamp(2.45rem, 9.6vw, 3.1rem);
    line-height: 0.99;
  }

  .statement-frame p {
    max-width: min(100%, 24ch);
    margin-top: calc(var(--position-grid) * 0.25);
    padding-right: 0;
    font-size: clamp(1.05rem, 4.25vw, 1.26rem);
    line-height: 1.18;
  }

  .frame-corner {
    opacity: 0.96;
  }

  .frame-br {
    right: auto;
    bottom: auto;
  }
}

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