@font-face {
  font-family: "Archivo Black";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("/fonts/archivo-black-latin-v23.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #0d1110;
  --ink-soft: #202724;
  --paper: #f7faf4;
  --paper-deep: #e6efe4;
  --acid: #c7ff2e;
  --cyan: #18d7d0;
  --red: #ff4d42;
  --red-deep: #c0271d;
  --line: rgba(13, 17, 16, 0.16);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(13, 17, 16, 0.16);
  --header-scroll-offset: 72px;
  --section-kicker-font-size: 13px;
  --section-kicker-line-height: 1.45;
  --section-kicker-gap: 18px;
  --section-kicker-offset: calc(var(--section-kicker-font-size) * var(--section-kicker-line-height) + var(--section-kicker-gap));
  --font-display: "Archivo Black", "Arial Black", Arial, sans-serif;
  --font-body: Arial, Helvetica, sans-serif;
  --font-mono: ui-monospace, "Cascadia Mono", Consolas, "Courier New", Courier, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-scroll-offset);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-display);
  line-height: 1.45;
}

p,
.automation-item span {
  font-family: var(--font-body);
}

a {
  color: inherit;
  text-decoration: none;
}

.anchor-target {
  position: absolute;
  top: 0;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  transform: translateY(-160%);
  border: 2px solid var(--acid);
  background: var(--ink);
  color: var(--paper);
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 160ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(247, 250, 244, 0.12);
  background: rgba(13, 17, 16, 0.9);
  color: var(--paper);
  backdrop-filter: blur(14px);
}

.brand {
  width: max-content;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-accent {
  color: var(--acid);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
}

.nav-links a {
  opacity: 0.86;
  text-transform: uppercase;
}

.nav-links a:hover {
  opacity: 1;
}

.brand:focus-visible,
.nav-links a:focus-visible,
.header-cta:focus-visible,
.button:focus-visible,
.legal-links a:focus-visible,
.legal-links button:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 4px;
}

.header-cta {
  justify-self: end;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid var(--acid);
  background: var(--acid);
  color: var(--ink);
  padding: 8px 12px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 4px 4px 0 var(--paper);
}

/* Header CTA label: full wording on desktop, short label where the header grid is tight. */
.header-cta .header-cta-short {
  display: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 112px clamp(18px, 5vw, 72px) 72px;
  background: var(--ink);
  color: var(--paper);
}

.hero-canvas,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-canvas {
  width: 100%;
  height: 100%;
  opacity: 0.96;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(13, 17, 16, 0.92) 0%, rgba(13, 17, 16, 0.72) 48%, rgba(13, 17, 16, 0.34) 100%),
    repeating-linear-gradient(0deg, rgba(247, 250, 244, 0.06) 0 1px, transparent 1px 84px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 var(--section-kicker-gap);
  font-family: var(--font-mono);
  font-size: var(--section-kicker-font-size);
  font-weight: 700;
  line-height: var(--section-kicker-line-height);
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow {
  color: var(--acid);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h2,
h3 {
  font-weight: 900;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: pretty;
}

h1 {
  max-width: 1060px;
  margin-bottom: 24px;
  font-weight: 900;
  font-size: clamp(58px, 8vw, 126px);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
}

h1 span {
  display: block;
  white-space: nowrap;
}

.nowrap {
  white-space: nowrap;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(36px, 3.75vw, 54px);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 16px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 34px;
  font-size: clamp(18px, 2.1vw, 24px);
  color: rgba(247, 250, 244, 0.86);
}

.hero-actions,
.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  padding: 14px 20px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 7px 7px 0 var(--red);
}

.hero-actions .button:hover {
  box-shadow: 7px 7px 0 var(--acid);
}

.hero-actions .button-primary:hover {
  box-shadow: 7px 7px 0 var(--cyan);
}

.home-page .hero-actions .button-primary:hover {
  box-shadow: 7px 7px 0 var(--white);
}

.button-primary {
  border-color: var(--acid);
  background: var(--acid);
  color: var(--ink);
}

.button-secondary {
  border-color: rgba(247, 250, 244, 0.72);
  color: var(--paper);
}

.button-submit {
  width: 100%;
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
}

.button-submit:hover {
  box-shadow: 7px 7px 0 var(--red);
}

.button-submit.is-incomplete:hover {
  box-shadow: 7px 7px 0 var(--red);
}

.button-submit.is-complete:hover {
  box-shadow: 7px 7px 0 var(--acid);
}

.signal-row {
  margin-top: 26px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(247, 250, 244, 0.78);
}

.signal-row span {
  border: 1px solid rgba(247, 250, 244, 0.3);
  padding: 8px 10px;
  background: rgba(247, 250, 244, 0.08);
}

.section {
  padding: clamp(72px, 10vw, 136px) clamp(18px, 5vw, 72px);
}

/* Keep the complete services-card row inside the initial desktop view after a hash jump. */
#services {
  scroll-margin-top: -54px;
}

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

.intro-band {
  padding: clamp(48px, 8vw, 92px) clamp(18px, 5vw, 72px);
  background: var(--paper-deep);
  border-bottom: 2px solid var(--ink);
}

.intro-grid {
  display: grid;
  grid-template-areas:
    "kicker ."
    "heading copy";
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 18px 34px;
  align-items: start;
}

.intro-grid h2 {
  grid-area: heading;
  margin-bottom: 0;
  font-size: clamp(32px, 3vw, 42px);
}

.intro-grid > .section-kicker {
  grid-area: kicker;
  margin-bottom: 0;
}

.intro-grid > p:last-child {
  grid-area: copy;
  margin-bottom: 0;
}

