@import "monokai.css";
:root {
  --zf-bg: #F9F9F8;
  --zf-text: #1D1D1D;
  --zf-primary: #FCB514;
  --zf-border: #F6F2E6;
  --zf-selection-bg: #FCB514;
  --zf-selection-text: #3a3000;
  --zf-nav-text: #595959;
  --zf-nav-hover: #FCB514;
  --zf-nav-text-opacity: 1;
  --zf-status-bg: rgba(236, 185, 65, 0.1);
  --zf-status-dot: #16a34a;
  --zf-status-dot-shadow: rgba(22, 163, 74, 0.4);
  --zf-status-border: transparent;
  --zf-hero-line1: #FCB514;
  --zf-hero-line2: #1D1D1D;
  --zf-hero-line3: #6b635e;
  --zf-hero-text: #1D1D1D;
  --zf-heading-text: #1D1D1D;
  --zf-link-text: #1D1D1D;
  --zf-link-underline: #FCB514;
  --zf-list-text: #1D1D1D;
  --zf-list-icon: #FCB514;
  --zf-list-border: #F6F2E6;
}

[data-zf-theme=dark] {
  --zf-bg: #131313;
  --zf-text: #E5E2E1;
  --zf-primary: #FCB514;
  --zf-border: #282620;
  --zf-selection-bg: #FCB514;
  --zf-selection-text: #3a3000;
  --zf-nav-text: #C9C7BF;
  --zf-nav-hover: #FCB514;
  --zf-nav-text-opacity: 1;
  --zf-status-bg: #1F1C11;
  --zf-status-dot: #22c55e;
  --zf-status-dot-shadow: rgba(34, 197, 94, 0.6);
  --zf-status-border: rgba(63, 63, 70, 0.3);
  --zf-hero-line1: #FCB514;
  --zf-hero-line2: #D2D0C8;
  --zf-hero-line3: #b5b3a9;
  --zf-hero-text: #C9C7BF;
  --zf-heading-text: #FCB514;
  --zf-link-text: #FCB514;
  --zf-link-underline: transparent;
  --zf-list-text: #C9C7BF;
  --zf-list-icon: #FCB514;
  --zf-list-border: #282620;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/font/Inter.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Material Symbols Rounded";
  src: url("/assets/font/MaterialSymbolsRounded.woff2") format("woff2");
  font-style: normal;
  font-display: block;
}
.zf-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

::selection {
  background-color: var(--zf-selection-bg);
  color: var(--zf-selection-text);
}

html {
  font-size: 16px;
  box-sizing: border-box;
  background-color: var(--zf-bg);
  color: var(--zf-text);
}
@media (max-width: 768px) {
  html {
    font-size: 80%;
  }
}

*, *:before, *:after {
  box-sizing: inherit;
}

body.zf-body {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
}

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

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--zf-primary);
  outline-offset: 2px;
}

p {
  margin-top: 0;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 1.125rem;
}
p:last-child {
  margin-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--zf-heading-text);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2rem;
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
  }
}

h2 {
  font-size: 1.75rem;
}
@media (max-width: 768px) {
  h2 {
    font-size: 1.6rem;
  }
}

h3 {
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  h3 {
    font-size: 1.4rem;
  }
}

h4 {
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  h4 {
    font-size: 1.2rem;
  }
}

a {
  color: var(--zf-link-text);
  text-decoration: underline;
  text-decoration-color: var(--zf-link-underline);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
a:hover {
  color: var(--zf-primary);
  text-decoration-color: var(--zf-primary);
}

ul, ol {
  padding-left: 2rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}
ul li, ol li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

strong {
  font-weight: 700;
  color: var(--zf-heading-text);
}

.zf-main-content {
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  max-width: 800px;
  width: 100%;
}

.zf-content-section > *:first-child {
  margin-top: 0;
}

.zf-header {
  position: static;
  width: 100%;
  border-bottom: 1px solid var(--zf-border);
  display: flex;
  justify-content: center;
  background-color: var(--zf-bg);
}
.zf-header .zf-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5rem;
  width: 100%;
  max-width: 800px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .zf-header .zf-header-inner {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding-top: 1rem;
    padding-bottom: 1rem;
    gap: 0.5rem;
  }
}
.zf-header .zf-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--zf-heading-text);
  line-height: 1.625;
}
.zf-header .zf-logo a {
  color: inherit;
  text-decoration: none;
}
.zf-header .zf-main-nav {
  display: flex;
}
@media (max-width: 768px) {
  .zf-header .zf-main-nav {
    width: 100%;
  }
}
.zf-header .zf-main-nav .zf-nav-list {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 768px) {
  .zf-header .zf-main-nav .zf-nav-list {
    width: 100%;
  }
}
.zf-header .zf-main-nav .zf-nav-item {
  font-size: 1rem;
  margin-bottom: 0;
}
.zf-header .zf-main-nav .zf-nav-item a {
  color: var(--zf-nav-text);
  font-weight: 500;
  opacity: var(--zf-nav-text-opacity);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.zf-header .zf-main-nav .zf-nav-item a:hover {
  color: var(--zf-nav-hover);
  opacity: 1;
}
.zf-header .zf-main-nav .zf-nav-item.zf-nav-current a {
  color: var(--zf-heading-text);
  font-weight: 700;
  opacity: 1;
  text-decoration: underline;
  text-decoration-color: var(--zf-primary);
}
.zf-header .zf-theme-toggle-wrapper {
  display: flex;
  align-items: center;
  margin-left: 0.5rem;
}
@media (max-width: 768px) {
  .zf-header .zf-theme-toggle-wrapper {
    margin-left: auto;
  }
}
.zf-header .zf-theme-toggle-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--zf-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.zf-header .zf-theme-icon {
  font-family: "Material Symbols Rounded";
  font-variation-settings: "FILL" 1;
  font-size: 1.3em;
}
.zf-header .zf-theme-icon::after {
  content: "dark_mode";
}
[data-zf-theme=dark] .zf-header .zf-theme-icon::after {
  content: "light_mode";
}

@keyframes zf-pulse-subtle {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.zf-pulse-green {
  animation: zf-pulse-subtle 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.zf-status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  margin-bottom: 1.5rem;
  background-color: var(--zf-status-bg);
  border: 1px solid var(--zf-status-border);
  align-self: flex-start;
}

.zf-status-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--zf-status-dot);
  box-shadow: 0 0 8px var(--zf-status-dot-shadow);
}

