:root {
  --shell: min(1240px, calc(100vw - 48px));
  --radius: 16px;
  --shadow: 0 24px 60px rgba(34, 35, 32, 0.12);
  color-scheme: light;
  --space-section: clamp(96px, 12vw, 180px);
}

@media (max-width: 980px) {
  :root {
  --shell: min(100% - 36px, 760px);
  }
}

@media (max-width: 640px) {
  :root {
  --shell: calc(100% - 28px);
  --radius: 12px;
  --space-section: 88px;
  }
}

[data-theme="dark"] {
  --ink: #eeeee9;
  --line: #3c3e3a;
  --page: #181918;
  --muted: #acaea7;
  --accent: #ff684b;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --inverse: #e7e7e1;
  --surface: #232422;
  color-scheme: dark;
  --accent-ink: #25100b;
  --inverse-ink: #1b1c1b;
  --surface-strong: #2e302d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
  scroll-behavior: auto;
  }
}

body {
  color: var(--ink);
  font-size: 16px;
  margin: 0px;
  background: var(--page);
  font-family: "Cong Sans", "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizelegibility;
}

body.menu-open {
  overflow-x: hidden;
  overflow-y: hidden;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

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

button {
  font-size: inherit;
  font-style: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-kerning: inherit;
  font-stretch: inherit;
  font-size-adjust: inherit;
  font-variant-caps: inherit;
  font-variant-emoji: inherit;
  font-optical-sizing: inherit;
  font-variant-numeric: inherit;
  font-feature-settings: inherit;
  font-variant-position: inherit;
  font-language-override: inherit;
  font-variant-east-asian: inherit;
  font-variant-ligatures: inherit;
  font-variant-alternates: inherit;
  font-variation-settings: inherit;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.skip-link:focus {
  transform: translateY(0px);
}

.brand, .nav-actions, .desktop-nav {
  display: flex;
  align-items: center;
}

.desktop-nav a, .nav-contact, .theme-toggle, .menu-toggle {
  font-size: 14px;
  font-weight: 650;
}

.desktop-nav a {
  color: var(--muted);
  transition-delay: 0s;
  transition-behavior: normal;
  transition-duration: 180ms;
  transition-property: color;
  transition-timing-function: ease;
}

.desktop-nav a:hover {
  color: var(--ink);
}

.theme-toggle, .menu-toggle {
  color: var(--ink);
  border: 1px solid var(--line);
  cursor: pointer;
  min-height: 42px;
  padding: 0px 15px;
  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%;
  border-top-left-radius: 999px;
  background-attachment: scroll;
  border-top-right-radius: 999px;
  border-bottom-left-radius: 999px;
  border-bottom-right-radius: 999px;
}

.nav-contact:active, .button:active {
  transform: translateY(1px);
}

.menu-toggle, .mobile-menu {
  display: none;
}

.hero h1 {
  font-size: clamp(54px, 6.3vw, 92px);
  max-width: 11ch;
  margin: 0px;
  font-weight: 780;
  line-height: 0.94;
  letter-spacing: -0.065em;
}

@media (max-width: 980px) {
  .hero h1 {
  font-size: clamp(52px, 12vw, 76px);
  max-width: 12ch;
  }
}

@media (max-width: 640px) {
  .hero h1 {
  font-size: clamp(46px, 15vw, 62px);
  }
}

.button-primary:hover {
  background: color-mix(in srgb, var(--accent) 88%, white);
}

.text-link span {
  display: inline-block;
  transition-delay: 0s;
  transition-behavior: normal;
  transition-duration: 180ms;
  transition-property: transform;
  transition-timing-function: ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.hero-visual img {
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
}

.hero-visual figcaption {
  color: var(--muted);
  font-size: 13px;
  max-width: 52ch;
  margin-top: 14px;
}

.work-section, .process-section, .about-section {
  padding-block: var(--space-section);
}

.section-heading h2, .capabilities-heading h2, .process-intro h2, .about-details h2 {
  font-size: clamp(42px, 5vw, 72px);
  margin: 0px;
  line-height: 1;
  letter-spacing: -0.055em;
}

.section-heading p, .capabilities-heading p, .process-intro p {
  color: var(--muted);
  font-size: 18px;
  max-width: 620px;
  margin: 22px 0px 0px;
}

.project + .project {
  margin-top: clamp(92px, 14vw, 180px);
}

.project-media img {
  object-fit: cover;
  aspect-ratio: 16 / 10;
  transition-delay: 0s;
  transition-behavior: normal;
  transition-duration: 700ms;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

.project-media:hover img {
  transform: scale(1.025);
}

.project-copy h3 {
  font-size: clamp(38px, 4vw, 60px);
  margin: 0px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.project-copy > p:not(.project-type) {
  color: var(--muted);
  font-size: 17px;
  max-width: 48ch;
  margin: 22px 0px 0px;
}

.tag-list li {
  color: var(--muted);
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
  padding: 7px 11px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-left-radius: 999px;
  border-bottom-right-radius: 999px;
}

.capability-image img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.capability h3 {
  font-size: clamp(26px, 2.6vw, 38px);
  margin: 46px 0px 0px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.capability p {
  color: inherit;
  opacity: 0.74;
  max-width: 39ch;
  margin: 16px 0px 0px;
}

.process-intro h2 {
  font-size: clamp(40px, 4vw, 60px);
}

.process-list li {
  row-gap: 24px;
  display: grid;
  column-gap: 24px;
  padding: 34px 0px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 0.45fr 1fr;
}

@media (max-width: 640px) {
  .process-list li {
  row-gap: 10px;
  column-gap: 10px;
  grid-template-columns: 1fr;
  }
}

.process-list li:first-child {
  padding-top: 0px;
}

.process-list strong {
  font-size: 20px;
}

.process-list span {
  color: var(--muted);
}

.about-statement p {
  font-size: clamp(42px, 5.5vw, 78px);
  max-width: 16ch;
  margin: 0px;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.about-details > p {
  color: var(--muted);
  font-size: 17px;
  margin: 24px 0px 0px;
}

.skill-groups div {
  row-gap: 20px;
  display: grid;
  column-gap: 20px;
  grid-template-columns: 100px 1fr;
}

@media (max-width: 640px) {
  .skill-groups div {
  row-gap: 6px;
  column-gap: 6px;
  grid-template-columns: 1fr;
  }
}

.skill-groups h3, .skill-groups p {
  font-size: 15px;
  margin: 0px;
}

.skill-groups p {
  color: var(--muted);
}

.contact-layout h2 {
  font-size: clamp(48px, 6.5vw, 92px);
  max-width: 12ch;
  margin: 0px;
  line-height: 0.96;
  letter-spacing: -0.065em;
}

@media (max-width: 640px) {
  .contact-layout h2 {
  font-size: clamp(46px, 14vw, 66px);
  }
}

.contact-action p {
  opacity: 0.72;
  font-size: 13px;
  max-width: 32ch;
  margin: 16px 0px 0px;
}

.footer-layout p, .footer-layout a {
  font-size: 14px;
  margin: 0px;
}

.reveal[data-reveal-delay="1"] {
  transition-delay: 90ms;
}

.reveal[data-reveal-delay="2"] {
  transition-delay: 180ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0px);
}

@media (max-width: 980px) {
  .desktop-nav, .theme-toggle, .nav-contact {
  display: none;
  }
}

@media (max-width: 980px) {
  .mobile-menu[hidden] {
  display: none;
  }
}

@media (max-width: 980px) {
  .mobile-menu a {
  font-size: 28px;
  font-weight: 750;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 980px) {
  .project-featured, .project-secondary, .process-section, .about-section, .contact-layout {
  grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .project-secondary .project-copy {
  order: 2;
  }
}

@media (max-width: 980px) {
  .project-secondary .project-media {
  order: 1;
  }
}

@media (max-width: 640px) {
  .capability, .capability-image img {
  min-height: 230px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
  animation-duration: 0.01ms !important;
  transition-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  }
}

: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;
  }
}