:root {
  --zt-bg: #050505;
  --zt-panel: #090909;
  --zt-input: #0b0b0b;
  --zt-text: #f3f3ef;
  --zt-muted: #9a9a95;
  --zt-line: #292929;
  --zt-accent: #75e069;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0px;
  background: var(--zt-bg);
  color: var(--zt-text);
  font-family: Arial, Helvetica, sans-serif;
}

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

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

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

@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-decoration-color: currentcolor;
  text-decoration-line: none;
  text-decoration-style: solid;
  text-decoration-thickness: auto;
  text-transform: uppercase;
  transition-property: color;
  transition-duration: 160ms;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-behavior: normal;
}

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

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

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

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

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

.zt-label, .zt-forgot {
  color: rgb(232, 232, 228);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.zt-input::placeholder {
  color: rgb(119, 119, 114);
}

.zt-input:focus {
  border-top-color: rgb(119, 119, 113);
  border-right-color: rgb(119, 119, 113);
  border-bottom-color: rgb(119, 119, 113);
  border-left-color: rgb(119, 119, 113);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(13, 13, 13);
}

.zt-submit:hover {
  background: var(--zt-accent);
  border-color: var(--zt-accent);
}

.zt-or::before, .zt-or::after {
  content: "";
  height: 1px;
  background: var(--zt-line);
}

.zt-access a {
  color: rgb(230, 230, 225);
  font-weight: 700;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

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

@media (min-width: 981px) and (max-height: 800px) {
  .zt-login-page .zt-auth {
  padding-top: 28px;
  padding-bottom: 28px;
  }
}

@media (min-width: 981px) and (max-height: 800px) {
  .zt-login-page .zt-eyebrow {
  margin-bottom: 14px;
  }
}

@media (min-width: 981px) and (max-height: 800px) {
  .zt-login-page .zt-title {
  font-size: clamp(54px, 4.3vw, 68px);
  }
}

@media (min-width: 981px) and (max-height: 800px) {
  .zt-login-page .zt-intro {
  margin-top: 14px;
  margin-bottom: 20px;
  font-size: 13px;
  line-height: 1.4;
  }
}

@media (min-width: 981px) and (max-height: 800px) {
  .zt-login-page .zt-form {
  row-gap: 13px;
  column-gap: 13px;
  }
}

@media (min-width: 981px) and (max-height: 800px) {
  .zt-login-page .zt-field {
  row-gap: 7px;
  column-gap: 7px;
  }
}

@media (min-width: 981px) and (max-height: 800px) {
  .zt-login-page .zt-input {
  height: 50px;
  }
}

@media (min-width: 981px) and (max-height: 800px) {
  .zt-login-page .zt-submit {
  min-height: 54px;
  }
}

@media (min-width: 981px) and (max-height: 800px) {
  .zt-login-page .zt-or {
  margin-top: 16px;
  margin-bottom: 16px;
  }
}

@media (min-width: 981px) and (max-height: 800px) {
  .zt-login-page .zt-access {
  margin-top: 24px;
  padding-top: 20px;
  }
}

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

* {
  box-sizing: border-box;
}

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

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

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

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

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

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

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

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

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

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

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

.zt-footer-links {
  display: flex;
  row-gap: 32px;
  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-property: color;
  transition-duration: 160ms;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-behavior: normal;
}

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

.zt-display {
  margin: 0px;
  color: rgb(255, 255, 255);
  font-family: var(--zt-font-display);
  font-size: clamp(48px, 5vw, 84px);
  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-width: 0px;
  border-bottom-style: none;
  border-bottom-color: currentcolor;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.zt-hero-shade {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-color: rgba(0, 0, 0, 0);
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-attachment: scroll;
  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-size: auto;
  background-origin: padding-box;
  background-clip: border-box;
  pointer-events: none;
}

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

.zt-hero-statement {
  max-width: 820px;
  margin: 0px;
  color: rgb(255, 255, 255);
  font-family: var(--zt-font-display);
  font-size: clamp(54px, 5.4vw, 92px);
  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 {
  max-width: 520px;
  margin: var(--zt-space-sm) 0 0;
  color: rgb(230, 230, 226);
  font-size: 16px;
  line-height: 1.6;
}

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

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

.zt-tags {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  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;
  }
}

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

* {
  box-sizing: border-box;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.zt-prose p {
  margin: 0 0 var(--zt-space-sm);
  color: #00fedf;
  font-size: 16px;
  line-height: 1.8;
}

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

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

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

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

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

.zt-tags {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  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;
  }
}

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

* {
  box-sizing: border-box;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.zt-tags {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  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;
  }
}

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

* {
  box-sizing: border-box;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.zt-tags {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  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;
  }
}

.moc-site {
  --moc-bg: #f4f6ef;
  --moc-surface: #ffffff;
  --moc-ink: #173126;
  --moc-muted: #5f7066;
  --moc-green: #1f6b43;
  --moc-green-deep: #124a31;
  --moc-line: rgba(23,49,38,.16);
  --moc-coral: #d8654f;
  background: var(--moc-bg);
  color: var(--moc-ink);
  overflow-x: hidden;
  overflow-y: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-synthesis-weight: auto;
  font-synthesis-style: auto;
  font-synthesis-small-caps: none;
}

@media (prefers-color-scheme: dark) {
  .moc-site {
  --moc-bg: #12261d;
  --moc-surface: #193127;
  --moc-ink: #eef5ed;
  --moc-muted: #afc0b4;
  --moc-green: #7bb98d;
  --moc-line: rgba(238,245,237,.16);
  }
}

.moc-site *, .moc-site ::before, .moc-site ::after {
  box-sizing: border-box;
}

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

.moc-site a {
  color: inherit;
}

.moc-shell {
  width: min(1280px, 100% - 64px);
  margin: 0px auto;
}

@media (max-width: 640px) {
  .moc-shell {
  width: min(100% - 32px, 520px);
  }
}

@media (max-width: 900px) {
  .moc-shell {
  width: min(100% - 40px, 720px);
  }
}

.moc-nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  row-gap: 28px;
  column-gap: 28px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(255, 255, 255, 0.28);
}

@media (max-width: 640px) {
  .moc-nav {
  height: 68px;
  }
}

.moc-logo {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  white-space-collapse: collapse;
  text-wrap-mode: nowrap;
}

.moc-logo span {
  color: rgb(217, 238, 145);
}

.moc-links {
  display: flex;
  align-items: center;
  row-gap: 28px;
  column-gap: 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.moc-links a {
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  white-space-collapse: collapse;
  text-wrap-mode: nowrap;
  opacity: 0.9;
  transition-behavior: normal;
  transition-duration: 0.25s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: opacity;
}

.moc-links a:hover {
  opacity: 1;
}

.moc-nav-cta, .moc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0px 22px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space-collapse: collapse;
  text-wrap-mode: nowrap;
  transition-behavior: normal, normal, normal;
  transition-duration: 0.25s, 0.25s, 0.25s;
  transition-timing-function: ease, ease, ease;
  transition-delay: 0s, 0s, 0s;
  transition-property: transform, background-color, color;
}

.moc-nav-cta {
  min-height: 42px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(247, 250, 245);
  color: var(--moc-green-deep);
}

@media (max-width: 640px) {
  .moc-nav-cta {
  min-height: 38px;
  padding: 0px 16px;
  }
}

.moc-nav-cta:hover, .moc-button:hover {
  transform: translateY(-2px);
}

.moc-nav-cta:active, .moc-button:active {
  transform: translateY(1px) scale(0.98);
}

.moc-hero::after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-image: linear-gradient(90deg, rgba(10, 46, 29, 0.88) 0%, rgba(10, 46, 29, 0.58) 44%, rgba(10, 46, 29, 0.08) 78%), linear-gradient(0deg, rgba(10, 46, 29, 0.56), transparent 48%);
  background-position-x: initial, initial;
  background-position-y: initial, initial;
  background-size: initial, initial;
  background-repeat: initial, initial;
  background-attachment: initial, initial;
  background-origin: initial, initial;
  background-clip: initial, initial;
  background-color: initial;
}

.moc-hero h1 {
  max-width: 700px;
  margin: 0px;
  font-size: clamp(54px, 7vw, 102px);
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.moc-button-primary {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(217, 238, 145);
  color: rgb(23, 49, 38);
}

.moc-hero .moc-eyebrow, .moc-hero h1, .moc-hero-copy, .moc-actions {
  animation-duration: 0.8s;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
  animation-play-state: running;
  animation-name: moc-rise;
  animation-timeline: auto;
  animation-range-start: normal;
  animation-range-end: normal;
}

.moc-kicker {
  margin: 0px 0px 18px;
  color: var(--moc-green);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.moc-origin h2, .moc-products h2, .moc-table h2, .moc-recipes h2, .moc-find h2 {
  margin: 0px;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.moc-origin-copy p {
  max-width: 650px;
  margin: 0px 0px 22px;
  font-size: 20px;
  line-height: 1.65;
  color: var(--moc-muted);
}

@media (max-width: 640px) {
  .moc-origin-copy p {
  font-size: 17px;
  }
}

.moc-origin-copy strong {
  color: var(--moc-ink);
}

.moc-metric b {
  display: block;
  margin-bottom: 8px;
  color: var(--moc-green);
  font-size: 31px;
  letter-spacing: -0.04em;
}

.moc-metric span {
  color: var(--moc-muted);
  font-size: 14px;
}

.moc-values h2 {
  margin: 0px;
  font-size: clamp(38px, 4vw, 62px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.moc-value + .moc-value {
  padding-left: 36px;
}

.moc-value:last-child {
  border-right-width: 0px;
  border-right-style: none;
  border-right-color: currentcolor;
}

.moc-value h3 {
  margin: 0px 0px 12px;
  font-size: 26px;
  letter-spacing: -0.03em;
}

.moc-value p {
  margin: 0px;
  color: rgba(244, 248, 242, 0.7);
  line-height: 1.65;
}

.moc-products-copy > p {
  color: var(--moc-muted);
  font-size: 18px;
  line-height: 1.65;
  margin: 22px 0px 30px;
}

.moc-product h3 {
  margin: 0px 0px 5px;
  font-size: 21px;
}

.moc-product p {
  margin: 0px;
  color: var(--moc-muted);
  font-size: 14px;
}

.moc-product span {
  color: var(--moc-green);
  font-weight: 800;
  white-space-collapse: collapse;
  text-wrap-mode: nowrap;
}

.moc-table-wrap::after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-image: linear-gradient(0deg, rgba(9, 42, 28, 0.88), rgba(9, 42, 28, 0.04) 72%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
}

.moc-table-copy p {
  max-width: 520px;
  margin: 20px 0px 0px;
  color: rgba(248, 250, 246, 0.77);
  font-size: 18px;
  line-height: 1.6;
}

.moc-recipe-feature img {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.moc-recipe-feature::after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-image: linear-gradient(0deg, rgba(13, 48, 33, 0.82), transparent 70%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
}

.moc-recipe-feature h3 {
  position: absolute;
  z-index: 1;
  left: 34px;
  right: 34px;
  bottom: 30px;
  margin: 0px;
  color: rgb(255, 255, 255);
  font-size: 34px;
  letter-spacing: -0.035em;
}

@media (max-width: 640px) {
  .moc-recipe-feature h3 {
  left: 24px;
  right: 24px;
  bottom: 24px;
  font-size: 27px;
  }
}

.moc-recipe-links a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  row-gap: 18px;
  column-gap: 18px;
  padding: 24px 0px;
  border-bottom: 1px solid var(--moc-line);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

@media (max-width: 640px) {
  .moc-recipe-links a {
  grid-template-columns: 1fr auto;
  }
}

.moc-recipe-links b {
  font-size: 17px;
}

.moc-recipe-links span {
  color: var(--moc-muted);
  font-size: 13px;
}

@media (max-width: 640px) {
  .moc-recipe-links span {
  grid-column-start: 1;
  grid-column-end: auto;
  }
}

.moc-recipe-links i {
  font-style: normal;
  color: var(--moc-green);
  font-size: 22px;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: transform;
}

.moc-recipe-links a:hover i {
  transform: translateX(5px);
}

.moc-find p {
  max-width: 550px;
  margin: 20px 0px 0px;
  color: rgba(248, 250, 246, 0.78);
  font-size: 17px;
  line-height: 1.6;
}

.moc-find .moc-button {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(217, 238, 145);
  color: rgb(23, 49, 38);
}

.moc-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.6fr;
  row-gap: 70px;
  column-gap: 70px;
  padding-bottom: 60px;
}

@media (max-width: 640px) {
  .moc-footer-grid {
  grid-template-columns: 1fr;
  row-gap: 28px;
  column-gap: 28px;
  }
}

@media (max-width: 900px) {
  .moc-footer-grid {
  grid-template-columns: 1fr 1fr;
  }
}

.moc-footer-brand {
  font-size: 40px;
  margin: 0px 0px 16px;
  letter-spacing: -0.05em;
}

.moc-footer p {
  color: rgba(234, 243, 233, 0.65);
  line-height: 1.6;
}

.moc-footer h3 {
  margin: 0px 0px 16px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgb(217, 238, 145);
}

.moc-footer a {
  display: block;
  margin: 10px 0px;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  color: rgba(234, 243, 233, 0.78);
}

.moc-footer-bottom {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(255, 255, 255, 0.14);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  row-gap: 24px;
  column-gap: 24px;
  color: rgba(234, 243, 233, 0.55);
  font-size: 13px;
}

@media (max-width: 640px) {
  .moc-footer-bottom {
  flex-direction: column;
  }
}

@keyframes moc-rise {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

@media (max-width: 900px) {
  .moc-links a:not(.moc-nav-cta) {
  display: none;
  }
}

@media (max-width: 900px) {
  .moc-origin-grid, .moc-products-grid, .moc-recipe-layout, .moc-find-card {
  grid-template-columns: 1fr;
  row-gap: 42px;
  column-gap: 42px;
  }
}

@media (max-width: 900px) {
  .moc-value, .moc-value + .moc-value {
  padding: 28px 0px;
  border-right-width: 0px;
  border-right-style: none;
  border-right-color: currentcolor;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(255, 255, 255, 0.2);
  }
}

@media (max-width: 640px) {
  .moc-footer-grid > div:first-child {
  grid-column-start: auto;
  grid-column-end: auto;
  }
}

@media (max-width: 900px) {
  .moc-footer-grid > div:first-child {
  grid-column-start: 1;
  grid-column-end: -1;
  }
}

@media (max-width: 640px) {
  .moc-button {
  width: 100%;
  }
}

@media (max-width: 640px) {
  .moc-origin, .moc-products, .moc-find {
  padding: 84px 0px;
  }
}

.moc-site .moc-nav-cta, .moc-site .moc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0px 22px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space-collapse: collapse;
  text-wrap-mode: nowrap;
  transition-behavior: normal, normal, normal;
  transition-duration: 0.25s, 0.25s, 0.25s;
  transition-timing-function: ease, ease, ease;
  transition-delay: 0s, 0s, 0s;
  transition-property: transform, background-color, color;
}

.moc-site .moc-nav-cta {
  min-height: 42px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(247, 250, 245);
  color: var(--moc-green-deep);
}

.moc-site .moc-button-primary {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(217, 238, 145);
  color: rgb(23, 49, 38);
}

.moc-site .moc-button-secondary {
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(255, 255, 255, 0.48);
  border-right-color: rgba(255, 255, 255, 0.48);
  border-bottom-color: rgba(255, 255, 255, 0.48);
  border-left-color: rgba(255, 255, 255, 0.48);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  color: rgb(248, 250, 246);
}

.moc-site .moc-find-card {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(18, 74, 49);
  color: rgb(248, 250, 246);
}

.moc-site .moc-find-card p {
  color: rgba(248, 250, 246, 0.78);
}

.moc-site h1, .moc-site h2, .moc-site h3, .moc-site .moc-footer-brand {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 700;
  text-wrap-mode: initial;
  text-wrap-style: balance;
  display: grid;
  letter-spacing: 20665;
}

.moc-site .moc-logo, .moc-site .moc-links, .moc-site .moc-button, .moc-site .moc-eyebrow, .moc-site .moc-kicker {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.moc-subpage {
  padding-top: 76px;
  background: var(--moc-bg);
  color: var(--moc-ink);
}

@media (max-width: 640px) {
  .moc-subpage {
  padding-top: 68px;
  }
}

.moc-page-hero {
  min-height: 610px;
  display: grid;
  align-items: end;
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  background: var(--moc-green-deep);
  color: rgb(248, 250, 246);
}

@media (max-width: 640px) {
  .moc-page-hero {
  min-height: 560px;
  }
}

.moc-page-hero img {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
}

.moc-page-hero::after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-image: linear-gradient(90deg, rgba(10, 46, 29, 0.92), rgba(10, 46, 29, 0.32));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
}

.moc-page-hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 110px;
  padding-bottom: 76px;
}

@media (max-width: 640px) {
  .moc-page-hero-inner {
  padding-top: 90px;
  padding-bottom: 54px;
  }
}

.moc-page-hero h1 {
  max-width: 780px;
  margin: 0px;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.moc-page-hero p {
  max-width: 620px;
  margin: 24px 0px 0px;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(248, 250, 246, 0.82);
}

.moc-page-section {
  padding-top: 110px;
  padding-bottom: 110px;
}

@media (max-width: 640px) {
  .moc-page-section {
  padding-top: 78px;
  padding-bottom: 78px;
  }
}

.moc-page-section h2 {
  max-width: 760px;
  margin: 0px 0px 28px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.moc-page-section p {
  color: var(--moc-muted);
  line-height: 1.75;
}

.moc-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 1px;
  column-gap: 1px;
  background: var(--moc-line);
}

.moc-page-card {
  min-height: 280px;
  padding: 34px;
  background: var(--moc-bg);
}

@media (max-width: 640px) {
  .moc-page-card {
  min-height: auto;
  padding: 26px;
  }
}

.moc-page-card h3 {
  margin: 0px 0px 14px;
  font-size: 26px;
}

.moc-page-card p {
  margin: 0px;
}

.moc-page-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  row-gap: 8vw;
  column-gap: 8vw;
  align-items: center;
}

@media (max-width: 900px) {
  .moc-page-split {
  grid-template-columns: 1fr;
  row-gap: 42px;
  column-gap: 42px;
  }
}

.moc-page-split img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
}

.moc-page-list {
  display: grid;
  border-top: 1px solid var(--moc-line);
}

.moc-page-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.5fr) 1fr;
  row-gap: 42px;
  column-gap: 42px;
  padding: 30px 0px;
  border-bottom: 1px solid var(--moc-line);
}

@media (max-width: 640px) {
  .moc-page-row {
  grid-template-columns: 1fr;
  row-gap: 12px;
  column-gap: 12px;
  }
}

.moc-page-row h3 {
  margin: 0px;
  font-size: 23px;
}

.moc-page-row p {
  margin: 0px;
}

.moc-guide-loop {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 22px;
  column-gap: 22px;
}

.moc-guide-card {
  min-height: 290px;
  padding: 30px;
  border: 1px solid var(--moc-line);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.moc-guide-card h2 {
  margin: 0px 0px 18px;
  font-size: 30px;
  line-height: 1.1;
}

.moc-guide-card p {
  margin: 0px 0px 24px;
  color: var(--moc-muted);
}

.moc-guide-card a {
  color: var(--moc-green);
  font-weight: 800;
}

.moc-contact-panel {
  padding: 56px;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
  background: var(--moc-green-deep);
  color: rgb(248, 250, 246);
}

@media (max-width: 640px) {
  .moc-contact-panel {
  padding: 34px 26px;
  }
}

.moc-contact-panel p {
  color: rgba(248, 250, 246, 0.74);
}

.moc-contact-panel a {
  display: block;
  margin-top: 12px;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 800;
}

.moc-post-shell {
  width: min(840px, 100% - 40px);
  margin: 0px auto;
  padding: 150px 0px 110px;
}

.moc-post-shell > h1 {
  margin: 0px 0px 18px;
  font-size: clamp(48px, 7vw, 84px);
  line-height: 0.98;
}

.moc-post-shell > p {
  margin: 0px 0px 56px;
  color: var(--moc-muted);
  font-size: 18px;
}

@media (max-width: 900px) {
  .moc-page-grid, .moc-guide-loop {
  grid-template-columns: 1fr;
  }
}