:root {
  --night: #081514;
  --night-soft: #0d201e;
  --forest: #12342f;
  --emerald: #1f735f;
  --emerald-bright: #35a283;
  --gold: #c7a15a;
  --gold-light: #ead4a5;
  --paper: #f7f5ef;
  --warm: #eee9df;
  --white: #ffffff;
  --ink: #182522;
  --muted: #68736f;
  --line: #d9d9d1;
  --line-dark: rgba(255, 255, 255, 0.13);
  --shadow: 0 30px 80px rgba(5, 20, 18, 0.15);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, "Segoe UI", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--night);
  background: var(--gold-light);
}

a {
  color: inherit;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--night);
  background: var(--gold-light);
  transform: translateY(-160%);
}

.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: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  background: rgba(8, 21, 20, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(199, 161, 90, 0.78);
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: -0.05em;
  transform: rotate(45deg);
}

.brand-mark::first-line {
  transform: rotate(-45deg);
}

.brand-mark {
  text-indent: -1px;
}

.brand-mark::after {
  content: "MM";
  position: absolute;
  transform: rotate(-45deg);
}

.brand > .brand-mark {
  position: relative;
  color: transparent;
}

.brand-copy {
  display: grid;
  line-height: 1.2;
}

.brand-copy strong {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-copy span {
  margin-top: 5px;
  color: #a9bab5;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

.site-nav a {
  position: relative;
  color: #c7d1ce;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.015em;
  text-decoration: none;
}

.site-nav a:not(.nav-external)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-nav .nav-external {
  padding: 9px 13px;
  border: 1px solid rgba(199, 161, 90, 0.6);
  color: var(--gold-light);
}

.site-nav .nav-external:hover,
.site-nav .nav-external:focus-visible {
  color: var(--night);
  background: var(--gold);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 90px 0 0;
  color: var(--white);
  background:
    radial-gradient(
      circle at 79% 37%,
      rgba(31, 115, 95, 0.25),
      transparent 32%
    ),
    linear-gradient(130deg, #06110f 0%, var(--night) 58%, #102823 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: -190px;
  right: -90px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(199, 161, 90, 0.14);
  border-radius: 50%;
  box-shadow:
    0 0 0 100px rgba(199, 161, 90, 0.025),
    0 0 0 210px rgba(199, 161, 90, 0.018);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000, transparent 70%);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: 90px;
  align-items: center;
  padding-bottom: 88px;
}

.hero-copy,
.hero-console,
.hero-layout > * {
  min-width: 0;
}

.eyebrow,
.section-kicker {
  margin-bottom: 18px;
  color: var(--emerald);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
}

.eyebrow span {
  width: 31px;
  height: 1px;
  background: var(--gold);
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.038em;
}

h1 {
  max-width: 760px;
  margin-bottom: 8px;
  font-size: clamp(4rem, 7vw, 6.8rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.55rem, 4.4vw, 4.7rem);
}

h3 {
  font-size: 21px;
  line-height: 1.3;
}

.hero-role {
  margin-bottom: 30px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.6vw, 2.35rem);
}

.hero-role em {
  margin-inline: 7px;
  color: var(--emerald-bright);
  font-weight: 400;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 35px;
  color: #c9d5d1;
  font-size: 18px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.button {
  min-height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.035em;
  text-decoration: none;
  transition:
    color 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

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

.button-primary {
  color: var(--night);
  background: var(--gold);
}

.button-primary:hover,
.button-primary:focus-visible,
.button-gold:hover,
.button-gold:focus-visible {
  background: var(--gold-light);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
  background: transparent;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.button-gold {
  color: var(--night);
  background: var(--gold);
}

.hero-console {
  position: relative;
  border: 1px solid rgba(199, 161, 90, 0.28);
  background: rgba(5, 16, 14, 0.72);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
}

.hero-console::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: -1px;
  width: 2px;
  background: var(--emerald-bright);
}

.console-bar {
  min-height: 45px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 17px;
  border-bottom: 1px solid var(--line-dark);
}

.console-bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #41534f;
}

.console-bar span:first-child {
  background: var(--gold);
}

.console-bar p {
  margin: 0 0 0 auto;
  color: #718580;
  font-family: Consolas, monospace;
  font-size: 10px;
}

.hero-console dl {
  margin-bottom: 0;
  padding: 8px 28px 15px;
}

.hero-console dl > div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
}

.hero-console dl > div:last-child {
  border-bottom: 0;
}

.hero-console dt {
  margin-bottom: 5px;
  color: #81938e;
  font-family: Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-console dd {
  margin-bottom: 0;
  color: #e6ecea;
  font-size: 14px;
}

.hero-console a {
  color: var(--gold-light);
  text-decoration: none;
}

.hero-footer {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
}

.hero-footer span {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line-dark);
  color: #91a39e;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.hero-footer span:last-child {
  border-right: 0;
}

.section {
  padding: 118px 0;
}

.section-paper {
  background: var(--paper);
}

.section-warm {
  background: var(--warm);
}

.section-dark {
  color: #c8d3d0;
  background: var(--night-soft);
}

.section-dark h2,
.section-dark h3,
.section-milestones h2 {
  color: var(--white);
}

.section-kicker-light {
  color: var(--gold-light);
}

.split-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 100px;
}

