*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #e0e6ed;
  background-color: #0a0e17;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "JetBrains Mono", "Fira Code", monospace;
  color: #f0f4f8;
  line-height: 1.3;
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.125rem;
}

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

a {
  color: #00d4aa;
  text-decoration: none;
  transition: color 150ms ease;
}
a:hover {
  color: #00a88a;
  text-decoration: underline;
}

p {
  margin-bottom: 1rem;
}

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

li {
  margin-bottom: 0.25rem;
}

blockquote {
  border-left: 3px solid #00d4aa;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: #131a2a;
  border-radius: 0 8px 8px 0;
  color: #7a8a9e;
  font-style: italic;
}
blockquote p:last-child {
  margin-bottom: 0;
}

code {
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
  font-size: 0.875rem;
  background: #1a2332;
  padding: 2px 6px;
  border-radius: 4px;
  color: #00d4aa;
}

pre {
  background: #131a2a;
  border: 1px solid #162440;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  overflow-x: auto;
  line-height: 1.5;
}
pre code {
  background: none;
  padding: 0;
  border-radius: 0;
  color: #e0e6ed;
  font-size: 0.875rem;
}

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

figure {
  margin: 1.5rem 0;
}
figure img {
  display: block;
  margin: 0 auto;
}
figure figcaption {
  text-align: center;
  color: #7a8a9e;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.875rem;
}

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

