:root {
  --zt-max-w: 1280px;
  --zt-gutter: clamp(24px, 3.2vw, 48px);
  --zt-radius: 0px;
  --zt-header-h: 70px;
  --zt-space-lg: 64px;
  --zt-space-md: 32px;
  --zt-space-sm: 16px;
  --zt-space-xl: 96px;
  --zt-space-xs: 8px;
  --zt-font-body: Arial, Helvetica, sans-serif;
  --zt-font-mono: "Courier New", Courier, monospace;
  --zt-font-display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  color: var(--zt-text);
  margin: 0px;
  background: var(--zt-bg);
  font-family: var(--zt-font-body);
  line-height: 1.6;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-line: none;
  text-decoration-color: currentcolor;
  text-decoration-style: solid;
  text-decoration-thickness: auto;
}

.zt-page {
  display: grid;
  min-height: 100svh;
  grid-template-rows: var(--zt-header-h) minmax(0, 1fr) auto;
}

.zt-container {
  width: 100%;
  padding: 0 var(--zt-gutter);
  max-width: var(--zt-max-w);
  margin: 0px auto;
}

.zt-header {
  row-gap: 32px;
  display: flex;
  padding: 0 var(--zt-gutter);
  column-gap: 32px;
  align-items: center;
  border-bottom: 1px solid var(--zt-line);
  background-clip: border-box;
  background-size: auto;
  justify-content: space-between;
  background-color: rgb(3, 3, 3);
  background-image: none;
  background-origin: padding-box;
  background-repeat: repeat;
  background-position-x: 0%;
  background-position-y: 0%;
  background-attachment: scroll;
}

.zt-logo {
  color: var(--zt-text);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-decoration-line: none;
  text-decoration-color: currentcolor;
  text-decoration-style: solid;
  text-decoration-thickness: auto;
}

.zt-nav {
  row-gap: clamp(28px, 4.2vw, 72px);
  display: flex;
  column-gap: clamp(28px, 4.2vw, 72px);
  align-items: center;
}

@media (max-width: 640px) {
  .zt-nav {
  row-gap: 18px;
  column-gap: 18px;
  }
}

.zt-nav-link {
  color: rgb(216, 216, 212);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition-delay: 0s;
  text-decoration-line: none;
  transition-behavior: normal;
  transition-duration: 160ms;
  transition-property: color;
  text-decoration-color: currentcolor;
  text-decoration-style: solid;
  text-decoration-thickness: auto;
  transition-timing-function: ease;
}

@media (max-width: 640px) {
  .zt-nav-link {
  font-size: 9px;
  letter-spacing: 0.18em;
  }
}

.zt-nav-link:hover, .zt-link:hover {
  color: var(--zt-accent);
}

.zt-nav-link.is-active {
  color: var(--zt-accent);
}

.zt-footer {
  padding: var(--zt-space-lg) var(--zt-gutter);
  border-top: 1px solid var(--zt-line);
  background-clip: border-box;
  background-size: auto;
  background-color: rgb(3, 3, 3);
  background-image: none;
  background-origin: padding-box;
  background-repeat: repeat;
  background-position-x: 0%;
  background-position-y: 0%;
  background-attachment: scroll;
}

.zt-footer-inner {
  row-gap: 32px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 32px;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 640px) {
  .zt-footer-inner {
  gap: var(--zt-space-sm);
  align-items: flex-start;
  flex-direction: column;
  }
}

