:root {
  --ink: #111827;
  --muted: #737373;
  --paper: #fafafa;
  --white: #ffffff;
  --line: #e6eaf0;
  --blue: #155dfc;
  --blue-deep: #0d48ce;
  --navy: #030712;
  --navy-mid: #091b35;
  --font-display: "Manrope", sans-serif;
  --font-body: "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --text-body: clamp(0.9375rem, 1.05vw, 1rem);
  --text-lead: clamp(1.05rem, 1.35vw, 1.175rem);
  --radius: 22px;
  --radius-lg: 32px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: var(--mb-shadow-sm, 0 2px 8px rgba(15, 23, 42, 0.06));
  --shadow-lg: var(--mb-shadow-sm, 0 2px 8px rgba(15, 23, 42, 0.06));
  --section-y: 48px;
  --section-y-tight: 36px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--mb-nav-clearance, 9.25rem);
  overflow-x: clip;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

main {
  max-width: 100%;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(21, 93, 252, 0.3);
  outline-offset: 4px;
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.page-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 110;
  height: 3px;
  pointer-events: none;
}

.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), #6aafff);
  box-shadow: none;
  transform: scaleX(0);
  transform-origin: left;
}

.proof-bar {
  position: relative;
  z-index: 80;
  overflow: hidden;
  border-bottom: 1px solid rgba(84, 162, 255, 0.15);
  background: linear-gradient(90deg, var(--navy), var(--navy-mid), var(--navy));
  color: #8ea8ca;
}

.proof-track,
.proof-group {
  display: flex;
  align-items: center;
}

.proof-track {
  width: min(1180px, calc(100% - 40px));
  min-height: 36px;
  margin-inline: auto;
}

.proof-group {
  width: 100%;
  justify-content: space-between;
  gap: 30px;
  white-space: nowrap;
  font-family: "Manrope", sans-serif;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.proof-group span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.proof-group span::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #579eff;
  box-shadow: 0 0 0 4px rgba(87, 158, 255, 0.09);
  content: "";
}

.proof-group b {
  color: var(--white);
}

.proof-group-copy {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  padding: 12px 20px;
  transition: padding 320ms var(--ease);
}

.site-header::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-bottom: 1px solid transparent;
  background: rgba(250, 250, 250, 0);
  backdrop-filter: blur(0);
  content: "";
  transition: border-color 320ms ease, background-color 320ms ease, backdrop-filter 320ms ease;
}

.site-header.is-scrolled {
  padding-block: 7px;
}

.site-header.is-scrolled::before {
  border-color: rgba(228, 231, 236, 0.78);
  background: rgba(250, 250, 250, 0.89);
  backdrop-filter: blur(18px);
}

.site-nav {
  position: relative;
  display: flex;
  width: min(1180px, 100%);
  min-height: 56px;
  margin-inline: auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: #07152b;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand strong {
  color: var(--blue);
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  overflow: hidden;
  border: 1px solid #e8edf4;
  border-radius: 10px;
  background: var(--paper);
  box-shadow: var(--mb-shadow-sm, 0 2px 8px rgba(15, 23, 42, 0.06));
}

.brand-mark img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 25px;
}

.desktop-nav a {
  position: relative;
  color: #667085;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  transition: color 200ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transition: transform 280ms var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--ink);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 23px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 780;
  cursor: pointer;
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease), background-color 220ms ease;
}

.button span {
  transition: transform 280ms var(--ease);
}

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

.button:hover span {
  transform: translateX(3px);
}

.button:active {
  transform: translateY(0) scale(0.98);
}