#automation-title,
#sprint-title,
#proof-title,
#request-title,
#faq-title {
  font-size: clamp(32px, 3vw, 42px);
}

.intro-grid p:last-child,
.proof-grid > p:last-child,
.sprint-copy p:not(.section-kicker),
.request-copy p:not(.section-kicker) {
  font-size: clamp(17px, 2vw, 22px);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 44px;
}

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

.service-card {
  display: flex;
  container-type: inline-size;
  min-height: 320px;
  flex-direction: column;
  align-items: flex-start;
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
  box-shadow: 8px 8px 0 var(--ink);
  translate: 0;
  transition: translate 160ms ease, box-shadow 160ms ease;
}

.service-card:nth-child(2) {
  background: var(--acid);
}

.service-card:nth-child(3) {
  background: var(--cyan);
}

.service-card h3 {
  min-height: 2em;
  margin-bottom: 16px;
  font-size: clamp(16px, 10cqi, 34px);
  -webkit-hyphens: none;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.service-title-line {
  display: block;
}

.card-index {
  display: inline-block;
  margin-bottom: 54px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
}

.service-card p {
  margin-bottom: 0;
  font-size: 18px;
}

.examples-callout-arrow {
  display: inline-block;
  transition: translate 160ms ease;
  translate: 0;
}

.service-card:hover {
  translate: -4px -4px;
  box-shadow: 12px 12px 0 var(--ink);
}

.service-card:focus-visible {
  outline: 4px solid var(--red);
  outline-offset: 5px;
}

.examples-callout:hover .examples-callout-arrow {
  translate: 5px;
}

.examples-callout:focus-visible {
  outline: 4px solid var(--red);
  outline-offset: 5px;
}

.examples-callout {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  margin-top: 42px;
  border: 2px solid var(--ink);
  padding: clamp(18px, 3vw, 28px);
  background: var(--ink);
  box-shadow: 8px 8px 0 var(--acid);
  color: var(--paper);
  text-decoration: none;
  translate: 0;
  transition: translate 160ms ease, box-shadow 160ms ease;
}

.examples-callout:hover {
  translate: -4px -4px;
  box-shadow: 12px 12px 0 var(--acid);
}

.examples-callout-count {
  color: var(--acid);
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.8;
}

.examples-callout-copy {
  display: grid;
  gap: 6px;
}

.examples-callout-copy strong {
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 0.95;
  text-transform: uppercase;
}

.examples-callout-copy span {
  color: rgba(247, 250, 244, 0.82);
  font-size: clamp(16px, 2vw, 19px);
}

.examples-callout-arrow {
  color: var(--acid);
  font-size: clamp(28px, 4vw, 48px);
}

.automations-section {
  background: var(--ink);
  color: var(--paper);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(34px, 6vw, 80px);
}

.automation-list {
  display: grid;
  gap: 1px;
  background: rgba(247, 250, 244, 0.18);
}

.automation-item {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 18px;
  padding: 22px 0;
  background: var(--ink);
}

.automation-item strong {
  color: var(--acid);
  font-size: 22px;
  line-height: 1.05;
  text-transform: uppercase;
}

.automation-item span {
  color: rgba(247, 250, 244, 0.8);
  font-size: 18px;
}

.sprint-section {
  background: var(--paper);
}

.sprint-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: start;
}

.sprint-copy,
.timeline {
  min-width: 0;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 14px;
  width: max-content;
  margin-top: 30px;
  border: 2px solid var(--ink);
  padding: 14px 18px;
  background: var(--acid);
  box-shadow: 8px 8px 0 var(--ink);
}

