@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/geist-98bbbccb.woff2") format("woff2");
}

:root {
  color-scheme: dark;
  --background: #071022;
  --surface: #0a162e;
  --surface-deep: #030817;
  --ink: #f5f7ff;
  --blue: #2f67ff;
  --blue-text: #78a0ff;
  --orange: #ff6b22;
  --muted: #a9b5cd;
  --line: #294377;
  --line-soft: #17294d;
  --font-geist-sans: "Geist", Arial, sans-serif;
  --display: "Bahnschrift Condensed", "Arial Narrow", "Franklin Gothic Condensed",
    "Liberation Sans Narrow", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--background);
  color: var(--ink);
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
svg { display: block; }

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: clamp(28px, 4vw, 68px);
  min-height: 76px;
  padding: 12px clamp(24px, 6vw, 108px);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 16, 34, 0.96);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}
.wordmark {
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1;
}
.site-header nav { display: flex; gap: clamp(22px, 3vw, 46px); }
.site-header nav a {
  position: relative;
  color: #e7edfb;
  font-size: 0.93rem;
  font-weight: 650;
}
.site-header nav a::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transition: width 180ms ease;
}
.site-header nav a:hover::after,
.site-header nav a:focus-visible::after { width: 100%; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid var(--blue);
  background: var(--blue);
  color: white;
  font-size: 0.92rem;
  font-weight: 720;
  line-height: 1;
  transition: background 180ms ease, transform 180ms ease;
}
.button:hover { transform: translateY(-2px); background: #1d50e5; }
.button:focus-visible,
a:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--orange) 75%, white);
  outline-offset: 4px;
}
.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.8;
}
.button-small { min-height: 46px; padding-inline: 18px; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(620px, 1fr) 1fr;
  min-height: min(680px, calc(100svh - 76px));
  padding-left: clamp(24px, 7.6vw, 140px);
  overflow: hidden;
  background: var(--background);
}
.hero-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  padding: 70px 20px 70px 0;
}
.hero h1,
.section-heading h2,
.experience-intro h2,
.contact h2 {
  margin: 0;
  font-family: var(--display);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.97;
}
.hero h1 { max-width: 700px; font-size: clamp(3.6rem, 5vw, 5.4rem); }
.hero h1 span { color: var(--blue-text); }
.signal-line {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 124px;
  margin: 30px 0 22px;
}
.signal-line i { display: block; width: 92px; height: 4px; background: var(--orange); }
.calibration-mark {
  position: relative;
  display: inline-grid;
  width: 20px;
  height: 20px;
  color: var(--ink);
  place-items: center;
}
.calibration-mark::before,
.calibration-mark::after { position: absolute; background: currentColor; content: ""; }
.calibration-mark::before { width: 20px; height: 1px; }
.calibration-mark::after { width: 1px; height: 20px; }
.calibration-mark span {
  width: 8px;
  height: 8px;
  border: 1px solid currentColor;
  border-radius: 50%;
}
.hero-copy > p {
  max-width: 570px;
  margin: 0;
  color: #c8d2e8;
  font-size: clamp(1.02rem, 1.25vw, 1.2rem);
  line-height: 1.6;
}
.hero-actions { display: flex; align-items: center; gap: 42px; margin-top: 30px; }
.text-link {
  color: #74a0ff;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.hero-media { position: relative; min-height: 580px; align-self: stretch; }
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}
.hero-scale {
  position: absolute;
  top: 46px;
  bottom: 46px;
  left: 32px;
  width: 1px;
  background: repeating-linear-gradient(to bottom, var(--line) 0, var(--line) 3px, transparent 3px, transparent 12px);
}

.section-shell { padding: clamp(78px, 8vw, 126px) clamp(24px, 7.6vw, 140px); }
.capabilities { padding-top: 46px; }
.capabilities { background: var(--background); }
.ruled-heading { display: flex; align-items: center; gap: 34px; margin-bottom: 28px; }
.section-heading h2,
.experience-intro h2 { flex: none; font-size: clamp(2.6rem, 4.5vw, 4.8rem); }
.rule { position: relative; height: 1px; flex: 1; background: var(--line); }
.rule .calibration-mark { position: absolute; top: -10px; right: 0; }
.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.capability-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  min-height: 132px;
  padding: 28px 28px 26px 0;
  border-bottom: 1px solid var(--line);
}
.capability-item:not(:nth-child(3n + 1)) { padding-left: 28px; border-left: 1px solid var(--line-soft); }
.capability-icon { color: var(--blue); }
.capability-icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.55;
}
.capability-item h3 { margin: 0 0 7px; font-size: 1.03rem; line-height: 1.25; }
.capability-item p { margin: 0; color: var(--muted); font-size: 0.88rem; line-height: 1.5; }

