/* =========================================================
   Brittany Chiang v4 — static HTML/CSS/JS conversion
   Original: https://github.com/bchiang7/v4 (MIT License)
   ========================================================= */

/* ---------- Fonts ---------- */
@font-face {
  font-family: 'Calibre';
  src: url('../fonts/Calibre/Calibre-Regular.woff2') format('woff2'),
    url('../fonts/Calibre/Calibre-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Calibre';
  src: url('../fonts/Calibre/Calibre-Medium.woff2') format('woff2'),
    url('../fonts/Calibre/Calibre-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Calibre';
  src: url('../fonts/Calibre/Calibre-Semibold.woff2') format('woff2'),
    url('../fonts/Calibre/Calibre-Semibold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Calibre';
  src: url('../fonts/Calibre/Calibre-RegularItalic.woff2') format('woff2'),
    url('../fonts/Calibre/Calibre-RegularItalic.woff') format('woff');
  font-weight: 400;
  font-style: italic;
  font-display: auto;
}
@font-face {
  font-family: 'Calibre';
  src: url('../fonts/Calibre/Calibre-MediumItalic.woff2') format('woff2'),
    url('../fonts/Calibre/Calibre-MediumItalic.woff') format('woff');
  font-weight: 500;
  font-style: italic;
  font-display: auto;
}
@font-face {
  font-family: 'Calibre';
  src: url('../fonts/Calibre/Calibre-SemiboldItalic.woff2') format('woff2'),
    url('../fonts/Calibre/Calibre-SemiboldItalic.woff') format('woff');
  font-weight: 600;
  font-style: italic;
  font-display: auto;
}
@font-face {
  font-family: 'SF Mono';
  src: url('../fonts/SFMono/SFMono-Regular.woff2') format('woff2'),
    url('../fonts/SFMono/SFMono-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'SF Mono';
  src: url('../fonts/SFMono/SFMono-Semibold.woff2') format('woff2'),
    url('../fonts/SFMono/SFMono-Semibold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'SF Mono';
  src: url('../fonts/SFMono/SFMono-RegularItalic.woff2') format('woff2'),
    url('../fonts/SFMono/SFMono-RegularItalic.woff') format('woff');
  font-weight: 400;
  font-style: italic;
  font-display: auto;
}
@font-face {
  font-family: 'SF Mono';
  src: url('../fonts/SFMono/SFMono-SemiboldItalic.woff2') format('woff2'),
    url('../fonts/SFMono/SFMono-SemiboldItalic.woff') format('woff');
  font-weight: 600;
  font-style: italic;
  font-display: auto;
}

/* ---------- Variables ---------- */
:root {
  --dark-navy: #020c1b;
  --navy: #0a192f;
  --light-navy: #112240;
  --lightest-navy: #233554;
  --navy-shadow: rgba(2, 12, 27, 0.7);
  --dark-slate: #495670;
  --slate: #8892b0;
  --light-slate: #a8b2d1;
  --lightest-slate: #ccd6f6;
  --white: #e6f1ff;
  --green: #64ffda;
  --green-tint: rgba(100, 255, 218, 0.1);
  --pink: #f57dff;
  --blue: #57cbff;

  --font-sans: 'Calibre', 'Inter', 'San Francisco', 'SF Pro Text', -apple-system, system-ui, sans-serif;
  --font-mono: 'SF Mono', 'Fira Code', 'Fira Mono', 'Roboto Mono', monospace;

  --fz-xxs: 12px;
  --fz-xs: 13px;
  --fz-sm: 14px;
  --fz-md: 16px;
  --fz-lg: 18px;
  --fz-xl: 20px;
  --fz-xxl: 22px;
  --fz-heading: 32px;

  --border-radius: 4px;
  --nav-height: 100px;
  --nav-scroll-height: 70px;

  --tab-height: 42px;
  --tab-width: 120px;

  --easing: cubic-bezier(0.645, 0.045, 0.355, 1);
  --transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);

  --hamburger-width: 30px;

  --ham-before: top 0.1s ease-in 0.25s, opacity 0.1s ease-in;
  --ham-before-active: top 0.1s ease-out, opacity 0.1s ease-out 0.12s;
  --ham-after: bottom 0.1s ease-in 0.25s, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --ham-after-active: bottom 0.1s ease-out, transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
}

/* ---------- Reset / Base ---------- */
html {
  box-sizing: border-box;
  width: 100%;
  scroll-behavior: smooth;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
::selection {
  background-color: var(--lightest-navy);
  color: var(--lightest-slate);
}
:focus {
  outline: 2px dashed var(--green);
  outline-offset: 3px;
}
:focus:not(:focus-visible) {
  outline: none;
  outline-offset: 0px;
}
:focus-visible {
  outline: 2px dashed var(--green);
  outline-offset: 3px;
}
html {
  scrollbar-width: thin;
  scrollbar-color: var(--dark-slate) var(--navy);
}
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: var(--navy);
}
::-webkit-scrollbar-thumb {
  background-color: var(--dark-slate);
  border: 3px solid var(--navy);
  border-radius: 10px;
}

body {
  margin: 0;
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  background-color: var(--navy);
  color: var(--slate);
  font-family: var(--font-sans);
  font-size: var(--fz-xl);
  line-height: 1.3;
}
@media (max-width: 480px) {
  body {
    font-size: var(--fz-lg);
  }
}
body.hidden {
  overflow: hidden;
}
body.blur {
  overflow: hidden;
}
body.blur header {
  background-color: transparent;
}
body.blur #content > * {
  filter: blur(5px) brightness(0.7);
  transition: var(--transition);
  pointer-events: none;
  user-select: none;
}

#root {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  grid-template-columns: 100%;
}

main {
  margin: 0 auto;
  width: 100%;
  max-width: 1600px;
  min-height: 100vh;
  padding: 200px 150px;
}
@media (max-width: 1080px) {
  main {
    padding: 200px 100px;
  }
}
@media (max-width: 768px) {
  main {
    padding: 150px 50px;
  }
}
@media (max-width: 480px) {
  main {
    padding: 125px 25px;
  }
}
main.fillHeight {
  padding: 0 150px;
}
@media (max-width: 1080px) {
  main.fillHeight {
    padding: 0 100px;
  }
}
@media (max-width: 768px) {
  main.fillHeight {
    padding: 0 50px;
  }
}
@media (max-width: 480px) {
  main.fillHeight {
    padding: 0 25px;
  }
}

main.fillHeight {
  counter-reset: section;
}

section {
  margin: 0 auto;
  padding: 100px 0;
  max-width: 1000px;
}
@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }
}
@media (max-width: 480px) {
  section {
    padding: 60px 0;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 10px 0;
  font-weight: 600;
  color: var(--lightest-slate);
  line-height: 1.1;
}

.big-heading {
  margin: 0;
  font-size: clamp(40px, 8vw, 80px);
}

.medium-heading {
  margin: 0;
  font-size: clamp(40px, 8vw, 60px);
}

.numbered-heading {
  display: flex;
  align-items: center;
  position: relative;
  margin: 10px 0 40px;
  width: 100%;
  font-size: clamp(26px, 5vw, var(--fz-heading));
  white-space: nowrap;
}
.numbered-heading:before {
  position: relative;
  bottom: 4px;
  counter-increment: section;
  content: '0' counter(section) '.';
  margin-right: 10px;
  color: var(--green);
  font-family: var(--font-mono);
  font-size: clamp(var(--fz-md), 3vw, var(--fz-xl));
  font-weight: 400;
}
@media (max-width: 480px) {
  .numbered-heading:before {
    margin-bottom: -3px;
    margin-right: 5px;
  }
}
.numbered-heading:after {
  content: '';
  display: block;
  position: relative;
  top: -5px;
  width: 300px;
  height: 1px;
  margin-left: 20px;
  background-color: var(--lightest-navy);
}
@media (max-width: 1080px) {
  .numbered-heading:after {
    width: 200px;
  }
}
@media (max-width: 768px) {
  .numbered-heading:after {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .numbered-heading:after {
    margin-left: 10px;
  }
}

img,
svg {
  width: 100%;
  max-width: 100%;
  vertical-align: middle;
}

svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  vertical-align: middle;
}
svg.feather {
  fill: none;
}

a {
  display: inline-block;
  text-decoration: none;
  text-decoration-skip-ink: auto;
  color: inherit;
  position: relative;
  transition: var(--transition);
}
a:hover,
a:focus {
  color: var(--green);
}

button {
  cursor: pointer;
  border: 0;
  border-radius: 0;
  font-family: inherit;
}

input,
textarea {
  border-radius: 0;
  outline: 0;
}
input:focus,
textarea:focus {
  outline: 0;
}

p {
  margin: 0 0 15px 0;
}
p:last-child,
p:last-of-type {
  margin: 0;
}
p > a,
.inline-link {
  display: inline-block;
  position: relative;
  color: var(--green);
  transition: var(--transition);
}
p > a:after,
.inline-link:after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  position: relative;
  bottom: 0.37em;
  background-color: var(--green);
  opacity: 0.5;
  transition: var(--transition);
}
p > a:hover,
p > a:focus-visible,
.inline-link:hover,
.inline-link:focus-visible {
  color: var(--green);
  outline: 0;
}
p > a:hover:after,
p > a:focus-visible:after,
.inline-link:hover:after,
.inline-link:focus-visible:after {
  width: 100%;
}
p > code {
  background-color: var(--light-navy);
  color: var(--white);
  font-size: var(--fz-sm);
  border-radius: var(--border-radius);
  padding: 0.3em 0.5em;
}

