:root {
  color-scheme: dark;
  --bg: #070a0a;
  --text: #f4f2eb;
  --muted: #aab2b2;
  --teal: #00a3ac;
  --teal-light: #42c4ca;
  --line: rgba(255, 255, 255, .14);
  --display: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
}

* { box-sizing: border-box; }
html { min-width: 320px; min-height: 100%; background: var(--bg); }
body {
  min-width: 320px;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  overflow-x: clip;
  background: linear-gradient(112deg, #070a0a 0%, #0c1515 58%, #070a0a 100%);
  color: var(--text);
  font: 16px/1.5 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  opacity: .34;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(#000, transparent 72%);
}
a { color: inherit; -webkit-tap-highlight-color: transparent; }
a:focus-visible { outline: 3px solid rgba(66, 196, 202, .7); outline-offset: 4px; }
.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 10;
  padding: 10px 14px;
  background: var(--text);
  color: var(--bg);
}
.skip-link:focus { top: 16px; }

.bio-shell {
  position: relative;
  width: min(calc(100% - 40px), 960px);
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  margin-inline: auto;
  padding-block: 20px 18px;
}
.bio-header {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-size: .72rem;
  font-weight: 800;
}
.bio-header img {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
}
.bio-main {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
  padding-block: 30px 26px;
}
.bio-hero {
  position: relative;
  isolation: isolate;
  display: block;
  padding-top: 34px;
}
.bio-visual {
  position: absolute;
  z-index: 0;
  top: -30px;
  right: -98px;
  width: 250px;
  aspect-ratio: 1;
  border: 1px solid rgba(66, 196, 202, .22);
  border-radius: 50%;
  background: rgba(0, 163, 172, .14);
  box-shadow: inset 0 0 0 20px rgba(0, 0, 0, .08), inset 0 0 0 21px rgba(66, 196, 202, .1);
  pointer-events: none;
}
.bio-visual::before {
  content: "";
  position: absolute;
  inset: -9%;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 50%;
}
.bio-visual::after {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background:
    linear-gradient(transparent calc(50% - .5px), rgba(255, 255, 255, .15) 50%, transparent calc(50% + .5px)),
    linear-gradient(90deg, transparent calc(50% - .5px), rgba(66, 196, 202, .18) 50%, transparent calc(50% + .5px));
  opacity: .65;
}
.bio-visual img {
  position: absolute;
  inset: 12%;
  width: 76%;
  height: 76%;
  border-radius: 50%;
  object-fit: cover;
  opacity: .26;
  filter: saturate(.65) contrast(.95) brightness(.7);
  mix-blend-mode: screen;
}
.bio-hero-copy { position: relative; z-index: 1; width: 100%; }
.bio-role {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 17px;
  color: var(--teal-light);
  font-size: .72rem;
  font-weight: 800;
}
.bio-role span {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(66, 196, 202, .55);
  border-radius: 50%;
  color: #d8f9f7;
  font-size: .62rem;
}
.bio-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: 3.35rem;
  font-weight: 800;
  line-height: .91;
  text-transform: uppercase;
}
.bio-hero h1 em { color: var(--teal-light); font-style: normal; }
.bio-claim {
  max-width: 31ch;
  margin: 20px 0 0;
  color: #d3dad7;
  font-size: .96rem;
  line-height: 1.6;
}

.bio-links {
  display: grid;
  border-top: 1px solid var(--line);
}
.bio-link {
  min-height: 70px;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 14px;
  padding: 14px 17px;
  border-left: 2px solid transparent;
  border-bottom: 1px solid var(--line);
  font-size: .85rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}
.bio-link-number { font-size: .63rem; font-weight: 800; opacity: .7; }
.bio-link-arrow { font-size: 1.25rem; font-weight: 500; line-height: 1; transition: transform .18s ease; }
.bio-link-primary { border-left-color: var(--teal); border-bottom-color: var(--teal); background: var(--teal); color: #001b1d; }
.bio-link-call { border-left: 2px solid var(--teal); background: rgba(0, 163, 172, .065); color: #f0f5f1; }
.bio-link-call .bio-link-arrow { color: var(--teal-light); }
.bio-link-site { color: #c9d1ce; }
.bio-link-site .bio-link-arrow { color: var(--teal-light); }
.bio-link:focus-visible .bio-link-arrow { transform: translate(3px, -3px); }

.bio-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 16px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: var(--muted);
  font-size: .75rem;
}
.bio-footer > span { color: #d5ddda; font-weight: 750; }
.bio-footer nav { display: flex; flex-wrap: wrap; gap: 8px 17px; }
.bio-footer a { text-decoration-color: rgba(170, 178, 178, .42); text-underline-offset: 3px; }
.bio-footer a:hover { text-decoration-color: currentColor; }

@media (hover: hover) {
  .bio-link:hover { transform: translateX(3px); }
  .bio-link:hover .bio-link-arrow { transform: translate(3px, -3px); }
  .bio-link-primary:hover { background: var(--teal-light); }
  .bio-link-call:hover { background: rgba(0, 163, 172, .13); }
  .bio-link-site:hover { color: var(--text); }
}

@media (max-width: 350px) {
  .bio-shell { width: calc(100% - 32px); }
  .bio-visual { right: -70px; width: 240px; }
  .bio-hero h1 { font-size: 3rem; }
  .bio-link { gap: 10px; padding-inline: 12px; font-size: .79rem; }
}

@media (min-width: 760px) {
  .bio-shell { width: min(calc(100% - 96px), 960px); padding-block: 38px 26px; }
  .bio-header { min-height: 58px; }
  .bio-header img { width: 40px; height: 40px; }
  .bio-main {
    gap: 30px;
    padding-block: 42px 36px;
  }
  .bio-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    align-items: center;
    gap: 24px;
    min-height: 280px;
    padding-top: 0;
  }
  .bio-hero-copy { grid-column: 1; grid-row: 1; }
  .bio-visual {
    position: relative;
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    top: auto;
    right: auto;
    width: 240px;
  }
  .bio-hero h1 { font-size: 4.35rem; }
  .bio-claim { margin-top: 24px; font-size: 1.04rem; }
  .bio-link { min-height: 72px; padding-inline: 22px; }
}

@media (min-width: 1100px) {
  .bio-hero { grid-template-columns: minmax(0, 1fr) 290px; gap: 48px; min-height: 330px; }
  .bio-visual { width: 290px; }
  .bio-hero h1 { font-size: 4.8rem; }
}

@media (prefers-reduced-motion: reduce) {
  .bio-link, .bio-link-arrow { transition: none; }
  .bio-link:hover, .bio-link:hover .bio-link-arrow, .bio-link:focus-visible .bio-link-arrow { transform: none; }
}
