@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/https/jaredrhodes.com/assets/fonts/jetbrains-mono-var.woff2") format("woff2");
}
@font-face {
  font-family: "Oxanium";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("/https/jaredrhodes.com/assets/fonts/oxanium-var.woff2") format("woff2");
}
@font-face {
  font-family: "Titillium Web";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/https/jaredrhodes.com/assets/fonts/titillium-web-400.woff2") format("woff2");
}
@font-face {
  font-family: "Titillium Web";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/https/jaredrhodes.com/assets/fonts/titillium-web-600.woff2") format("woff2");
}
@font-face {
  font-family: "Titillium Web";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/https/jaredrhodes.com/assets/fonts/titillium-web-700.woff2") format("woff2");
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Titillium Web", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #d8e2ec;
  background-color: #05080f;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.theme-biomech {
  position: relative;
  isolation: isolate;
  background-image: radial-gradient(circle at 18% -10%, rgba(52, 108, 162, 0.12) 0%, transparent 42%), radial-gradient(circle at 82% -10%, rgba(66, 118, 168, 0.14) 0%, transparent 38%), linear-gradient(160deg, rgba(18, 32, 50, 0.72) 0%, rgba(5, 10, 18, 0.86) 52%, rgba(4, 9, 18, 0.96) 100%);
  background-color: #0a0f19;
}

body.theme-biomech::before,
body.theme-biomech::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body.theme-biomech::before {
  background-image: url("../icons/biomech-pattern.svg");
  background-size: 180px 180px;
  opacity: 0.2;
  mix-blend-mode: screen;
  z-index: -2;
  animation: biomech-grid-drift 44s linear infinite;
}

body.theme-biomech::after {
  background-image: repeating-linear-gradient(180deg, rgba(130, 196, 225, 0) 0 2px, rgba(130, 196, 225, 0.04) 3px 4px), linear-gradient(108deg, rgba(96, 168, 206, 0) 24%, rgba(96, 168, 206, 0.14) 48%, rgba(96, 168, 206, 0) 72%);
  background-size: 100% 100%, 260% 100%;
  background-position: 0 0, 160% 0;
  opacity: 0.3;
  z-index: -1;
  animation: biomech-scan-sweep 10s linear infinite;
}

body.theme-biomech > * {
  position: relative;
  z-index: 1;
}

@keyframes biomech-grid-drift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-56px, -72px, 0);
  }
}
@keyframes biomech-scan-sweep {
  from {
    background-position: 0 0, 180% 0;
  }
  to {
    background-position: 0 0, -90% 0;
  }
}
@keyframes biomech-line-pulse {
  0%, 100% {
    opacity: 0.65;
  }
  50% {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  body.theme-biomech::after {
    animation: none;
  }
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Oxanium", "JetBrains Mono", monospace;
  color: #f2f7fb;
  line-height: 1.3;
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.125rem;
}

h4, h5, h6 {
  font-size: 1rem;
}

a {
  color: #47d9cc;
  text-decoration-color: rgba(71, 217, 204, 0.45);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color 150ms cubic-bezier(0.17, 0.84, 0.44, 1), text-decoration-color 150ms cubic-bezier(0.17, 0.84, 0.44, 1), text-shadow 150ms cubic-bezier(0.17, 0.84, 0.44, 1);
}
a:hover {
  color: #8cf9ed;
  text-decoration-color: rgba(140, 249, 237, 0.65);
  text-shadow: 0 0 8px rgba(71, 217, 204, 0.28);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid #8cf9ed;
  outline-offset: 2px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  clip-path: inset(50%);
  clip: rect(0 0 0 0);
  overflow: hidden;
  white-space: nowrap;
  margin: -1px;
  padding: 0;
  border: 0;
}

p {
  margin-bottom: 1rem;
}

ul, ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

li {
  margin-bottom: 0.25rem;
}

blockquote {
  position: relative;
  border: 1px solid #28415e;
  border-left: 4px solid #2ea59b;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: linear-gradient(145deg, rgba(33, 51, 74, 0.55), rgba(17, 28, 44, 0.85));
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  color: #c9d6e3;
  font-style: italic;
}
blockquote::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(116, 183, 219, 0.18);
  clip-path: inherit;
  pointer-events: none;
}
blockquote p:last-child {
  margin-bottom: 0;
}

code {
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
  font-size: 0.875rem;
  background: rgba(20, 33, 52, 0.9);
  border: 1px solid rgba(64, 101, 139, 0.55);
  padding: 2px 6px;
  border-radius: 4px;
  color: #8cf9ed;
}

pre {
  position: relative;
  background: linear-gradient(160deg, rgba(24, 38, 59, 0.86), rgba(14, 23, 36, 0.94));
  border: 1px solid #28415e;
  border-radius: 10px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  overflow-x: auto;
  line-height: 1.5;
  box-shadow: inset 0 1px 0 rgba(151, 204, 232, 0.07), 0 14px 28px -18px rgba(2, 8, 16, 0.85);
}
pre::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(137, 205, 237, 0.35), transparent);
  animation: biomech-line-pulse 3.2s ease-in-out infinite;
}
pre code {
  background: none;
  border: 0;
  padding: 0;
  border-radius: 0;
  color: #d8e2ec;
  font-size: 0.875rem;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

body.theme-biomech img {
  filter: saturate(0.84) contrast(1.05) brightness(0.95) hue-rotate(-8deg);
  transition: filter 280ms cubic-bezier(0.17, 0.84, 0.44, 1), box-shadow 280ms cubic-bezier(0.17, 0.84, 0.44, 1), border-color 280ms cubic-bezier(0.17, 0.84, 0.44, 1);
}

body.theme-biomech img:hover {
  filter: saturate(0.9) contrast(1.06) brightness(0.97) hue-rotate(-6deg);
}

img.no-theme-filter,
.no-theme-filter img,
img[data-theme-filter=off] {
  filter: none !important;
}

figure {
  margin: 1.5rem 0;
}
figure img {
  display: block;
  margin: 0 auto;
  border: 1px solid #1b2f46;
}
figure figcaption {
  text-align: center;
  color: #8d9fb3;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.875rem;
  background: rgba(15, 24, 38, 0.82);
}

th, td {
  padding: 0.5rem 1rem;
  border: 1px solid #22364f;
  text-align: left;
}

th {
  background: rgba(24, 38, 58, 0.95);
  color: #f2f7fb;
  font-family: "Oxanium", "JetBrains Mono", monospace;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

td {
  background: rgba(12, 19, 31, 0.82);
}

tr:hover td {
  background: rgba(24, 38, 58, 0.84);
}

hr {
  border: 0;
  height: 1px;
  margin: 3rem 0;
  background: linear-gradient(90deg, transparent, rgba(131, 191, 224, 0.55), transparent);
}

::selection {
  background: rgba(71, 217, 204, 0.42);
  color: #f2f7fb;
}

@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;
  }
}
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  clip-path: inset(50%);
  clip: rect(0 0 0 0);
  overflow: hidden;
  white-space: nowrap;
  margin: -1px;
  padding: 0;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 100;
  width: auto;
  height: auto;
  clip-path: none;
  clip: auto;
  overflow: visible;
  white-space: normal;
  margin: 0;
  padding: 0.5rem 1rem;
  border: 1px solid #47d9cc;
  background: #162233;
  color: #8cf9ed;
  font-family: "Oxanium", "JetBrains Mono", monospace;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 0 0 1px rgba(140, 249, 237, 0.18), 0 10px 24px -18px rgba(2, 8, 16, 0.85);
}