ul.fancy-list {
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: var(--fz-lg);
}
ul.fancy-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}
ul.fancy-list li:before {
  content: '▹';
  position: absolute;
  left: 0;
  color: var(--green);
}

code {
  font-family: var(--font-mono);
  font-size: var(--fz-md);
}

.skip-to-content {
  color: var(--green);
  background-color: transparent;
  border: 1px solid var(--green);
  border-radius: var(--border-radius);
  font-size: var(--fz-xs);
  font-family: var(--font-mono);
  line-height: 1;
  text-decoration: none;
  padding: 1.25rem 1.75rem;
  transition: var(--transition);
  position: absolute;
  top: auto;
  left: -999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: -99;
}
.skip-to-content:hover,
.skip-to-content:focus {
  background-color: var(--green);
  color: var(--navy);
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  overflow: auto;
  z-index: 99;
  box-shadow: none;
  transform: none;
}

.overline {
  color: var(--green);
  font-family: var(--font-mono);
  font-size: var(--fz-md);
  font-weight: 400;
}

.subtitle {
  color: var(--green);
  margin: 0 0 20px 0;
  font-size: var(--fz-md);
  font-family: var(--font-mono);
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 1080px) {
  .subtitle {
    font-size: var(--fz-sm);
  }
}
@media (max-width: 768px) {
  .subtitle {
    font-size: var(--fz-xs);
  }
}

/* ---------- Reusable button mixins ---------- */
.button,
.big-button {
  color: var(--green);
  background-color: transparent;
  border: 1px solid var(--green);
  border-radius: var(--border-radius);
  font-size: var(--fz-sm);
  font-family: var(--font-mono);
  line-height: 1;
  text-decoration: none;
  padding: 1.25rem 1.75rem;
  transition: var(--transition);
}
.button:hover,
.button:focus-visible,
.big-button:hover,
.big-button:focus-visible {
  outline: none;
  box-shadow: 4px 4px 0 0 var(--green);
  transform: translate(-5px, -5px);
}

