:root {
  --navy: #07111f;
  --navy-deep: #040b14;
  --navy-soft: #0b1b2d;
  --ink: #eaf0f7;
  --muted: #94a4b8;
  --cyan: #61d5e8;
  --cyan-soft: rgba(97, 213, 232, 0.12);
  --gold: #c7a86b;
  --gold-bright: #e4c57f;
  --gold-soft: rgba(199, 168, 107, 0.12);
  --line: rgba(255, 255, 255, 0.11);
  --shell: min(1240px, calc(100% - 64px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--navy);
  font-family: "DM Sans", system-ui, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 75% 16%, rgba(40, 111, 145, 0.12), transparent 33%),
    linear-gradient(180deg, var(--navy), var(--navy-deep));
}

a {
  color: inherit;
}

*:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--navy);
  background: #fff;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid var(--line);
}

.nav-shell,
.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.nav-shell {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  color: var(--gold-bright);
  font-family: "Manrope", sans-serif;
  font-size: 27px;
  font-weight: 400;
  letter-spacing: -0.12em;
}

.brand-name {
  padding-left: 16px;
  border-left: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 27px;
}

.site-nav a,
.leo-link {
  color: #b8c5d5;
  background: transparent;
  border: 0;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.leo-link:hover,
.leo-link:focus-visible {
  color: #fff;
}

.leo-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  color: var(--gold-bright);
  border: 1px solid rgba(199, 168, 107, 0.62);
}

.leo-link-icon {
  font-size: 11px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
}

.menu-button span:not(.sr-only) {
  width: 100%;
  height: 1px;
  display: block;
  margin: 6px 0;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 150px 0 0;
  background:
    linear-gradient(90deg, rgba(4, 11, 20, 0.98), rgba(7, 17, 31, 0.8)),
    var(--navy);
}

