:root {
  --bg: oklch(13% 0.018 235);
  --bg-raised: oklch(17% 0.022 235);
  --surface: oklch(20% 0.024 235);
  --surface-muted: oklch(24% 0.026 235);
  --surface-strong: oklch(28% 0.032 235);
  --ink: oklch(96% 0.011 210);
  --ink-soft: oklch(82% 0.025 220);
  --ink-muted: oklch(64% 0.027 220);
  --primary: #00D1DA;
  --primary-strong: #00aeb8;
  --primary-soft: rgb(0 209 218 / 0.16);
  --button-light: oklch(98% 0.005 220);
  --amber: oklch(82% 0.145 82);
  --amber-soft: oklch(30% 0.055 82);
  --copper: oklch(64% 0.15 42);
  --line: oklch(92% 0.015 220 / 0.14);
  --line-strong: oklch(92% 0.018 220 / 0.24);
  --shadow: 0 24px 68px oklch(7% 0.02 235 / 0.38);
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 12px;
  --space-lg: 16px;
  --space-xl: 24px;
  --space-2xl: 32px;
  --space-3xl: 48px;
  --space-4xl: 64px;
  --space-5xl: 96px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink-soft);
  background:
    linear-gradient(180deg, oklch(11% 0.017 235), var(--bg) 30%, oklch(12% 0.018 225));
  font-family: "Inter", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, black, transparent 86%);
}

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

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--amber);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid oklch(82% 0.145 82 / 0.55);
  outline-offset: 3px;
}

.fa {
  font-family: inherit;
  font-style: normal;
  line-height: 1;
}

.fa-fw {
  width: 2.75em;
  text-align: center;
}

.fa-bars::before { content: "☰"; }
.fa-map-marker::before { content: "ADR"; }
.fa-id-card-o::before { content: "ICO"; }
.fa-envelope-o::before { content: "@"; }

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  font-family: "Inter Tight", sans-serif;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 12ch;
  font-size: 5.6rem;
}

h1 span {
  color: var(--primary);
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.2;
}

p {
  margin: 0;
}

p + p {
  margin-top: var(--space-lg);
}

p,
li {
  font-size: 1rem;
  overflow-wrap: break-word;
}

ul,
ol,
dl {
  margin: 0;
}

.container {
  width: calc(100% - 32px);
  max-width: 1240px;
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.header-top {
  color: var(--ink-muted);
  background: oklch(9% 0.018 235);
  border-bottom: 1px solid var(--line);
}

.header-top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  min-height: 38px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
}

.header-top__item,
.header-top__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md) var(--space-lg);
  min-width: 0;
}

.header-top__label {
  color: var(--primary);
  font-weight: 700;
}

.header-top__value {
  color: var(--ink-soft);
  overflow-wrap: anywhere;
}

.header-top a,
.header-top span {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: oklch(12% 0.018 235 / 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  min-height: 72px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  min-height: 44px;
  min-width: 0;
  color: var(--ink);
}

.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: var(--radius-sm);
  color: var(--bg);
  background: var(--primary);
  font-family: "Inter Tight", sans-serif;
  font-weight: 900;
  font-size: 1rem;
}

.brand__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand__text strong,
.footer-brand span:last-child {
  color: var(--ink);
  font-family: "Inter Tight", sans-serif;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.brand__text span {
  display: none;
  max-width: 38ch;
  color: var(--ink-muted);
  font-size: 0.78rem;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.site-navigation {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  margin-left: auto;
}

.top-menu ul {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0;
  list-style: none;
}

.top-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  color: var(--ink-muted);
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}

.top-menu .is-active a,
.top-menu a:hover,
.top-menu a:focus {
  color: var(--ink);
  background: oklch(96% 0.01 130 / 0.07);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  color: var(--ink);
  background: var(--surface);
}

.btn,
.header-cta,
.btn-primary-custom,
.btn-secondary-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  min-height: 46px;
  padding: var(--space-md) var(--space-xl);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.header-cta,
.btn-primary-custom {
  color: oklch(9% 0.018 235);
  background: var(--button-light);
  border-color: var(--button-light);
}

.header-cta:hover,
.header-cta:focus,
.btn-primary-custom:hover,
.btn-primary-custom:focus {
  color: oklch(8% 0.014 235);
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-1px);
}