.small-button {
  color: var(--green);
  background-color: transparent;
  border: 1px solid var(--green);
  border-radius: var(--border-radius);
  padding: 0.75rem 1rem;
  font-size: var(--fz-xs);
  font-family: var(--font-mono);
  line-height: 1;
  text-decoration: none;
  transition: var(--transition);
}
.small-button:hover,
.small-button:focus-visible {
  outline: none;
  box-shadow: 3px 3px 0 0 var(--green);
  transform: translate(-4px, -4px);
}

.box-shadow {
  box-shadow: 0 10px 30px -15px var(--navy-shadow);
  transition: var(--transition);
}
.box-shadow:hover,
.box-shadow:focus-visible {
  box-shadow: 0 20px 30px -15px var(--navy-shadow);
}

/* ---------- Transition / reveal animations ---------- */
.fadeup-enter,
[data-reveal] {
  opacity: 0.01;
  transform: translateY(20px);
  transition: opacity 500ms var(--easing), transform 500ms var(--easing);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

.fade-el {
  opacity: 0;
  transition: opacity 300ms var(--easing);
}
.fade-el.mounted {
  opacity: 1;
}

.fadedown-el {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 300ms var(--easing), transform 300ms var(--easing);
}
.fadedown-el.mounted {
  opacity: 1;
  transform: translateY(0px);
}

.fadeup-el {
  opacity: 0.01;
  transform: translateY(20px);
  transition: opacity 300ms var(--easing), transform 300ms var(--easing);
}
.fadeup-el.mounted {
  opacity: 1;
  transform: translateY(0px);
}

/* =========================================================
   Loader
   ========================================================= */
.loader {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark-navy);
  z-index: 99;
  transition: opacity 0.2s var(--easing);
}
.loader.loader--hidden {
  opacity: 0;
  z-index: -1;
  pointer-events: none;
}
.loader .logo-wrapper {
  width: max-content;
  max-width: 100px;
  transition: var(--transition);
  opacity: 0;
}
.loader .logo-wrapper.mounted {
  opacity: 1;
}
.loader .logo-wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  fill: none;
  user-select: none;
}
.loader #logo-D {
  opacity: 0;
  transition: opacity 0.7s var(--easing);
}
.loader #logo-D.show {
  opacity: 1;
}
.loader #logo-hex {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  transition: stroke-dashoffset 1.5s cubic-bezier(0.65, 0, 0.35, 1);
}
.loader #logo-hex.draw {
  stroke-dashoffset: 0;
}
.loader .logo-wrapper.shrink {
  opacity: 0;
  transform: scale(0.1);
  transition: opacity 0.3s var(--easing), transform 0.3s var(--easing);
}

/* =========================================================
   Site wrapper / content
   ========================================================= */
.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.site-wrapper[hidden] {
  display: none;
}

/* =========================================================
   Nav / Header
   ========================================================= */