th {
  background: #131a2a;
  color: #f0f4f8;
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

td {
  background: #0a0e17;
}

tr:hover td {
  background: #1a2332;
}

hr {
  border: none;
  height: 1px;
  background: #1e3a5f;
  margin: 3rem 0;
}

::selection {
  background: rgba(0, 212, 170, 0.3);
  color: #f0f4f8;
}

.site-accent-bar {
  height: 2px;
  background: linear-gradient(90deg, #00d4aa, #00a88a, transparent);
}

.site-header {
  background: #131a2a;
  border-bottom: 1px solid #162440;
  padding: 1.5rem 0;
  position: relative;
}
.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(0, 212, 170, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(0, 136, 204, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

.site-title {
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-size: 1.125rem;
  font-weight: 700;
  color: #00d4aa;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.site-title:hover {
  color: #f0f4f8;
  text-decoration: none;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.site-nav a {
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-size: 0.875rem;
  color: #7a8a9e;
  text-decoration: none;
  transition: color 150ms ease;
  letter-spacing: 0.02em;
}
.site-nav a:hover {
  color: #00d4aa;
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid #1e3a5f;
  color: #7a8a9e;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.125rem;
  line-height: 1;
}
.nav-toggle:hover {
  color: #00d4aa;
  border-color: #00d4aa;
}

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

.site-footer {
  background: #131a2a;
  border-top: 1px solid #162440;
  padding: 3rem 0;
  margin-top: auto;
}

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

.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social a {
  color: #7a8a9e;
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-size: 0.875rem;
  transition: color 150ms ease;
}
.footer-social a:hover {
  color: #00d4aa;
  text-decoration: none;
}

.footer-info {
  color: #7a8a9e;
  font-size: 0.75rem;
}

@media (max-width: 768px) {
  .header-wrapper {
    flex-wrap: wrap;
  }
  .nav-toggle {
    display: block;
  }
  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1rem;
  }
  .site-nav.open {
    display: flex;
  }
  .site-nav a {
    padding: 0.5rem 0;
    border-bottom: 1px solid #162440;
  }
  .site-content {
    padding: 1.5rem 1rem;
  }
  .footer-wrapper {
    flex-direction: column;
    text-align: center;
  }
}
.post-list {
  list-style: none;
  padding: 0;
}

.post-card {
  background: #131a2a;
  border: 1px solid #162440;
  border-radius: 8px;
  padding: 1.5rem 2rem;
  margin-bottom: 1.5rem;
  transition: border-color 250ms ease, box-shadow 250ms ease;
}
.post-card:hover {
  border-color: #1e3a5f;
  box-shadow: 0 0 20px rgba(0, 212, 170, 0.15);
}

.post-card-title {
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-size: 1.125rem;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}
.post-card-title a {
  color: #f0f4f8;
}
.post-card-title a:hover {
  color: #00d4aa;
  text-decoration: none;
}

.post-card-meta {
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
  font-size: 0.75rem;
  color: #7a8a9e;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.post-card-excerpt {
  color: #7a8a9e;
  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;
  color: #00d4aa;
  background: rgba(0, 212, 170, 0.15);
  border: 1px solid rgba(0, 212, 170, 0.2);
  padding: 2px 8px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 150ms ease;
}
.category-pill:hover,
.tag-pill:hover {
  background: rgba(0, 212, 170, 0.3);
  text-decoration: none;
  color: #00d4aa;
}

.post-header {
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #162440;
}

.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: #7a8a9e;
  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 #162440;
}
.post-content img {
  margin: 1.5rem 0;
  border: 1px solid #162440;
}

.post-footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #162440;
}

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

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

.page-content {
  max-width: 740px;
}
.page-content .sessionize-wrapper {
  background: #131a2a;
  border: 1px solid #162440;
  border-radius: 8px;
  padding: 1.5rem 2rem;
  margin-top: 1.5rem;
}
.page-content .sz-caption {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-size: 1.125rem;
  color: #f0f4f8;
  margin: 0 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #162440;
}
.page-content .sz-caption svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: #00d4aa;
  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: "JetBrains Mono", "Fira Code", monospace;
  font-size: 0.875rem;
  color: #00d4aa;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.page-content .sz-item {
  display: block;
  margin: 0;
  padding: 0.5rem 0;
  border-top: 1px solid #162440;
}
.page-content .sz-item:first-child {
  border-top: none;
}
.page-content .sz-item__title {
  font-family: "JetBrains Mono", "Fira Code", monospace;
  color: #f0f4f8;
  text-decoration: none;
}
.page-content .sz-item__title:hover {
  color: #00d4aa;
  text-decoration: none;
}
.page-content .sz-item__meta {
  display: block;
  margin-top: 0.25rem;
  color: #7a8a9e;
  font-size: 0.875rem;
}
.page-content .sz-powered-by {
  margin-top: 1.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid #162440;
  font-size: 0.75rem;
  color: #7a8a9e;
}
.page-content .sz-powered-by a {
  color: #7a8a9e;
  text-decoration: none;
}
.page-content .sz-powered-by a:hover {
  color: #00d4aa;
  text-decoration: none;
}

.home-intro {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #162440;
}
.home-intro h1 {
  font-size: 2rem;
  margin: 0 0 0.5rem 0;
}
.home-intro p {
  color: #7a8a9e;
  font-size: 1.125rem;
  margin: 0;
}

.not-found {
  text-align: center;
  padding: 4rem 0;
}
.not-found h1 {
  font-size: 4rem;
  color: #00d4aa;
  margin-bottom: 1rem;
}
.not-found p {
  color: #7a8a9e;
  font-size: 1.125rem;
}

.highlight {
  background: #131a2a;
  border: 1px solid #162440;
  border-radius: 8px;
  margin: 1.5rem 0;
}
.highlight pre {
  margin: 0;
  border: none;
  background: transparent;
}
.highlight .c, .highlight .c1, .highlight .cm, .highlight .cs, .highlight .ch {
  color: #546e7a;
  font-style: italic;
}
.highlight .k, .highlight .kc, .highlight .kd, .highlight .kn, .highlight .kp, .highlight .kr, .highlight .kt {
  color: #c792ea;
}
.highlight .s, .highlight .s1, .highlight .s2, .highlight .sb, .highlight .sc, .highlight .sd, .highlight .se, .highlight .sh, .highlight .si, .highlight .sx, .highlight .sr {
  color: #c3e88d;
}
.highlight .m, .highlight .mb, .highlight .mf, .highlight .mh, .highlight .mi, .highlight .mo, .highlight .il {
  color: #f78c6c;
}
.highlight .n {
  color: #e0e6ed;
}
.highlight .na {
  color: #80cbc4;
}
.highlight .nb {
  color: #82aaff;
}
.highlight .nc {
  color: #ffcb6b;
}
.highlight .nd {
  color: #82aaff;
}
.highlight .nf {
  color: #82aaff;
}
.highlight .ni {
  color: #e0e6ed;
}
.highlight .nn {
  color: #ffcb6b;
}
.highlight .no {
  color: #f78c6c;
}
.highlight .nt {
  color: #ff5370;
}
.highlight .nv {
  color: #80cbc4;
}
.highlight .o, .highlight .ow {
  color: #89ddff;
}
.highlight .p {
  color: #89ddff;
}
.highlight .gd {
  color: #ff5370;
}
.highlight .gi {
  color: #c3e88d;
}
.highlight .ge {
  font-style: italic;
}
.highlight .gs {
  font-weight: bold;
}
.highlight .gh {
  color: #f0f4f8;
  font-weight: bold;
}
.highlight .w {
  color: #e0e6ed;
}
.highlight .err {
  color: #ff5370;
}

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