.btn-secondary-custom {
  color: var(--ink);
  background: oklch(96% 0.01 130 / 0.05);
  border-color: var(--line-strong);
}

.btn-secondary-custom:hover,
.btn-secondary-custom:focus {
  color: var(--ink);
  border-color: var(--primary);
  background: rgb(0 209 218 / 0.12);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--ink);
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    linear-gradient(rgb(0 209 218 / 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgb(0 209 218 / 0.16) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 72%);
}

.hero--home {
  padding: var(--space-5xl) 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.page-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, oklch(10% 0.018 235) 0%, oklch(10% 0.018 235 / 0.88) 42%, oklch(10% 0.018 235 / 0.54) 100%),
    linear-gradient(180deg, transparent 0%, var(--bg) 100%);
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
  filter: saturate(0.9) contrast(1.08);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: var(--space-5xl);
  min-height: auto;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 78ch;
  min-width: 0;
  gap: var(--space-xl);
}

.hero__lead,
.lead-copy,
.page-hero p {
  max-width: 70ch;
  color: var(--ink-soft);
  font-size: 1.18rem;
  line-height: 1.72;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-sm);
}

.eyebrow,
.card-code {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--primary);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 18px rgb(0 209 218 / 0.8);
}

.card-code {
  color: var(--amber);
}

.content-panel,
.info-card,
.service-card,
.service-detail,
.software-preview,
.process-console,
.module-grid article,
.audience-grid article,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: oklch(17% 0.024 235 / 0.86);
  box-shadow: var(--shadow);
}

.check-list,
.detail-list,
.footer-contact,
.footer-links {
  display: grid;
  gap: var(--space-sm);
  padding: 0;
  list-style: none;
}

.footer-links a,
.footer-contact a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
}

.console-row span,
.workflow-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 34px;
  border-radius: var(--radius-sm);
  color: var(--primary);
  background: var(--primary-soft);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  font-weight: 700;
}

.section,
.page-hero {
  position: relative;
  padding: var(--space-5xl) 0;
}

.page-hero {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, oklch(16% 0.026 235), oklch(10% 0.018 235));
}

.page-hero--image {
  min-height: 520px;
}

.page-hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  gap: var(--space-xl);
}

.page-hero h1 {
  max-width: 14ch;
}

.page-hero p {
  max-width: 74ch;
}

.section--plain {
  background: oklch(14% 0.018 235 / 0.78);
}

.section--muted {
  background: oklch(18% 0.022 235 / 0.92);
  border-block: 1px solid var(--line);
}

.section--cta {
  padding-top: var(--space-4xl);
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 78ch;
  gap: var(--space-md);
  margin-bottom: var(--space-3xl);
}

.section-heading--center {
  align-items: center;
  margin-inline: auto;
  text-align: center;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.62fr);
  align-items: end;
  max-width: none;
  gap: var(--space-4xl);
  margin-bottom: var(--space-4xl);
}

.section-heading--split > div {
  display: grid;
  gap: var(--space-md);
}

.section-heading--split p {
  max-width: 48ch;
}

.entry-grid,
.services-grid,
.service-detail-grid,
.module-grid,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
}

.services-grid--featured {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--line);
}

.services-grid--featured .service-card {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.services-grid--featured .service-card--image {
  display: grid;
  grid-template-rows: auto auto minmax(112px, 1fr) auto auto;
  align-items: start;
}

.service-detail-grid {
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}

.info-card,
.service-card,
.service-detail,
.module-grid article,
.audience-grid article {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  min-width: 0;
  min-height: 100%;
  padding: var(--space-xl);
  box-shadow: none;
}

.service-card,
.service-detail,
.module-grid article {
  background: oklch(16% 0.022 235);
}

.info-card:hover,
.service-card:hover,
.service-detail:hover,
.module-grid article:hover,
.audience-grid article:hover {
  border-color: rgb(0 209 218 / 0.42);
  background: oklch(19% 0.028 235);
}

.service-card--image img,
.service-detail--visual img,
.module-grid__image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.service-card--image img {
  align-self: end;
  margin-top: var(--space-md);
}

.module-grid__image {
  padding: 0;
  overflow: hidden;
}

.module-grid__image img {
  height: 100%;
  min-height: 280px;
  border: 0;
  border-radius: 0;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  min-height: 38px;
  margin-top: var(--space-sm);
  color: var(--primary);
  font-weight: 800;
}

.inline-link::after {
  content: "→";
}

.split-layout,
.two-column-copy,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  align-items: start;
  gap: var(--space-4xl);
}