.price-line span {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.price-line strong {
  font-size: 48px;
  line-height: 1;
}

.timeline {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 142px 1fr;
  gap: 24px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
}

.timeline span {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.timeline p {
  margin: 0;
  max-width: 460px;
  font-size: 22px;
}

.proof-section {
  background: var(--cyan);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.proof-grid {
  display: grid;
  grid-template-areas:
    "kicker ."
    "heading copy";
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px clamp(30px, 6vw, 78px);
  align-items: start;
}

.proof-grid h2 {
  grid-area: heading;
  margin-bottom: 0;
}

.proof-grid > .section-kicker {
  grid-area: kicker;
  margin-bottom: 0;
}

.proof-grid > p:last-child {
  grid-area: copy;
  margin-bottom: 0;
}

.request-section {
  background:
    repeating-linear-gradient(90deg, rgba(13, 17, 16, 0.06) 0 1px, transparent 1px 44px),
    var(--paper);
}

.request-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 0.9fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
}

.mail-note {
  margin-top: 26px;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.45;
}

.mail-note a {
  border-bottom: 2px solid currentColor;
}

.email-nojs {
  display: none;
}

noscript .email-nojs {
  display: inline;
}

.request-form {
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 28px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.request-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.request-form label > span:first-child {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.request-form input:not([type="radio"]):not([type="file"]),
.request-form textarea {
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  padding: 14px;
  font-family: var(--font-mono);
  font-size: 16px;
  outline: none;
}

.request-form input:not([type="radio"]):not([type="file"]):focus,
.request-form textarea:focus {
  box-shadow: 0 0 0 4px var(--acid);
}

.request-form textarea {
  min-height: 118px;
  resize: vertical;
}

.file-upload-field {
  position: relative;
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.file-upload-label {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.file-upload-input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.file-upload-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px;
  align-items: start;
}

.file-upload-button,
.file-upload-empty,
.file-upload-file-name {
  min-height: 48px;
  border: 2px solid var(--ink);
  padding: 12px 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.2;
}

.file-upload-list {
  display: grid;
  min-width: 0;
  gap: 8px;
}

.file-upload-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  appearance: none;
  background: var(--ink);
  color: var(--paper);
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.file-upload-empty {
  display: flex;
  align-items: center;
  background: var(--paper);
  color: rgba(13, 17, 16, 0.7);
}

.file-upload-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  min-width: 0;
}

.file-upload-file-name {
  display: block;
  min-width: 0;
  overflow: hidden;
  background: var(--paper);
  color: rgba(13, 17, 16, 0.7);
  border-right: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-upload-clear {
  position: relative;
  min-height: 48px;
  border: 2px solid var(--ink);
  appearance: none;
  background: var(--paper);
  cursor: pointer;
  transition: box-shadow 160ms ease;
}

.file-upload-clear::before,
.file-upload-clear::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--ink);
  content: "";
}

.file-upload-clear::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.file-upload-clear::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.file-upload-clear[hidden] {
  display: none;
}

.file-upload-button:hover {
  background: var(--acid);
  color: var(--ink);
}

.file-upload-button:focus-visible,
.file-upload-clear:focus-visible {
  box-shadow: 0 0 0 4px var(--acid);
}

.file-upload-field small {
  margin-top: 2px;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.45;
  color: rgba(13, 17, 16, 0.72);
}

.thank-you-panel {
  margin-bottom: 18px;
  border: 2px solid var(--ink);
  background: var(--acid);
  padding: 16px;
  outline: none;
}

.thank-you-panel:focus {
  box-shadow: 0 0 0 4px var(--cyan);
}

.thank-you-panel strong {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
  line-height: 1.05;
  text-transform: uppercase;
}

.thank-you-panel p {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 13px;
}

.thank-you-panel a {
  border-bottom: 2px solid var(--ink);
}

.task-type-field {
  margin: 0 0 16px;
  border: 0;
  padding: 0;
}

.task-type-field legend {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
  padding: 0;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.task-type-field legend em {
  color: rgba(13, 17, 16, 0.72);
  font-size: 11px;
  font-style: normal;
}

.request-form label .field-note {
  margin-left: 8px;
  color: rgba(13, 17, 16, 0.6);
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
}

.task-type-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.task-type-option {
  display: inline-flex;
  margin: 0;
}

.task-type-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
}

.task-type-option span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--ink);
  background: var(--paper);
  padding: 10px 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}

.task-type-option input:focus-visible + span {
  box-shadow: 0 0 0 4px var(--acid);
}

.task-type-option input:checked + span {
  background: var(--ink);
  color: var(--paper);
}

.form-footnote,
.solution-cta .form-footnote {
  margin: 14px 0 0;
  max-width: 58ch;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(13, 17, 16, 0.72);
}

.form-status {
  margin: 14px 0 0;
  border: 2px solid var(--ink);
  background: var(--acid);
  padding: 12px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
}

.faq-section {
  border-top: 2px solid var(--ink);
  background: var(--paper-deep);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
}

.faq-copy,
.faq-list {
  min-width: 0;
}

.faq-copy h2 {
  margin-bottom: 0;
  overflow-wrap: normal;
  word-break: normal;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.automation-list {
  margin-top: calc(var(--section-kicker-offset) - 22px);
}

.timeline {
  margin-top: calc(var(--section-kicker-offset) - 24px);
}

.request-form {
  margin-top: calc(var(--section-kicker-offset) - clamp(20px, calc(3vw + 2px), 30px));
}

.faq-list {
  margin-top: calc(var(--section-kicker-offset) - 20px);
}

.faq-item {
  min-width: 0;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
}

.faq-item[open] {
  box-shadow: 8px 8px 0 var(--ink);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 18px 20px;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: pretty;
}

.faq-question {
  min-width: 0;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  flex: 0 0 auto;
  content: "+";
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 2px solid var(--ink);
  background: var(--acid);
  font-family: var(--font-mono);
  font-size: 20px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
  background: var(--cyan);
}

.faq-item summary:focus-visible {
  outline: 4px solid var(--red);
  outline-offset: 4px;
}

.faq-item p {
  max-width: 660px;
  margin: 0;
  padding: 0 20px 20px;
  font-family: var(--font-mono);
  font-size: 15px;
  color: rgba(13, 17, 16, 0.76);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  border-top: 2px solid var(--ink);
  padding: 28px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
}

.footer-main,
.legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.footer-contact-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.legal-links {
  justify-content: flex-end;
}

.legal-links a,
.legal-links button {
  border: 0;
  border-bottom: 1px solid rgba(247, 250, 244, 0.58);
  border-radius: 0;
  padding: 0 0 2px;
  background: transparent;
  color: inherit;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.legal-links a:hover,
.legal-links button:hover {
  color: var(--acid);
}

.legal-links a:focus-visible,
.legal-links button:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 5px;
}

.legal-modal {
  width: min(720px, calc(100% - 32px));
  max-height: min(82vh, 760px);
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 0;
  background: var(--white);
  color: var(--ink);
  box-shadow: 8px 8px 0 var(--red);
}

.legal-modal::backdrop {
  background: rgba(13, 17, 16, 0.72);
  backdrop-filter: blur(5px);
}

.legal-modal-panel {
  position: relative;
  max-height: min(82vh, 760px);
  overflow: auto;
  padding: clamp(24px, 4vw, 38px);
}

.legal-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  border: 2px solid var(--ink);
  border-radius: 0;
  padding: 8px 10px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.legal-modal-close:hover {
  background: var(--acid);
}

.legal-modal-close:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.legal-content h2 {
  margin: 0 96px 12px 0;
  font-size: clamp(34px, 6vw, 58px);
}

.legal-content p {
  max-width: 620px;
  font-family: var(--font-mono);
  font-size: 14px;
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-content a {
  border-bottom: 2px solid currentColor;
}

.legal-updated {
  color: rgba(13, 17, 16, 0.72);
  font-weight: 700;
}

.legal-page-main {
  min-height: calc(100vh - 128px);
  padding: 148px clamp(18px, 5vw, 72px) clamp(72px, 10vw, 136px);
}

.legal-page {
  overflow-x: clip;
}

.legal-page-main .legal-content {
  width: min(760px, 100%);
  margin: 0 auto;
}

.legal-page-main .legal-content h1 {
  max-width: 680px;
  font-size: clamp(46px, 7vw, 82px);
}

.not-found-page {
  min-height: 100vh;
  background: var(--ink);
  color: var(--paper);
}

.not-found-shell {
  display: grid;
  min-height: 100vh;
  align-content: center;
  gap: 18px;
  padding: clamp(28px, 8vw, 82px);
}

.not-found-shell .brand {
  margin-bottom: clamp(18px, 5vw, 42px);
}

.not-found-shell h1 {
  max-width: 760px;
  margin-bottom: 6px;
}

.not-found-shell > p:not(.section-kicker) {
  max-width: 560px;
  color: rgba(247, 250, 244, 0.82);
  font-size: clamp(18px, 2.4vw, 24px);
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
  }

  :root {
    --header-scroll-offset: 88px;
  }

  .nav-links {
    justify-content: center;
    gap: 16px;
    font-size: 13px;
  }

  .nav-links a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  .intro-grid,
  .section-heading,
  .service-grid,
  .split-layout,
  .sprint-grid,
  .proof-grid,
  .request-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    grid-template-areas:
      "kicker"
      "heading"
      "copy";
  }

  .proof-grid {
    grid-template-areas:
      "kicker"
      "heading"
      "copy";
  }

  .automation-list,
  .timeline,
  .request-form,
  .faq-list {
    margin-top: 0;
  }

  .service-card {
    min-height: 240px;
  }

  .examples-callout {
    margin-top: 28px;
  }

  .service-card h3 {
    min-height: 0;
    margin-bottom: 16px;
  }

  .service-title-line {
    display: inline;
  }

  .card-index {
    margin-bottom: 34px;
  }

}

@media (max-width: 620px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    padding: 14px 16px;
  }

  .brand {
    font-size: 19px;
  }

  .nav-links {
    display: none;
  }

  .header-cta {
    padding: 10px 12px;
    font-size: 12px;
  }

  .header-cta .header-cta-full {
    display: none;
  }

  .header-cta .header-cta-short {
    display: inline;
  }

  .hero {
    min-height: 94vh;
    padding: 96px 16px;
  }

  h1 {
    font-size: clamp(24px, 11vw, 52px);
  }

  h2,
  .intro-grid h2,
  #automation-title,
  #sprint-title,
  #proof-title,
  #request-title,
  #faq-title {
    font-size: clamp(16px, 7.4vw, 36px);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .file-upload-row {
    grid-template-columns: 1fr;
  }

  .file-upload-file-name {
    white-space: normal;
    word-break: break-word;
  }

  .signal-row {
    align-items: stretch;
    flex-direction: column;
  }

  .section {
    padding: 48px 16px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .split-layout {
    gap: 24px;
  }

  .service-card {
    min-height: 0;
    padding: 18px;
  }

  .service-card h3 {
    margin-bottom: 12px;
  }

  .card-index {
    margin-bottom: 20px;
  }

  .intro-band {
    padding: 48px 16px;
  }

  .automation-item,
  .timeline li {
    grid-template-columns: 1fr;
  }

  .automation-item {
    gap: 12px;
    padding: 18px 0;
  }

  .price-line {
    width: 100%;
    justify-content: space-between;
  }

  .faq-item summary {
    align-items: flex-start;
    gap: 10px;
    min-height: 0;
    padding: 14px 12px;
    font-size: clamp(12px, 5vw, 18px);
  }

  .faq-item summary::after {
    width: 28px;
    height: 28px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 24px 16px;
  }

  .footer-main,
  .legal-links {
    align-items: flex-start;
  }

  .footer-main {
    flex-direction: column;
    gap: 16px;
  }

  .footer-contact-links,
  .legal-links {
    flex-direction: row;
    gap: 12px;
  }

  .legal-links {
    justify-content: flex-start;
  }

  .legal-modal-panel {
    padding: 24px 18px;
  }

  .legal-modal-close {
    position: static;
    margin-bottom: 22px;
  }

  .legal-content h2 {
    margin-right: 0;
  }
}

@media (max-width: 300px) {
  .site-header {
    gap: 8px;
  }

  .nav-links {
    display: none;
  }

  .price-line {
    gap: 8px;
    padding: 10px 12px;
  }

  .price-line strong {
    font-size: 40px;
  }

  .faq-item summary {
    gap: 8px;
    padding: 10px;
  }

  .faq-item summary::after {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 360px) {
  .request-section {
    padding-right: 0;
    padding-left: 0;
  }

  .request-copy {
    padding-right: 16px;
    padding-left: 16px;
  }

  .request-form {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    padding: 8px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .file-upload-clear:hover {
    background: var(--red);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .demo-line {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .demo-cursor {
    animation: none;
  }
}

.automation-link {
  color: var(--acid);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
}

.automation-link:hover {
  color: var(--cyan);
}

.solution-page {
  background: var(--paper);
}

.solution-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.solution-hero {
  display: flex;
  align-items: center;
  min-height: 92vh;
  padding: 112px clamp(18px, 5vw, 72px) 72px;
  background:
    linear-gradient(135deg, rgba(24, 215, 208, 0.22), transparent 42%),
    repeating-linear-gradient(0deg, rgba(247, 250, 244, 0.06) 0 1px, transparent 1px 84px),
    var(--ink);
  color: var(--paper);
}

.solution-hero .solution-shell {
  width: min(1120px, 100%);
  margin: 0;
}

.solution-hero h1 {
  max-width: 1060px;
  font-size: clamp(58px, 8vw, 126px);
  line-height: 0.88;
}

.solution-hero .button-primary:hover {
  box-shadow: 7px 7px 0 var(--white);
}

.solution-request-form {
  max-width: 620px;
  margin: 34px 0 0;
}

.solution-request-form .button-submit {
  margin-top: 4px;
}

.solution-lede {
  max-width: 680px;
  margin-bottom: 34px;
  color: rgba(247, 250, 244, 0.86);
  font-size: clamp(18px, 2.1vw, 24px);
}

.solution-section {
  padding: clamp(72px, 10vw, 136px) clamp(18px, 5vw, 72px);
}

.solution-two-column {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(34px, 6vw, 80px);
}

.solution-two-column h2,
.solution-section > .solution-shell > h2 {
  margin-bottom: 0;
  font-size: clamp(36px, 3.75vw, 54px);
  line-height: 0.95;
  text-wrap: pretty;
}

.solution-copy,
.solution-list {
  font-size: clamp(17px, 2vw, 22px);
}

.solution-copy p:last-child,
.solution-list:last-child {
  margin-bottom: 0;
}

.solution-copy a {
  border-bottom: 2px solid var(--ink);
  font-weight: 700;
}

.solution-dark {
  background: var(--ink);
  color: var(--paper);
}

.solution-dark .section-kicker {
  color: var(--acid);
}

.solution-dark h2 {
  max-width: 720px;
  font-size: clamp(36px, 4.5vw, 58px);
  text-wrap: balance;
}

.solution-steps {
  display: grid;
  gap: 1px;
  margin: 42px 0 0;
  padding: 0;
  background: rgba(247, 250, 244, 0.22);
  list-style: none;
}

.solution-steps li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  padding: 24px 0;
  background: var(--ink);
}

.solution-steps li > span {
  color: var(--cyan);
  font-family: var(--font-mono);
  font-weight: 700;
}

.solution-steps strong {
  display: block;
  margin-bottom: 8px;
  color: var(--acid);
  font-size: clamp(20px, 2.8vw, 30px);
  text-transform: uppercase;
}

.solution-steps p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(247, 250, 244, 0.82);
  font-size: 18px;
}

.solution-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.solution-list li {
  border-bottom: 2px solid var(--ink);
  padding-bottom: 16px;
}

.solution-list li::before {
  content: "→";
  margin-right: 12px;
  color: var(--red);
  font-family: var(--font-mono);
  font-weight: 700;
}

.solution-soft-list {
  margin: 0;
  padding-left: 1.05em;
  font-family: var(--font-body);
  font-weight: 400;
}

.solution-soft-list li {
  padding-left: 0.25em;
}

.solution-soft-list li + li {
  margin-top: 0.45em;
}

.solution-soft-list li::marker {
  color: rgba(13, 17, 16, 0.55);
  font-size: 0.7em;
}

.solution-accent {
  background: var(--paper-deep);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.solution-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.solution-card-grid article {
  border: 2px solid var(--paper);
  padding: 24px;
}

.solution-card-grid h3 {
  color: var(--acid);
}

.solution-card-grid p {
  margin-bottom: 0;
  color: rgba(247, 250, 244, 0.82);
  font-size: 18px;
}

#example-work.solution-accent .solution-card-grid article {
  background: var(--ink);
  border-color: var(--ink);
}

/* Example grids with three cards get three desktop columns instead of a 2+1 orphan row. */
@media (min-width: 921px) {
  .solution-example-grid:has(> article:nth-child(3)) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.solution-cta {
  background: var(--cyan);
}

.solution-cta h2 {
  max-width: 780px;
  font-size: clamp(36px, 4.5vw, 58px);
  text-wrap: balance;
}

@media (min-width: 921px) {
  .solution-two-column > .solution-copy,
  .solution-two-column > .solution-list {
    margin-top: 36px;
  }
}

.solution-cta .button-primary:hover {
  box-shadow: 7px 7px 0 var(--paper);
}

.solution-cta p {
  max-width: 700px;
  margin-bottom: 30px;
  font-size: clamp(18px, 2vw, 23px);
}

@media (max-width: 920px) {
  .solution-two-column {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .solution-hero {
    min-height: 0;
    padding: 96px 16px 64px;
  }

  .solution-section {
    padding: 56px 16px;
  }

  .solution-two-column h2,
  .solution-section > .solution-shell > h2,
  .solution-dark h2,
  .solution-cta h2 {
    font-size: clamp(30px, 10vw, 46px);
  }

  .solution-hero h1 {
    font-size: clamp(38px, 10vw, 46px);
  }

  .solution-steps li {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px 0;
  }

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

@media (max-width: 360px) {
  .site-header {
    gap: 12px;
    padding: 16px 12px;
  }
}

.example-intro h2 {
  max-width: 620px;
  font-size: clamp(34px, 3vw, 48px);
}

.example-documentation {
  background: var(--paper-deep);
}

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

.example-build-grid {
  margin-top: 42px;
}

.example-build-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
  box-shadow: 8px 8px 0 var(--ink);
}

.example-build-card:nth-child(2) {
  background: var(--acid);
}

.example-build-card:nth-child(3) {
  background: var(--cyan);
}

/* Rotate the accent order per category so three stacked grids do not repeat one formula. */
#documentation .example-build-card:nth-child(1) {
  background: var(--cyan);
}

#documentation .example-build-card:nth-child(2) {
  background: var(--white);
}

#documentation .example-build-card:nth-child(3) {
  background: var(--acid);
}

#websites .example-build-card:nth-child(1) {
  background: var(--acid);
}

#websites .example-build-card:nth-child(2) {
  background: var(--cyan);
}