.zf-status-text {
  font-size: 0.875rem;
  letter-spacing: normal;
  color: var(--zf-nav-text);
  opacity: var(--zf-nav-text-opacity);
}

.zf-hero-header {
  margin-bottom: 3rem;
}

.zf-hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-top: 0;
  margin-bottom: 1rem;
  width: 100%;
}
.zf-hero-title .zf-hero-line1 {
  color: var(--zf-hero-line1);
  display: block;
  margin-bottom: 4px;
}
.zf-hero-title .zf-hero-line2 {
  color: var(--zf-hero-line2);
}
.zf-hero-title .zf-hero-line3 {
  font-size: 1.875rem;
  font-weight: 500;
  color: var(--zf-hero-line3);
}

.zf-hero-text {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--zf-hero-text);
  width: 100%;
}

.zf-peace-sign {
  display: inline-block;
  font-family: "Material Symbols Rounded";
  vertical-align: inherit;
  font-variation-settings: "FILL" 1, "wght" 700, "GRAD" 0, "opsz" 48;
  font-size: 0.75em;
  margin-left: 0.15em;
}

.zf-lists-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .zf-lists-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }
}
.zf-lists-grid h2 {
  color: var(--zf-heading-text);
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--zf-list-border);
  padding-bottom: 0.5rem;
  display: inline-block;
  font-size: 1.5rem;
  line-height: 1.625;
}

.zf-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.zf-features-list .zf-feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0;
}
.zf-features-list .zf-feature-item .zf-feature-icon {
  font-family: "Material Symbols Rounded";
  color: var(--zf-list-icon);
  font-size: 1.25rem;
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}
.zf-features-list .zf-feature-item .zf-feature-text {
  color: var(--zf-list-text);
  font-size: 1.125rem;
  font-weight: 400;
  transition: color 0.2s ease;
}
.zf-features-list .zf-feature-item:hover .zf-feature-text {
  color: var(--zf-primary);
}

.zf-footer {
  width: 100%;
  height: 5rem;
  border-top: 1px solid var(--zf-border);
  background-color: var(--zf-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.zf-footer .zf-footer-inner {
  width: 100%;
  max-width: 800px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .zf-footer .zf-footer-inner {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}
.zf-footer .zf-footer-social {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  flex-wrap: nowrap;
}
.zf-footer .zf-social-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1rem;
}
.zf-footer .zf-social-link {
  font-size: 0.75rem;
  color: var(--zf-nav-text);
  text-decoration: none;
  opacity: 0.7;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.zf-footer .zf-social-link:hover {
  color: var(--zf-primary);
  text-decoration: underline;
  opacity: 1;
}
.zf-footer .zf-social-icon {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
  vertical-align: middle;
}

figure.highlight {
  margin-block-start: 0;
  margin-inline-start: 0;
  width: 100%;
}
figure.highlight pre {
  padding: 0.85rem;
  overflow-y: scroll;
}
figure.highlight code {
  font-size: 0.85rem;
  color: var(--zf-text);
}

ul.zf-post-list {
  list-style: none;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
ul.zf-post-list article {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
ul.zf-post-list article h2 {
  margin-top: 0;
  margin-bottom: 0;
}
ul.zf-post-list article h2 a {
  color: var(--zf-hero-line2);
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
ul.zf-post-list article h2 a:hover {
  color: var(--zf-primary);
}

.zf-post-item-meta {
  font-size: 0.875rem;
  color: var(--zf-hero-line3);
}
.zf-post-item-meta time::after {
  content: "/";
  margin: 0 0.25rem;
}
.zf-post-item-meta span {
  text-transform: capitalize;
}

.zf-post-layout h1.zf-post-title {
  color: var(--zf-hero-line1);
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .zf-post-layout h1.zf-post-title {
    font-size: 1.8rem;
  }
}

.zf-post-layout header .zf-post-item-meta {
  margin-bottom: 1.5rem;
}

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