.content-narrow {
  max-width: 76ch;
  min-width: 0;
}

.content-panel {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  min-width: 0;
  padding: var(--space-2xl);
}

.content-panel--accent {
  background: linear-gradient(145deg, oklch(20% 0.032 235), oklch(23% 0.055 82));
}

.content-panel h2 {
  font-size: 2rem;
  line-height: 1.08;
}

.check-list li {
  position: relative;
  padding-inline-start: 30px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.02rem;
  color: var(--primary);
  font-weight: 800;
}

.detail-list {
  padding-left: 1.2rem;
  list-style: disc;
}

.process-console,
.software-preview {
  display: grid;
  gap: var(--space-md);
  min-width: 0;
  padding: var(--space-xl);
}

.console-row,
.workflow-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--space-md);
  min-height: 62px;
  padding: var(--space-md);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: oklch(12% 0.018 235 / 0.72);
}

.console-row {
  grid-template-columns: 48px minmax(0, 1fr);
}

.console-row.is-done span,
.workflow-row.is-done span {
  color: var(--bg);
  background: var(--primary);
}

.console-row.is-active span,
.workflow-row.is-active span {
  color: oklch(10% 0.018 235);
  background: var(--amber);
}

.software-preview__bar {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--line);
}

.software-preview__bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line-strong);
}

.software-preview__bar span:first-child {
  background: var(--copper);
}

.software-preview__bar span:nth-child(2) {
  background: var(--amber);
}

.software-preview__bar strong {
  margin-left: var(--space-sm);
  color: var(--ink);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.85rem;
}

.workflow-row strong {
  color: var(--ink);
  font-size: 0.82rem;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.tag-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: var(--space-sm) var(--space-lg);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: oklch(96% 0.01 130 / 0.05);
  font-weight: 800;
}

.stack-list {
  display: grid;
  gap: var(--space-lg);
}

.stack-list section {
  display: grid;
  gap: var(--space-sm);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--line);
}

.stack-list section:first-child {
  padding-top: 0;
  border-top: 0;
}

.cta-band {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
  overflow: hidden;
  padding: clamp(64px, 8vw, 96px) var(--space-4xl);
  border: 0;
  border-radius: var(--radius-sm);
  color: oklch(9% 0.018 235);
  text-align: center;
  background: var(--primary);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(oklch(9% 0.018 235 / 0.24) 1px, transparent 1px),
    linear-gradient(90deg, oklch(9% 0.018 235 / 0.24) 1px, transparent 1px);
  background-size: 36px 36px;
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band .eyebrow {
  display: none;
}

.cta-band h2 {
  max-width: 20ch;
  color: oklch(9% 0.018 235);
}

.cta-band p {
  max-width: 66ch;
  color: oklch(18% 0.024 235);
  font-size: 1.08rem;
  line-height: 1.65;
}

.cta-band .btn-primary-custom {
  color: var(--button-light);
  background: oklch(9% 0.018 235);
  border-color: oklch(9% 0.018 235);
  min-width: 260px;
}

.cta-band .btn-primary-custom:hover,
.cta-band .btn-primary-custom:focus {
  color: oklch(9% 0.018 235);
  background: var(--button-light);
  border-color: var(--button-light);
}

.contact-layout {
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1fr);
  gap: var(--space-3xl) var(--space-4xl);
}

.contact-info-panel {
  position: sticky;
  top: calc(72px + var(--space-2xl));
}

.contact-note {
  margin-top: 0;
}

.contact-note h3 {
  margin-bottom: var(--space-md);
}