header.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 11;
  padding: 0px 50px;
  width: 100%;
  height: var(--nav-height);
  background-color: rgba(10, 25, 47, 0.85);
  backdrop-filter: blur(10px);
  transition: var(--transition), height 0.25s var(--easing), transform 0.25s var(--easing), background-color 0.25s var(--easing);
}
@media (max-width: 1080px) {
  header.site-header {
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  header.site-header {
    padding: 0 25px;
  }
}
header.site-header.nav--hide {
  height: var(--nav-scroll-height);
  transform: translateY(calc(var(--nav-scroll-height) * -1));
  box-shadow: 0 10px 30px -10px var(--navy-shadow);
}
header.site-header.nav--shrink {
  height: var(--nav-scroll-height);
  transform: translateY(0px);
  background-color: rgba(10, 25, 47, 0.85);
  box-shadow: 0 10px 30px -10px var(--navy-shadow);
}

nav.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
  color: var(--lightest-slate);
  font-family: var(--font-mono);
  counter-reset: item 0;
  z-index: 12;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo a {
  color: var(--green);
  width: 42px;
  height: 42px;
  position: relative;
  z-index: 1;
}
.logo a .hex-container {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: var(--transition);
}
.logo a .logo-container {
  position: relative;
  z-index: 1;
}
.logo a .logo-container svg {
  fill: none;
  user-select: none;
  transition: var(--transition);
}
.logo a .logo-container svg polygon {
  fill: var(--navy);
}
.logo a:hover,
.logo a:focus {
  outline: 0;
  transform: translate(-4px, -4px);
}
.logo a:hover .hex-container,
.logo a:focus .hex-container {
  transform: translate(4px, 3px);
}

.nav-links {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
}
.nav-links ol {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
.nav-links ol li {
  margin: 0 5px;
  position: relative;
  counter-increment: item 1;
  font-size: var(--fz-xs);
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 300ms var(--easing), transform 300ms var(--easing);
}
.nav-links ol li.mounted {
  opacity: 1;
  transform: translateY(0);
}
.nav-links ol li a {
  padding: 10px;
}
.nav-links ol li a:before {
  content: '0' counter(item) '.';
  margin-right: 5px;
  color: var(--green);
  font-size: var(--fz-xxs);
  text-align: right;
}
.nav-links .resume-button {
  margin-left: 15px;
  font-size: var(--fz-xs);
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 300ms var(--easing), transform 300ms var(--easing);
}
.nav-links .resume-button.mounted {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   Mobile menu
   ========================================================= */
.menu-wrap {
  display: none;
}
@media (max-width: 768px) {
  .menu-wrap {
    display: block;
  }
}

.hamburger-button {
  display: none;
  background-color: transparent;
  color: inherit;
}
@media (max-width: 768px) {
  .hamburger-button {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
    margin-right: -15px;
    padding: 15px;
    border: 0;
    text-transform: none;
    transition-timing-function: linear;
    transition-duration: 0.15s;
    transition-property: opacity, filter;
  }
}
.ham-box {
  display: inline-block;
  position: relative;
  width: var(--hamburger-width);
  height: 24px;
}
.ham-box-inner {
  position: absolute;
  top: 50%;
  right: 0;
  width: var(--hamburger-width);
  height: 2px;
  border-radius: var(--border-radius);
  background-color: var(--green);
  transition-duration: 0.22s;
  transition-property: transform;
  transition-delay: 0s;
  transform: rotate(0deg);
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.ham-box-inner:before,
.ham-box-inner:after {
  content: '';
  display: block;
  position: absolute;
  left: auto;
  right: 0;
  width: var(--hamburger-width);
  height: 2px;
  border-radius: 4px;
  background-color: var(--green);
  transition-timing-function: ease;
  transition-duration: 0.15s;
  transition-property: transform;
}
.ham-box-inner:before {
  width: 120%;
  top: -10px;
  opacity: 1;
  transition: var(--ham-before);
}
.ham-box-inner:after {
  width: 80%;
  bottom: -10px;
  transform: rotate(0);
  transition: var(--ham-after);
}
.menu-open .ham-box-inner {
  transition-delay: 0.12s;
  transform: rotate(225deg);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.menu-open .ham-box-inner:before {
  width: 100%;
  top: 0;
  opacity: 0;
  transition: var(--ham-before-active);
}
.menu-open .ham-box-inner:after {
  width: 100%;
  bottom: 0;
  transform: rotate(-90deg);
  transition: var(--ham-after-active);
}

.mobile-sidebar {
  display: none;
}
@media (max-width: 768px) {
  .mobile-sidebar {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    padding: 50px 10px;
    width: min(75vw, 400px);
    height: 100vh;
    outline: 0;
    background-color: var(--light-navy);
    box-shadow: -10px 0px 30px -15px var(--navy-shadow);
    z-index: 9;
    transform: translateX(100vw);
    visibility: hidden;
    transition: var(--transition);
  }
}
.menu-open .mobile-sidebar {
  transform: translateX(0);
  visibility: visible;
}
.mobile-sidebar nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-direction: column;
  color: var(--lightest-slate);
  font-family: var(--font-mono);
  text-align: center;
}
.mobile-sidebar ol {
  padding: 0;
  margin: 0;
  list-style: none;
  width: 100%;
}
.mobile-sidebar ol li {
  position: relative;
  margin: 0 auto 20px;
  counter-increment: item 1;
  font-size: clamp(var(--fz-sm), 4vw, var(--fz-lg));
}
@media (max-width: 600px) {
  .mobile-sidebar ol li {
    margin: 0 auto 10px;
  }
}
.mobile-sidebar ol li:before {
  content: '0' counter(item) '.';
  display: block;
  margin-bottom: 5px;
  color: var(--green);
  font-size: var(--fz-sm);
}
.mobile-sidebar ol a {
  width: 100%;
  padding: 3px 20px 20px;
}
.mobile-sidebar ol a:hover,
.mobile-sidebar ol a:focus-visible {
  color: var(--green);
}
.mobile-sidebar .resume-link {
  color: var(--green);
  background-color: transparent;
  border: 1px solid var(--green);
  border-radius: var(--border-radius);
  font-size: var(--fz-sm);
  font-family: var(--font-mono);
  line-height: 1;
  text-decoration: none;
  transition: var(--transition);
  padding: 18px 50px;
  margin: 10% auto 0;
  width: max-content;
}
.mobile-sidebar .resume-link:hover,
.mobile-sidebar .resume-link:focus-visible {
  outline: none;
  box-shadow: 4px 4px 0 0 var(--green);
  transform: translate(-5px, -5px);
}

/* =========================================================
   Side (social / email) columns
   ========================================================= */
.side {
  width: 40px;
  position: fixed;
  bottom: 0;
  z-index: 10;
  color: var(--light-slate);
  opacity: 0;
  transition: opacity 300ms var(--easing);
}
.side.mounted {
  opacity: 1;
}
.side--left {
  left: 40px;
}
.side--right {
  right: 40px;
}
@media (max-width: 1080px) {
  .side--left {
    left: 20px;
  }
  .side--right {
    right: 20px;
  }
}
@media (max-width: 768px) {
  .side {
    display: none;
  }
}

.social-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.social-list:after {
  content: '';
  display: block;
  width: 1px;
  height: 90px;
  margin: 0 auto;
  background-color: var(--light-slate);
}
.social-list li:last-of-type {
  margin-bottom: 20px;
}
.social-list li a {
  padding: 10px;
}
.social-list li a:hover,
.social-list li a:focus {
  transform: translateY(-3px);
}
.social-list li a svg {
  width: 20px;
  height: 20px;
}

.email-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.email-side:after {
  content: '';
  display: block;
  width: 1px;
  height: 90px;
  margin: 0 auto;
  background-color: var(--light-slate);
}
.email-side a {
  margin: 20px auto;
  padding: 10px;
  font-family: var(--font-mono);
  font-size: var(--fz-xxs);
  line-height: var(--fz-lg);
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
}
.email-side a:hover,
.email-side a:focus {
  transform: translateY(-3px);
}

/* =========================================================
   Footer
   ========================================================= */
footer.site-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: auto;
  min-height: 70px;
  padding: 15px;
  text-align: center;
}

.footer-social-links {
  display: none;
}
@media (max-width: 768px) {
  .footer-social-links {
    display: block;
    width: 100%;
    max-width: 270px;
    margin: 0 auto 10px;
    color: var(--light-slate);
  }
}
.footer-social-links ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer-social-links ul a {
  padding: 10px;
}
.footer-social-links ul a svg {
  width: 20px;
  height: 20px;
}

.footer-credit {
  color: var(--light-slate);
  font-family: var(--font-mono);
  font-size: var(--fz-xxs);
  line-height: 1;
}
.footer-credit a {
  padding: 10px;
}
.footer-credit .github-stats {
  margin-top: 10px;
}
.footer-credit .github-stats > span {
  display: inline-flex;
  align-items: center;
  margin: 0 7px;
}
.footer-credit .github-stats svg {
  display: inline-block;
  margin-right: 5px;
  width: 14px;
  height: 14px;
}

/* =========================================================
   Hero
   ========================================================= */
.hero-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  min-height: 100vh;
  height: 100vh;
  padding: 0;
}
@media (max-height: 700px) and (min-width: 700px), (max-width: 360px) {
  .hero-section {
    height: auto;
    padding-top: var(--nav-height);
  }
}
.hero-section h1 {
  margin: 0 0 30px 4px;
  color: var(--green);
  font-family: var(--font-mono);
  font-size: clamp(var(--fz-sm), 5vw, var(--fz-md));
  font-weight: 400;
}
@media (max-width: 480px) {
  .hero-section h1 {
    margin: 0 0 20px 2px;
  }
}
.hero-section h3 {
  margin-top: 5px;
  color: var(--slate);
  line-height: 0.9;
}
.hero-section p {
  margin: 20px 0 0;
  max-width: 540px;
}
.hero-section .email-link {
  color: var(--green);
  background-color: transparent;
  border: 1px solid var(--green);
  border-radius: var(--border-radius);
  font-size: var(--fz-sm);
  font-family: var(--font-mono);
  line-height: 1;
  text-decoration: none;
  padding: 1.25rem 1.75rem;
  transition: var(--transition);
  margin-top: 50px;
}
.hero-section .email-link:hover,
.hero-section .email-link:focus-visible {
  outline: none;
  box-shadow: 4px 4px 0 0 var(--green);
  transform: translate(-5px, -5px);
}
.hero-section > div {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 300ms var(--easing), transform 300ms var(--easing);
}
.hero-section > div.mounted {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   About
   ========================================================= */
.about-section {
  max-width: 900px;
}
.about-section .inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-gap: 50px;
}
@media (max-width: 768px) {
  .about-section .inner {
    display: block;
  }
}
.skills-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 200px));
  grid-gap: 0 10px;
  padding: 0;
  margin: 20px 0 0 0;
  overflow: hidden;
  list-style: none;
}
.skills-list li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
  font-family: var(--font-mono);
  font-size: var(--fz-xs);
}
.skills-list li:before {
  content: '▹';
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: var(--fz-sm);
  line-height: 12px;
}
.about-pic {
  position: relative;
  max-width: 300px;
}
@media (max-width: 768px) {
  .about-pic {
    margin: 50px auto 0;
    width: 70%;
  }
}
.about-pic .wrapper {
  box-shadow: 0 10px 30px -15px var(--navy-shadow);
  transition: var(--transition);
  display: block;
  position: relative;
  width: 100%;
  border-radius: var(--border-radius);
  background-color: var(--green);
}
.about-pic .wrapper:hover,
.about-pic .wrapper:focus {
  outline: 0;
  transform: translate(-4px, -4px);
}
.about-pic .wrapper:hover:after,
.about-pic .wrapper:focus:after {
  transform: translate(8px, 8px);
}
.about-pic .wrapper:hover .img,
.about-pic .wrapper:focus .img {
  filter: none;
  mix-blend-mode: normal;
}
.about-pic .wrapper .img {
  position: relative;
  border-radius: var(--border-radius);
  mix-blend-mode: multiply;
  filter: grayscale(100%) contrast(1);
  transition: var(--transition);
}
.about-pic .wrapper:before,
.about-pic .wrapper:after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius);
  transition: var(--transition);
}
.about-pic .wrapper:before {
  top: 0;
  left: 0;
  background-color: var(--navy);
  mix-blend-mode: screen;
}
.about-pic .wrapper:after {
  border: 2px solid var(--green);
  top: 14px;
  left: 14px;
  z-index: -1;
}

