:root {
  --bg: #0c0e12;
  --surface: #141820;
  --surface-2: #1a1f28;
  --border: #2a3140;
  --border-strong: #3a4458;
  --text: #e8eaed;
  --text-muted: #9aa3b2;
  --brand: #e11d2e;
  --brand-dark: #b91524;
  --brand-soft: rgba(225, 29, 46, 0.14);
  --radius: 0.5rem;
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.45);
  --nav-height: 4rem;
  --max-width: 72rem;
  --font-display: "IBM Plex Sans", sans-serif;
  --font-body: "IBM Plex Sans", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  font-size: 17.5px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  padding-top: var(--nav-height);
}

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

a {
  color: var(--brand);
}

a:hover {
  color: #ff4d5c;
}

.container {
  width: min(100% - 2.5rem, var(--max-width));
  margin-inline: auto;
}

h1, h2, h3, h4, h5,
.section-title,
.logo-wizz,
.hero-brand .logo-wizz {
  font-family: var(--font-display);
}

/* Logo wordmark */
.logo-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  color: inherit;
  line-height: 1;
  white-space: nowrap;
}

.logo-zbx {
  display: inline-flex;
  align-items: center;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.05em;
  padding: 0.38rem 0.55rem;
  border-radius: 0.35rem;
}

.logo-wizz {
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.logo-wordmark--on-dark .logo-wizz,
.logo-wizz {
  color: var(--text);
}

.logo-wordmark--sm .logo-zbx {
  font-size: 0.8125rem;
  padding: 0.3rem 0.45rem;
  border-radius: 0.3rem;
}

.logo-wordmark--sm .logo-wizz {
  font-size: 1.125rem;
}

.logo-wordmark--lg .logo-zbx {
  font-size: 1.5rem;
  padding: 0.55rem 0.75rem;
  border-radius: 0.45rem;
}

.logo-wordmark--lg .logo-wizz {
  font-size: 2.5rem;
}

a.logo-wordmark:hover .logo-wizz {
  color: #fff;
}

/* Navigation */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(12, 14, 18, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}

.site-nav.is-scrolled {
  background: rgba(12, 14, 18, 0.92);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.site-nav .brand {
  display: flex;
  align-items: center;
}

.site-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav .nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9375rem;
}

.site-nav .nav-links a:hover,
.site-nav .nav-links a.active {
  color: #fff;
}

.site-nav .nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-nav .nav-github {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
}

.site-nav .nav-github:hover {
  color: #fff;
}

.site-nav .nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.site-nav .nav-toggle span {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: var(--text);
  margin: 4px 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s, color 0.15s, border-color 0.15s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.btn-primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}

.btn-secondary:hover {
  background: var(--surface-2);
  color: #fff;
  border-color: var(--border-strong);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}

.btn-outline:hover {
  border-color: var(--brand);
  color: #fff;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Hero — full-bleed workbench */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: flex-end;
  padding: 0;
  color: #fff;
  overflow: hidden;
  background: var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/workbench.png");
  background-size: cover;
  background-position: center top;
  transform: scale(1.02);
  animation: hero-bg-drift 18s ease-in-out infinite alternate;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 14, 18, 0.55) 0%, rgba(12, 14, 18, 0.35) 35%, rgba(12, 14, 18, 0.92) 78%, var(--bg) 100%),
    linear-gradient(90deg, rgba(12, 14, 18, 0.85) 0%, rgba(12, 14, 18, 0.35) 55%, rgba(12, 14, 18, 0.55) 100%);
  box-shadow: inset 0 0 120px rgba(225, 29, 46, 0.08);
  animation: hero-glow 6s ease-in-out infinite alternate;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--max-width));
  margin-inline: auto;
  padding: 4rem 0 5rem;
  max-width: 40rem;
}

.hero-brand {
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: hero-rise 0.7s ease forwards 0.1s;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 4.2vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  opacity: 0;
  animation: hero-rise 0.7s ease forwards 0.22s;
}

.hero .lead {
  font-size: 1.1875rem;
  color: var(--text-muted);
  margin: 0 0 1.75rem;
  max-width: 34rem;
  opacity: 0;
  animation: hero-rise 0.7s ease forwards 0.34s;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: hero-rise 0.7s ease forwards 0.46s;
}

.hero-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
  opacity: 0;
  animation: hero-rise 0.7s ease forwards 0.55s;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-bg-drift {
  from { transform: scale(1.02) translateY(0); }
  to { transform: scale(1.05) translateY(-1.5%); }
}