.site-accent-bar {
  height: 4px;
  background: linear-gradient(90deg, rgba(95, 195, 223, 0.2), transparent), linear-gradient(90deg, #47d9cc 4%, rgba(115, 225, 215, 0.8) 48%, rgba(120, 190, 222, 0.55) 84%, transparent 100%);
  box-shadow: 0 0 26px rgba(71, 217, 204, 0.25);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid #28415e;
  background: linear-gradient(165deg, rgba(23, 37, 57, 0.92), rgba(12, 20, 32, 0.9)), url("../icons/biomech-pattern.svg");
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 26px -20px rgba(0, 0, 0, 0.9);
  overflow: hidden;
}
.site-header::before, .site-header::after {
  content: "";
  position: absolute;
  width: 42px;
  height: 42px;
  border-top: 1px solid rgba(147, 198, 227, 0.4);
  pointer-events: none;
}
.site-header::before {
  top: 0;
  left: 0;
  border-left: 1px solid rgba(147, 198, 227, 0.4);
}
.site-header::after {
  top: 0;
  right: 0;
  border-right: 1px solid rgba(147, 198, 227, 0.4);
}

.header-wrapper {
  max-width: 1020px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.site-title {
  font-family: "Oxanium", "JetBrains Mono", monospace;
  font-size: 1.125rem;
  font-weight: 700;
  color: #8cf9ed;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 0 14px rgba(71, 217, 204, 0.3);
}
.site-title:hover {
  color: #f2f7fb;
  text-decoration: none;
}

.site-nav {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: "Oxanium", "JetBrains Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8d9fb3;
  text-decoration: none;
  padding: 0.42rem 0.7rem;
  border: 1px solid rgba(51, 82, 113, 0.9);
  background: linear-gradient(145deg, rgba(26, 40, 60, 0.9), rgba(14, 24, 38, 0.92));
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
  transition: color 150ms cubic-bezier(0.17, 0.84, 0.44, 1), border-color 280ms cubic-bezier(0.17, 0.84, 0.44, 1), box-shadow 280ms cubic-bezier(0.17, 0.84, 0.44, 1), transform 150ms cubic-bezier(0.17, 0.84, 0.44, 1);
  overflow: hidden;
}
.site-nav a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -140%;
  width: 120%;
  background: linear-gradient(95deg, transparent, rgba(148, 220, 236, 0.34), transparent);
  transition: left 560ms cubic-bezier(0.17, 0.84, 0.44, 1);
}
.site-nav a:hover {
  color: #8cf9ed;
  border-color: rgba(116, 188, 222, 0.88);
  transform: translateY(-1px);
  box-shadow: inset 0 0 0 1px rgba(136, 217, 240, 0.12), 0 8px 18px -14px rgba(132, 215, 236, 0.55);
  text-decoration: none;
}
.site-nav a:hover::before {
  left: 120%;
}

.site-nav a.is-active {
  color: #8cf9ed;
  border-color: rgba(123, 199, 232, 0.92);
  background: linear-gradient(145deg, rgba(32, 52, 78, 0.94), rgba(14, 24, 38, 0.98));
  box-shadow: inset 0 0 0 1px rgba(148, 229, 240, 0.18), 0 0 14px rgba(71, 217, 204, 0.2);
}

.site-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  bottom: 0.2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(159, 233, 241, 0.88), transparent);
}

.nav-toggle {
  display: none;
  border: 1px solid #28415e;
  background: linear-gradient(145deg, rgba(25, 40, 60, 0.9), rgba(13, 22, 35, 0.9));
  color: #8d9fb3;
  padding: 0.28rem 0.58rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.125rem;
  line-height: 1;
  transition: border-color 150ms cubic-bezier(0.17, 0.84, 0.44, 1), color 150ms cubic-bezier(0.17, 0.84, 0.44, 1), box-shadow 280ms cubic-bezier(0.17, 0.84, 0.44, 1);
}
.nav-toggle:hover {
  color: #8cf9ed;
  border-color: rgba(125, 201, 230, 0.9);
  box-shadow: 0 0 0 1px rgba(147, 221, 236, 0.18), 0 0 14px rgba(71, 217, 204, 0.25);
}

.site-content {
  flex: 1;
  max-width: 1020px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  width: 100%;
}

.site-footer {
  position: relative;
  margin-top: auto;
  border-top: 1px solid #28415e;
  background: linear-gradient(165deg, rgba(17, 28, 44, 0.94), rgba(11, 18, 28, 0.92)), url("../icons/biomech-pattern.svg");
  box-shadow: 0 -12px 30px -24px rgba(0, 0, 0, 0.9);
}
.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(127, 201, 231, 0.65), transparent);
}