.button-dark {
  background: linear-gradient(105deg, var(--navy), #0c2548, var(--navy));
  background-size: 170% 100%;
  color: var(--white);
  box-shadow: var(--mb-shadow-sm, 0 2px 8px rgba(15, 23, 42, 0.06));
}

.button-dark:hover {
  background-position: 100% 0;
  box-shadow: var(--mb-shadow-sm, 0 2px 8px rgba(15, 23, 42, 0.06));
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 11px;
}

.button-light {
  background: var(--paper);
  color: var(--navy);
  box-shadow: var(--mb-shadow-sm, 0 2px 8px rgba(15, 23, 42, 0.06));
}

.button-light:hover {
  background: #eef4fb;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.eyebrow {
  display: flex;
  margin: 0 0 18px;
  align-items: center;
  gap: 10px;
  color: #536174;
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 24px;
  height: 2px;
  border-radius: 3px;
  background: var(--blue);
}

.eyebrow-centered {
  justify-content: center;
}

.eyebrow-light {
  color: #86a2c6;
}

.about-hero {
  position: relative;
  display: grid;
  min-height: auto;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: center;
  gap: 56px;
  overflow: hidden;
  padding-top: var(--mb-nav-clearance);
  padding-bottom: var(--section-y);
}

.about-hero::before {
  display: none;
  content: none;
}

.hero-copy h1 {
  max-width: 770px;
  margin: 0;
  color: #111827;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.hero-copy h1 em {
  color: #2563eb;
  font-style: normal;
}

.review-meta {
  margin: 18px 0 0;
  color: #7b8595;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 500;
}

.hero-intro {
  max-width: 670px;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: var(--text-body);
  font-weight: 400;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  margin-top: 34px;
  align-items: center;
  gap: 23px;
}

.text-link,
.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #475467;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 750;
}

.text-link span,
.inline-link span {
  color: var(--blue);
  transition: transform 280ms var(--ease);
}

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

.inline-link:hover span {
  transform: translateX(4px);
}