.hero-grid {
  position: absolute;
  inset: 86px 0 120px;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(97, 213, 232, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(97, 213, 232, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, transparent, #000 50%, #000);
}

.hero-shell {
  position: relative;
  z-index: 2;
  width: var(--shell);
  min-height: 600px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(460px, 0.98fr);
  gap: 46px;
  align-items: center;
  margin-inline: auto;
}

.hero-copy {
  padding-bottom: 60px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: "Manrope", sans-serif;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(64px, 7.5vw, 116px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.9;
  text-transform: uppercase;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(39px, 5vw, 68px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

h3 {
  margin-bottom: 14px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.hero-statement {
  margin-bottom: 14px;
  color: #d0d9e4;
  font-size: 20px;
}

.hero-intro {
  max-width: 630px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 15px;
}

.hero-actions,
.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

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

.button-gold {
  color: #08111d;
  background: linear-gradient(120deg, var(--gold-bright), #b99554);
}

.button-signal {
  color: var(--cyan);
  border-color: rgba(97, 213, 232, 0.48);
  background: rgba(97, 213, 232, 0.03);
}

.systems-visual {
  position: relative;
  height: 560px;
}

#leo-network {
  width: 100%;
  height: 100%;
  display: block;
}

.system-label {
  position: absolute;
  color: #dbe6f0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.system-label-deliver { top: 14%; left: 25%; }
.system-label-govern { top: 31%; right: 7%; }
.system-label-automate { top: 61%; left: 7%; }
.system-label-transform { right: 4%; bottom: 17%; }

.visual-caption {
  position: absolute;
  right: 4%;
  bottom: 4%;
  max-width: 260px;
  margin: 0;
  color: #6f8196;
  font-size: 11px;
  text-align: right;
}

.section-index {
  position: absolute;
  z-index: 4;
  bottom: 155px;
  left: max(16px, calc((100vw - 1380px) / 2));
  display: flex;
  align-items: center;
  gap: 10px;
  color: #7a8ca1;
  font-size: 9px;
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.section-index i {
  width: 1px;
  height: 68px;
  display: block;
  background: linear-gradient(var(--gold), rgba(255, 255, 255, 0.12));
}

.metrics-strip {
  position: relative;
  z-index: 3;
  width: var(--shell);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.metrics-strip > div {
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 30px;
  border-right: 1px solid var(--line);
}

.metrics-strip > div:last-child {
  border-right: 0;
}

.metrics-strip strong {
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: clamp(22px, 2.3vw, 37px);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.metrics-strip span {
  color: #7f90a5;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section {
  padding: 120px 0;
  border-top: 1px solid var(--line);
}

.two-column {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}

.profile-section {
  background: #081421;
}

.section-title h2 {
  max-width: 590px;
}

.profile-copy {
  max-width: 670px;
  padding-top: 42px;
  color: var(--muted);
}

.profile-copy .lead-copy {
  color: #d3dde7;
  font-size: 20px;
}

.profile-tags,
.leo-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.profile-tags span,
.leo-trust span {
  padding: 7px 11px;
  color: #aebdcd;
  border: 1px solid var(--line);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.impact-section,
.work-section,
.capabilities-section {
  background:
    radial-gradient(circle at 85% 15%, rgba(199, 168, 107, 0.07), transparent 30%),
    var(--navy-deep);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.6fr;
  gap: 90px;
  align-items: end;
  margin-bottom: 55px;
}

.section-heading h2 {
  max-width: 730px;
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 8px;
  color: var(--muted);
}

.impact-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.9fr;
  gap: 1px;
  background: var(--line);
}

.impact-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  background: #091624;
}

.impact-card.featured {
  background:
    radial-gradient(circle at 82% 16%, rgba(97, 213, 232, 0.13), transparent 33%),
    #0a1928;
}

.impact-number {
  position: absolute;
  top: 26px;
  right: 28px;
  color: rgba(255, 255, 255, 0.08);
  font-family: "Manrope", sans-serif;
  font-size: 72px;
  font-weight: 400;
}

.impact-type {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.impact-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.work-section {
  background:
    linear-gradient(135deg, rgba(97, 213, 232, 0.035), transparent 40%),
    #07111f;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.work-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line);
  background: rgba(9, 22, 36, 0.78);
}

.work-card-ai {
  background:
    radial-gradient(circle at 85% 15%, rgba(97, 213, 232, 0.12), transparent 35%),
    rgba(9, 22, 36, 0.9);
}

.work-label {
  margin-bottom: 48px;
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work-card > p:not(.work-label) {
  color: var(--muted);
  font-size: 14px;
}

.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: auto 0 0;
  list-style: none;
}

.work-tags li {
  padding: 6px 9px;
  color: #9fb1c4;
  border: 1px solid var(--line);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.architecture-panel {
  display: grid;
  grid-template-columns: minmax(250px, 0.65fr) minmax(0, 1.35fr);
  gap: 60px;
  align-items: center;
  padding: 45px;
  margin-top: 20px;
  border: 1px solid rgba(97, 213, 232, 0.2);
  background: #091725;
}

.architecture-copy .work-label {
  margin-bottom: 16px;
}

.architecture-copy h3 {
  font-size: 30px;
}

.architecture-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.architecture-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 0;
  margin: 0;
  list-style: none;
}

.architecture-flow li {
  position: relative;
  min-width: 0;
  padding: 20px 14px;
  border-left: 1px solid var(--line);
}

.architecture-flow li::after {
  position: absolute;
  z-index: 2;
  top: 33px;
  right: -4px;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--cyan);
  border-radius: 50%;
}

.architecture-flow li:last-child::after {
  display: none;
}

.architecture-flow span,
.architecture-flow strong,
.architecture-flow small {
  display: block;
}

.architecture-flow span {
  margin-bottom: 34px;
  color: var(--cyan);
  font-size: 9px;
  font-weight: 700;
}

.architecture-flow strong {
  color: var(--ink);
  font-size: 12px;
}

.architecture-flow small {
  margin-top: 4px;
  color: #75879c;
  font-size: 9px;
  line-height: 1.4;
}

.journey-section {
  background: #081421;
}

.career-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  padding: 54px 0 0;
  margin: 0;
  list-style: none;
}

.career-path::before {
  position: absolute;
  top: 71px;
  right: 7%;
  left: 7%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--gold));
}

.career-path li {
  position: relative;
  padding: 0 14px;
  text-align: center;
}

.career-path li::before {
  position: relative;
  z-index: 2;
  width: 11px;
  height: 11px;
  display: block;
  margin: 12px auto 28px;
  content: "";
  background: #0b1a2a;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(97, 213, 232, 0.08);
}

.career-path li.active::before {
  border-color: var(--gold-bright);
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(199, 168, 107, 0.1);
}

.career-year {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
}

.career-path strong,
.career-path div span {
  display: block;
}

.career-path strong {
  margin-bottom: 5px;
  font-size: 13px;
}

.career-path div span {
  color: #7e90a5;
  font-size: 11px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.capability {
  min-height: 300px;
  padding: 30px;
  background: #091624;
  transition: background 180ms ease;
}

.capability:hover {
  background: #0c1d2e;
}

.capability > span {
  display: block;
  margin-bottom: 85px;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 700;
}

.capability p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.leo-section {
  background: #07111f;
}

.leo-panel {
  position: relative;
  min-height: 390px;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 52px;
  align-items: center;
  overflow: hidden;
  padding: 55px;
  border: 1px solid rgba(199, 168, 107, 0.28);
  background:
    radial-gradient(circle at 12% 50%, rgba(97, 213, 232, 0.12), transparent 27%),
    #091725;
}

.leo-panel > div:nth-child(2) {
  max-width: 680px;
}

.leo-panel h2 {
  margin-bottom: 12px;
}

.leo-panel p:not(.section-kicker) {
  color: var(--muted);
}

.leo-orbit {
  width: 126px;
  height: 126px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(97, 213, 232, 0.35);
  border-radius: 50%;
  box-shadow:
    0 0 0 18px rgba(97, 213, 232, 0.035),
    0 0 0 38px rgba(199, 168, 107, 0.025);
}

.leo-orbit span {
  color: var(--gold-bright);
  font-size: 31px;
}

.contact-section {
  background:
    radial-gradient(circle at 18% 20%, rgba(97, 213, 232, 0.08), transparent 30%),
    #081321;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 130px;
}

.contact-copy h2 {
  margin-bottom: 20px;
}

.contact-copy > p:not(.section-kicker) {
  max-width: 520px;
  color: var(--muted);
}

.contact-copy a,
.footer-content a {
  color: var(--cyan);
  text-underline-offset: 3px;
}

.contact-email {
  margin-top: 25px;
  color: #c9d4e0 !important;
  font-size: 13px;
}

.contact-email a {
  display: block;
  width: fit-content;
  margin-top: 4px;
  overflow-wrap: anywhere;
}

.contact-safeguards {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.contact-safeguards span {
  padding: 7px 11px;
  color: #9fb2c8;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
}

.contact-form {
  position: relative;
  display: grid;
  gap: 20px;
  padding: clamp(25px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.contact-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #c2ccda;
  font-size: 12px;
  font-weight: 600;
}

.contact-form label small {
  color: #738399;
  font-weight: 400;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 9px;
  outline: none;
  background: rgba(255, 255, 255, 0.035);
  font: inherit;
  font-weight: 400;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form input {
  min-height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 150px;
  padding: 13px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(97, 213, 232, 0.7);
  box-shadow: 0 0 0 3px rgba(97, 213, 232, 0.08);
}

.contact-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact-submit-row {
  display: flex;
  gap: 18px;
  align-items: center;
}

.contact-submit-row .button:disabled {
  cursor: wait;
  opacity: 0.58;
}

.contact-status {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.contact-status.is-success {
  color: #79dfbd;
}

.contact-status.is-error {
  color: #ffb3b3;
}

.closing-section {
  padding: 150px 0;
  text-align: center;
  background:
    linear-gradient(rgba(4, 11, 20, 0.88), rgba(4, 11, 20, 0.98)),
    radial-gradient(circle at 50% 20%, rgba(97, 213, 232, 0.16), transparent 35%);
}

.closing-content h2 {
  max-width: 940px;
  margin-right: auto;
  margin-left: auto;
}

.closing-actions {
  justify-content: center;
}

footer {
  padding: 30px 0;
  color: #6e7f93;
  border-top: 1px solid var(--line);
  font-size: 11px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

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

@media (max-width: 1050px) {
  :root {
    --shell: min(100% - 40px, 1240px);
  }

  .hero {
    min-height: auto;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    padding-top: 60px;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .systems-visual {
    height: 480px;
  }

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

  .metrics-strip > div:nth-child(2) {
    border-right: 0;
  }

  .metrics-strip > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .impact-card.featured {
    grid-column: span 2;
  }

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

  .work-card-ai {
    grid-column: span 2;
  }

  .architecture-panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .career-path {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 0;
  }

  .career-path::before {
    display: none;
  }

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

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 28px, 1240px);
  }

  .brand-name {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 73px;
    right: 14px;
    left: 14px;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: #081421;
    border: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a,
  .site-nav .leo-link {
    width: 100%;
    justify-content: flex-start;
    padding: 13px;
    text-align: left;
  }

  .hero {
    padding-top: 105px;
  }

  .hero-shell {
    gap: 20px;
    padding-top: 45px;
  }

  h1 {
    font-size: clamp(50px, 18vw, 76px);
  }

  .hero-statement {
    font-size: 17px;
  }

  .hero-actions .button,
  .closing-actions .button {
    width: 100%;
  }

  .systems-visual {
    height: 390px;
    margin: 0 -7px;
  }

  .visual-caption,
  .section-index {
    display: none;
  }

  .system-label {
    font-size: 9px;
  }

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

  .metrics-strip > div {
    min-height: 100px;
    padding: 18px;
  }

  .metrics-strip strong {
    font-size: 23px;
  }

  .section {
    padding: 82px 0;
  }

  .two-column,
  .section-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .profile-copy {
    padding-top: 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .impact-grid,
  .work-grid,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .impact-card.featured {
    grid-column: auto;
  }

  .work-card-ai {
    grid-column: auto;
  }

  .work-card {
    min-height: 330px;
    padding: 28px;
  }

  .architecture-panel {
    padding: 30px 24px;
  }

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

  .architecture-flow li {
    display: grid;
    grid-template-columns: 32px 1fr;
    padding: 16px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .architecture-flow li::after {
    display: none;
  }

  .architecture-flow span {
    grid-row: 1 / span 2;
    margin: 0;
  }

  .impact-card {
    min-height: 330px;
  }

  .career-path {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 10px;
  }

  .career-path li {
    display: grid;
    grid-template-columns: 54px 24px 1fr;
    align-items: start;
    padding: 18px 0;
    text-align: left;
    border-bottom: 1px solid var(--line);
  }

  .career-path li::before {
    grid-column: 2;
    grid-row: 1;
    margin: 5px auto 0;
  }

  .career-path .career-year {
    grid-column: 1;
    grid-row: 1;
  }

  .career-path li div {
    grid-column: 3;
    grid-row: 1;
  }

  .capability {
    min-height: 230px;
  }

  .capability > span {
    margin-bottom: 45px;
  }

  .leo-panel {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 35px 25px;
  }

  .leo-orbit {
    width: 92px;
    height: 92px;
  }

  .contact-field-grid {
    grid-template-columns: 1fr;
  }

  .contact-submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-content {
    flex-direction: column;
  }
}

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

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

  .button {
    transition: none;
  }
}