.footer-wrapper {
  max-width: 1020px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-social a {
  display: inline-block;
  color: #8d9fb3;
  font-family: "Oxanium", "JetBrains Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(47, 76, 106, 0.75);
  background: rgba(18, 30, 46, 0.82);
  padding: 0.32rem 0.58rem;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
  transition: color 150ms cubic-bezier(0.17, 0.84, 0.44, 1), border-color 280ms cubic-bezier(0.17, 0.84, 0.44, 1), box-shadow 280ms cubic-bezier(0.17, 0.84, 0.44, 1);
}
.footer-social a:hover {
  color: #8cf9ed;
  border-color: rgba(120, 196, 231, 0.82);
  text-decoration: none;
  box-shadow: 0 0 0 1px rgba(142, 216, 235, 0.14), 0 0 10px rgba(71, 217, 204, 0.2);
}

.footer-info {
  color: #8d9fb3;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}

/* footer newsletter signup */
.footer-newsletter {
  max-width: 24rem;
}

.footer-newsletter:empty {
  display: none;
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.25rem;
  margin-top: 0.5rem;
}

.newsletter-form label {
  color: #8d9fb3;
  font-family: "Oxanium", "JetBrains Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.newsletter-form input[type=email] {
  min-width: 0;
  padding: 0.42rem 0.6rem;
  border: 1px solid rgba(47, 76, 106, 0.75);
  border-radius: 4px;
  background: rgba(18, 30, 46, 0.85);
  color: #d8e2ec;
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
  font-size: 0.75rem;
}
.newsletter-form input[type=email]::placeholder {
  color: #8d9fb3;
}
.newsletter-form input[type=email]:focus-visible {
  outline: 2px solid #8cf9ed;
  outline-offset: 2px;
  border-color: rgba(120, 196, 231, 0.82);
}

.newsletter-form button[type=submit] {
  justify-self: start;
  min-height: 2.1rem;
  padding: 0.32rem 0.7rem;
  border: 1px solid rgba(47, 76, 106, 0.75);
  color: #8d9fb3;
  background: linear-gradient(145deg, rgba(26, 40, 60, 0.9), rgba(14, 24, 38, 0.92));
  font-family: "Oxanium", "JetBrains Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
  transition: color 150ms cubic-bezier(0.17, 0.84, 0.44, 1), border-color 280ms cubic-bezier(0.17, 0.84, 0.44, 1), box-shadow 280ms cubic-bezier(0.17, 0.84, 0.44, 1);
}
.newsletter-form button[type=submit]:hover {
  color: #8cf9ed;
  border-color: rgba(120, 196, 231, 0.82);
  box-shadow: 0 0 0 1px rgba(142, 216, 235, 0.14), 0 0 10px rgba(71, 217, 204, 0.2);
}
.newsletter-form button[type=submit]:focus-visible {
  outline: 2px solid #8cf9ed;
  outline-offset: 2px;
}

@media (min-width: 769px) {
  .newsletter-form {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }
  .newsletter-form label {
    grid-column: 1/-1;
  }
  .newsletter-form button[type=submit] {
    justify-self: stretch;
  }
}
/* end footer newsletter */
@media (max-width: 880px) {
  .header-wrapper {
    flex-wrap: wrap;
  }
  .nav-toggle {
    display: block;
    margin-left: auto;
  }
  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    padding-top: 0.5rem;
  }
  .site-nav.open {
    display: flex;
  }
  .site-nav a {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .site-content {
    padding: 2rem 1rem;
  }
  .footer-wrapper {
    flex-direction: column;
    text-align: center;
  }
}
.content-shell {
  position: relative;
  padding: 2rem;
  border: 1px solid #28415e;
  background: linear-gradient(150deg, rgba(27, 42, 64, 0.64), rgba(12, 20, 32, 0.88)), url("../icons/biomech-pattern.svg");
  box-shadow: inset 0 1px 0 rgba(142, 197, 225, 0.08), 0 22px 30px -26px rgba(2, 8, 16, 0.85);
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}

.content-shell::before {
  content: "";
  position: absolute;
  inset: 0.55rem;
  border: 1px solid rgba(133, 190, 224, 0.18);
  clip-path: inherit;
  pointer-events: none;
}

.content-shell::after {
  content: "";
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(143, 214, 238, 0.5), transparent);
}

.post-list {
  list-style: none;
  padding: 0;
}

.post-card {
  position: relative;
  background: linear-gradient(160deg, rgba(22, 35, 53, 0.92), rgba(12, 20, 33, 0.95));
  border: 1px solid #28415e;
  padding: 1.5rem 2rem;
  margin-bottom: 1.5rem;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  transition: border-color 280ms cubic-bezier(0.17, 0.84, 0.44, 1), box-shadow 280ms cubic-bezier(0.17, 0.84, 0.44, 1), transform 150ms cubic-bezier(0.17, 0.84, 0.44, 1);
  overflow: hidden;
}

.post-card::before {
  content: "";
  position: absolute;
  top: -42%;
  left: -70%;
  width: 52%;
  height: 185%;
  background: linear-gradient(110deg, transparent, rgba(157, 225, 236, 0.25), transparent);
  transform: rotate(15deg);
  transition: left 560ms cubic-bezier(0.17, 0.84, 0.44, 1);
}

.post-card::after {
  content: "";
  position: absolute;
  inset: 0.45rem;
  border: 1px solid rgba(134, 197, 226, 0.15);
  pointer-events: none;
  clip-path: inherit;
}

.post-card:hover {
  border-color: #396183;
  box-shadow: 0 20px 34px -28px rgba(8, 14, 23, 0.95), 0 0 0 1px rgba(136, 211, 230, 0.08), 0 0 20px rgba(71, 217, 204, 0.16);
  transform: translateY(-2px);
}

.post-card:hover::before {
  left: 126%;
}

.post-card-title {
  font-family: "Oxanium", "JetBrains Mono", monospace;
  font-size: 1.125rem;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.post-card-title a {
  color: #f2f7fb;
  text-decoration: none;
}
.post-card-title a:hover {
  color: #8cf9ed;
  text-decoration: none;
}

.post-card-meta {
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
  font-size: 0.75rem;
  color: #8d9fb3;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(80, 125, 164, 0.38);
}

.post-card-excerpt {
  color: #8d9fb3;
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 0;
}

.post-categories,
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0 0;
}

.category-pill,
.tag-pill {
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  color: #8cf9ed;
  background: linear-gradient(145deg, rgba(45, 86, 112, 0.42), rgba(21, 37, 57, 0.82));
  border: 1px solid rgba(112, 168, 200, 0.48);
  padding: 0.18rem 0.55rem;
  text-decoration: none;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
  transition: border-color 150ms cubic-bezier(0.17, 0.84, 0.44, 1), box-shadow 280ms cubic-bezier(0.17, 0.84, 0.44, 1), background 150ms cubic-bezier(0.17, 0.84, 0.44, 1);
}
.category-pill:hover,
.tag-pill:hover {
  background: linear-gradient(145deg, rgba(63, 110, 138, 0.55), rgba(21, 37, 57, 0.9));
  border-color: rgba(133, 198, 228, 0.72);
  text-decoration: none;
  color: #8cf9ed;
  box-shadow: 0 0 12px rgba(71, 217, 204, 0.16);
}

.post-shell {
  max-width: calc(740px + 4rem);
}

.post-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(107, 157, 194, 0.42);
}

.post-title {
  font-size: 2rem;
  margin: 0 0 1rem 0;
}

.post-meta {
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
  font-size: 0.875rem;
  color: #8d9fb3;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.post-content {
  max-width: 740px;
}

.post-content h2,
.post-content h3,
.post-content h4 {
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(92, 143, 181, 0.34);
  position: relative;
}

.post-content h2::before,
.post-content h3::before,
.post-content h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3.2rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(151, 221, 236, 0.86), transparent);
}

.post-content p,
.page-content p {
  max-width: 740px;
}

.post-content img {
  margin: 1.5rem 0;
  border: 1px solid rgba(95, 143, 180, 0.52);
  box-shadow: 0 16px 24px -20px rgba(2, 8, 15, 0.94);
}

.post-content .diagram,
.page-content .diagram {
  margin: 1.5rem 0;
  overflow-x: auto;
  text-align: center;
}