.zt-footer-copy {
  color: var(--zt-muted);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.zt-footer-links {
  row-gap: 32px;
  display: flex;
  column-gap: 32px;
}

.zt-footer-links a {
  color: var(--zt-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition-delay: 0s;
  transition-behavior: normal;
  transition-duration: 160ms;
  transition-property: color;
  transition-timing-function: ease;
}

.zt-footer-links a:hover {
  color: var(--zt-accent);
}

.zt-eyebrow {
  color: var(--zt-muted);
  margin: 0 0 var(--zt-space-sm);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.zt-display {
  color: rgb(255, 255, 255);
  font-size: clamp(48px, 5vw, 84px);
  margin: 0px;
  font-family: var(--zt-font-display);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.zt-display-sm {
  font-size: clamp(36px, 3.5vw, 56px);
}

.zt-section {
  padding: var(--zt-space-xl) 0;
  border-bottom: 1px solid var(--zt-line-soft);
}

.zt-section:last-child {
  border-bottom-color: currentcolor;
  border-bottom-style: none;
  border-bottom-width: 0px;
}

.zt-grid {
  gap: var(--zt-space-md);
  display: grid;
}

.zt-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.zt-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.zt-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.zt-card {
  gap: var(--zt-space-sm);
  border: 1px solid var(--zt-line);
  display: flex;
  padding: var(--zt-space-md);
  background: var(--zt-panel);
  flex-direction: column;
  transition-delay: 0s, 0s;
  transition-behavior: normal, normal;
  transition-duration: 200ms, 200ms;
  transition-property: border-color, background;
  transition-timing-function: ease, ease;
}

.zt-card:hover {
  border-color: var(--zt-accent);
  background-clip: border-box;
  background-size: auto;
  background-color: rgb(13, 13, 13);
  background-image: none;
  background-origin: padding-box;
  background-repeat: repeat;
  background-position-x: 0%;
  background-position-y: 0%;
  background-attachment: scroll;
}

.zt-card-tag {
  color: var(--zt-accent);
  font-size: 11px;
  font-family: var(--zt-font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.zt-card-title {
  color: rgb(255, 255, 255);
  font-size: 24px;
  margin: 0px;
  font-family: var(--zt-font-display);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.zt-card-excerpt {
  color: var(--zt-muted);
  font-size: 14px;
  margin: 0px;
  line-height: 1.6;
}

.zt-card-meta {
  color: var(--zt-faint);
  row-gap: 16px;
  display: flex;
  font-size: 11px;
  column-gap: 16px;
  margin-top: auto;
  align-items: center;
  font-family: var(--zt-font-mono);
  letter-spacing: 0.05em;
}

.zt-btn {
  color: rgb(5, 5, 5);
  cursor: pointer;
  row-gap: 12px;
  display: inline-flex;
  font-size: 13px;
  column-gap: 12px;
  min-height: 56px;
  align-items: center;
  font-weight: 800;
  padding: 0px 32px;
  border-radius: var(--zt-radius);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background-clip: border-box;
  background-size: auto;
  border-top-color: rgb(255, 255, 255);
  border-top-style: solid;
  border-top-width: 1px;
  justify-content: center;
  background-color: rgb(245, 245, 242);
  background-image: none;
  border-left-color: rgb(255, 255, 255);
  border-left-style: solid;
  border-left-width: 1px;
  transition-delay: 0s, 0s, 0s;
  background-origin: padding-box;
  background-repeat: repeat;
  border-image-slice: 100%;
  border-image-width: 1;
  border-right-color: rgb(255, 255, 255);
  border-right-style: solid;
  border-right-width: 1px;
  border-bottom-color: rgb(255, 255, 255);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-image-source: none;
  transition-behavior: normal, normal, normal;
  transition-duration: 160ms, 160ms, 160ms;
  transition-property: background, color, border-color;
  background-position-x: 0%;
  background-position-y: 0%;
  background-attachment: scroll;
  transition-timing-function: ease, ease, ease;
}

.zt-btn:hover {
  color: rgb(5, 5, 5);
  background: var(--zt-accent);
  border-color: var(--zt-accent);
}

.zt-btn-ghost {
  color: var(--zt-text);
  border-color: var(--zt-line);
  background-clip: border-box;
  background-size: auto;
  background-color: transparent;
  background-image: none;
  background-origin: padding-box;
  background-repeat: repeat;
  background-position-x: 0%;
  background-position-y: 0%;
  background-attachment: scroll;
}

.zt-btn-ghost:hover {
  color: var(--zt-accent);
  border-color: var(--zt-accent);
  background-clip: border-box;
  background-size: auto;
  background-color: transparent;
  background-image: none;
  background-origin: padding-box;
  background-repeat: repeat;
  background-position-x: 0%;
  background-position-y: 0%;
  background-attachment: scroll;
}

.zt-badge {
  color: var(--zt-muted);
  border: 1px solid var(--zt-line);
  row-gap: 8px;
  display: inline-flex;
  font-size: 10px;
  column-gap: 8px;
  align-items: center;
  font-family: var(--zt-font-mono);
  padding: 6px 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.zt-badge-dot {
  width: 7px;
  height: 7px;
  box-shadow: rgba(117, 224, 105, 0.7) 0px 0px 14px;
  background: var(--zt-accent);
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
}

.zt-prose {
  max-width: 720px;
  margin: 0px auto;
}

.zt-prose h2 {
  color: rgb(255, 255, 255);
  margin: var(--zt-space-lg) 0 var(--zt-space-sm);
  font-size: clamp(32px, 3vw, 48px);
  font-family: var(--zt-font-display);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.zt-prose h3 {
  color: rgb(255, 255, 255);
  margin: var(--zt-space-md) 0 var(--zt-space-xs);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.zt-prose p {
  color: rgb(200, 200, 195);
  margin: 0 0 var(--zt-space-sm);
  font-size: 16px;
  line-height: 1.8;
}

.zt-prose code {
  color: var(--zt-accent);
  border: 1px solid var(--zt-line);
  font-size: 13px;
  background: var(--zt-surface);
  font-family: var(--zt-font-mono);
  padding: 2px 8px;
}

.zt-prose blockquote {
  color: var(--zt-text);
  margin: var(--zt-space-md) 0;
  padding: var(--zt-space-sm) var(--zt-space-md);
  font-size: 18px;
  font-style: italic;
  background: var(--zt-surface);
  border-left: 3px solid var(--zt-accent);
  line-height: 1.6;
}

.zt-prose ul {
  color: rgb(200, 200, 195);
  margin: 0 0 var(--zt-space-sm);
  font-size: 16px;
  line-height: 1.8;
  padding-left: 20px;
}

.zt-prose li {
  margin-bottom: var(--zt-space-xs);
}

.zt-article-header {
  padding: var(--zt-space-xl) 0 var(--zt-space-lg);
  border-bottom: 1px solid var(--zt-line);
}

.zt-article-meta {
  color: var(--zt-faint);
  row-gap: 24px;
  display: flex;
  font-size: 12px;
  column-gap: 24px;
  align-items: center;
  font-family: var(--zt-font-mono);
  margin-bottom: var(--zt-space-sm);
  letter-spacing: 0.05em;
}

.zt-article-title {
  color: rgb(255, 255, 255);
  margin: 0 0 var(--zt-space-sm);
  font-size: clamp(48px, 5vw, 80px);
  font-family: var(--zt-font-display);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .zt-article-title {
  font-size: clamp(36px, 10vw, 56px);
  }
}

.zt-article-excerpt {
  color: var(--zt-muted);
  font-size: 18px;
  max-width: 600px;
  margin: 0px;
  line-height: 1.6;
}

.zt-hero {
  display: flex;
  position: relative;
  min-height: calc(100svh - var(--zt-header-h));
  overflow-x: hidden;
  overflow-y: hidden;
  align-items: flex-end;
  border-bottom: 1px solid var(--zt-line);
  background-clip: border-box;
  background-size: auto;
  background-color: rgb(11, 11, 11);
  background-image: none;
  background-origin: padding-box;
  background-repeat: repeat;
  background-position-x: 0%;
  background-position-y: 0%;
  background-attachment: scroll;
}

.zt-hero-img {
  top: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  bottom: 0px;
  filter: grayscale(1) contrast(1.08) brightness(0.82);
  height: 100%;
  position: absolute;
  object-fit: cover;
  object-position: 50% 44%;
}

.zt-hero-shade {
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  position: absolute;
  pointer-events: none;
  background-clip: border-box;
  background-size: auto;
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.02) 58%, rgba(0, 0, 0, 0.2));
  background-origin: padding-box;
  background-repeat: repeat;
  background-position-x: 0%;
  background-position-y: 0%;
  background-attachment: scroll;
}

.zt-hero-content {
  z-index: 1;
  padding: 0 var(--zt-gutter) clamp(48px, 8vh, 96px);
  position: relative;
}

.zt-hero-statement {
  color: rgb(255, 255, 255);
  font-size: clamp(54px, 5.4vw, 92px);
  max-width: 820px;
  margin: 0px;
  font-family: var(--zt-font-display);
  font-weight: 900;
  line-height: 0.91;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .zt-hero-statement {
  font-size: clamp(44px, 9vw, 72px);
  }
}

@media (max-width: 640px) {
  .zt-hero-statement {
  font-size: clamp(36px, 13vw, 56px);
  }
}

.zt-hero-sub {
  color: rgb(230, 230, 226);
  margin: var(--zt-space-sm) 0 0;
  font-size: 16px;
  max-width: 520px;
  line-height: 1.6;
}

.zt-hero-actions {
  gap: var(--zt-space-sm);
  display: flex;
  margin-top: var(--zt-space-md);
}

.zt-status {
  top: 56px;
  left: var(--zt-gutter);
  color: rgb(230, 230, 226);
  row-gap: 12px;
  display: flex;
  font-size: 11px;
  position: absolute;
  column-gap: 12px;
  margin: 0px;
  align-items: center;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.zt-status-dot {
  width: 7px;
  height: 7px;
  box-shadow: rgba(117, 224, 105, 0.7) 0px 0px 14px;
  background: var(--zt-accent);
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
}

.zt-divider {
  height: 1px;
  margin: var(--zt-space-md) 0;
  background: var(--zt-line);
  border-top-color: currentcolor;
  border-top-style: none;
  border-top-width: 0px;
  border-left-color: currentcolor;
  border-left-style: none;
  border-left-width: 0px;
  border-image-slice: 100%;
  border-image-width: 1;
  border-right-color: currentcolor;
  border-right-style: none;
  border-right-width: 0px;
  border-bottom-color: currentcolor;
  border-bottom-style: none;
  border-bottom-width: 0px;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-image-source: none;
}

.zt-tags {
  row-gap: 10px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
}

@media (max-width: 980px) {
  .zt-grid-3, .zt-grid-4 {
  grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .zt-grid-2, .zt-grid-3, .zt-grid-4 {
  grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .zt-nav-link:nth-child(3) {
  display: none;
  }
}