@keyframes hero-glow {
  from { box-shadow: inset 0 0 100px rgba(225, 29, 46, 0.05); }
  to { box-shadow: inset 0 0 140px rgba(225, 29, 46, 0.12); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg,
  .hero-bg::after,
  .hero-brand,
  .hero h1,
  .hero .lead,
  .hero-actions,
  .hero-note {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--surface);
}

.section-title {
  font-size: clamp(1.85rem, 3.2vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0 0 1rem;
  color: var(--text);
}

.section-lead {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 40rem;
  margin: 0 auto 2.75rem;
}

.section-title--left {
  text-align: left;
  margin-bottom: 1rem;
}

/* Trust strip under hero */
.trust-strip {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 1rem 0;
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.75rem;
  justify-content: center;
  align-items: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.trust-strip-inner span {
  position: relative;
}

.trust-strip-inner span:not(:last-child)::after {
  content: none;
}

/* Problem narrative */
.problem-block {
  max-width: 42rem;
  margin-inline: auto;
}

.problem-lead {
  margin-bottom: 1.75rem;
}

.problem-lead strong {
  color: #fff;
  font-weight: 600;
}

.problem-points {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
}

.problem-points li {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 1.0625rem;
  padding-left: 1.15rem;
  position: relative;
}

.problem-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.35rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--brand);
}

/* How it works shot */
.how-shot {
  margin-top: 2.75rem;
}

.etl-item code {
  font-family: var(--font-mono);
  font-size: 0.85em;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 0.25rem;
  padding: 0.1em 0.35em;
}

.jobs-more {
  text-align: center;
  margin: 1.75rem 0 0;
}

.jobs-more a {
  font-weight: 600;
  text-decoration: none;
  color: var(--text-muted);
}

.jobs-more a:hover {
  color: #fff;
}

/* Trust block */
.trust-points {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 56rem;
}

.trust-points li {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

.trust-points h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  margin: 0 0 0.5rem;
  color: #fff;
}

.trust-points p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.975rem;
}

.trust-points a {
  font-weight: 600;
}

/* Problem list (legacy, unused on home) */
.problem-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 56rem;
  margin-inline: auto;
}

.problem-list li {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

.problem-list h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  margin: 0 0 0.5rem;
  color: #fff;
}

.problem-list p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* Product moment */
.product-moment {
  display: grid;
  gap: 2rem;
}

.product-moment-copy {
  max-width: 36rem;
}

.product-moment-copy p {
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}

.product-shot {
  display: block;
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 2rem;
}

.feature-list li {
  padding: 0.4rem 0;
  color: var(--text-muted);
  break-inside: avoid;
  font-size: 0.9375rem;
}

.feature-list li::before {
  content: "";
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--brand);
  margin-right: 0.65rem;
  vertical-align: middle;
}

/* ETL typographic columns */
.etl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 56rem;
  margin-inline: auto;
}

.etl-item {
  border-left: 2px solid var(--brand);
  padding-left: 1.25rem;
}

.etl-item .etl-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 0.75rem;
}

.etl-item h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
  color: #fff;
}

.etl-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* Jobs link list */
.jobs-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 40rem;
  border-top: 1px solid var(--border);
}

.jobs-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.975rem;
  transition: color 0.15s, padding-left 0.15s;
}

.jobs-list a:hover {
  color: #fff;
  padding-left: 0.35rem;
}

.jobs-list a::after {
  content: "→";
  color: var(--brand);
  flex-shrink: 0;
}

/* Video */
.video-frame {
  max-width: 42rem;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-2);
}

.video-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.video-frame .video-body {
  padding: 1.25rem 1.5rem;
}

.video-frame .label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand);
  margin: 0 0 0.35rem;
}

.video-frame h3 {
  font-family: var(--font-display);
  margin: 0 0 0.35rem;
  font-size: 1.125rem;
}

.video-frame p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* CTA band */
.cta-band {
  background: var(--surface);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 5rem 0;
}

.cta-band .section-title {
  color: #fff;
}

.cta-band .section-lead {
  color: var(--text-muted);
}

.cta-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Docs hub */
.docs-hub {
  padding: 3.5rem 0 4.5rem;
}

.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 0.75rem;
}

.doc-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  transition: border-color 0.15s, background 0.15s;
}

.doc-card:hover {
  border-color: var(--border-strong);
  background: var(--surface-2);
  color: inherit;
}

.doc-card h3 {
  font-family: var(--font-display);
  margin: 0 0 0.4rem;
  font-size: 1.0625rem;
  color: #fff;
}