.post-content .diagram img,
.page-content .diagram img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.post-content .diagram.diagram--scroll img,
.page-content .diagram.diagram--scroll img {
  max-width: none;
}

.post-footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(107, 157, 194, 0.42);
}

.post-nav {
  max-width: 740px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(107, 157, 194, 0.42);
}

.post-nav a {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-width: 0;
  color: #8cf9ed;
  font-family: "Oxanium", "JetBrains Mono", monospace;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  overflow-wrap: anywhere;
  border: 1px solid #28415e;
  background: linear-gradient(145deg, rgba(26, 40, 60, 0.9), rgba(14, 24, 38, 0.92));
  padding: 0.55rem 0.75rem;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
  transition: color 150ms cubic-bezier(0.17, 0.84, 0.44, 1), border-color 280ms cubic-bezier(0.17, 0.84, 0.44, 1), box-shadow 280ms cubic-bezier(0.17, 0.84, 0.44, 1);
}

.post-nav a:hover {
  color: #f2f7fb;
  border-color: #396183;
  box-shadow: 0 0 0 1px rgba(142, 216, 235, 0.14), 0 0 14px rgba(71, 217, 204, 0.16);
  text-decoration: none;
}

.post-nav-next {
  margin-left: auto;
  text-align: right;
}

.series-nav {
  position: relative;
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  border: 1px solid #28415e;
  background: linear-gradient(160deg, rgba(26, 41, 61, 0.78), rgba(16, 24, 38, 0.94));
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  box-shadow: inset 0 1px 0 rgba(140, 249, 237, 0.08), 0 18px 28px -26px rgba(2, 8, 16, 0.85);
}

.series-nav::before {
  content: "";
  position: absolute;
  inset: 0.45rem;
  border: 1px solid rgba(140, 249, 237, 0.12);
  clip-path: inherit;
  pointer-events: none;
}

.series-nav p {
  margin: 0 0 0.5rem 0;
  color: #8d9fb3;
}

.series-nav p:last-child {
  margin-bottom: 0;
}

.series-nav ol,
.series-nav ul {
  margin: 0.5rem 0 0 0;
  padding-left: 1.5rem;
  color: #8d9fb3;
}

.series-nav ul {
  font-size: 0.875rem;
}

.series-nav li {
  margin-bottom: 0.25rem;
}

.series-nav li:last-child {
  margin-bottom: 0;
}

.series-nav a {
  color: #f2f7fb;
  text-decoration: none;
}
.series-nav a:hover {
  color: #8cf9ed;
  text-decoration: none;
}

.series-nav-current {
  color: #8cf9ed;
  font-weight: 600;
}

.series-nav-current::before {
  content: "> ";
  color: #47d9cc;
  font-weight: 600;
}

.related-posts {
  max-width: 740px;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(107, 157, 194, 0.42);
}

.related-posts h2 {
  margin: 0 0 1rem 0;
  font-size: 1.125rem;
}

.related-post-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.related-post-item {
  padding: 0.5rem 0;
  border-top: 1px solid rgba(80, 125, 164, 0.38);
}

.related-post-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.related-post-item a {
  color: #f2f7fb;
  font-family: "Oxanium", "JetBrains Mono", monospace;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
}
.related-post-item a:hover {
  color: #8cf9ed;
  text-decoration: none;
}

.related-post-item time {
  display: block;
  margin-top: 0.25rem;
  color: #8d9fb3;
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
  font-size: 0.75rem;
}

.page-shell {
  max-width: calc(740px + 4rem);
}

.page-header {
  margin-bottom: 2rem;
}

.page-title {
  font-size: 2rem;
  margin: 0;
}

.page-content {
  max-width: 740px;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.community-card {
  position: relative;
  display: block;
  border: 1px solid rgba(98, 149, 188, 0.5);
  background: linear-gradient(150deg, rgba(26, 41, 61, 0.8), rgba(12, 20, 32, 0.94));
  padding: 1.5rem;
  color: #d8e2ec;
  text-decoration: none;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  transition: border-color 280ms cubic-bezier(0.17, 0.84, 0.44, 1), box-shadow 280ms cubic-bezier(0.17, 0.84, 0.44, 1), transform 150ms cubic-bezier(0.17, 0.84, 0.44, 1);
}

.community-card::after {
  content: "";
  position: absolute;
  inset: 0.45rem;
  border: 1px solid rgba(133, 190, 224, 0.14);
  pointer-events: none;
  clip-path: inherit;
}

.community-card:hover {
  border-color: rgba(136, 205, 230, 0.72);
  box-shadow: 0 18px 28px -22px rgba(4, 10, 18, 0.94), 0 0 14px rgba(71, 217, 204, 0.16);
  transform: translateY(-2px);
  color: #d8e2ec;
  text-decoration: none;
}

.community-card h2 {
  margin: 0 0 0.5rem 0;
  font-size: 1.125rem;
  color: #f2f7fb;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.community-card p {
  margin: 0 0 0.5rem 0;
  color: #8d9fb3;
  font-size: 0.875rem;
}

.community-card span {
  display: inline-block;
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: #8cf9ed;
  text-transform: uppercase;
}

.page-content .sessionize-wrapper {
  position: relative;
  background: linear-gradient(150deg, rgba(30, 46, 70, 0.72), rgba(16, 26, 41, 0.9));
  border: 1px solid rgba(88, 135, 172, 0.54);
  padding: 1.5rem 2rem;
  margin-top: 1.5rem;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.page-content .sz-caption {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Oxanium", "JetBrains Mono", monospace;
  font-size: 1.125rem;
  color: #f2f7fb;
  margin: 0 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(93, 144, 182, 0.45);
}

.page-content .sz-caption svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: #47d9cc;
  flex-shrink: 0;
}

.page-content .sz-group {
  margin: 0;
  padding: 0;
}

.page-content ul.sz-group {
  list-style: none;
}

.page-content .sz-group__title {
  margin: 1.5rem 0 0.5rem 0;
  font-family: "Oxanium", "JetBrains Mono", monospace;
  font-size: 0.875rem;
  color: #8cf9ed;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.page-content .sz-item {
  display: block;
  margin: 0;
  padding: 0.5rem 0;
  border-top: 1px solid rgba(79, 122, 158, 0.42);
}

.page-content .sz-item:first-child {
  border-top: none;
}

.page-content .sz-item__title {
  font-family: "Oxanium", "JetBrains Mono", monospace;
  color: #f2f7fb;
  text-decoration: none;
}
.page-content .sz-item__title:hover {
  color: #8cf9ed;
  text-decoration: none;
}

.page-content .sz-item__meta {
  display: block;
  margin-top: 0.25rem;
  color: #8d9fb3;
  font-size: 0.875rem;
}

.page-content .sz-powered-by {
  margin-top: 1.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(79, 122, 158, 0.42);
  font-size: 0.75rem;
  color: #8d9fb3;
}
.page-content .sz-powered-by a {
  color: #8d9fb3;
  text-decoration: none;
}
.page-content .sz-powered-by a:hover {
  color: #8cf9ed;
  text-decoration: none;
}

.home-intro {
  margin-bottom: 3rem;
}
.home-intro h1 {
  margin: 0 0 0.5rem 0;
  font-size: 2rem;
}
.home-intro p {
  color: #8d9fb3;
  font-size: 1.125rem;
  margin: 0 0 1.5rem 0;
}

.home-intro-panel {
  margin-bottom: 2rem;
}

.home-status-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.home-status-item {
  position: relative;
  border: 1px solid rgba(95, 145, 182, 0.52);
  background: linear-gradient(150deg, rgba(29, 45, 67, 0.82), rgba(16, 25, 39, 0.95));
  padding: 0.62rem 0.72rem;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
  overflow: hidden;
}

.home-status-item::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(156, 231, 241, 0.7), transparent);
  animation: biomech-line-pulse 3.8s ease-in-out infinite;
}