#websites .example-build-card:nth-child(3) {
  background: var(--white);
}

.example-build-card .section-kicker {
  margin-bottom: 32px;
  color: var(--ink);
}

.example-build-card h3 {
  font-size: clamp(23px, 2.4vw, 31px);
  color: var(--ink);
}

@media (min-width: 921px) {
  .example-build-card h3 {
    min-height: 2em;
  }
}

.example-build-card > p:not(.section-kicker) {
  font-size: 17px;
  color: var(--ink);
}

.example-build-card strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  color: var(--ink);
}

.example-build-control {
  margin: auto 0 14px;
  padding-top: 24px;
  border-top: 2px solid var(--line);
}

.example-build-handoff {
  margin-bottom: 0;
}

.solution-dark .example-build-card {
  border-color: rgba(247, 250, 244, 0.86);
  background: var(--ink-soft);
  box-shadow: 8px 8px 0 var(--cyan);
}

.solution-dark .example-build-card h3,
.solution-dark .example-build-card strong {
  color: var(--acid);
}

.solution-dark .example-build-card > p:not(.section-kicker) {
  color: rgba(247, 250, 244, 0.84);
}

.solution-dark .example-build-control {
  border-color: rgba(247, 250, 244, 0.24);
}

@media (max-width: 920px) {
  .example-build-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .examples-callout {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
  }

  .examples-callout-arrow {
    display: none;
  }

  .example-build-card {
    padding: 18px;
  }

  .example-build-card .section-kicker {
    margin-bottom: 20px;
  }
}