.doc-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.doc-card .arrow {
  margin-top: 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand);
}

/* Prose (content pages) */
.prose img {
  display: block;
  margin: 1.25rem 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.prose {
  max-width: 42rem;
  margin: 0 auto;
  padding: 3rem 0 4rem;
}

.prose h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 0 0 1.5rem;
  color: #fff;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  margin: 2rem 0 1rem;
  color: #fff;
}

.prose h3 {
  font-family: var(--font-display);
  color: #fff;
}

.prose p,
.prose li {
  color: var(--text-muted);
}

.prose a {
  font-weight: 500;
}

.prose pre {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  overflow-x: auto;
  font-size: 0.875rem;
  line-height: 1.5;
}

.prose code {
  font-family: var(--font-mono);
  font-size: 0.875em;
}

.prose :not(pre) > code {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 0.25rem;
  padding: 0.125rem 0.375rem;
}

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

.prose th,
.prose td {
  border: 1px solid var(--border);
  padding: 0.625rem 0.875rem;
  text-align: left;
}

.prose th {
  background: var(--surface-2);
  font-weight: 600;
  color: var(--text);
}

.docs-prose {
  padding: 0;
  max-width: none;
}

.docs-edit,
.docs-back {
  margin-top: 2.5rem;
  font-size: 0.9375rem;
}

.docs-edit a {
  color: var(--text-muted);
}

.blog-sidebar a.is-active,
.docs-nav a.is-active {
  color: #fff;
  font-weight: 600;
}

/* Blog / docs layout */
.blog-layout {
  display: grid;
  grid-template-columns: 14rem 1fr;
  gap: 2.5rem;
  padding: 3rem 0 4rem;
}

.blog-sidebar h4,
.docs-nav h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.blog-sidebar a,
.docs-nav a {
  display: block;
  padding: 0.45rem 0;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.blog-sidebar a:hover,
.docs-nav a:hover {
  color: #fff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  gap: 1rem;
}

.blog-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  transition: border-color 0.15s, background 0.15s;
}

.blog-card:hover {
  border-color: var(--border-strong);
  background: var(--surface-2);
}

.blog-card .blog-body {
  padding: 1.25rem;
}

.blog-card h3 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.blog-card h3 a {
  text-decoration: none;
  color: #fff;
}

.blog-card h3 a:hover {
  color: var(--brand);
}

.blog-card .meta {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.blog-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.pagination {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 2rem;
  list-style: none;
  padding: 0;
}

.pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text-muted);
  border: 1px solid var(--border);
  font-size: 0.875rem;
}

.pagination a:hover,
.pagination a.active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

/* Footer */
.site-footer {
  background: var(--bg);
  color: var(--text-muted);
  padding: 3.5rem 0 2rem;
  border-top: 1px solid var(--border);
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.site-footer h5 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 0.875rem;
  margin: 0 0 1rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 0.5rem;
}

.site-footer a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9375rem;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer .tagline {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
}

.site-footer .social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.site-footer .social a {
  font-size: 1.25rem;
}

.newsletter-form .input-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 10rem;
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  background: var(--surface);
  color: var(--text);
}

.newsletter-form input::placeholder {
  color: var(--text-muted);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
}

.newsletter-form .hint {
  font-size: 0.75rem;
  margin-top: 0.5rem;
  color: var(--text-muted);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
}

.newsletter-success {
  text-align: center;
  padding: 1.5rem;
}

.newsletter-success .icon {
  font-size: 2rem;
  color: #34d399;
  margin-bottom: 0.75rem;
}

/* Responsive */
@media (max-width: 900px) {
  .problem-list,
  .etl-grid,
  .trust-points {
    grid-template-columns: 1fr;
  }

  .feature-list {
    columns: 1;
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .blog-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    align-items: flex-end;
  }

  .hero-inner {
    padding: 6rem 0 3.5rem;
  }

  .hero-bg {
    background-position: center center;
  }
}

@media (max-width: 640px) {
  .site-nav .nav-toggle {
    display: block;
  }

  .site-nav .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(12, 14, 18, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.25rem;
    gap: 0;
  }

  .site-nav .nav-links.is-open {
    display: flex;
  }

  .site-nav .nav-links li a {
    display: block;
    padding: 0.75rem 0;
  }

  .site-nav .nav-actions {
    display: none;
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .logo-wordmark--lg .logo-zbx {
    font-size: 1.15rem;
    padding: 0.45rem 0.6rem;
  }

  .logo-wordmark--lg .logo-wizz {
    font-size: 1.85rem;
  }
}
