:root {
  color-scheme: light;
  --page: #f7f9fc;
  --paper: #ffffff;
  --ink: #101828;
  --muted: #59677a;
  --line: #d9e2ee;
  --accent: #1d4ed8;
  --accent-dark: #0f2f6b;
  --accent-soft: #eef4ff;
  --shadow: 0 24px 70px rgba(16, 32, 51, .09);
  --radius: 14px;
  --radius-sm: 9px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #ffffff 0, #eef4ff 32rem, var(--page) 32rem);
  color: var(--ink);
  font: 15px/1.48 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(29, 78, 216, .32);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 10;
  transform: translateY(-160%);
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  background: var(--accent-dark);
  color: #ffffff;
  font-weight: 800;
}

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

.contact-strip a,
.resume-section a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.contact-strip a:hover,
.resume-section a:hover {
  color: var(--accent-dark);
}

.resume-page {
  width: min(920px, calc(100% - 28px));
  margin: 32px auto;
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.resume-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 2px solid var(--line);
}

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

.eyebrow {
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

h1 {
  color: var(--ink);
  font-size: 48px;
  line-height: 1;
  letter-spacing: 0;
}

.headline {
  max-width: 640px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 18px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.actions a,
.actions button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: border-color .18s ease, color .18s ease, background .18s ease, transform .18s ease;
}

.actions a:hover,
.actions button:hover {
  border-color: var(--accent);
  background: #ffffff;
  color: var(--accent-dark);
  transform: translateY(-1px);
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  padding: 16px 0 6px;
  color: var(--muted);
  font-size: 13px;
}

.contact-strip span {
  overflow-wrap: anywhere;
}

.resume-section {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 26px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.resume-section > :not(h2) {
  grid-column: 2;
}

.resume-section:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

h2 {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}

h3 {
  font-size: 18px;
  line-height: 1.18;
  letter-spacing: 0;
}

.summary p,
.education > .entry > p,
.skill-list p,
.entry-head p {
  color: var(--muted);
}

.entry-head .citation {
  max-width: 620px;
  margin-top: 3px;
  color: #3f4c5f;
  font-size: inherit;
  line-height: inherit;
}

.skill-list {
  display: grid;
  gap: 10px;
}

.skill-list strong {
  color: var(--ink);
}

.entry {
  display: grid;
  gap: 10px;
  padding-bottom: 22px;
}

.entry:last-child {
  padding-bottom: 0;
}

.entry-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.entry-head span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.entry-head .citation span {
  color: var(--ink);
  font-size: inherit;
  font-weight: 800;
  white-space: normal;
}

ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

li::marker {
  color: var(--accent);
}

.compact {
  padding-bottom: 18px;
}

@media (max-width: 760px) {
  .resume-page {
    width: min(100% - 20px, 920px);
    margin: 10px auto;
    padding: 24px;
  }

  .resume-header,
  .entry-head {
    flex-direction: column;
  }

  .actions {
    justify-content: flex-start;
  }

  .actions a,
  .actions button {
    flex: 1 1 auto;
  }

  h1 {
    font-size: 38px;
  }

  .resume-section {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .resume-section > :not(h2) {
    grid-column: auto;
  }
}

@media print {
  @page {
    size: letter;
    margin: .38in .45in;
  }

  * {
    box-shadow: none !important;
    text-shadow: none !important;
    font-kerning: none;
    font-variant-ligatures: none;
  }

  body {
    background: #ffffff;
    color: #000000;
    font: 9.2pt/1.24 "DejaVu Sans", sans-serif;
  }

  .resume-page {
    width: auto;
    max-width: none;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #ffffff;
  }

  .actions,
  .skip-link,
  .eyebrow {
    display: none;
  }

  .resume-header {
    display: block;
    padding-bottom: 5pt;
    border-bottom: 1.25pt solid #000000;
    text-align: center;
  }

  h1 {
    margin: 0;
    font-size: 21pt;
    line-height: 1;
  }

  .headline {
    max-width: none;
    margin-top: 3pt;
    color: #333333;
    font-size: 9pt;
    line-height: 1.2;
  }

  .contact-strip {
    display: block;
    padding: 4pt 0 5pt;
    border-bottom: .75pt solid #b8b8b8;
    color: #222222;
    font-size: 8pt;
    line-height: 1.2;
    text-align: center;
  }

  .contact-strip span {
    display: inline;
  }

  .contact-strip span::after {
    content: " | ";
    color: #777777;
  }

  .contact-strip span:last-child::after {
    content: "";
  }

  .resume-section {
    display: block;
    padding: 6pt 0 0;
    border-bottom: 0;
  }

  .resume-section > :not(h2) {
    grid-column: auto;
  }

  .resume-section:last-child {
    padding-bottom: 0;
  }

  .entry {
    display: block;
    padding-bottom: 4pt;
    break-inside: auto;
    page-break-inside: auto;
  }

  .entry:last-child {
    padding-bottom: 0;
  }

  .entry-head {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    gap: 10pt;
    margin-bottom: 1.5pt;
  }

  h2 {
    margin: 0 0 3pt;
    padding-bottom: 1pt;
    border-bottom: .75pt solid #777777;
    color: #000000;
    font-size: 8.2pt;
    letter-spacing: 0;
    line-height: 1.1;
  }

  h3 {
    margin: 0;
    color: #000000;
    font-size: 9.4pt;
    line-height: 1.12;
  }

  p,
  .summary p,
  .education > .entry > p,
  .skill-list p,
  .entry-head p,
  ul {
    color: #222222;
  }

  p {
    margin: 0;
  }

  .skill-list {
    display: block;
  }

  .skill-list p {
    margin-bottom: 1.5pt;
  }

  .skill-list p:last-child {
    margin-bottom: 0;
  }

  .entry-head span {
    color: #000000;
    font-size: 8pt;
    font-weight: 700;
    white-space: nowrap;
  }

  .entry-head .citation {
    max-width: none;
    margin-top: .15pt;
    color: #222222;
    font-size: 6.1pt;
    line-height: 1.05;
  }

  .entry-head .citation span {
    color: #000000;
    font-size: inherit;
    white-space: normal;
  }

  ul {
    display: block;
    margin: 1pt 0 0;
    padding-left: 11pt;
  }

  li {
    margin: 0 0 1.2pt;
  }

  li:last-child {
    margin-bottom: 0;
  }

  a[href]::after {
    content: "";
  }

  a,
  .contact-strip a,
  .resume-section a {
    color: #000000;
    font-weight: inherit;
    text-decoration: none;
  }

  .targeted-resume {
    font-size: 9.2pt;
  }

  .targeted-resume .resume-section {
    padding-top: 4pt;
  }

  .targeted-resume .entry {
    padding-bottom: 3pt;
  }

  .targeted-resume li {
    margin-bottom: 1pt;
  }

  .askari-robotics-resume {
    font-size: 8.9pt;
    line-height: 1.2;
  }

  .askari-robotics-resume .resume-section {
    padding-top: 3.5pt;
  }

  .askari-robotics-resume .entry {
    padding-bottom: 2.5pt;
  }

  .askari-robotics-resume li {
    margin-bottom: .7pt;
  }

  .askari-robotics-resume .askari-project-keep {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .anduril-staff-resume {
    font-size: 9.55pt;
    line-height: 1.29;
  }

  .anduril-staff-resume .resume-header {
    padding-bottom: 5.5pt;
  }

  .anduril-staff-resume .contact-strip {
    padding: 4.7pt 0 5.5pt;
    line-height: 1.23;
  }

  .anduril-staff-resume .resume-section {
    padding-top: 4.9pt;
  }

  .anduril-staff-resume h2 {
    margin-bottom: 3.3pt;
  }

  .anduril-staff-resume h3 {
    line-height: 1.14;
  }

  .anduril-staff-resume .entry {
    padding-bottom: 4.3pt;
  }

  .anduril-staff-resume .entry-head {
    margin-bottom: 1.8pt;
  }

  .anduril-staff-resume .entry-head p {
    line-height: 1.14;
  }

  .anduril-staff-resume .entry-head .citation {
    margin-top: .35pt;
    font-size: 7.2pt;
    line-height: 1.1;
  }

  .anduril-staff-resume ul {
    margin-top: 1pt;
  }

  .anduril-staff-resume li {
    margin-bottom: 1.6pt;
    line-height: 1.27;
  }

  .two-page-resume {
    font-size: 8.45pt;
    line-height: 1.18;
  }

  .two-page-resume h1 {
    font-size: 19pt;
  }

  .two-page-resume .headline {
    margin-top: 2pt;
    font-size: 8pt;
    line-height: 1.13;
  }

  .two-page-resume .resume-header {
    padding-bottom: 3.4pt;
  }

  .two-page-resume .contact-strip {
    padding: 2.5pt 0 3pt;
    font-size: 7.4pt;
    line-height: 1.1;
  }

  .two-page-resume .resume-section {
    padding-top: 2.8pt;
  }

  .two-page-resume h2 {
    margin-bottom: 1.6pt;
    padding-bottom: .6pt;
    font-size: 7.8pt;
  }

  .two-page-resume h3 {
    font-size: 8.6pt;
    line-height: 1.08;
  }

  .two-page-resume .entry-head {
    gap: 6pt;
    margin-bottom: .8pt;
  }

  .two-page-resume .entry-head p {
    line-height: 1.1;
  }

  .two-page-resume .entry-head span {
    font-size: 7.4pt;
  }

  .two-page-resume .entry {
    padding-bottom: 1.8pt;
  }

  .two-page-resume .compact {
    padding-bottom: 1.8pt;
  }

  .two-page-resume .skill-list p {
    margin-bottom: .4pt;
    line-height: 1.1;
  }

  .two-page-resume .entry-head .citation {
    margin-top: .2pt;
    font-size: 7pt;
    line-height: 1.08;
  }

  .two-page-resume ul {
    margin-top: .3pt;
    padding-left: 10pt;
  }

  .two-page-resume li {
    margin-bottom: .45pt;
    line-height: 1.16;
  }

  .one-x-resume {
    font-size: 9.1pt;
    line-height: 1.22;
  }

  .one-x-resume .resume-section {
    padding-top: 3.5pt;
  }

  .one-x-resume .entry {
    padding-bottom: 2.45pt;
  }

  .one-x-resume .entry-head {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .one-x-resume .skill-list p {
    margin-bottom: .8pt;
    line-height: 1.18;
  }

  .one-x-resume .entry-head .citation {
    margin-top: .25pt;
    font-size: 6.8pt;
    line-height: 1.06;
  }

  .one-x-resume li {
    margin-bottom: .55pt;
    line-height: 1.19;
  }

  .one-x-resume .summary li,
  .one-x-resume .education li,
  .one-x-resume section[aria-labelledby="experience-title"] li {
    margin-bottom: .45pt;
    line-height: 1.16;
  }

}