.home-status-label {
  display: block;
  margin-bottom: 0.22rem;
  color: #8d9fb3;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: "Oxanium", "JetBrains Mono", monospace;
}

.home-status-value {
  color: #f2f7fb;
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .content-shell {
    padding: 1.5rem;
  }
  .post-card {
    padding: 1rem 1.5rem;
  }
  .home-status-rail {
    grid-template-columns: 1fr;
  }
  .post-content,
  .page-content {
    max-width: 100%;
  }
  .community-grid {
    grid-template-columns: 1fr;
  }
}
/* Archive and Pagefind additions */
.archive-link-panel {
  margin-top: 1.5rem;
  padding: 1rem;
  border: 1px solid #28415e;
}

.archive-link-panel a {
  color: #8cf9ed;
  font-weight: 700;
  text-decoration: none;
}

.archive-link-panel a:hover {
  text-decoration: underline;
}

.archive-list {
  margin-top: 1.5rem;
}

.archive-post-list {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

.archive-post-list li {
  display: grid;
  grid-template-columns: 6.5rem minmax(0, 1fr);
  gap: 0.75rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid #28415e;
}

.archive-post-list time {
  color: #8d9fb3;
  font-size: 0.9rem;
}

#search {
  --pagefind-ui-primary: #8cf9ed;
  --pagefind-ui-text: #f2f7fb;
  --pagefind-ui-background: #101826;
  --pagefind-ui-border: #28415e;
  --pagefind-ui-tag: #8d9fb3;
}

#search .pagefind-ui__search-input,
#search .pagefind-ui__result,
#search .pagefind-ui__message {
  color: #f2f7fb;
}

#search .pagefind-ui__search-input {
  background: #101826;
  border-color: #28415e;
}

#search .pagefind-ui__result-link {
  color: #8cf9ed;
}

/* End archive and Pagefind additions */
/* not-found variants */
.not-found {
  max-width: 52rem;
  margin: 0 auto;
  padding: 6rem 1rem 7rem;
  text-align: center;
}

.not-found-variants {
  position: relative;
}

.not-found-js .not-found-variant:not(.is-visible) {
  display: none;
}

.not-found h1 {
  position: relative;
  display: inline-block;
  margin: 0;
  color: #f2f7fb;
  font-family: "Oxanium", "JetBrains Mono", monospace;
  font-size: 4.8rem;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  text-shadow: 0 0 24px rgba(140, 249, 237, 0.24), 2px 0 0 rgba(140, 249, 237, 0.32), -2px 0 0 rgba(40, 65, 94, 0.65);
}

.not-found h1::before,
.not-found h1::after {
  content: attr(data-text)/"";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
}

.not-found h1::before {
  color: #8cf9ed;
  clip-path: inset(0 0 58% 0);
  transform: translate(0.04em, -0.02em);
}

.not-found h1::after {
  color: #28415e;
  clip-path: inset(54% 0 0 0);
  transform: translate(-0.04em, 0.03em);
}

.not-found-message {
  max-width: 42rem;
  margin: 1.5rem auto 0;
  color: #f2f7fb;
  font-size: 1.1rem;
  line-height: 1.7;
}

