: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: 2px solid var(--line-soft);
  border-radius: 6px;
  background: var(--bg-strong);
  box-shadow: 4px 4px 0 var(--line);
  display: grid;
  place-items: center;
}

.brand-mark img {
  width: 24px;
  height: 24px;
  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 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  gap: 34px;
  align-items: center;
  padding-top: 42px;
  padding-bottom: 54px;
}

.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: 58px;
  text-transform: none;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 22px;
}

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

.lede-secondary {
  margin-top: 14px;
}

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

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 5px 9px;
  background: var(--panel-2);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.pill.accent {
  background: var(--yellow);
  color: #0d0d0d;
}

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

.app-shot {
  margin: 0;
  border: 3px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-2);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.app-shot img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  object-position: left top;
  background: #101010;
  cursor: zoom-in;
}

.app-shot img[hidden],
.theme-card img[hidden] {
  display: none;
}

.app-shot.is-missing::before,
.theme-card.is-missing::before {
  content: attr(data-fallback) " unavailable";
  display: grid;
  place-items: center;
  min-height: 260px;
  aspect-ratio: 3 / 2;
  padding: 22px;
  background: #101010;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-shot img {
  aspect-ratio: 3 / 2;
}

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

.workflow {
  display: grid;
  gap: 44px;
}

.workflow-row {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(360px, 0.58fr);
  gap: 34px;
  align-items: center;
}

.workflow-row:nth-child(even) .workflow-copy {
  order: 2;
}

.workflow-copy {
  min-width: 0;
}

.workflow-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.workflow-copy h2,
.section-heading h2,
.ai-panel h2 {
  max-width: 680px;
}

.workflow-copy h2 {
  font-size: 40px;
}

.workflow-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 3px solid var(--line);
  border-radius: var(--radius);
  background: var(--yellow);
  color: #0d0d0d;
  box-shadow: 4px 4px 0 var(--line);
}

.workflow-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.workflow-title {
  margin: 0;
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 46px;
  line-height: 1;
  text-transform: uppercase;
}

.section-heading {
  max-width: 840px;
}

.section-heading-wide {
  max-width: 1120px;
}

.color-title {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 46px;
  line-height: 1;
  text-transform: uppercase;
}

.color-title span:nth-child(3n + 1) {
  color: var(--yellow);
}

.color-title span:nth-child(3n + 2) {
  color: var(--cyan);
}

.color-title span:nth-child(3n) {
  color: var(--orange);
}

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

.theme-card {
  margin: 0;
  border: 3px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 5px 5px 0 var(--line);
  overflow: hidden;
}

.theme-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  object-position: left top;
  background: #101010;
  cursor: zoom-in;
}

.theme-card figcaption {
  display: grid;
  gap: 8px;
  border-top: 3px solid var(--line);
  padding: 14px;
  color: var(--ink);
}

.theme-card figcaption strong {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.theme-card figcaption span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

.ai-section {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding-top: 210px;
}

.ai-arrow {
  position: absolute;
  top: 0;
  width: min(27vw, 310px);
  height: auto;
  pointer-events: none;
  overflow: visible;
  filter: drop-shadow(7px 7px 0 var(--line));
}

.ai-arrow path {
  fill: var(--ink);
}

.ai-arrow-left {
  left: 17%;
}

.ai-arrow-right {
  right: 17%;
}

.ai-panel {
  border: 3px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: var(--panel);
  box-shadow: 5px 5px 0 var(--line);
}

.free-paid {
  padding-top: 48px;
}

.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 {
  max-width: 920px;
  font-size: 64px;
}

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

.price-options {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
}

.price-options span {
  display: block;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.legal-list {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.legal-list li {
  padding-left: 4px;
}

.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;
  min-width: 0;
}

.doc-section {
  padding: 22px;
}

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

.compare-table-wrap {
  overflow-x: auto;
  border: 3px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 5px 5px 0 var(--line);
}

.compare-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
}

.compare-table caption {
  padding: 14px 16px;
  border-bottom: 3px solid var(--line);
  color: var(--yellow);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
}

.compare-table th,
.compare-table td {
  border: 2px solid var(--line);
  padding: 13px 14px;
  color: var(--muted);
  text-align: left;
  vertical-align: top;
}

.compare-table thead th,
.compare-table tbody th {
  color: var(--ink);
  background: var(--panel-2);
  font-weight: 900;
}

.compare-table thead th:nth-child(2) {
  color: #0d0d0d;
  background: var(--yellow);
}

.compare-table td:nth-child(2) {
  color: var(--ink);
  font-weight: 800;
}

.compare-cta p {
  max-width: 860px;
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 650;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.roadmap-card {
  min-height: 100%;
}

.roadmap-card h2 {
  font-size: 34px;
}

.tag {
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 2px 6px;
  background: var(--yellow);
  color: #0d0d0d;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.status-card strong {
  display: block;
  color: var(--yellow);
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
}

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

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(8, 8, 8, 0.88);
}

.image-lightbox.is-open {
  display: flex;
}

.image-lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 3px solid var(--line);
  border-radius: var(--radius);
  background: var(--yellow);
  color: #0d0d0d;
  box-shadow: 4px 4px 0 var(--line);
  font: inherit;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.image-lightbox img {
  max-width: min(96vw, 1440px);
  max-height: 90vh;
  border: 3px solid var(--line);
  border-radius: var(--radius);
  background: #101010;
  box-shadow: var(--shadow);
  object-fit: contain;
}

.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,
  .workflow-row,
  .download-panel,
  .pricing-grid,
  .theme-grid,
  .ai-section,
  .doc-grid,
  .roadmap-grid,
  .status-grid {
    grid-template-columns: 1fr;
  }

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

  .doc-nav {
    position: static;
  }

  .workflow-row:nth-child(even) .workflow-copy {
    order: 0;
  }

  .ai-section {
    padding-top: 42px;
  }

  .ai-arrow {
    display: none;
  }
}

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

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

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

  h2 {
    font-size: 34px;
  }

  .workflow-copy h2 {
    font-size: 32px;
  }

  .workflow-title {
    font-size: 36px;
  }

  .color-title {
    font-size: 36px;
  }

  .lede {
    font-size: 18px;
  }

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

  .hero {
    padding-top: 34px;
  }

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

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