.footer-contact li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: start;
  gap: var(--space-sm);
}

.footer-contact i {
  margin-top: 0.28rem;
  color: var(--primary);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  font-weight: 700;
}

.footer-contact--large li {
  font-size: 1.05rem;
}

.contact-form-wrap,
.contact-form {
  display: grid;
  gap: var(--space-xl);
}

.form-intro {
  display: grid;
  gap: var(--space-md);
  max-width: 52ch;
}

.form-intro h2 {
  font-size: 1.8rem;
  line-height: 1.12;
}

.contact-form {
  max-width: 100%;
  padding: var(--space-2xl);
}

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

.form-row {
  display: grid;
  gap: var(--space-sm);
}

.form-row label,
.checkbox-row {
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  color: var(--ink);
  background: oklch(10% 0.018 235);
  padding: var(--space-md) var(--space-lg);
}

textarea {
  resize: vertical;
}

.checkbox-row {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: var(--space-sm);
  align-items: start;
  font-size: 0.95rem;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 0.25rem;
}

.form-success {
  padding: var(--space-lg);
  border: 1px solid var(--primary);
  border-radius: var(--radius-md);
  color: var(--ink);
  background: var(--primary-soft);
}

.site-footer {
  background: oklch(8% 0.015 235);
  color: var(--ink-muted);
  border-top: 1px solid var(--line);
}

.site-footer a {
  color: var(--ink-soft);
}

.site-footer a:hover,
.site-footer a:focus {
  color: var(--primary);
}

.site-footer h3 {
  color: var(--ink);
  font-size: 1rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(160px, 0.75fr));
  gap: var(--space-3xl);
  padding: var(--space-4xl) 0;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.footer-brand span:last-child {
  color: var(--ink);
}

.footer-note {
  max-width: 62ch;
  font-size: 0.9rem;
}

.site-footer__bottom {
  border-top: 1px solid var(--line);
}

.site-footer__bottom .container {
  display: flex;
  justify-content: space-between;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
  color: var(--ink-muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1120px) {
  h1 {
    font-size: 4.25rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .site-navigation {
    gap: var(--space-md);
  }

  .top-menu a {
    padding-inline: var(--space-sm);
    font-size: 0.8rem;
  }

  .hero__grid,
  .split-layout,
  .two-column-copy,
  .contact-layout,
  .section-heading--split {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    align-items: start;
  }

  .services-grid--featured {
    grid-template-columns: 1fr;
  }

  .services-grid--featured .service-card--image {
    display: flex;
  }

  .contact-info-panel {
    position: static;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .header-top__inner,
  .header-top__item,
  .header-top__meta {
    align-items: flex-start;
    flex-direction: column;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
  }

  .site-header__inner {
    flex-wrap: wrap;
    min-height: 70px;
    padding: var(--space-md) 0;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-navigation {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-lg);
    padding-bottom: var(--space-md);
  }

  .site-navigation.is-open {
    display: flex;
  }

  .top-menu ul {
    flex-direction: column;
    align-items: stretch;
  }

  .top-menu a,
  .header-cta {
    width: 100%;
    white-space: normal;
  }

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

  .hero,
  .section,
  .page-hero {
    padding: var(--space-4xl) 0;
  }

  .hero__grid {
    min-height: auto;
    gap: var(--space-3xl);
  }

  .hero__content {
    width: 100%;
    max-width: 100%;
  }

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

@media (max-width: 680px) {
  h1 {
    max-width: 11ch;
    font-size: 2.85rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.12rem;
  }

  .container {
    width: calc(100% - 24px);
  }

  .hero__lead,
  .lead-copy,
  .page-hero p {
    font-size: 1.05rem;
  }

  .hero__actions,
  .hero__actions .btn,
  .cta-band .btn,
  .content-panel .btn {
    width: 100%;
  }

  .content-panel,
  .contact-form,
  .software-preview,
  .process-console,
  .cta-band {
    padding: var(--space-xl);
  }

  .console-row,
  .workflow-row {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .workflow-row strong {
    grid-column: 2;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom .container {
    flex-direction: column;
  }
}

