:root {
  --zo-bg: #0e0e16;
  --zo-surface: #171720;
  --zo-surface-deep: #12121a;
  --zo-term-bg: #12121a;
  --zo-border: #2c2c3a;
  --zo-fg: #c5c5d8;
  --zo-fg-dim: #6b6b80;
  --zo-accent: #a3e05e;
  --zo-accent-bright: #b8ee78;
  --zo-accent-ink: #0e0e16;
  --zo-alice: #5fb8c8;
  --zo-alice-bright: #7fd8e8;
  --zo-error: #c85f6a;
  --zo-purple: #8a6fc0;
  --zo-mono: 'Iosevka', ui-monospace, 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace;
}

@font-face {
  font-family: 'Iosevka';
  font-display: swap;
  font-weight: 400;
  font-style: normal;
  src: url('../fonts/iosevka-term-regular.woff') format('woff');
}

@font-face {
  font-family: 'Iosevka';
  font-display: swap;
  font-weight: 700;
  font-style: normal;
  src: url('../fonts/iosevka-term-heavy.woff') format('woff');
}

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

html {
  background: var(--zo-bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0 0 32px;
  background: var(--zo-bg);
  color: var(--zo-fg);
  font-family: var(--zo-mono);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.btn {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid var(--zo-border);
  background: transparent;
  color: var(--zo-fg);
  font-family: inherit;
  font-size: 12.75px;
  text-decoration: none;
  cursor: pointer;
}

.btn:hover { border-color: var(--zo-fg-dim); }

.btn-accent {
  background: var(--zo-accent);
  border-color: var(--zo-accent);
  color: var(--zo-accent-ink);
  font-weight: 700;
}

.btn-accent:hover { background: var(--zo-accent-bright); border-color: var(--zo-accent-bright); }

.wrap {
  max-width: 790px;
  margin: 0 auto;
  padding: 26px 12px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.row {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 12px;
  align-items: stretch;
}

@media (max-width: 720px) {
  .row { grid-template-columns: 1fr; }
}

.pane {
  position: relative;
  border: 1px solid var(--zo-border);
  background: var(--zo-surface);
  padding: 20px 18px 18px;
  min-width: 0;
}

.chip {
  position: absolute;
  top: -8px;
  left: 12px;
  padding: 0 6px;
  background: var(--zo-bg);
  color: var(--zo-fg-dim);
  font-size: 11.75px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.chip::before {
  content: "\25A0";
  margin-right: 5px;
  font-size: 7px;
  vertical-align: 2px;
}

.pane-active { border-color: var(--zo-accent); }
.pane-active > .chip { color: var(--zo-accent); }

.hero-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 16px;
}

.hero-brand h1 { margin: 0; }

.hero-logo {
  color: var(--zo-accent);
  --logo-cut: var(--zo-surface);
}

.hero-logo .logo-full {
  display: block;
  width: 72px;
  height: 72px;
}

h1 {
  margin: 0 0 16px;
  font-size: 34px;
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #d5d5ea;
}

.pane h2 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  color: #d5d5ea;
}

.lede { margin: 0 0 20px; color: var(--zo-fg); opacity: 0.82; font-size: 13.25px; }

.lede:last-of-type { margin-bottom: 0; }

.cta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }

@media (min-width: 721px) and (max-width: 1099px) and (min-height: 850px) {
  .cta { display: none; }
  .pane-hero { display: flex; flex-direction: column; justify-content: center; }
}

@media (min-width: 1100px) and (min-height: 700px) {
  .cta { display: none; }
  .pane-hero { display: flex; flex-direction: column; justify-content: center; }
}

.pane-terminal { display: flex; flex-direction: column; justify-content: center; padding: 20px 14px 14px; }

.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 14px; }

@media (max-width: 720px) {
  .features { grid-template-columns: 1fr; }
}

.feature h3 {
  margin: 0 0 5px;
  font-size: 14px;
  font-weight: 700;
  color: #d5d5ea;
}

.feature h3::before { content: "\25B8"; margin-right: 6px; color: var(--zo-fg-dim); }
.feature p { margin: 0; font-size: 13px; color: var(--zo-fg); opacity: 0.72; }
.section-lede { margin: 0; font-size: 13.25px; color: var(--zo-fg); opacity: 0.82; }

.section-lede a,
.feature p a {
  color: var(--zo-accent);
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--zo-accent) 65%, transparent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

.section-lede a:hover,
.feature p a:hover {
  color: var(--zo-accent-bright);
  text-decoration-color: var(--zo-accent-bright);
}

.section-lede a:focus-visible,
.feature p a:focus-visible {
  outline: 2px solid var(--zo-accent);
  outline-offset: 2px;
  border-radius: 1px;
}

.waitlist-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
}

.waitlist-form[hidden] { display: none; }

.waitlist-form input[type="email"] {
  flex: 1 1 220px;
  padding: 5px 8px;
  border: 1px solid var(--zo-border);
  background: var(--zo-term-bg);
  color: var(--zo-fg);
  font-family: inherit;
  font-size: 12.75px;
}