/* =========================================================
   Jobs (experience tabs)
   ========================================================= */
.jobs-section {
  max-width: 700px;
}
.jobs-section .inner {
  display: flex;
}
@media (max-width: 600px) {
  .jobs-section .inner {
    display: block;
  }
}
@media (min-width: 700px) {
  .jobs-section .inner {
    min-height: 340px;
  }
}
.tab-list {
  position: relative;
  z-index: 3;
  width: max-content;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (max-width: 600px) {
  .tab-list {
    display: flex;
    overflow-x: auto;
    width: calc(100% + 100px);
    padding-left: 50px;
    margin-left: -50px;
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .tab-list {
    width: calc(100% + 50px);
    padding-left: 25px;
    margin-left: -25px;
  }
}
.tab-list li:first-of-type {
  margin: 0;
}
@media (max-width: 600px) {
  .tab-list li:first-of-type {
    margin-left: 50px;
  }
}
@media (max-width: 480px) {
  .tab-list li:first-of-type {
    margin-left: 25px;
  }
}
@media (max-width: 600px) {
  .tab-list li:last-of-type {
    padding-right: 50px;
  }
}
@media (max-width: 480px) {
  .tab-list li:last-of-type {
    padding-right: 25px;
  }
}
.tab-button {
  display: flex;
  align-items: center;
  width: 100%;
  height: var(--tab-height);
  padding: 0 20px 2px;
  border: 0;
  border-left: 2px solid var(--lightest-navy);
  background-color: transparent;
  color: var(--slate);
  font-family: var(--font-mono);
  font-size: var(--fz-xs);
  text-align: left;
  white-space: nowrap;
  transition: var(--transition);
}
@media (max-width: 768px) {
  .tab-button {
    padding: 0 15px 2px;
  }
}
@media (max-width: 600px) {
  .tab-button {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 120px;
    padding: 0 15px;
    border-left: 0;
    border-bottom: 2px solid var(--lightest-navy);
    text-align: center;
  }
}
.tab-button:hover,
.tab-button:focus {
  background-color: var(--light-navy);
}
.tab-button.active {
  color: var(--green);
}
.tab-highlight {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 2px;
  height: var(--tab-height);
  border-radius: var(--border-radius);
  background: var(--green);
  transition: transform 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition-delay: 0.1s;
}
@media (max-width: 600px) {
  .tab-highlight {
    top: auto;
    bottom: 0;
    width: 100%;
    max-width: var(--tab-width);
    height: 2px;
    margin-left: 50px;
  }
}
@media (max-width: 480px) {
  .tab-highlight {
    margin-left: 25px;
  }
}
.tab-panels {
  position: relative;
  width: 100%;
  margin-left: 20px;
}
@media (max-width: 600px) {
  .tab-panels {
    margin-left: 0;
  }
}
.tab-panel {
  width: 100%;
  height: auto;
  padding: 10px 5px;
  display: none;
  opacity: 0;
  transition: opacity 250ms var(--easing);
}
.tab-panel.active {
  display: block;
  opacity: 1;
}
.tab-panel ul {
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: var(--fz-lg);
}
.tab-panel ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}
.tab-panel ul li:before {
  content: '▹';
  position: absolute;
  left: 0;
  color: var(--green);
}
.tab-panel h3 {
  margin-bottom: 2px;
  font-size: var(--fz-xxl);
  font-weight: 500;
  line-height: 1.3;
}
.tab-panel h3 .company {
  color: var(--green);
}
.tab-panel .range {
  margin-bottom: 25px;
  color: var(--light-slate);
  font-family: var(--font-mono);
  font-size: var(--fz-xs);
}

/* =========================================================
   Featured projects
   ========================================================= */
.featured-grid {
  list-style: none;
  padding: 0;
  margin: 0;
}
.featured-grid a {
  position: relative;
  z-index: 1;
}
.featured-project {
  position: relative;
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
}
@media (max-width: 768px) {
  .featured-project {
    box-shadow: 0 10px 30px -15px var(--navy-shadow);
    transition: var(--transition);
  }
}
.featured-project:not(:last-of-type) {
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .featured-project:not(:last-of-type) {
    margin-bottom: 70px;
  }
}
@media (max-width: 480px) {
  .featured-project:not(:last-of-type) {
    margin-bottom: 30px;
  }
}
.featured-project:nth-of-type(odd) .project-content {
  grid-column: 7 / -1;
  text-align: right;
}
@media (max-width: 1080px) {
  .featured-project:nth-of-type(odd) .project-content {
    grid-column: 5 / -1;
  }
}
@media (max-width: 768px) {
  .featured-project:nth-of-type(odd) .project-content {
    grid-column: 1 / -1;
    padding: 40px 40px 30px;
    text-align: left;
  }
}
@media (max-width: 480px) {
  .featured-project:nth-of-type(odd) .project-content {
    padding: 25px 25px 20px;
  }
}
.featured-project:nth-of-type(odd) .project-tech-list {
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .featured-project:nth-of-type(odd) .project-tech-list {
    justify-content: flex-start;
  }
}
.featured-project:nth-of-type(odd) .project-tech-list li {
  margin: 0 0 5px 20px;
}
@media (max-width: 768px) {
  .featured-project:nth-of-type(odd) .project-tech-list li {
    margin: 0 10px 5px 0;
  }
}
.featured-project:nth-of-type(odd) .project-links {
  justify-content: flex-end;
  margin-left: 0;
  margin-right: -10px;
}
@media (max-width: 768px) {
  .featured-project:nth-of-type(odd) .project-links {
    justify-content: flex-start;
    margin-left: -10px;
    margin-right: 0;
  }
}
.featured-project:nth-of-type(odd) .project-image {
  grid-column: 1 / 8;
}
@media (max-width: 768px) {
  .featured-project:nth-of-type(odd) .project-image {
    grid-column: 1 / -1;
  }
}
.featured-project .project-content {
  position: relative;
  grid-column: 1 / 7;
  grid-row: 1 / -1;
}
@media (max-width: 1080px) {
  .featured-project .project-content {
    grid-column: 1 / 9;
  }
}
@media (max-width: 768px) {
  .featured-project .project-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    grid-column: 1 / -1;
    padding: 40px 40px 30px;
    z-index: 5;
  }
}
@media (max-width: 480px) {
  .featured-project .project-content {
    padding: 30px 25px 20px;
  }
}
.featured-project .project-overline {
  margin: 10px 0;
  color: var(--green);
  font-family: var(--font-mono);
  font-size: var(--fz-xs);
  font-weight: 400;
}
.featured-project .project-title {
  color: var(--lightest-slate);
  font-size: clamp(24px, 5vw, 28px);
}
@media (min-width: 768px) {
  .featured-project .project-title {
    margin: 0 0 20px;
  }
}
@media (max-width: 768px) {
  .featured-project .project-title {
    color: var(--white);
  }
  .featured-project .project-title a {
    position: static;
  }
  .featured-project .project-title a:before {
    content: '';
    display: block;
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
}
.featured-project .project-description {
  box-shadow: 0 10px 30px -15px var(--navy-shadow);
  transition: var(--transition);
  position: relative;
  z-index: 2;
  padding: 25px;
  border-radius: var(--border-radius);
  background-color: var(--light-navy);
  color: var(--light-slate);
  font-size: var(--fz-lg);
}
@media (max-width: 768px) {
  .featured-project .project-description {
    padding: 20px 0;
    background-color: transparent;
    box-shadow: none;
  }
  .featured-project .project-description:hover {
    box-shadow: none;
  }
}
.featured-project .project-description a {
  display: inline-block;
  position: relative;
  color: var(--green);
}
.featured-project .project-description strong {
  color: var(--white);
  font-weight: normal;
}
.featured-project .project-tech-list {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  margin: 25px 0 10px;
  padding: 0;
  list-style: none;
}
.featured-project .project-tech-list li {
  margin: 0 20px 5px 0;
  color: var(--light-slate);
  font-family: var(--font-mono);
  font-size: var(--fz-xs);
  white-space: nowrap;
}
@media (max-width: 768px) {
  .featured-project .project-tech-list {
    margin: 10px 0;
  }
  .featured-project .project-tech-list li {
    margin: 0 10px 5px 0;
    color: var(--lightest-slate);
  }
}
.featured-project .project-links {
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 10px;
  margin-left: -10px;
  color: var(--lightest-slate);
}
.featured-project .project-links a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
.featured-project .project-links a.external svg {
  width: 22px;
  height: 22px;
  margin-top: -4px;
}
.featured-project .project-links a svg {
  width: 20px;
  height: 20px;
}
.featured-project .project-links .cta {
  color: var(--green);
  background-color: transparent;
  border: 1px solid var(--green);
  border-radius: var(--border-radius);
  padding: 0.75rem 1rem;
  font-size: var(--fz-xs);
  font-family: var(--font-mono);
  line-height: 1;
  text-decoration: none;
  transition: var(--transition);
  margin: 10px;
}
.featured-project .project-links .cta:hover,
.featured-project .project-links .cta:focus-visible {
  outline: none;
  box-shadow: 3px 3px 0 0 var(--green);
  transform: translate(-4px, -4px);
}
.featured-project .project-image {
  box-shadow: 0 10px 30px -15px var(--navy-shadow);
  transition: var(--transition);
  grid-column: 6 / -1;
  grid-row: 1 / -1;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .featured-project .project-image {
    grid-column: 1 / -1;
    height: 100%;
    opacity: 0.25;
  }
}
.featured-project .project-image a {
  width: 100%;
  height: 100%;
  background-color: var(--green);
  border-radius: var(--border-radius);
  vertical-align: middle;
  display: block;
}
.featured-project .project-image a:hover,
.featured-project .project-image a:focus {
  background: transparent;
  outline: 0;
}
.featured-project .project-image a:hover:before,
.featured-project .project-image a:focus:before,
.featured-project .project-image a:hover .img,
.featured-project .project-image a:focus .img {
  background: transparent;
  filter: none;
}
.featured-project .project-image:hover .img,
.featured-project .project-image .img:hover {
  background: transparent;
  filter: none;
}
.featured-project .project-image a:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: var(--transition);
  background-color: var(--navy);
  mix-blend-mode: screen;
}
.featured-project .project-image .img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: var(--border-radius);
  mix-blend-mode: multiply;
  filter: grayscale(100%) contrast(1) brightness(90%);
}
@media (max-width: 768px) {
  .featured-project .project-image .img {
    width: 100%;
    height: 100%;
    filter: grayscale(100%) contrast(1) brightness(50%);
  }
}