/* Proof-of-work demos: terminal runs and before/after comparisons */
.demo-terminal {
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  color: rgba(247, 250, 244, 0.82);
  overflow: hidden;
  box-shadow: 8px 8px 0 var(--ink-soft);
}

.demo-terminal-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 2px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
}

.demo-terminal-bar i {
  width: 10px;
  height: 10px;
}

.demo-terminal-bar i:nth-child(1) {
  background: var(--red);
}

.demo-terminal-bar i:nth-child(2) {
  background: var(--acid);
}

.demo-terminal-bar i:nth-child(3) {
  background: var(--cyan);
}

.demo-terminal-bar span {
  margin-left: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.demo-terminal-body {
  margin: 0;
  padding: 20px 18px 24px;
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.75;
}

pre.demo-terminal-body {
  white-space: pre-wrap;
}

.demo-terminal-body p {
  margin: 0;
  font-family: var(--font-mono);
}

.demo-line {
  opacity: 0;
  transform: translateY(4px);
  animation: demo-line-in 300ms ease forwards;
}

.demo-line:nth-child(1) { animation-delay: 200ms; }
.demo-line:nth-child(2) { animation-delay: 800ms; }
.demo-line:nth-child(3) { animation-delay: 1300ms; }
.demo-line:nth-child(4) { animation-delay: 1800ms; }
.demo-line:nth-child(5) { animation-delay: 2300ms; }
.demo-line:nth-child(6) { animation-delay: 2900ms; }
.demo-line:nth-child(7) { animation-delay: 3500ms; }
.demo-line:nth-child(8) { animation-delay: 4300ms; }

.demo-prompt {
  color: var(--acid);
  font-weight: 700;
}

.demo-dim {
  color: rgba(247, 250, 244, 0.52);
}

.demo-ok {
  color: var(--acid);
  font-weight: 700;
}

.demo-info {
  color: var(--cyan);
}

.demo-warn {
  color: var(--red);
}

.demo-cursor {
  display: inline-block;
  width: 9px;
  height: 16px;
  background: var(--acid);
  vertical-align: -2px;
  animation: demo-cursor-blink 1s steps(1) infinite;
}

.demo-terminal-foot {
  padding: 10px 18px;
  border-top: 1px solid rgba(247, 250, 244, 0.18);
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(247, 250, 244, 0.5);
}

@keyframes demo-line-in {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes demo-cursor-blink {
  50% {
    opacity: 0;
  }
}

.example-demo {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  margin-top: 42px;
}

.example-demo .demo-terminal {
  box-shadow: 8px 8px 0 var(--ink);
}

.example-demo-copy p:not(.section-kicker) {
  max-width: 420px;
  font-size: 18px;
}

.example-demo-note {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(13, 17, 16, 0.6);
}

.sprint-demo {
  margin-top: 34px;
}

.sprint-demo .demo-terminal-bar span {
  font-size: 11px;
}

.sprint-demo .demo-terminal-body {
  padding: 14px 16px;
  font-size: 12.5px;
  line-height: 1.8;
}

.compare-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: clamp(14px, 2.5vw, 28px);
  align-items: stretch;
  margin-top: 42px;
}

.compare-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 2px solid var(--paper);
  border-radius: 8px;
  padding: 18px;
  background: var(--white);
  color: var(--ink);
}