.split-intro h2,
.section-heading h2,
.credentials-grid h2 {
  color: var(--ink);
}

.lead-prose {
  padding-top: 18px;
  color: #4d5a56;
  font-size: 18px;
}

.lead-prose p {
  margin-bottom: 24px;
}

.text-link,
.inline-action {
  color: var(--emerald);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 66px;
}

.section-heading.compact {
  margin-bottom: 50px;
}

.section-heading > p:last-child {
  max-width: 680px;
  color: #91a29d;
  font-size: 17px;
}

.section-dark .section-heading h2 {
  color: var(--white);
}

.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 16px;
  bottom: 32px;
  left: 183px;
  width: 1px;
  background: linear-gradient(var(--gold), rgba(199, 161, 90, 0.12));
}

.timeline-entry {
  display: grid;
  grid-template-columns: 145px 77px minmax(0, 1fr);
  margin-bottom: 72px;
}

.timeline-entry:last-child {
  margin-bottom: 0;
}

.timeline-date {
  padding-top: 1px;
  color: #768984;
  font-family: Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.07em;
  text-align: right;
  text-transform: uppercase;
}

.timeline-date span {
  display: block;
  margin-bottom: 3px;
  color: var(--gold-light);
  font-size: 16px;
}

.timeline-marker {
  position: relative;
}

.timeline-marker::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 7px;
  left: 34px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: var(--night-soft);
  box-shadow: 0 0 0 7px rgba(199, 161, 90, 0.08);
}

.timeline-content {
  max-width: 740px;
  padding-bottom: 10px;
}

.timeline-org,
.project-meta {
  margin-bottom: 9px;
  color: var(--emerald-bright);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.timeline-content h3 {
  margin-bottom: 17px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 400;
}

.timeline-content p {
  max-width: 700px;
  margin-bottom: 15px;
}

.timeline-content ul {
  display: grid;
  gap: 8px;
  margin: 0 0 19px;
  padding-left: 18px;
  color: #9eb0ab;
}

.inline-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  text-decoration: none;
}

.inline-action span {
  transition: transform 160ms ease;
}

.inline-action:hover span,
.inline-action:focus-visible span {
  transform: translate(3px, -3px);
}

.inline-action.dark {
  color: var(--emerald);
}

.capability-list {
  border-top: 1px solid var(--line);
}

.capability-list article {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 32px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}

.capability-number,
.project-index {
  color: var(--gold);
  font-family: Consolas, monospace;
  font-size: 12px;
}

.capability-list h3 {
  margin-bottom: 11px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
}

.capability-list p {
  max-width: 900px;
  margin-bottom: 5px;
  color: #56625e;
}

.capability-list small {
  color: var(--muted);
  font-size: 12px;
}