.direction-card {
  --rx: 0deg;
  --ry: 0deg;
  position: relative;
  min-height: auto;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(84, 162, 255, 0.17);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(145deg, #030712, #0a2242 65%, #030712);
  background-size: 44px 44px, 44px 44px, auto;
  box-shadow: var(--shadow-lg);
  color: var(--white);
  transform: perspective(950px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform 500ms var(--ease), box-shadow 500ms var(--ease);
}

.direction-card:hover {
  box-shadow: var(--mb-shadow-sm, 0 2px 8px rgba(15, 23, 42, 0.06));
}

.direction-glow {
  display: none;
}

.direction-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #879dbb;
  font-family: "Manrope", sans-serif;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.live-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.live-label::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #55d6a2;
  box-shadow: 0 0 0 5px rgba(85, 214, 162, 0.07);
  content: "";
  animation: about-pulse 2.5s ease-in-out infinite;
}

.direction-card h2 {
  position: relative;
  margin: 38px 0 30px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.direction-map {
  position: relative;
  display: flex;
  min-height: 235px;
  flex-direction: column;
  justify-content: space-between;
  transform: translateZ(24px);
}

.map-line {
  position: absolute;
  top: 27px;
  bottom: 27px;
  left: 22px;
  width: 1px;
  background: linear-gradient(#3f8cf5, rgba(63, 140, 245, 0.12));
}

.map-line::after {
  position: absolute;
  top: 0;
  left: -2px;
  width: 5px;
  height: 44%;
  border-radius: 5px;
  background: #5da4ff;
  content: "";
  animation: route-progress 4s var(--ease) infinite alternate;
}

.map-stop {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 64px;
  padding: 9px 13px 9px 8px;
  grid-template-columns: 29px 1fr;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(144, 197, 255, 0.11);
  border-radius: 15px;
  background: rgba(4, 22, 47, 0.7);
  backdrop-filter: blur(11px);
  transition: border-color 250ms ease, transform 320ms var(--ease);
}

.map-stop:hover {
  border-color: rgba(84, 162, 255, 0.29);
  transform: translateX(5px);
}

.map-stop i {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 9px;
  background: #0c2b56;
  color: #6caaff;
  font-family: "Manrope", sans-serif;
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
}

.map-stop > span {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.map-stop b {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 750;
}

.map-stop small {
  color: #8297b4;
  font-size: 8px;
}

.direction-footer {
  position: relative;
  display: flex;
  margin-top: 22px;
  gap: 7px;
}

.direction-footer span {
  padding: 7px 10px;
  border: 1px solid rgba(144, 197, 255, 0.12);
  border-radius: 999px;
  color: #87a1c1;
  font-size: 8px;
}

.manifesto-section {
  position: relative;
  overflow: hidden;
  padding-block: 32px;
  border-block: none;
  background: var(--paper);
}

.manifesto-inner {
  position: relative;
  max-width: 860px;
  margin-inline: auto;
  padding: 24px clamp(16px, 3vw, 28px);
  text-align: center;
}

.manifesto-inner blockquote {
  max-width: 970px;
  margin: 0 auto;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.8vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.manifesto-inner blockquote h2 {
  margin: 0;
  font: inherit;
}

.manifesto-inner blockquote em {
  color: #2563eb;
  font-style: normal;
}

.manifesto-inner > p {
  max-width: 740px;
  margin: 20px auto 0;
  color: #52525b;
  font-family: var(--font-body);
  font-size: var(--text-lead);
  font-weight: 400;
  line-height: 1.75;
}

.manifesto-inner > p:last-child {
  margin-top: 12px;
  color: #52525b;
  font-size: var(--text-lead);
  font-weight: 500;
}

.story-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: var(--section-y);
}

.story-copy {
  position: relative;
  width: min(860px, 100%);
  margin-inline: auto;
  padding: clamp(2rem, 4vw, 3.25rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(96, 165, 250, 0.24), transparent 40%),
    radial-gradient(circle at bottom right, rgba(37, 99, 235, 0.28), transparent 35%),
    linear-gradient(135deg, #07111f 0%, #0f172a 35%, #111827 100%);
  box-shadow:
    0 24px 70px rgba(2, 6, 23, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  text-align: center;
}

.story-copy::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.14), transparent 45%, rgba(255, 255, 255, 0.05));
  pointer-events: none;
  content: "";
}

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

.story-copy h2,
.section-heading h2,
.vision-heading h2,
.time-heading h2,
.trust-copy h2,
.cta-content h2 {
  margin: 0;
  color: #111827;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.story-copy h2 {
  color: #f8fafc;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.story-copy h2 em,
.section-heading h2 em,
.vision-heading h2 em,
.time-heading h2 em,
.trust-copy h2 em,
.cta-content h2 em {
  color: #2563eb;
  font-style: normal;
}

.vision-heading h2,
.cta-content h2 {
  color: #f8fafc;
}

.vision-heading h2 em,
.cta-content h2 em {
  color: #60a5fa;
}

.story-text {
  margin-top: 24px;
}

.story-text p {
  margin: 0 auto 18px;
  max-width: 740px;
  color: #dbeafe;
  font-size: clamp(1.02rem, 1.2vw, 1.18rem);
  font-weight: 400;
  line-height: 1.85;
}

.story-copy .inline-link {
  margin-top: 12px;
}

.clarity-visual {
  display: none !important;
}

.clarity-visual picture {
  display: block;
  width: min(480px, 100%);
  grid-column: 1 / -1;
  justify-self: center;
  overflow: hidden;
  border-radius: 16px;
}

.clarity-before,
.clarity-after {
  position: relative;
  min-width: 0;
  min-height: 280px;
  padding: 20px;
  overflow: hidden;
  border-radius: 20px;
}

.clarity-before {
  border: 1px solid #eceef2;
  background: #f7f8fa;
}

.clarity-after {
  border: 1px solid rgba(84, 162, 255, 0.17);
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(145deg, #030712, #0a2242);
  background-size: 35px 35px, 35px 35px, auto;
  color: var(--white);
}

.visual-label {
  position: relative;
  z-index: 4;
  color: #8d96a4;
  font-family: "Manrope", sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.clarity-after .visual-label {
  color: #85a0c2;
}

.scattered-card {
  position: absolute;
  display: flex;
  width: 150px;
  height: 86px;
  padding: 14px;
  flex-direction: column;
  gap: 8px;
  border: 1px solid #e1e4e9;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--mb-shadow-sm, 0 2px 8px rgba(15, 23, 42, 0.06));
}

.scattered-card i {
  width: 21px;
  height: 21px;
  border-radius: 7px;
  background: #edf1f6;
}

.scattered-card span {
  width: 85%;
  height: 5px;
  border-radius: 5px;
  background: #e4e8ee;
}

.scattered-card span:last-child {
  width: 58%;
}

.card-a { top: 76px; left: 16px; transform: rotate(-7deg); animation: card-drift-a 6s ease-in-out infinite; }
.card-b { top: 164px; right: 10px; transform: rotate(6deg); animation: card-drift-b 7s ease-in-out infinite; }
.card-c { bottom: 58px; left: 20px; transform: rotate(-2deg); animation: card-drift-a 8s ease-in-out infinite reverse; }

.clarity-before > small,
.clarity-after > small {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  color: #a0a8b4;
  font-size: 7px;
  text-align: center;
}

.clarity-after > small {
  color: #6f86a4;
}

.clarity-arrow {
  position: relative;
  z-index: 3;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid #d8e5fa;
  border-radius: 50%;
  background: var(--paper);
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  box-shadow: var(--mb-shadow-sm, 0 2px 8px rgba(15, 23, 42, 0.06));
}

.clarity-dashboard {
  position: absolute;
  top: 76px;
  right: 17px;
  left: 17px;
  padding: 18px;
  border: 1px solid rgba(144, 197, 255, 0.14);
  border-radius: 16px;
  background: rgba(5, 24, 51, 0.75);
  backdrop-filter: blur(12px);
}

.dashboard-head,
.dashboard-number {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-head {
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(144, 197, 255, 0.09);
  color: #8ca4c2;
  font-size: 7px;
}

.dashboard-head b {
  color: #56d5a2;
  font-family: "Manrope", sans-serif;
  font-size: 8px;
}

.dashboard-number {
  margin-top: 17px;
  align-items: start;
  flex-direction: column;
  gap: 4px;
}

.dashboard-number small {
  color: #7087a5;
  font-size: 7px;
}

.dashboard-number strong {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 760;
}

.dashboard-bars {
  display: flex;
  height: 90px;
  margin-top: 17px;
  align-items: end;
  gap: 5px;
}

.dashboard-bars i {
  flex: 1;
  height: 25%;
  border-radius: 3px 3px 1px 1px;
  background: linear-gradient(#559eff, rgba(21, 93, 252, 0.15));
  animation: bar-rise 2.8s ease-in-out infinite alternate;
}

.dashboard-bars i:nth-child(2) { height: 38%; animation-delay: -1s; }
.dashboard-bars i:nth-child(3) { height: 34%; animation-delay: -2s; }
.dashboard-bars i:nth-child(4) { height: 56%; animation-delay: -0.5s; }
.dashboard-bars i:nth-child(5) { height: 68%; animation-delay: -1.7s; }
.dashboard-bars i:nth-child(6) { height: 61%; animation-delay: -2.4s; }
.dashboard-bars i:nth-child(7) { height: 84%; animation-delay: -1.3s; }

.principles-section {
  padding-block: 36px;
  border-block: none;
  background: var(--paper);
}

.section-heading {
  display: flex;
  margin-bottom: 18px;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading > div {
  max-width: 720px;
}

.section-heading > p {
  max-width: 420px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: var(--text-body);
  font-weight: 400;
  line-height: 1.7;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 14px;
}

.principle-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: auto;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: border-color 240ms ease, box-shadow 350ms var(--ease), transform 350ms var(--ease);
}

.principle-card:hover {
  border-color: #c9dcfa;
  box-shadow: var(--shadow-sm);
  transform: translateY(-7px);
}

.principle-card.featured {
  border-color: rgba(84, 162, 255, 0.17);
  background: linear-gradient(145deg, #030712, #0a2242);
  color: var(--white);
  box-shadow: var(--mb-shadow-sm, 0 2px 8px rgba(15, 23, 42, 0.06));
}

.principle-number {
  position: absolute;
  top: 20px;
  right: 21px;
  color: #b1b8c3;
  font-family: "Manrope", sans-serif;
  font-size: 8px;
  font-weight: 800;
}

.featured .principle-number {
  color: #607794;
}

.principle-icon {
  display: grid;
  width: 43px;
  height: 43px;
  margin-bottom: 55px;
  place-items: center;
  border: 1px solid #dfe9f8;
  border-radius: 13px;
  background: #eef5ff;
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.featured .principle-icon {
  border-color: rgba(144, 197, 255, 0.14);
  background: rgba(21, 93, 252, 0.14);
  color: #69aaff;
}

.principle-card h3 {
  margin: 0 0 12px;
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  font-weight: 760;
  letter-spacing: -0.04em;
  line-height: 1.18;
}

.principle-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.65;
}

.featured p {
  color: #91a6c1;
}

.principle-line {
  display: block;
  flex-shrink: 0;
  width: 100%;
  height: 2px;
  margin-top: auto;
  padding-top: 28px;
  box-sizing: content-box;
  overflow: hidden;
  border-radius: 3px;
  background-color: #edf0f4;
  background-clip: content-box;
}

.principle-line::after {
  display: block;
  width: 28%;
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
  content: "";
  transition: width 550ms var(--ease);
}

.principle-card:hover .principle-line::after {
  width: 100%;
}

.featured .principle-line {
  background-color: rgba(144, 197, 255, 0.08);
  background-clip: content-box;
}

.vision-section {
  padding-block: 36px;
}

.vision-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(84, 162, 255, 0.16);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy), #0a2242, var(--navy));
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.vision-grid-bg,
.cta-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, #000, transparent 85%);
}

.vision-heading {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 16px;
}

.vision-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -42px;
}

.vision-heading > p:last-child {
  max-width: 760px;
  margin: 0;
  color: #91a6c1;
  font-size: var(--text-body);
  font-weight: 400;
  line-height: 1.7;
}

.vision-experience {
  position: relative;
  z-index: 2;
  display: grid;
  margin-top: 60px;
  grid-template-columns: 260px 1fr;
  gap: 18px;
}

.mission-connected-image {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}

@media (max-width: 640px) {
  .clarity-visual picture {
    width: min(300px, 100%);
  }
}

.clarity-visual > .clarity-before,
.clarity-visual > .clarity-arrow,
.clarity-visual > .clarity-after {
  display: none;
}

.vision-tabs {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.vision-tabs button {
  display: grid;
  min-height: 57px;
  padding: 10px 14px;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
  color: #8197b4;
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: color 220ms ease, border-color 220ms ease, background-color 220ms ease, transform 300ms var(--ease);
}

.vision-tabs button span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  background: rgba(21, 93, 252, 0.08);
  color: #5c779a;
  font-size: 7px;
}

.vision-tabs button:hover {
  color: #c3d2e5;
  transform: translateX(4px);
}

.vision-tabs button[aria-selected="true"] {
  border-color: rgba(144, 197, 255, 0.14);
  background: rgba(7, 35, 72, 0.7);
  color: var(--white);
}

.vision-tabs button[aria-selected="true"] span {
  background: rgba(21, 93, 252, 0.18);
  color: #6faeff;
}

.vision-panel {
  position: relative;
  display: grid;
  min-height: 340px;
  padding: 34px;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: center;
  gap: 45px;
  overflow: hidden;
  border: 1px solid rgba(144, 197, 255, 0.13);
  border-radius: 22px;
  background: rgba(4, 22, 47, 0.66);
  backdrop-filter: blur(12px);
}

.panel-copy,
.panel-visual {
  transition: opacity 220ms ease, transform 350ms var(--ease);
}

.vision-panel.is-changing .panel-copy {
  opacity: 0;
  transform: translateY(8px);
}

.vision-panel.is-changing .panel-visual {
  opacity: 0;
  transform: scale(0.95);
}

.panel-copy > span {
  color: #6faeff;
  font-family: "Manrope", sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.panel-copy h3 {
  max-width: 530px;
  margin: 14px 0 15px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  font-weight: 750;
  letter-spacing: -0.052em;
  line-height: 1.08;
}

.panel-copy p {
  max-width: 520px;
  margin: 0;
  color: #8fa4bf;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.7;
}

.panel-visual {
  position: relative;
  display: grid;
  min-height: 250px;
  place-items: center;
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(84, 162, 255, 0.14);
  border-radius: 50%;
  animation: orbit-spin 18s linear infinite;
}

.visual-orbit::after {
  position: absolute;
  top: 13%;
  left: 8%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5da4ff;
  content: "";
}

.orbit-one { width: 205px; height: 205px; }
.orbit-two { width: 275px; height: 275px; animation-direction: reverse; animation-duration: 24s; }

.visual-core {
  position: relative;
  z-index: 3;
  display: flex;
  width: 165px;
  min-height: 128px;
  padding: 20px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(144, 197, 255, 0.16);
  border-radius: 18px;
  background: rgba(5, 26, 56, 0.86);
  box-shadow: var(--mb-shadow-sm, 0 2px 8px rgba(15, 23, 42, 0.06));
  text-align: center;
  backdrop-filter: blur(14px);
}

.visual-core small {
  color: #8199b8;
  font-size: 7px;
}

.visual-core strong {
  margin: 7px 0 4px;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 760;
}

.visual-core span {
  color: #5d7da6;
  font-size: 7px;
}

.time-section {
  padding-block: var(--section-y);
}

.time-heading {
  max-width: 780px;
}

.time-heading > p:last-child {
  max-width: 570px;
  margin: 21px 0 0;
  color: var(--muted);
  font-size: var(--text-body);
  font-weight: 400;
  line-height: 1.7;
}

.time-track {
  position: relative;
  display: grid;
  margin-top: 40px;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.track-line {
  position: absolute;
  top: 13px;
  right: 0;
  left: 0;
  height: 1px;
  background: #dce1e8;
}

.track-line i {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), #75b3ff);
  box-shadow: none;
  transition: width 1800ms var(--ease);
}

.time-track.is-visible .track-line i {
  width: 100%;
}

.time-track article {
  position: relative;
  padding-top: 53px;
}

.time-dot {
  position: absolute;
  top: 6px;
  left: 0;
  width: 15px;
  height: 15px;
  border: 4px solid var(--paper);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 1px #bcd3f6;
}

.time-track article small {
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.time-track article h3 {
  margin: 12px 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: 1.45rem;
  font-weight: 760;
  letter-spacing: -0.04em;
}

.time-track article p {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.65;
}

.trust-section {
  padding-block: var(--section-y);
  border-block: none;
  background: var(--paper);
}

.trust-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(400px, 1.05fr);
  align-items: center;
  gap: 56px;
}

.trust-copy > p:last-child {
  margin: 27px 0 0;
  color: #52525b;
  font-size: var(--text-lead);
  font-weight: 400;
  line-height: 1.75;
}

.trust-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trust-list article {
  display: grid;
  min-height: 105px;
  padding: 26px;
  grid-template-columns: 44px 1fr;
  align-items: start;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--paper);
  transition: border-color 220ms ease, box-shadow 300ms var(--ease), transform 300ms var(--ease);
}

.trust-list article:hover {
  border-color: #c9dcfa;
  box-shadow: var(--mb-shadow-sm, 0 2px 8px rgba(15, 23, 42, 0.06));
  transform: translateX(5px);
}

.trust-list article > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 12px;
  background: #eef5ff;
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.trust-list h3 {
  margin: 1px 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: 1.125rem;
  font-weight: 760;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.trust-list p {
  margin: 0;
  color: #52525b;
  font-size: var(--text-body);
  font-weight: 400;
  line-height: 1.7;
}

.about-cta {
  position: relative;
  min-height: auto;
  margin-block: var(--section-y);
  overflow: hidden;
  border: 1px solid rgba(84, 162, 255, 0.16);
  border-radius: var(--radius-lg);
  background: linear-gradient(125deg, var(--navy), #0a2242, var(--navy));
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 790px;
  min-height: auto;
  margin-inline: auto;
  padding: 56px 25px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.cta-content > p {
  margin: 19px 0 29px;
  color: #9bb0cb;
  font-size: var(--text-body);
  font-weight: 400;
  line-height: 1.7;
}

.cta-content small {
  margin-top: 13px;
  color: #6d84a2;
  font-size: 8px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.cta-note {
  position: absolute;
  z-index: 2;
  padding: 12px 15px;
  border: 1px solid rgba(144, 197, 255, 0.14);
  border-radius: 13px;
  background: rgba(6, 25, 52, 0.68);
  color: #8ca7c9;
  font-size: 8px;
  backdrop-filter: blur(12px);
  animation: note-float 6s ease-in-out infinite;
}

.note-left { top: 90px; left: 43px; transform: rotate(-5deg); }
.note-right { right: 42px; bottom: 82px; transform: rotate(5deg); animation-delay: -2.6s; }

.cta-note--complete {
  font-size: 11px;
}

.site-footer {
  display: none;
  width: 100%;
  padding: 32px 0;
  background: linear-gradient(to bottom, #030712, #09162e, #030712);
  color: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px 32px;
}

.brand-light {
  color: var(--white);
}

.footer-brand p {
  max-width: 450px;
  margin: 19px 0 0;
  color: #7f8da2;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7;
}

.footer-column {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 10px;
}

.footer-column h2 {
  margin: 0 0 7px;
  font-family: "Manrope", sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  color: #7f8da2;
  font-size: 10px;
  font-weight: 300;
  line-height: 1.5;
  white-space: nowrap;
  transition: color 200ms ease, transform 260ms var(--ease);
}

.footer-column a:hover {
  color: var(--white);
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  margin-top: 50px;
  padding-top: 22px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(144, 197, 255, 0.09);
  color: #65738a;
  font-size: 8px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  transition: color 200ms ease;
}

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

.js [data-reveal] {
  opacity: 0;
  translate: 0 24px;
  transition: opacity 760ms var(--ease) var(--delay, 0ms), translate 760ms var(--ease) var(--delay, 0ms);
}

.js [data-reveal].is-visible {
  opacity: 1;
  translate: 0 0;
}

@keyframes about-pulse {
  50% { opacity: 0.7; box-shadow: none; }
}

@keyframes route-progress {
  to { height: 100%; }
}

@keyframes card-drift-a {
  50% { margin-top: -8px; margin-left: 4px; }
}

@keyframes card-drift-b {
  50% { margin-top: 7px; margin-right: 4px; }
}

@keyframes bar-rise {
  to { transform: scaleY(0.58); opacity: 0.7; }
}

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

@keyframes note-float {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -9px; }
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 18px;
  }

  .about-hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: var(--mb-nav-clearance);
    padding-bottom: var(--section-y-tight);
  }

  .hero-copy {
    max-width: 850px;
  }

  .direction-card {
    width: min(620px, 100%);
  }

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

  .story-copy {
    max-width: 770px;
  }

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

  .vision-shell {
    padding: 40px;
  }

  .vision-panel {
    grid-template-columns: 1fr 240px;
  }
}

@media (max-width: 900px) {
  .desktop-nav,
  .nav-actions > .button {
    display: none;
  }

  .site-nav {
    justify-content: space-between;
  }

  .menu-toggle {
    display: flex;
    width: 42px;
    height: 42px;
    padding: 0;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 16px;
    height: 1.5px;
    border-radius: 2px;
    background: var(--ink);
    transition: opacity 200ms ease, transform 300ms var(--ease);
  }

  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(5.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-5.5px) rotate(-45deg); }

  .mobile-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: flex;
    padding: 12px;
    flex-direction: column;
    gap: 2px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--mb-shadow-sm, 0 2px 8px rgba(15, 23, 42, 0.06));
    backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transform-origin: top;
    transition: opacity 220ms ease, transform 320ms var(--ease);
  }

  .mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .mobile-menu > a:not(.button) {
    padding: 12px 13px;
    border-radius: 11px;
    color: #596579;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 700;
  }

  .mobile-menu > a:not(.button):hover,
  .mobile-menu > a[aria-current="page"] {
    background: #f4f7fb;
    color: var(--ink);
  }

  .mobile-menu .button {
    margin-top: 7px;
  }

  .section-heading,
  .vision-heading {
    align-items: start;
    grid-template-columns: 1fr;
    flex-direction: column;
    gap: 20px;
  }

  .vision-heading .eyebrow {
    margin-bottom: 0;
  }

  .vision-experience {
    grid-template-columns: 1fr;
  }

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

  .vision-panel {
    grid-template-columns: 1fr 220px;
  }

  .trust-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .trust-copy {
    max-width: 760px;
  }
}

@media (max-width: 767px) {
  main {
    padding-bottom: 6rem;
  }

  .section-shell {
    width: min(100% - 2rem, 1180px);
  }

  .story-section,
  .trust-inner,
  .about-hero,
  .vision-shell,
  .about-cta {
    min-width: 0;
  }

  .panel-visual {
    overflow: hidden;
  }

  .direction-card {
    max-width: 100%;
  }
}

@media (max-width: 700px) {
  .section-shell {
    width: min(100% - 28px, 1180px);
  }

  .proof-track {
    width: max-content;
    animation: proof-marquee 22s linear infinite;
  }

  .proof-group {
    width: max-content;
    padding-right: 34px;
  }

  .proof-group-copy {
    display: flex;
  }

  .site-header {
    padding: 8px 14px;
  }

  .site-nav {
    min-height: 50px;
  }

  .about-hero {
    min-height: auto;
    padding-top: var(--mb-nav-clearance);
    padding-bottom: var(--section-y-tight);
  }

  .hero-copy h1 {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }

  .hero-intro {
    font-size: 0.9375rem;
    line-height: 1.7;
  }

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

  .text-link {
    justify-content: center;
  }

  .direction-card {
    min-height: auto;
    padding: 24px;
    border-radius: 25px;
  }

  .manifesto-section,
  .story-section,
  .principles-section,
  .vision-section,
  .trust-section,
  .time-section {
    padding-block: var(--section-y-tight);
  }

  .manifesto-section,
  .principles-section,
  .vision-section {
    padding-block: 32px;
  }

  .manifesto-inner {
    padding-block: 12px;
  }

  .section-heading {
    margin-bottom: 14px;
    gap: 14px;
  }

  .vision-shell {
    padding: 24px 20px;
  }

  .clarity-visual {
    min-height: auto;
    padding: 0;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .clarity-before,
  .clarity-after {
    min-height: 240px;
  }

  .clarity-arrow {
    margin-inline: auto;
    transform: rotate(90deg);
  }

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

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

  .vision-shell {
    padding: 37px 22px;
    border-radius: 25px;
  }

  .vision-tabs {
    display: flex;
    overflow-x: auto;
    flex-direction: row;
    scrollbar-width: none;
  }

  .vision-tabs::-webkit-scrollbar {
    display: none;
  }

  .vision-tabs button {
    flex: 0 0 185px;
  }

  .vision-panel {
    min-height: 510px;
    padding: 26px 22px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .panel-visual {
    min-height: 250px;
  }

  .time-section {
    padding-block: var(--section-y-tight);
  }

  .time-track {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .track-line {
    top: 0;
    bottom: 0;
    left: 7px;
    width: 1px;
    height: auto;
  }

  .track-line i {
    width: 100%;
    height: 0;
    transition: height 1600ms var(--ease);
  }

  .time-track.is-visible .track-line i {
    width: 100%;
    height: 100%;
  }

  .time-track article {
    padding: 0 0 0 39px;
  }

  .time-dot {
    top: 0;
  }

  .about-cta {
    min-height: auto;
    margin-block: var(--section-y-tight);
    border-radius: 25px;
  }

  .cta-content {
    min-height: auto;
    padding: 40px 23px;
  }

  .cta-note {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 38px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .mb-logo { width: 180px; }
  .mb-links { gap: 1rem; padding-right: 1rem; }
  .mb-links a { font-size: 0.75rem; }
}

@media (min-width: 1024px) {
  .mb-links { display: flex !important; flex-shrink: 1; min-width: 0; }
  .mb-links a { flex: 0 0 auto; }
}

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

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

  .js [data-reveal] {
    opacity: 1;
    translate: none;
  }
}

@keyframes proof-marquee {
  to { transform: translateX(-50%); }
}
