:root {
  color-scheme: dark;
  --bg: #242424;
  --bg-strong: #141414;
  --panel: #303030;
  --panel-2: #3c3c3c;
  --panel-3: #343434;
  --ink: #eeeeea;
  --muted: #b9b9b0;
  --soft: #83837b;
  --line: #111111;
  --line-soft: #52524c;
  --yellow: #ffd400;
  --yellow-dark: #b88a00;
  --cyan: #28b7c5;
  --green: #5ee38f;
  --orange: #c84f13;
  --red: #ff6f6f;
  --shadow: 7px 7px 0 #111111;
  --radius: 8px;
  --font-ui: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --font-display: "Arial Black", "Space Grotesk", Impact, sans-serif;
  --font-mono: "JetBrains Mono", "Cascadia Code", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--bg);
  background-size: 28px 28px;
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

code {
  font-family: var(--font-mono);
  color: var(--yellow);
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 4px solid var(--line);
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(12px);
}

.nav-wrap,
.section,
.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: max-content;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border: 3px solid var(--line);
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--line);
  display: grid;
  place-items: center;
}

.brand-mark img {
  width: 22px;
  height: 22px;
  filter: none;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  padding: 8px 10px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #0d0d0d;
  background: var(--yellow);
  border-color: var(--line);
}

.section {
  padding: 64px 0;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 38px;
  align-items: center;
  padding-top: 52px;
  padding-bottom: 42px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--yellow);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--yellow);
  border: 2px solid var(--line);
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  font-family: var(--font-display);
  font-size: 82px;
  text-transform: lowercase;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 22px;
}

.lede {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 21px;
  font-weight: 650;
}

.copy {
  color: var(--muted);
  margin: 12px 0 0;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button,
button.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 3px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 16px;
  background: var(--yellow);
  color: #0d0d0d;
  box-shadow: 4px 4px 0 var(--line);
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.secondary {
  background: var(--panel-2);
  color: var(--ink);
}

.button:hover {
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 var(--line);
}

.button[aria-disabled="true"],
.button:disabled {
  background: var(--panel-2);
  color: var(--muted);
  box-shadow: none;
  opacity: 0.72;
  cursor: not-allowed;
}

.hero-card {
  border: 4px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 4px solid var(--line);
  background: var(--panel-2);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}

.window-dots {
  display: inline-flex;
  gap: 7px;
}

.window-dots span {
  width: 12px;
  height: 12px;
  border: 2px solid var(--line);
  background: var(--yellow);
}

.window-dots span:nth-child(2) {
  background: var(--cyan);
}

.window-dots span:nth-child(3) {
  background: var(--orange);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center top;
}

.strip {
  border-top: 4px solid var(--line);
  border-bottom: 4px solid var(--line);
  background: var(--bg-strong);
}

.feature-grid,
.card-grid,
.doc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.card,
.feature,
.notice,
.download-panel,
.form-card {
  border: 3px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 5px 5px 0 var(--line);
}

.card,
.feature {
  padding: 20px;
}

.feature strong,
.stat strong {
  display: block;
  color: var(--yellow);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.feature p,
.card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 1.08fr);
  gap: 28px;
  align-items: start;
}

.screenshot-stack {
  display: grid;
  gap: 16px;
}

.screenshot-frame {
  border: 3px solid var(--line);
  background: var(--panel-2);
  box-shadow: 5px 5px 0 var(--line);
  overflow: hidden;
}

.screenshot-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top left;
}

.page-hero {
  padding-top: 52px;
  padding-bottom: 28px;
}

.page-hero h1 {
  font-size: 68px;
}

.download-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 24px;
  margin-top: 28px;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.stat {
  border: 2px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 12px;
  background: var(--panel-2);
  min-width: 0;
}

.stat span {
  display: block;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 13px;
}

.notice {
  padding: 18px;
  margin-top: 18px;
  background: #2f2b20;
}

.notice.danger {
  background: #342323;
}

.notice strong {
  color: var(--yellow);
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 12px;
  margin-top: 20px;
  padding: 0;
  list-style: none;
}

.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: var(--muted);
}

.steps li::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 3px solid var(--line);
  background: var(--yellow);
  color: #0d0d0d;
  font-weight: 900;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.price-card {
  min-height: 100%;
  padding: 24px;
}

.price-tag {
  margin: 18px 0;
  color: var(--yellow);
  font-size: 34px;
  font-weight: 950;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--line);
  background: var(--green);
}

.doc-grid {
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
}

.doc-nav {
  position: sticky;
  top: 94px;
  align-self: start;
}

.doc-nav a {
  display: block;
  padding: 10px 12px;
  border-bottom: 2px solid var(--line);
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}

.doc-nav a:hover {
  color: #0d0d0d;
  background: var(--yellow);
}

.doc-content {
  display: grid;
  gap: 18px;
}

.doc-section {
  padding: 22px;
}

.doc-section h2 {
  font-size: 32px;
}

.form-card {
  padding: 24px;
  margin-top: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

label,
legend {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 3px solid var(--line);
  border-radius: var(--radius);
  padding: 11px 12px;
  background: var(--panel-2);
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 126px;
  resize: vertical;
}

fieldset {
  margin: 0;
  padding: 14px;
  border: 3px solid var(--line);
  border-radius: var(--radius);
}

.checkbox-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.checkbox-row label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 8px 10px;
  color: var(--muted);
  text-transform: none;
}

.checkbox-row input {
  width: auto;
}

.form-note,
.form-status {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.form-status {
  color: var(--yellow);
  font-weight: 800;
}

.site-footer {
  margin-top: 40px;
  border-top: 4px solid var(--line);
  background: var(--bg-strong);
}

.footer-inner {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 28px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-inner a {
  color: var(--ink);
  font-weight: 800;
}

@media (max-width: 920px) {
  .nav-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    margin-left: 0;
    justify-content: flex-start;
  }

  .hero,
  .split,
  .download-panel,
  .pricing-grid,
  .doc-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .doc-nav {
    position: static;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 42px 0;
  }

  .nav-wrap,
  .section,
  .footer-inner {
    width: min(100% - 20px, 1180px);
  }

  h1,
  .page-hero h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 34px;
  }

  .lede {
    font-size: 18px;
  }

  .nav-links a {
    padding: 7px 8px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
  }

  .meta-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
  }
}