.not-found-hint {
  max-width: 38rem;
  margin: 0.85rem auto 0;
  color: #8d9fb3;
  font-style: italic;
  line-height: 1.6;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.not-found-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.75rem 1rem;
  border: 1px solid #28415e;
  color: #f2f7fb;
  background: linear-gradient(135deg, rgba(140, 249, 237, 0.12), transparent 70%);
  clip-path: polygon(0 0, calc(100% - 0.85rem) 0, 100% 0.85rem, 100% 100%, 0.85rem 100%, 0 calc(100% - 0.85rem));
  font-family: "Oxanium", "JetBrains Mono", monospace;
  font-size: 0.9rem;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.not-found-action:hover,
.not-found-action:focus {
  border-color: #8cf9ed;
  color: #8cf9ed;
  box-shadow: 0 0 18px rgba(140, 249, 237, 0.18);
  transform: translateY(-1px);
}

.not-found-action:focus-visible {
  outline: 2px solid #8cf9ed;
  outline-offset: 3px;
}

@media (max-width: 720px) {
  .not-found {
    padding: 4rem 1rem 5rem;
  }
  .not-found h1 {
    font-size: 3.2rem;
  }
  .not-found-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .not-found-action {
    width: 100%;
  }
}
/* end not-found variants */
/* post enhancements: toc, code copy, meta, comments */
.toc {
  max-width: 740px;
  margin: 0 0 2rem 0;
  padding: 1rem 1.5rem;
  border: 1px solid #28415e;
  background: linear-gradient(160deg, rgba(26, 41, 61, 0.72), rgba(16, 24, 38, 0.92));
  box-shadow: inset 0 1px 0 rgba(140, 249, 237, 0.07), 0 18px 28px -26px rgba(2, 8, 16, 0.85);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.toc-title {
  margin: 0 0 0.25rem 0;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid rgba(107, 157, 194, 0.42);
  color: #8cf9ed;
  font-family: "Oxanium", "JetBrains Mono", monospace;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

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

.toc-list li {
  margin: 0;
}

.toc-list a {
  display: inline-block;
  max-width: 100%;
  padding: 0.22rem 0;
  overflow-wrap: anywhere;
  color: #8d9fb3;
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
  font-size: 0.75rem;
  line-height: 1.7;
  text-decoration: none;
  transition: color 150ms cubic-bezier(0.17, 0.84, 0.44, 1);
}
.toc-list a::before {
  content: "> ";
  color: #2ea59b;
  font-weight: 600;
}
.toc-list a:hover, .toc-list a:focus-visible {
  color: #8cf9ed;
  text-decoration: none;
}

.toc-list-level-2 {
  padding-left: 1.5rem;
}

.code-block {
  position: relative;
}

.code-copy-btn {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 1;
  opacity: 0;
  padding: 0.28rem 0.55rem;
  border: 1px solid #396183;
  background: rgba(10, 15, 25, 0.88);
  color: #8d9fb3;
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
  transition: opacity 150ms cubic-bezier(0.17, 0.84, 0.44, 1), color 150ms cubic-bezier(0.17, 0.84, 0.44, 1), border-color 150ms cubic-bezier(0.17, 0.84, 0.44, 1), box-shadow 280ms cubic-bezier(0.17, 0.84, 0.44, 1);
}

.code-block:hover .code-copy-btn,
.code-block:focus-within .code-copy-btn {
  opacity: 1;
}

.code-copy-btn:hover {
  color: #8cf9ed;
  border-color: rgba(133, 198, 228, 0.72);
  box-shadow: 0 0 10px rgba(71, 217, 204, 0.22);
}

.code-copy-btn:focus-visible {
  opacity: 1;
  outline: 2px solid #8cf9ed;
  outline-offset: 2px;
}

.code-copy-btn.is-copied {
  opacity: 1;
  color: #8cf9ed;
  border-color: #47d9cc;
  box-shadow: 0 0 12px rgba(71, 217, 204, 0.3);
}

.reading-time,
.post-updated {
  color: #8d9fb3;
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.comments:not(:empty) {
  max-width: 740px;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(107, 157, 194, 0.42);
}
.comments:not(:empty) > * + * {
  margin-top: 1rem;
}

.comments:empty {
  display: none;
}

/* end post enhancements */
.highlight {
  position: relative;
  background: linear-gradient(152deg, rgba(25, 40, 62, 0.92), rgba(12, 20, 33, 0.96));
  border: 1px solid rgba(79, 126, 164, 0.66);
  margin: 1.5rem 0;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  box-shadow: inset 0 1px 0 rgba(153, 214, 235, 0.08), 0 14px 26px -22px rgba(2, 8, 15, 0.92);
}
.highlight::before {
  content: "";
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(159, 234, 242, 0.58), transparent);
}
.highlight pre {
  margin: 0;
  border: none;
  background: transparent;
}
.highlight .c, .highlight .c1, .highlight .cm, .highlight .cs, .highlight .ch {
  color: #7890a4;
  font-style: italic;
}
.highlight .k, .highlight .kc, .highlight .kd, .highlight .kn, .highlight .kp, .highlight .kr, .highlight .kt {
  color: #d8a7ff;
}
.highlight .s, .highlight .s1, .highlight .s2, .highlight .sb, .highlight .sc, .highlight .sd, .highlight .se, .highlight .sh, .highlight .si, .highlight .sx, .highlight .sr {
  color: #afd9a9;
}
.highlight .m, .highlight .mb, .highlight .mf, .highlight .mh, .highlight .mi, .highlight .mo, .highlight .il {
  color: #f4ae88;
}
.highlight .n {
  color: #deebf5;
}
.highlight .na {
  color: #8ad4de;
}
.highlight .nb {
  color: #99beff;
}
.highlight .nc {
  color: #f7d18c;
}
.highlight .nd {
  color: #9dc8f9;
}
.highlight .nf {
  color: #8dc5f9;
}
.highlight .ni {
  color: #deebf5;
}
.highlight .nn {
  color: #e5d39f;
}
.highlight .no {
  color: #f4b98d;
}
.highlight .nt {
  color: #f68fa6;
}
.highlight .nv {
  color: #8ad4de;
}
.highlight .o, .highlight .ow {
  color: #92e0f6;
}
.highlight .p {
  color: #9ad2ea;
}
.highlight .gd {
  color: #ff9cad;
}
.highlight .gi {
  color: #b8e8b6;
}
.highlight .ge {
  font-style: italic;
}
.highlight .gs {
  font-weight: bold;
}
.highlight .gh {
  color: #ecf7ff;
  font-weight: bold;
}
.highlight .w {
  color: #deebf5;
}
.highlight .err {
  color: #ff9cad;
}

.style-control {
  display: none;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
}

.style-js .style-control {
  display: flex;
}

.style-control label {
  color: #8d9fb3;
  font-family: "Oxanium", "JetBrains Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.style-picker {
  min-height: 2rem;
  border: 1px solid #28415e;
  border-radius: 4px;
  padding: 0.25rem 1.7rem 0.25rem 0.55rem;
  color: #8cf9ed;
  background-color: #101826;
  font-family: "Oxanium", "JetBrains Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.style-picker:hover {
  border-color: #396183;
}

.style-picker:focus-visible {
  outline: 2px solid #8cf9ed;
  outline-offset: 2px;
}

html[data-style=terminal] body.theme-biomech {
  color: #b8d6bd;
  background-color: #050b07;
  background-image: radial-gradient(circle at 50% -20%, rgba(31, 105, 51, 0.22), transparent 48%), linear-gradient(180deg, #07110b, #030604);
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
}

html[data-style=terminal] body.theme-biomech::before {
  background-image: linear-gradient(rgba(76, 255, 117, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(76, 255, 117, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 1;
  mix-blend-mode: normal;
  animation: none;
}

html[data-style=terminal] body.theme-biomech::after {
  background-image: repeating-linear-gradient(180deg, transparent 0 3px, rgba(94, 255, 126, 0.028) 4px 5px);
  background-size: auto;
  opacity: 1;
  animation: none;
}

html[data-style=terminal] h1,
html[data-style=terminal] h2,
html[data-style=terminal] h3,
html[data-style=terminal] h4,
html[data-style=terminal] h5,
html[data-style=terminal] h6,
html[data-style=terminal] .site-title,
html[data-style=terminal] .site-nav a,
html[data-style=terminal] .post-card-title,
html[data-style=terminal] .related-post-item a,
html[data-style=terminal] .footer-social a,
html[data-style=terminal] .style-control label,
html[data-style=terminal] .style-picker {
  color: #d9ffe1;
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
  text-transform: none;
  text-shadow: none;
}

html[data-style=terminal] a {
  color: #65ee83;
  text-decoration-color: rgba(101, 238, 131, 0.55);
}

html[data-style=terminal] a:hover,
html[data-style=terminal] .site-title,
html[data-style=terminal] .site-nav a:hover,
html[data-style=terminal] .site-nav a.is-active,
html[data-style=terminal] .post-card-title a:hover,
html[data-style=terminal] .related-post-item a:hover,
html[data-style=terminal] .footer-social a:hover {
  color: #a8ffb9;
  text-shadow: 0 0 8px rgba(70, 255, 108, 0.24);
}

html[data-style=terminal] .site-accent-bar {
  background: linear-gradient(90deg, transparent, #3fe467 48%, transparent);
  box-shadow: 0 0 20px rgba(63, 228, 103, 0.28);
}

html[data-style=terminal] .site-header,
html[data-style=terminal] .site-footer {
  border-color: #285f35;
  background: rgba(4, 14, 8, 0.94);
  box-shadow: none;
}

html[data-style=terminal] .site-header::before,
html[data-style=terminal] .site-header::after {
  border-color: rgba(101, 238, 131, 0.32);
}

html[data-style=terminal] .content-shell,
html[data-style=terminal] .post-card,
html[data-style=terminal] .community-card,
html[data-style=terminal] .home-status-item,
html[data-style=terminal] .series-nav,
html[data-style=terminal] .page-content .sessionize-wrapper,
html[data-style=terminal] .post-nav a,
html[data-style=terminal] blockquote,
html[data-style=terminal] pre,
html[data-style=terminal] .highlight {
  color: #b8d6bd;
  border-color: #285f35;
  background: rgba(5, 18, 10, 0.9);
  box-shadow: inset 0 0 24px rgba(43, 139, 62, 0.05);
}

html[data-style=terminal] .content-shell::before,
html[data-style=terminal] .post-card::after,
html[data-style=terminal] .community-card::after,
html[data-style=terminal] .series-nav::before {
  border-color: rgba(101, 238, 131, 0.14);
}

html[data-style=terminal] .content-shell::after,
html[data-style=terminal] .post-header,
html[data-style=terminal] .post-footer,
html[data-style=terminal] .post-nav,
html[data-style=terminal] .related-posts,
html[data-style=terminal] .related-post-item,
html[data-style=terminal] .post-content h2,
html[data-style=terminal] .post-content h3,
html[data-style=terminal] .post-content h4 {
  border-color: rgba(83, 188, 103, 0.35);
}

html[data-style=terminal] .post-card-meta,
html[data-style=terminal] .post-card-excerpt,
html[data-style=terminal] .post-meta,
html[data-style=terminal] .home-intro p,
html[data-style=terminal] .home-status-label,
html[data-style=terminal] .community-card p,
html[data-style=terminal] .footer-info,
html[data-style=terminal] figcaption {
  color: #82a98a;
}

html[data-style=terminal] .site-nav a,
html[data-style=terminal] .footer-social a,
html[data-style=terminal] .style-picker,
html[data-style=terminal] .nav-toggle,
html[data-style=terminal] .category-pill,
html[data-style=terminal] .tag-pill {
  color: #a8ffb9;
  border-color: #285f35;
  background: #07150b;
}

html[data-style=terminal] code {
  color: #a8ffb9;
  border-color: #285f35;
  background: #07150b;
}

html[data-style=terminal] table {
  color: #b8d6bd;
  background: #061009;
}

html[data-style=terminal] th,
html[data-style=terminal] td {
  border-color: #285f35;
  background: rgba(7, 21, 11, 0.92);
}

html[data-style=terminal] th {
  color: #d9ffe1;
}

html[data-style=terminal] .highlight .c,
html[data-style=terminal] .highlight .c1,
html[data-style=terminal] .highlight .cm,
html[data-style=terminal] .highlight .cs,
html[data-style=terminal] .highlight .ch {
  color: #62836a;
}

html[data-style=terminal] .highlight .k,
html[data-style=terminal] .highlight .kc,
html[data-style=terminal] .highlight .kd,
html[data-style=terminal] .highlight .kn,
html[data-style=terminal] .highlight .kp,
html[data-style=terminal] .highlight .kr,
html[data-style=terminal] .highlight .kt {
  color: #d0ff78;
}

html[data-style=terminal] .highlight .s,
html[data-style=terminal] .highlight .s1,
html[data-style=terminal] .highlight .s2,
html[data-style=terminal] .highlight .m,
html[data-style=terminal] .highlight .mi,
html[data-style=terminal] .highlight .mf,
html[data-style=terminal] .highlight .n,
html[data-style=terminal] .highlight .na,
html[data-style=terminal] .highlight .nb,
html[data-style=terminal] .highlight .nc,
html[data-style=terminal] .highlight .nf,
html[data-style=terminal] .highlight .nt,
html[data-style=terminal] .highlight .nv,
html[data-style=terminal] .highlight .o,
html[data-style=terminal] .highlight .p {
  color: #9cf5ae;
}

html[data-style=terminal] #search {
  --pagefind-ui-primary: #a8ffb9;
  --pagefind-ui-text: #d9ffe1;
  --pagefind-ui-background: #07150b;
  --pagefind-ui-border: #285f35;
  --pagefind-ui-tag: #82a98a;
}

html[data-style=terminal] body.theme-biomech img {
  filter: grayscale(0.35) sepia(0.18) hue-rotate(72deg) saturate(0.8) brightness(0.92);
}

html[data-style=paper] body.theme-biomech {
  color: #342f28;
  background-color: #f3efe4;
  background-image: linear-gradient(180deg, #f8f5ed, #ede6d7);
  font-family: Georgia, "Times New Roman", serif;
}

html[data-style=paper] body.theme-biomech::before {
  background-image: repeating-linear-gradient(0deg, transparent 0 31px, rgba(73, 103, 123, 0.08) 32px 33px);
  background-size: auto;
  opacity: 1;
  mix-blend-mode: normal;
  animation: none;
}

html[data-style=paper] body.theme-biomech::after {
  display: none;
}

html[data-style=paper] h1,
html[data-style=paper] h2,
html[data-style=paper] h3,
html[data-style=paper] h4,
html[data-style=paper] h5,
html[data-style=paper] h6,
html[data-style=paper] .post-card-title,
html[data-style=paper] .related-post-item a {
  color: #29251f;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
  text-transform: none;
}

html[data-style=paper] a {
  color: #245d83;
  text-decoration-color: rgba(36, 93, 131, 0.45);
}

html[data-style=paper] a:hover,
html[data-style=paper] .post-card-title a:hover,
html[data-style=paper] .related-post-item a:hover {
  color: #153f5d;
  text-shadow: none;
}

html[data-style=paper] .site-accent-bar {
  background: linear-gradient(90deg, #9d7131, #c49a53 48%, #9d7131);
  box-shadow: none;
}

html[data-style=paper] .site-header,
html[data-style=paper] .site-footer {
  border-color: #c9bda8;
  background: rgba(248, 245, 237, 0.96);
  box-shadow: 0 4px 14px rgba(62, 49, 31, 0.08);
}

html[data-style=paper] .site-header::before,
html[data-style=paper] .site-header::after,
html[data-style=paper] .site-footer::before {
  display: none;
}

html[data-style=paper] .site-title {
  color: #704a1f;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.01em;
  text-shadow: none;
  text-transform: none;
}

html[data-style=paper] .site-title:hover {
  color: #3f2c17;
  text-shadow: none;
}

html[data-style=paper] .site-nav a,
html[data-style=paper] .footer-social a,
html[data-style=paper] .style-picker,
html[data-style=paper] .nav-toggle {
  color: #5d5448;
  border-color: #c9bda8;
  background: #fdfbf7;
  font-family: Georgia, "Times New Roman", serif;
  text-transform: none;
}

html[data-style=paper] .site-nav a:hover,
html[data-style=paper] .site-nav a.is-active,
html[data-style=paper] .footer-social a:hover {
  color: #704a1f;
  border-color: #9d7131;
  background: #f7efdf;
  box-shadow: none;
  text-shadow: none;
}

html[data-style=paper] .site-nav a::before,
html[data-style=paper] .site-nav a.is-active::after {
  display: none;
}

html[data-style=paper] .style-control label {
  color: #6f6558;
  font-family: Georgia, "Times New Roman", serif;
  text-transform: none;
}

html[data-style=paper] .content-shell,
html[data-style=paper] .post-card,
html[data-style=paper] .community-card,
html[data-style=paper] .home-status-item,
html[data-style=paper] .series-nav,
html[data-style=paper] .page-content .sessionize-wrapper,
html[data-style=paper] .post-nav a,
html[data-style=paper] blockquote {
  color: #342f28;
  border-color: #c9bda8;
  background: rgba(255, 254, 250, 0.94);
  box-shadow: 0 10px 24px rgba(62, 49, 31, 0.07);
  clip-path: none;
}

html[data-style=paper] .content-shell::before,
html[data-style=paper] .content-shell::after,
html[data-style=paper] .post-card::before,
html[data-style=paper] .post-card::after,
html[data-style=paper] .community-card::after,
html[data-style=paper] .home-status-item::before,
html[data-style=paper] .series-nav::before {
  display: none;
}

html[data-style=paper] .post-card:hover,
html[data-style=paper] .community-card:hover {
  color: #342f28;
  border-color: #a79172;
  box-shadow: 0 14px 26px rgba(62, 49, 31, 0.1);
}

html[data-style=paper] .post-card-meta,
html[data-style=paper] .post-card-excerpt,
html[data-style=paper] .post-meta,
html[data-style=paper] .home-intro p,
html[data-style=paper] .home-status-label,
html[data-style=paper] .community-card p,
html[data-style=paper] .footer-info,
html[data-style=paper] figcaption {
  color: #6f6558;
}

html[data-style=paper] .post-card-meta,
html[data-style=paper] .post-header,
html[data-style=paper] .post-footer,
html[data-style=paper] .post-nav,
html[data-style=paper] .related-posts,
html[data-style=paper] .related-post-item,
html[data-style=paper] .post-content h2,
html[data-style=paper] .post-content h3,
html[data-style=paper] .post-content h4 {
  border-color: #d7ccba;
}

html[data-style=paper] .category-pill,
html[data-style=paper] .tag-pill {
  color: #704a1f;
  border-color: #ccb993;
  background: #f5ebd7;
  clip-path: none;
}

html[data-style=paper] code {
  color: #704a1f;
  border-color: #d5c4a8;
  background: #f4ecdf;
}

html[data-style=paper] pre,
html[data-style=paper] .highlight {
  color: #2d2923;
  border-color: #c9bda8;
  background: #fbf8f0;
  box-shadow: inset 0 0 0 1px rgba(157, 113, 49, 0.05);
  clip-path: none;
}

html[data-style=paper] pre::before,
html[data-style=paper] .highlight::before {
  display: none;
}

html[data-style=paper] pre code {
  color: #2d2923;
}

html[data-style=paper] table {
  color: #342f28;
  background: #fffefa;
}

html[data-style=paper] th,
html[data-style=paper] td {
  border-color: #d7ccba;
  background: #fffefa;
}

html[data-style=paper] th {
  color: #29251f;
  background: #eee5d5;
}

html[data-style=paper] tr:hover td {
  background: #f7f0e4;
}

html[data-style=paper] .highlight .c,
html[data-style=paper] .highlight .c1,
html[data-style=paper] .highlight .cm,
html[data-style=paper] .highlight .cs,
html[data-style=paper] .highlight .ch {
  color: #7b746b;
}

html[data-style=paper] .highlight .k,
html[data-style=paper] .highlight .kc,
html[data-style=paper] .highlight .kd,
html[data-style=paper] .highlight .kn,
html[data-style=paper] .highlight .kp,
html[data-style=paper] .highlight .kr,
html[data-style=paper] .highlight .kt {
  color: #734b93;
}

html[data-style=paper] .highlight .s,
html[data-style=paper] .highlight .s1,
html[data-style=paper] .highlight .s2 {
  color: #356b37;
}

html[data-style=paper] .highlight .m,
html[data-style=paper] .highlight .mi,
html[data-style=paper] .highlight .mf {
  color: #9a4d28;
}

html[data-style=paper] .highlight .n,
html[data-style=paper] .highlight .na,
html[data-style=paper] .highlight .nb,
html[data-style=paper] .highlight .nc,
html[data-style=paper] .highlight .nf,
html[data-style=paper] .highlight .nt,
html[data-style=paper] .highlight .nv,
html[data-style=paper] .highlight .o,
html[data-style=paper] .highlight .p {
  color: #284b63;
}

html[data-style=paper] #search {
  --pagefind-ui-primary: #245d83;
  --pagefind-ui-text: #342f28;
  --pagefind-ui-background: #fffefa;
  --pagefind-ui-border: #c9bda8;
  --pagefind-ui-tag: #6f6558;
}

html[data-style=paper] #search .pagefind-ui__search-input,
html[data-style=paper] #search .pagefind-ui__result,
html[data-style=paper] #search .pagefind-ui__message {
  color: #342f28;
}

html[data-style=paper] #search .pagefind-ui__search-input {
  background: #fffefa;
  border-color: #c9bda8;
}

html[data-style=paper] #search .pagefind-ui__result-link {
  color: #245d83;
}

html[data-style=paper] body.theme-biomech img,
html[data-style=paper] body.theme-biomech img:hover {
  filter: none;
}

html[data-style=paper] hr {
  background: linear-gradient(90deg, transparent, #bca887, transparent);
}

html[data-style=paper] ::selection {
  color: #29251f;
  background: #e4d19e;
}

html[data-style=paper] a:focus-visible,
html[data-style=paper] button:focus-visible,
html[data-style=paper] .style-picker:focus-visible {
  outline-color: #704a1f;
}

@media (max-width: 880px) {
  .style-control {
    margin-left: auto;
  }
}
@media (max-width: 480px) {
  .header-wrapper {
    gap: 0.5rem;
  }
  .site-title {
    max-width: 9.5rem;
    white-space: normal;
    font-size: 0.875rem;
    line-height: 1.2;
  }
  .style-control label {
    position: absolute;
    width: 1px;
    height: 1px;
    clip-path: inset(50%);
    overflow: hidden;
    white-space: nowrap;
  }
  .style-picker {
    width: 6.25rem;
    padding-right: 0.35rem;
  }
}

/*# sourceMappingURL=main.css.map */