.compare-card-before {
  box-shadow: 8px 8px 0 var(--red);
}

.compare-card-after {
  box-shadow: 8px 8px 0 var(--acid);
}

.compare-tag {
  align-self: flex-start;
  border: 2px solid var(--ink);
  padding: 6px 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.compare-card-before .compare-tag {
  background: var(--red);
  color: var(--ink);
}

.compare-card-after .compare-tag {
  background: var(--acid);
}

.compare-files {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.9;
}

.compare-x {
  color: var(--red-deep);
  font-weight: 700;
}

.compare-v {
  font-weight: 700;
}

.compare-sheet {
  border: 2px solid var(--ink);
  font-family: var(--font-mono);
  font-size: 11px;
}

.compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.8fr;
}

.compare-row > span {
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 6px 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.compare-row > span:last-child {
  border-right: 0;
}

.compare-row:last-child > span {
  border-bottom: 0;
}

.compare-row-head > span {
  background: var(--paper-deep);
  font-weight: 700;
  text-transform: uppercase;
}

.cell-bad {
  background: rgba(255, 77, 66, 0.16);
  font-weight: 700;
}

.cell-ok {
  background: rgba(199, 255, 46, 0.35);
  font-weight: 700;
}

.compare-meta {
  margin: auto 0 0;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(13, 17, 16, 0.72);
}

.compare-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.compare-arrow b {
  border: 2px solid var(--paper);
  padding: 8px 10px;
  background: var(--acid);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.compare-arrow span {
  color: var(--acid);
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
}

/* Mobile navigation: a brutalist details/summary burger, same +/- language as the FAQ. */
.mobile-nav {
  display: none;
  position: relative;
  justify-self: end;
}

.mobile-nav summary {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--acid);
  background: var(--ink);
  color: var(--acid);
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  list-style: none;
  cursor: pointer;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav summary::before {
  content: "+";
}

.mobile-nav[open] summary {
  background: var(--acid);
  color: var(--ink);
}

.mobile-nav[open] summary::before {
  content: "\2212";
}

.mobile-nav summary:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 4px;
}

.mobile-nav-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  min-width: 224px;
  border: 2px solid var(--acid);
  background: var(--ink);
}