.founder-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  color: #cedbd7;
  background: var(--forest);
}

.founder-section::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -320px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(199, 161, 90, 0.18);
  border-radius: 50%;
}

.founder-signal {
  position: absolute;
  top: 30px;
  right: -25px;
  display: grid;
  gap: 12px;
  color: rgba(255, 255, 255, 0.045);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 0.75;
  text-align: right;
}

.founder-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 110px;
}

.founder-grid h2 {
  color: var(--white);
}

.founder-grid > div:last-child {
  padding-top: 35px;
  font-size: 18px;
}

.founder-grid .button {
  margin-top: 14px;
}

.project-list {
  border-top: 1px solid #d1ccc1;
}

.project-list article {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 25px;
  padding: 48px 0;
  border-bottom: 1px solid #d1ccc1;
}

.project-list .project-featured {
  grid-template-columns: 70px minmax(0, 1fr) 320px;
  align-items: center;
  padding-block: 58px;
}

.project-body h3 {
  margin-bottom: 15px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 400;
}

.project-body p:not(.project-meta) {
  max-width: 680px;
  color: #52605b;
}

.project-visual {
  min-height: 210px;
  display: grid;
  align-content: center;
  padding: 30px;
  border: 1px solid rgba(18, 52, 47, 0.17);
  background:
    linear-gradient(rgba(18, 52, 47, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 52, 47, 0.05) 1px, transparent 1px), #e4dfd3;
  background-size: 28px 28px;
}

.product-visual {
  grid-template-columns: 1fr 28px 1fr 28px 1fr;
  align-items: center;
}

.system-node {
  min-height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid var(--emerald);
  color: var(--forest);
  background: rgba(247, 245, 239, 0.78);
  font-family: Consolas, monospace;
  font-size: 8px;
}

.system-node.central {
  color: var(--white);
  background: var(--forest);
}

.product-visual > span {
  height: 1px;
  background: var(--emerald);
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 90px;
}

.credentials-grid.training-only {
  max-width: 760px;
  grid-template-columns: minmax(0, 1fr);
}

.credentials-grid > div:last-child {
  padding-left: 70px;
  border-left: 1px solid var(--line);
}

.credentials-grid.training-only > div:last-child {
  padding-left: 0;
  border-left: 0;
}

.credential-primary,
.training-list article {
  position: relative;
  padding: 25px 0;
  border-top: 1px solid var(--line);
}

.credential-primary > span,
.training-list span {
  color: var(--gold);
  font-family: Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.credential-primary h3,
.training-list h3 {
  margin: 12px 0 5px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.credential-primary p,
.training-list p {
  margin-bottom: 4px;
  color: #596762;
}

.credential-primary strong {
  font-size: 13px;
}

.credential-note {
  max-width: 520px;
  margin-top: 16px;
  padding-left: 14px;
  border-left: 2px solid var(--gold);
  color: var(--muted);
  font-size: 12px;
}

.section-milestones {
  color: #c8d3d0;
  background: #0a1917;
}

.milestones-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 100px;
}

.milestone-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.milestone-list li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 29px 0;
  border-top: 1px solid var(--line-dark);
}

.milestone-list li > span {
  color: var(--gold);
  font-family: Consolas, monospace;
  font-size: 12px;
}

.milestone-list strong {
  display: block;
  margin-bottom: 7px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.milestone-list p {
  margin-bottom: 0;
  color: #94a49f;
  font-size: 14px;
}

.contact-section {
  padding: 110px 0;
  color: #c9d5d1;
  background: var(--forest);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.75fr) auto;
  gap: 70px;
  align-items: center;
}

.contact-grid h2 {
  margin-bottom: 15px;
  color: var(--white);
}

.contact-grid > div:first-child p:last-child {
  max-width: 550px;
  margin-bottom: 0;
}

.contact-grid address {
  display: grid;
  gap: 12px;
  font-style: normal;
}

.contact-grid address a,
.contact-grid address p {
  margin-bottom: 0;
  color: var(--white);
  text-decoration: none;
}