/* =========================================================
   Other projects grid
   ========================================================= */
.other-projects-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.other-projects-section h2 {
  font-size: clamp(24px, 5vw, var(--fz-heading));
}
.other-projects-section .archive-link {
  font-family: var(--font-mono);
  font-size: var(--fz-sm);
}
.other-projects-section .archive-link:after {
  bottom: 0.1em;
}
.projects-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 15px;
  position: relative;
  margin-top: 50px;
}
@media (max-width: 1080px) {
  .projects-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}
.projects-grid .project-card {
  position: relative;
  cursor: default;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.projects-grid .project-card.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 400ms var(--easing), transform 400ms var(--easing);
}
@media (prefers-reduced-motion: no-preference) {
  .projects-grid .project-card:hover .project-inner,
  .projects-grid .project-card:focus-within .project-inner {
    transform: translateY(-7px);
  }
}
.projects-grid .project-card a {
  position: relative;
  z-index: 1;
}
.projects-grid .project-inner {
  box-shadow: 0 10px 30px -15px var(--navy-shadow);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  position: relative;
  height: 100%;
  padding: 2rem 1.75rem;
  border-radius: var(--border-radius);
  background-color: var(--light-navy);
  transition: var(--transition);
  overflow: auto;
}
.project-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
  width: 100%;
}
.project-top .folder {
  color: var(--green);
}
.project-top .folder svg {
  width: 40px;
  height: 40px;
}
.project-top .project-links {
  display: flex;
  align-items: center;
  margin-right: -10px;
  color: var(--light-slate);
}
.project-top .project-links a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 7px;
}
.project-top .project-links a.external svg {
  width: 22px;
  height: 22px;
  margin-top: -4px;
}
.project-top .project-links a svg {
  width: 20px;
  height: 20px;
}
.projects-grid .project-title {
  margin: 0 0 10px;
  color: var(--lightest-slate);
  font-size: var(--fz-xxl);
}
.projects-grid .project-title a {
  position: static;
}
.projects-grid .project-title a:before {
  content: '';
  display: block;
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.projects-grid .project-description {
  color: var(--light-slate);
  font-size: 17px;
}
.projects-grid .project-description a {
  display: inline-block;
  position: relative;
  color: var(--green);
}
.projects-grid .project-tech-list {
  display: flex;
  align-items: flex-end;
  flex-grow: 1;
  flex-wrap: wrap;
  padding: 0;
  margin: 20px 0 0 0;
  list-style: none;
  width: 100%;
}
.projects-grid .project-tech-list li {
  font-family: var(--font-mono);
  font-size: var(--fz-xxs);
  line-height: 1.75;
}
.projects-grid .project-tech-list li:not(:last-of-type) {
  margin-right: 15px;
}
.other-projects-section .more-button {
  color: var(--green);
  background-color: transparent;
  border: 1px solid var(--green);
  border-radius: var(--border-radius);
  font-size: var(--fz-sm);
  font-family: var(--font-mono);
  line-height: 1;
  text-decoration: none;
  padding: 1.25rem 1.75rem;
  transition: var(--transition);
  margin: 80px auto 0;
}
.other-projects-section .more-button:hover,
.other-projects-section .more-button:focus-visible {
  outline: none;
  box-shadow: 4px 4px 0 0 var(--green);
  transform: translate(-5px, -5px);
}
.projects-grid .project-card[hidden] {
  display: none;
}

/* =========================================================
   Contact
   ========================================================= */
.contact-section {
  max-width: 600px;
  margin: 0 auto 100px;
  text-align: center;
}
@media (max-width: 768px) {
  .contact-section {
    margin: 0 auto 50px;
  }
}
.contact-section .overline {
  display: block;
  margin-bottom: 20px;
  color: var(--green);
  font-family: var(--font-mono);
  font-size: var(--fz-md);
  font-weight: 400;
}
.contact-section .overline:before {
  bottom: 0;
  font-size: var(--fz-sm);
}
.contact-section .overline:after {
  display: none;
}
.contact-section .title {
  font-size: clamp(40px, 5vw, 60px);
}
.contact-section .email-link {
  color: var(--green);
  background-color: transparent;
  border: 1px solid var(--green);
  border-radius: var(--border-radius);
  font-size: var(--fz-sm);
  font-family: var(--font-mono);
  line-height: 1;
  text-decoration: none;
  padding: 1.25rem 1.75rem;
  transition: var(--transition);
  margin-top: 50px;
}
.contact-section .email-link:hover,
.contact-section .email-link:focus-visible {
  outline: none;
  box-shadow: 4px 4px 0 0 var(--green);
  transform: translate(-5px, -5px);
}

/* =========================================================
   Archive page
   ========================================================= */
.archive-table-container {
  margin: 100px -20px;
}
@media (max-width: 768px) {
  .archive-table-container {
    margin: 50px -10px;
  }
}
.archive-table-container table {
  width: 100%;
  border-collapse: collapse;
}
.archive-table-container .hide-on-mobile {
  display: table-cell;
}
@media (max-width: 768px) {
  .archive-table-container .hide-on-mobile {
    display: none;
  }
}
.archive-table-container tbody tr:hover,
.archive-table-container tbody tr:focus {
  background-color: var(--light-navy);
}
.archive-table-container th,
.archive-table-container td {
  padding: 10px;
  text-align: left;
}
.archive-table-container th:first-child,
.archive-table-container td:first-child {
  padding-left: 20px;
}
@media (max-width: 768px) {
  .archive-table-container th:first-child,
  .archive-table-container td:first-child {
    padding-left: 10px;
  }
}
.archive-table-container th:last-child,
.archive-table-container td:last-child {
  padding-right: 20px;
}
@media (max-width: 768px) {
  .archive-table-container th:last-child,
  .archive-table-container td:last-child {
    padding-right: 10px;
  }
}
.archive-table-container th svg,
.archive-table-container td svg {
  width: 20px;
  height: 20px;
}
.archive-table-container tr {
  cursor: default;
}
.archive-table-container tr td:first-child {
  border-top-left-radius: var(--border-radius);
  border-bottom-left-radius: var(--border-radius);
}
.archive-table-container tr td:last-child {
  border-top-right-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
}
.archive-table-container td.year {
  padding-right: 20px;
}
@media (max-width: 768px) {
  .archive-table-container td.year {
    padding-right: 10px;
    font-size: var(--fz-sm);
  }
}
.archive-table-container td.title {
  padding-top: 15px;
  padding-right: 20px;
  color: var(--lightest-slate);
  font-size: var(--fz-xl);
  font-weight: 600;
  line-height: 1.25;
}
.archive-table-container td.company {
  font-size: var(--fz-lg);
  white-space: nowrap;
}
.archive-table-container td.tech {
  font-size: var(--fz-xxs);
  font-family: var(--font-mono);
  line-height: 1.5;
}
.archive-table-container td.tech .separator {
  margin: 0 5px;
}
.archive-table-container td.tech span {
  display: inline-block;
}
.archive-table-container td.links {
  min-width: 100px;
}
.archive-table-container td.links div {
  display: flex;
  align-items: center;
}
.archive-table-container td.links a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.archive-table-container td.links a + a {
  margin-left: 10px;
}
.archive-header {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms var(--easing), transform 500ms var(--easing);
}
.archive-header.revealed {
  opacity: 1;
  transform: translateY(0);
}
.archive-table-container.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   404 page
   ========================================================= */
.notfound-main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms var(--easing), transform 500ms var(--easing);
}
.notfound-main.mounted {
  opacity: 1;
  transform: translateY(0);
}
.notfound-title {
  color: var(--green);
  font-family: var(--font-mono);
  font-size: clamp(100px, 25vw, 200px);
  line-height: 1;
}
.notfound-subtitle {
  font-size: clamp(30px, 5vw, 50px);
  font-weight: 400;
}
.notfound-home-button {
  color: var(--green);
  background-color: transparent;
  border: 1px solid var(--green);
  border-radius: var(--border-radius);
  font-size: var(--fz-sm);
  font-family: var(--font-mono);
  line-height: 1;
  text-decoration: none;
  padding: 1.25rem 1.75rem;
  transition: var(--transition);
  margin-top: 40px;
}
.notfound-home-button:hover,
.notfound-home-button:focus-visible {
  outline: none;
  box-shadow: 4px 4px 0 0 var(--green);
  transform: translate(-5px, -5px);
}