.mobile-nav-panel a {
  display: flex;
  align-items: center;
  min-height: 48px;
  border-bottom: 1px solid rgba(247, 250, 244, 0.18);
  padding: 0 16px;
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.mobile-nav-panel a:last-child {
  border-bottom: 0;
}

.mobile-nav-panel a:hover,
.mobile-nav-panel a:focus-visible {
  color: var(--acid);
}

/* Homepage hero terminal: the product story instead of pure abstraction. */
.hero-terminal {
  position: absolute;
  right: clamp(28px, 5vw, 72px);
  bottom: clamp(56px, 11vh, 118px);
  z-index: 2;
  width: min(31vw, 460px);
}

.hero-terminal .demo-terminal-bar span {
  font-size: 11px;
}

.hero-terminal .demo-terminal-body {
  padding: 16px 16px 20px;
  font-size: 13px;
  line-height: 1.7;
}

@media (min-width: 921px) and (max-width: 1099px) {
  .hero-terminal {
    width: min(36vw, 400px);
  }

  .hero-copy {
    max-width: 52vw;
  }
}

@media (max-width: 920px) {
  .hero-terminal {
    display: none;
  }
}

/* Manifesto band: the positioning line, full width instead of buried microcopy. */
.manifesto-band {
  border-bottom: 2px solid var(--ink);
  padding: clamp(30px, 5vw, 54px) clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: var(--paper);
}

.manifesto-band p {
  width: min(1180px, 100%);
  margin: 0 auto;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(20px, 3.2vw, 42px);
  line-height: 1.1;
  text-transform: uppercase;
  text-wrap: balance;
}

.manifesto-accent {
  display: block;
  color: var(--acid);
}

/* Landing-page hero pictograms: one glyph per topic, desktop only. */
.solution-hero {
  position: relative;
}

.solution-glyph {
  position: absolute;
  right: clamp(28px, 6vw, 110px);
  bottom: clamp(44px, 9vh, 90px);
  width: clamp(150px, 15vw, 215px);
  height: auto;
}

@media (min-width: 921px) and (max-width: 1099px) {
  .solution-glyph {
    width: clamp(120px, 13vw, 150px);
  }
}

@media (max-width: 920px) {
  .solution-glyph {
    display: none;
  }
}

/* Pressed state: buttons sink instead of lifting, so taps get feedback too. */
.button:active,
.header-cta:active,
.file-upload-button:active {
  transform: translateY(2px);
  box-shadow: none;
}

/* Sprint timeline: acid day chips on a connecting line. */
.timeline {
  position: relative;
  isolation: isolate;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 46px;
  z-index: -1;
  width: 2px;
  background: var(--ink);
}

.timeline li > span {
  justify-self: start;
  align-self: start;
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--ink);
  padding: 6px 10px;
  background: var(--acid);
  font-size: 13px;
}

@media (max-width: 920px) {
  .example-demo,
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .example-demo {
    margin-top: 32px;
  }

  .compare-arrow {
    flex-direction: row;
  }

  .compare-arrow span {
    transform: rotate(90deg);
    font-size: 34px;
  }
}

@media (max-width: 620px) {
  .mobile-nav {
    display: block;
  }

  .header-spacer {
    display: none;
  }

  .demo-terminal-body {
    font-size: 12.5px;
  }

  .example-demo,
  .compare-grid {
    margin-top: 24px;
  }

  .sprint-demo {
    margin-top: 24px;
  }
}

/* Card → Contact app pages */
.cardcontact-page {
  overflow-x: clip;
  background: var(--paper);
}

.cardcontact-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.cardcontact-hero {
  min-height: 86vh;
  display: flex;
  align-items: center;
  padding: 132px clamp(18px, 5vw, 72px) 78px;
  background:
    linear-gradient(135deg, rgba(24, 215, 208, 0.22), transparent 44%),
    repeating-linear-gradient(0deg, rgba(247, 250, 244, 0.06) 0 1px, transparent 1px 84px),
    var(--ink);
  color: var(--paper);
}

