:root {
  --ink: #0d1110;
  --ink-soft: #202724;
  --paper: #f7faf4;
  --paper-deep: #e6efe4;
  --acid: #c7ff2e;
  --cyan: #18d7d0;
  --red: #ff4d42;
  --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: "Arial Black", Arial, sans-serif;
  --font-body: Arial, Helvetica, sans-serif;
  --font-mono: "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);
}

.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(--paper);
}

.hero-solution-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  width: min(760px, 100%);
  margin-top: 26px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-solution-links a {
  border-bottom: 1px solid rgba(247, 250, 244, 0.58);
  color: var(--paper);
  padding-bottom: 3px;
  transition: color 160ms ease, border-color 160ms ease;
}

.hero-solution-links a:hover {
  border-color: var(--acid);
  color: var(--acid);
}

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

.hero-edge {
  position: absolute;
  right: clamp(18px, 4vw, 54px);
  bottom: 22px;
  z-index: 2;
  max-width: 390px;
  border-left: 4px solid var(--cyan);
  padding-left: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(247, 250, 244, 0.76);
}

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

.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 {
  container-type: inline-size;
  min-height: 320px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
  box-shadow: 8px 8px 0 var(--ink);
}

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

.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-mono);
  font-size: 14px;
}

.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;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

.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 {
  margin: 14px 0 0;
  font-family: var(--font-mono);
  font-size: 12px;
  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-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;
  }

  .nav-links {
    display: none;
    justify-content: center;
    gap: 14px;
    font-size: 11px;
  }

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

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

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

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

  .hero-edge {
    left: clamp(18px, 5vw, 72px);
    right: clamp(18px, 5vw, 72px);
    max-width: none;
  }
}

@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: 7px 9px;
    font-size: 10px;
  }

  .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 {
    grid-template-columns: auto 1fr;
    gap: 8px;
  }

  .nav-links {
    display: none;
  }

  .header-cta {
    grid-column: 2;
  }

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

.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(--paper);
}

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

.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-builds-section {
  background: var(--paper-deep);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.example-builds-heading {
  max-width: 780px;
}

.example-builds-heading > p:last-child {
  max-width: 620px;
  margin: 0;
  font-size: clamp(17px, 2vw, 22px);
}

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

.example-build-preview {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  align-items: flex-start;
  border: 2px solid var(--ink);
  padding: 22px;
  background: var(--white);
  box-shadow: 8px 8px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

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

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

.example-build-preview .card-index {
  margin-bottom: 44px;
}

.example-build-preview h3 {
  margin-bottom: 16px;
}

.example-build-preview > span:not(.card-index) {
  font-family: var(--font-body);
  font-size: 18px;
}

.example-build-preview b {
  margin-top: auto;
  padding-top: 28px;
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
}

.example-build-preview:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 var(--ink);
}

.example-build-preview:focus-visible {
  outline: 4px solid var(--red);
  outline-offset: 5px;
}

.example-builds-link {
  margin-top: 42px;
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.example-builds-link:hover {
  box-shadow: 7px 7px 0 var(--acid);
}

.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);
  padding: 24px;
  background: var(--white);
  box-shadow: 8px 8px 0 var(--ink);
}

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

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

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

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

.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-builds-preview-grid,
  .example-build-grid {
    grid-template-columns: 1fr;
  }

  .example-build-preview {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .example-build-preview,
  .example-build-card {
    padding: 18px;
  }

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

  .example-build-preview b {
    padding-top: 22px;
  }
}
