@font-face {
  font-family: "Geist Pixel Square";
  src: url("/static/fonts/GeistPixel-Square.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Geist Pixel Line";
  src: url("/static/fonts/GeistPixel-Line.woff2") format("woff2");
  font-display: swap;
}

:root {
  color-scheme: light;
  --font-body: "Geist Pixel Line", "Geist Pixel Square", monospace;
  --font-display: "Geist Pixel Square", "Geist Pixel Line", monospace;
  --font-mono: "JetBrains Mono", "Geist Pixel Line", monospace;
  --bg: #dbe4e6;
  --bg-alt: #c5d3d7;
  --panel: #c5d3d7;
  --panel-strong: #dbd5d9;
  --panel-2: #f1edf0;
  --panel-soft: #f1edf0;
  --ink: #241924;
  --ink-soft: #4b3947;
  --ink-mute: #6d5b68;
  --muted: #6d5b68;
  --line: rgba(18, 13, 18, 0.22);
  --line-soft: rgba(18, 13, 18, 0.14);
  --accent: #c64524;
  --accent-soft: #f6ded9;
  --teal: #567d6a;
  --focus: rgba(31, 108, 224, 0.55);
  --radius-lg: 6px;
  --radius-md: 5px;
  --radius-sm: 3px;
  --shadow-sm: 0 1px 2px rgba(42, 35, 38, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100%;
  margin: 0;
  padding-bottom: 24px;
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.46;
  background:
    linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(36, 25, 36, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 25, 36, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.seo-skip {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 20;
  min-height: 30px;
  padding: 5px 8px;
  border: 1px solid var(--ink);
  border-radius: var(--radius-sm);
  background: var(--panel-2);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 11px;
}

.seo-skip:focus {
  top: 12px;
}

.seo-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  padding: 4px 12px;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--panel) 94%, transparent);
  backdrop-filter: blur(10px);
}

.seo-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  text-decoration: none;
}

.seo-brand img {
  width: 24px;
  height: 24px;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

.seo-brand > span {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
}

.seo-brand > span > span:last-child {
  color: var(--accent);
  font-weight: 400;
}

.seo-header nav,
.seo-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}

.seo-header nav a,
.seo-footer nav a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--panel-2);
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: 11px;
  text-decoration: none;
}

.seo-header nav a:hover,
.seo-footer nav a:hover {
  border-color: rgba(42, 35, 38, 0.52);
  background: var(--bg);
  color: var(--ink);
}

.seo-shell {
  width: min(1180px, calc(100% - 24px));
  margin: 12px auto 40px;
  border: 1px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.seo-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: 1px;
  min-height: min(640px, calc(100vh - 160px));
  background: var(--line);
}

.seo-hero__copy,
.seo-demo,
.seo-band,
.seo-final-cta {
  background: var(--panel);
}

.seo-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(24px, 5vw, 56px);
}

.seo-eyebrow {
  width: fit-content;
  margin: 0 0 14px;
  padding: 3px 7px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--panel-2);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  max-width: 13ch;
  font-size: clamp(2.1rem, 5.2vw, 4rem);
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.18rem, 2.4vw, 1.8rem);
}

h3 {
  margin-bottom: 5px;
  font-size: 1rem;
}

p {
  max-width: 70ch;
  margin: 0 0 12px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.seo-hero p {
  max-width: 58ch;
  margin-top: 12px;
  font-size: 0.95rem;
}

.seo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 14px;
}

.seo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid var(--ink);
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

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

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

.seo-proof-list,
.seo-feature-list,
.seo-use-list,
.seo-related-list,
.seo-prompt-list {
  display: grid;
  gap: 6px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.seo-proof-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 680px;
}

.seo-proof-list li,
.seo-feature-list li,
.seo-use-list li,
.seo-prompt-list li,
.seo-related-list li {
  min-width: 0;
  padding: 8px 9px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: var(--panel-2);
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: 0.76rem;
}

.seo-feature-list,
.seo-use-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.seo-prompt-list li {
  font-family: var(--font-mono);
  font-size: 0.74rem;
}

.seo-related-list a {
  color: var(--ink);
}

.seo-demo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  margin: 0;
  padding: clamp(18px, 4vw, 40px);
}

.seo-demo img {
  width: 100%;
  height: auto;
  border: 1px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--panel-2);
  box-shadow: var(--shadow-sm);
  image-rendering: crisp-edges;
}

.seo-demo figcaption {
  margin-top: 8px;
  color: var(--ink-mute);
  font-family: var(--font-mono);
  font-size: 0.7rem;
}

.seo-band {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(18px, 4vw, 42px);
  padding: clamp(22px, 4vw, 42px) clamp(18px, 5vw, 56px);
  border-top: 1px solid var(--line);
}

.seo-feature-band,
.seo-faq {
  display: block;
}

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

.seo-step-list li {
  position: relative;
  padding: 10px 10px 10px 42px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: var(--panel-2);
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.seo-step-list li::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 9px;
  top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 11px;
}

.seo-faq {
  padding-bottom: 24px;
}

.seo-faq-item {
  padding: 12px 0;
  border-top: 1px solid var(--line-soft);
}

.seo-faq-item:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.seo-faq-item p {
  margin-bottom: 0;
}

.seo-final-cta {
  padding: clamp(24px, 5vw, 52px) clamp(18px, 5vw, 56px);
  border-top: 1px solid var(--ink);
  background: var(--panel-strong);
}

.seo-final-cta h2 {
  margin-bottom: 8px;
}

.seo-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 8;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 24px;
  padding: 0 12px;
  border-top: 1px solid var(--line);
  background: color-mix(in srgb, var(--panel) 94%, transparent);
  color: var(--ink-mute);
  font-family: var(--font-mono);
  font-size: 11px;
  backdrop-filter: blur(10px);
}

.seo-footer__group {
  display: inline-flex;
  min-width: 0;
  gap: 16px;
  overflow: hidden;
}

.seo-footer__group span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
  white-space: nowrap;
}

.seo-footer__group em {
  overflow: hidden;
  color: var(--ink-soft);
  font-style: normal;
  text-overflow: ellipsis;
}

.seo-footer nav a {
  min-height: 18px;
  padding: 0 6px;
  border: 0;
  background: transparent;
  font-family: var(--font-mono);
  font-size: 11px;
  text-decoration: underline;
}

@media (max-width: 900px) {
  body {
    padding-bottom: 0;
  }

  .seo-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    padding: 10px 12px;
  }

  .seo-shell {
    width: min(100% - 16px, 1180px);
    margin-top: 8px;
  }

  .seo-hero,
  .seo-band {
    grid-template-columns: 1fr;
  }

  .seo-hero {
    min-height: auto;
  }

  h1 {
    max-width: 13ch;
    font-size: clamp(2rem, 12vw, 3.55rem);
  }

  .seo-proof-list,
  .seo-feature-list,
  .seo-use-list {
    grid-template-columns: 1fr;
  }

  .seo-footer {
    position: static;
    grid-template-columns: 1fr;
    padding: 8px 12px;
  }
}

@media (max-width: 520px) {
  .seo-header nav a {
    padding: 0 8px;
  }

  .seo-hero__copy,
  .seo-demo,
  .seo-band,
  .seo-final-cta {
    padding-right: 14px;
    padding-left: 14px;
  }

  .seo-actions {
    flex-direction: column;
  }

  .seo-button {
    width: 100%;
  }
}