.cardcontact-hero h1 {
  max-width: 940px;
  margin-bottom: 28px;
}

.cardcontact-hero-copy {
  max-width: 680px;
  margin-bottom: 34px;
  color: rgba(247, 250, 244, 0.86);
  font-size: clamp(18px, 2.1vw, 24px);
}

.cardcontact-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.cardcontact-signals li {
  border: 1px solid rgba(247, 250, 244, 0.3);
  padding: 8px 10px;
  background: rgba(247, 250, 244, 0.08);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
}

.cardcontact-updated {
  margin: 28px 0 0;
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(247, 250, 244, 0.72);
}

.cardcontact-section {
  padding: clamp(72px, 10vw, 136px) clamp(18px, 5vw, 72px);
}

.cardcontact-split,
.cardcontact-feedback-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}

.cardcontact-heading h2,
.cardcontact-feedback h2,
.cardcontact-policy-heading h2 {
  max-width: 650px;
  margin-bottom: 0;
  font-size: clamp(36px, 4.4vw, 58px);
}

.cardcontact-how {
  background: var(--paper-deep);
}

.cardcontact-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--ink);
  list-style: none;
}

.cardcontact-steps li {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  padding: 24px 0;
  border-bottom: 2px solid var(--ink);
}

.cardcontact-steps > li > span,
.cardcontact-policy-cards > article > span {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
}

.cardcontact-steps h3,
.cardcontact-policy-cards h3 {
  margin-bottom: 8px;
  font-size: clamp(22px, 2.6vw, 30px);
}

.cardcontact-steps p,
.cardcontact-policy-cards p,
.cardcontact-feedback-copy > p,
.cardcontact-policy-copy p {
  font-size: clamp(17px, 2vw, 21px);
}

.cardcontact-steps p {
  margin-bottom: 0;
}

.cardcontact-faq-section,
.cardcontact-policy-detail {
  background: var(--ink);
  color: var(--paper);
}

.cardcontact-faq-section .section-kicker,
.cardcontact-policy-detail .section-kicker {
  color: var(--acid);
}

.cardcontact-faq-list {
  display: grid;
  gap: 12px;
}

.cardcontact-faq-item {
  border: 2px solid rgba(247, 250, 244, 0.86);
  background: var(--ink-soft);
}

.cardcontact-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  color: var(--acid);
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}

.cardcontact-faq-item summary::-webkit-details-marker {
  display: none;
}

.cardcontact-faq-item summary::after {
  flex: 0 0 auto;
  content: "+";
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 2px solid var(--paper);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 20px;
}

.cardcontact-faq-item[open] summary::after {
  content: "−";
  background: var(--cyan);
  color: var(--ink);
}

.cardcontact-faq-item summary:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.cardcontact-faq-item p {
  max-width: 680px;
  margin: 0;
  padding: 0 20px 22px;
  color: rgba(247, 250, 244, 0.84);
  font-size: 17px;
}

.cardcontact-faq-item a,
.cardcontact-direct-contact a,
.cardcontact-policy-copy a {
  border-bottom: 2px solid currentColor;
}

.cardcontact-feedback {
  background: var(--cyan);
}

.cardcontact-feedback-copy > p:not(.section-kicker) {
  max-width: 560px;
}

.cardcontact-direct-contact {
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: 14px !important;
  font-weight: 700;
}

.cardcontact-feedback-copy,
.cardcontact-request-form {
  min-width: 0;
}

.cardcontact-request-form {
  max-width: 640px;
  margin: 0;
}

.cardcontact-policy-intro {
  background: var(--paper-deep);
}

.cardcontact-policy-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.cardcontact-policy-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.cardcontact-policy-cards article {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
  box-shadow: 8px 8px 0 var(--ink);
}

.cardcontact-policy-cards article:nth-child(2) {
  background: var(--acid);
}

.cardcontact-policy-cards article:nth-child(3) {
  background: var(--cyan);
}

.cardcontact-policy-cards article > span {
  margin-bottom: auto;
}

.cardcontact-policy-cards p {
  margin-bottom: 0;
}

.cardcontact-policy-copy {
  display: grid;
  gap: 20px;
}

.cardcontact-policy-copy p {
  margin-bottom: 0;
}

.cardcontact-policy-detail .cardcontact-policy-copy {
  color: rgba(247, 250, 244, 0.86);
}

@media (max-width: 920px) {
  .cardcontact-split,
  .cardcontact-feedback-grid {
    grid-template-columns: 1fr;
  }

  .cardcontact-policy-cards {
    grid-template-columns: 1fr;
  }

  .cardcontact-policy-cards article {
    min-height: 0;
  }

  .cardcontact-policy-cards article > span {
    margin-bottom: 40px;
  }
}

@media (max-width: 620px) {
  .cardcontact-hero {
    min-height: 0;
    padding: 102px 16px 64px;
  }

  .cardcontact-section {
    padding: 56px 16px;
  }

  .cardcontact-hero h1 {
    font-size: clamp(44px, 14vw, 62px);
  }

  .cardcontact-hero h1 span {
    white-space: normal;
  }

  .cardcontact-heading h2,
  .cardcontact-feedback h2,
  .cardcontact-policy-heading h2 {
    font-size: clamp(30px, 10vw, 46px);
  }

  .cardcontact-steps li {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 12px;
  }

  .cardcontact-faq-item summary {
    gap: 12px;
    padding: 16px;
    font-size: clamp(18px, 7vw, 26px);
  }

  .cardcontact-faq-item p {
    padding: 0 16px 18px;
  }

  .cardcontact-policy-cards article {
    padding: 18px;
  }
}