.contact-grid address a:hover,
.contact-grid address a:focus-visible {
  color: var(--gold-light);
}

.contact-grid address span {
  display: block;
  color: #81a39b;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-actions {
  display: grid;
  min-width: 185px;
}

.site-footer {
  padding: 28px 0;
  color: #96a7a2;
  background: var(--night);
}

.footer-inner {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-inner p {
  margin-bottom: 0;
  font-size: 11px;
}

.footer-inner > a {
  color: var(--gold-light);
  font-size: 11px;
  text-decoration: none;
}

.footer-brand .brand-mark {
  width: 36px;
  height: 36px;
  font-size: 12px;
}

[data-reveal] {
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

[data-reveal].is-visible {
  animation: reveal-in 500ms ease both;
}

@keyframes reveal-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1050px) {
  .site-nav {
    gap: 17px;
  }

  .site-nav a {
    font-size: 11px;
  }

  .hero-layout {
    gap: 48px;
  }

  .project-list .project-featured {
    grid-template-columns: 60px minmax(0, 1fr);
  }

  .project-visual {
    display: none;
  }

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

  .contact-actions {
    grid-column: 1 / -1;
    display: flex;
  }
}

@media (max-width: 860px) {
  .shell {
    width: min(100% - 36px, 720px);
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 80px;
    right: 0;
    left: 0;
    display: none;
    padding: 22px 18px 26px;
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
    background: rgba(8, 21, 20, 0.99);
  }

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

  .site-nav a {
    padding: 12px;
    font-size: 13px;
  }

  .site-nav a:not(.nav-external)::after {
    display: none;
  }

  .site-nav .nav-external {
    margin-top: 8px;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-top: 70px;
  }

  .hero-layout,
  .split-intro,
  .founder-grid,
  .credentials-grid,
  .milestones-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .hero-console {
    max-width: 560px;
  }

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

  .hero-footer span:nth-child(2) {
    border-right: 0;
  }

  .hero-footer span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .section {
    padding: 88px 0;
  }

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

  .timeline::before {
    left: 8px;
  }

  .timeline-entry {
    grid-template-columns: 34px minmax(0, 1fr);
    margin-bottom: 58px;
  }

  .timeline-date {
    grid-column: 2;
    text-align: left;
  }

  .timeline-marker {
    grid-row: 1 / 3;
    grid-column: 1;
  }

  .timeline-marker::before {
    left: 3px;
  }

  .timeline-content {
    grid-column: 2;
  }

  .credentials-grid > div:last-child {
    padding-left: 0;
    border-left: 0;
  }

  .founder-grid > div:last-child {
    padding-top: 0;
  }
}

@media (max-width: 600px) {
  .shell {
    width: calc(100% - 30px);
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-copy strong {
    font-size: 11px;
  }

  .brand-copy span {
    font-size: 8px;
  }

  .site-nav {
    top: 72px;
  }

  .hero {
    padding-top: 54px;
  }

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

  h1 {
    font-size: clamp(3.2rem, 16vw, 4.3rem);
  }

  h2 {
    font-size: clamp(2.3rem, 12vw, 3.2rem);
  }

  .hero-role {
    font-size: 1.35rem;
  }

  .hero-lead,
  .lead-prose,
  .founder-grid > div:last-child {
    font-size: 16px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-console dl {
    padding-inline: 20px;
  }

  .hero-footer {
    width: 100%;
  }

  .hero-footer span {
    padding-inline: 8px;
    font-size: 9px;
  }

  .section,
  .founder-section,
  .contact-section {
    padding: 72px 0;
  }

  .timeline-entry {
    gap: 4px;
  }

  .timeline-content ul {
    padding-left: 16px;
  }

  .capability-list article {
    grid-template-columns: 44px 1fr;
    gap: 12px;
    padding-block: 30px;
  }

  .project-list article,
  .project-list .project-featured {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
    padding-block: 37px;
  }

  .milestone-list li {
    grid-template-columns: 50px 1fr;
    gap: 13px;
  }

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

  .contact-actions {
    grid-column: auto;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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