.waitlist-form input[type="email"]:focus {
  outline: none;
  border-color: var(--zo-accent);
}

.waitlist-form input[type="email"]::placeholder { color: var(--zo-fg-dim); }

.checkbox-row {
  flex-basis: 100%;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.75px;
  color: var(--zo-fg);
  opacity: 0.82;
  cursor: pointer;
}

.checkbox-row input[type="checkbox"] { accent-color: var(--zo-accent); }

.waitlist-actions {
  flex-basis: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.captcha-row {
  display: none;
  line-height: 0;
}

.captcha-row.is-pending,
.captcha-row.is-ready,
.captcha-row.is-failed {
  display: block;
}

.captcha-row.is-pending::before,
.captcha-row.is-failed::before {
  display: flex;
  align-items: center;
  width: 303px;
  max-width: 100%;
  height: 78px;
  padding: 0 12px;
  border: 1px solid var(--zo-border);
  background: var(--zo-term-bg);
  color: var(--zo-fg-dim);
  font-size: 12.75px;
  line-height: 1.5;
}

.captcha-row.is-pending::before { content: "[ loading challenge... ]"; }
.captcha-row.is-failed::before { content: "[ challenge blocked ]"; }

.captcha-row .h-captcha { display: block; }

.captcha-row iframe {
  border: 1px solid var(--zo-border);
  border-radius: 0;
  filter: grayscale(1) brightness(0.95) contrast(1.05);
}

@media (max-width: 400px) {
  .captcha-row {
    transform: scale(0.88);
    transform-origin: left top;
  }
}

.waitlist-success {
  border: 1px solid var(--zo-accent);
  background: var(--zo-term-bg);
  padding: 16px 18px;
  outline: none;
}

.waitlist-success[hidden] { display: none; }

.waitlist-success h3 {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--zo-accent);
}

.waitlist-success p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--zo-fg);
}

.waitlist-note { margin: 0; font-size: 11.75px; color: var(--zo-fg-dim); }

.about-tagline { margin: 16px 0 0; font-size: 13.25px; font-weight: 700; color: var(--zo-accent); }

.legal-body h2 {
  margin: 26px 0 6px;
  font-size: 15px;
  font-weight: 700;
  color: #d5d5ea;
}

.legal-body h3 {
  margin: 18px 0 4px;
  font-size: 13px;
  font-weight: 700;
  color: #d5d5ea;
}

.legal-body h2:first-child,
.legal-body h3:first-child { margin-top: 0; }
.legal-body p { margin: 0 0 4px; font-size: 12.75px; color: var(--zo-fg); opacity: 0.78; }
.legal-body ul { margin: 4px 0 8px; padding-left: 18px; }
.legal-body li { margin: 0 0 5px; font-size: 12.75px; color: var(--zo-fg); opacity: 0.78; }
.legal-body strong { color: #d5d5ea; font-weight: 700; }
.legal-body a { color: var(--zo-alice); text-decoration: none; }
.legal-body a:hover { color: var(--zo-alice-bright); }

.site-footer {
  max-width: 790px;
  margin: 20px auto 0;
  padding: 12px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--zo-border);
  font-size: 11.75px;
  color: var(--zo-fg-dim);
}

.footer-nav { display: flex; gap: 12px; }
.footer-nav a { color: var(--zo-fg-dim); text-decoration: none; }
.footer-nav a:hover { color: var(--zo-fg); }

.zo-termshare {
  display: block;
  width: 100%;
  height: auto;
  max-width: 600px;
  margin: 0 auto;
  overflow: visible;
}

.zo-termshare text { font-family: var(--zo-mono) !important; }

.zo-termshare .rect365484,
.zo-termshare .path365610,
.zo-termshare .path365610-3,
.zo-termshare .path365610-8,
.zo-termshare .text367222 { display: none; }

@media (min-width: 1100px) {
  body { font-size: 16.5px; }

  .wrap {
    max-width: 1020px;
    padding-top: 36px;
    gap: 25px;
  }

  .row { gap: 17px; }
  .pane { padding: 25px 23px 23px; }
  .chip { font-size: 13.25px; }
  h1 { font-size: 45px; }
  .pane h2 { font-size: 18.5px; }
  .lede { font-size: 18px; line-height: 1.6; }
  .section-lede { font-size: 16px; }
  .btn { font-size: 15.25px; padding: 6px 13px; }
  .hero-logo .logo-full { width: 96px; height: 96px; }
  .features { gap: 22px; }
  .feature h3 { font-size: 16.5px; }
  .feature p { font-size: 15px; }
  .about-tagline { font-size: 16px; }
  .legal-body h2 { font-size: 18px; }
  .legal-body h3 { font-size: 15px; }
  .legal-body p { font-size: 15px; }
  .legal-body li { font-size: 15px; }
  .waitlist-form input[type="email"] { font-size: 15.25px; }
  .checkbox-row { font-size: 15px; }
  .waitlist-note { font-size: 14px; }
  .site-footer { max-width: 1020px; }
  .footer-inner { font-size: 14px; }
}