.experience { position: relative; padding-top: 80px; background: var(--surface); }
.experience-intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 0.8fr) 1fr 0.7fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 46px;
}
.experience-intro > p { max-width: 470px; margin: 0 0 18px; color: #c8d2e8; font-size: 1.12rem; }
.circuit-motif {
  display: flex;
  flex-direction: column;
  align-self: center;
  justify-self: end;
  width: min(100%, 300px);
  gap: 12px;
}
.circuit-motif span { position: relative; display: block; height: 1px; background: var(--line); }
.circuit-motif span:nth-child(1) { width: 72%; margin-left: auto; }
.circuit-motif span:nth-child(2) { width: 100%; }
.circuit-motif span:nth-child(3) { width: 48%; }
.circuit-motif span::after {
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  border: 1px solid var(--blue);
  border-radius: 50%;
  background: var(--surface);
  content: "";
}
.experience .circuit-motif span::after { background: var(--surface); }
.credentials .circuit-motif span::after { background: var(--background); }
.timeline { position: relative; margin-left: 24px; }
.timeline::before { position: absolute; top: 0; bottom: 0; left: 0; width: 1px; background: var(--blue); content: ""; }
.timeline-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 1.2fr) minmax(190px, 0.55fr) minmax(180px, 0.45fr);
  gap: 42px;
  padding: 34px 0 34px 80px;
  border-bottom: 1px solid var(--line);
}
.timeline-row:first-child { border-top: 1px solid var(--line); }
.timeline-node {
  position: absolute;
  top: 34px;
  left: -20px;
  display: grid;
  width: 40px;
  height: 40px;
  border: 1px solid var(--blue);
  border-radius: 50%;
  background: var(--surface);
  color: var(--blue);
  place-items: center;
}
.timeline-node .calibration-mark,
.credential-node .calibration-mark { color: var(--blue); }
.timeline-node .calibration-mark span,
.credential-node .calibration-mark span { background: var(--blue); }
.role-main h3,
.credential-row h3 {
  margin: 0;
  font-family: var(--display);
  font-stretch: condensed;
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.08;
}
.company { margin: 5px 0 10px; color: var(--blue-text); font-weight: 750; }
.role-main ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  color: #c1cbe0;
  font-size: 0.94rem;
  line-height: 1.45;
  list-style: none;
}
.role-main li { position: relative; padding-left: 20px; }
.role-main li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--blue);
  content: "";
}
.location,
.dates { margin: 8px 0 0; font-weight: 650; }
.location { color: #d5ddef; }
.dates { color: var(--blue-text); }

.credentials { padding-top: 100px; background: var(--background); }
.credentials .experience-intro { grid-template-columns: minmax(340px, 1fr) 1fr; margin-bottom: 36px; }
.credential-ledger { border-top: 1px solid var(--line); }
.credential-row {
  display: grid;
  grid-template-columns: 84px minmax(380px, 1fr) 1fr;
  align-items: center;
  min-height: 104px;
  border-bottom: 1px solid var(--line);
}
.credential-node {
  display: grid;
  height: 62px;
  border-right: 1px dashed var(--line);
  color: var(--blue);
  place-items: center;
}
.credential-row h3 { padding: 20px 32px; }
.credential-row > p {
  margin: 0;
  padding: 20px 32px;
  border-left: 1px dashed var(--line);
  color: var(--blue-text);
  font-weight: 650;
}

.contact { position: relative; overflow: hidden; background: var(--surface-deep); color: white; }
.contact::after {
  position: absolute;
  right: -50px;
  bottom: 58px;
  width: 420px;
  height: 150px;
  border-top: 1px solid rgba(89, 122, 255, 0.75);
  border-left: 1px solid rgba(89, 122, 255, 0.75);
  content: "";
  transform: skewX(-35deg);
}
.contact-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(50px, 6vw, 96px);
  padding: 76px clamp(24px, 7.6vw, 140px) 58px;
}
.contact-copy { padding-right: 48px; border-right: 1px dashed rgba(255, 255, 255, 0.65); }
.contact h2 { max-width: 570px; font-size: clamp(3rem, 4.4vw, 4.7rem); }
.signal-line-dark .calibration-mark { color: #a8b6dd; }
.contact-copy p { max-width: 500px; margin: 0; color: #d5dcf1; font-size: 1.06rem; }
.contact-actions { align-self: center; }
.button-row { display: flex; gap: 26px; }
.contact-actions .button { min-width: 220px; }
.button-outline { border-color: #6f8cff; background: transparent; }
.button-outline:hover { background: rgba(255, 255, 255, 0.08); }
address {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 34px;
  color: #e7ebfa;
  font-style: normal;
  font-weight: 650;
}
address span::after,
address a:not(:last-child)::after { margin-left: 28px; color: var(--blue); content: "·"; }
footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 94px;
  margin: 0 clamp(24px, 7.6vw, 140px);
  border-top: 1px solid rgba(168, 182, 221, 0.5);
}
.wordmark-light { color: white; }
footer i { width: 6px; height: 6px; background: var(--orange); }
footer p { margin: 0; color: #d6ddf3; }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-right: 24px; }
  .hero-copy { max-width: 640px; }
  .hero-media { position: absolute; z-index: 1; top: 0; right: -21%; bottom: 0; width: 74%; opacity: 0.46; }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .capability-item:not(:nth-child(3n + 1)) { padding-left: 0; border-left: 0; }
  .capability-item:nth-child(even) { padding-left: 28px; border-left: 1px solid var(--line-soft); }
  .experience-intro { grid-template-columns: 1fr 1fr; }
  .circuit-motif { display: none; }
  .timeline-row { grid-template-columns: 1fr 0.46fr; }
  .location { grid-column: 2; grid-row: 1; }
  .dates { grid-column: 2; grid-row: 1; margin-top: 42px; }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-copy { padding-right: 0; padding-bottom: 44px; border-right: 0; border-bottom: 1px dashed rgba(255,255,255,.65); }
}

@media (max-width: 720px) {
  .site-header { min-height: 68px; padding-inline: 20px; }
  .button-small { width: 46px; min-width: 46px; padding: 0; font-size: 0; }
  .button-small svg { width: 22px; height: 22px; }
  .hero { min-height: auto; padding: 0 20px; }
  .hero-copy { padding: 74px 0 64px; }
  .hero h1 { font-size: clamp(3.1rem, 14vw, 4.7rem); }
  .hero-media { top: auto; right: -45%; bottom: -4%; width: 115%; height: 56%; }
  .hero-copy > p { max-width: 95%; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 24px; }
  .hero-scale { display: none; }
  .section-shell { padding: 72px 20px; }
  .capabilities { padding-top: 32px; }
  .ruled-heading { align-items: flex-start; flex-direction: column; gap: 18px; }
  .rule { width: 100%; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-item,
  .capability-item:nth-child(even) { padding: 24px 0; border-left: 0; }
  .experience-intro,
  .credentials .experience-intro { grid-template-columns: 1fr; gap: 20px; }
  .timeline { margin-left: 18px; }
  .timeline-row { grid-template-columns: 1fr; gap: 14px; padding: 32px 0 32px 48px; }
  .timeline-node { top: 32px; left: -15px; width: 30px; height: 30px; }
  .location,
  .dates { grid-column: 1; grid-row: auto; margin: 0; }
  .dates { order: -1; }
  .credential-row { grid-template-columns: 54px 1fr; }
  .credential-row h3 { padding: 22px 18px 8px; }
  .credential-row > p { grid-column: 2; padding: 0 18px 22px; border-left: 0; }
  .contact-inner { gap: 38px; padding: 64px 20px 46px; }
  .contact h2 { font-size: clamp(3rem, 14vw, 4.5rem); }
  .button-row { align-items: stretch; flex-direction: column; gap: 14px; }
  .contact-actions .button { min-width: 0; }
  address { align-items: flex-start; flex-direction: column; }
  address span::after,
  address a:not(:last-child)::after { display: none; }
  footer { align-items: flex-start; flex-direction: column; gap: 10px; margin-inline: 20px; padding-block: 26px; }
  footer i { display: none; }
}

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