@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/inter-400.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/inter-600.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/inter-700.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("assets/fonts/inter-800.ttf") format("truetype");
}

@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/space-grotesk-600.ttf") format("truetype");
}

@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/space-grotesk-700.ttf") format("truetype");
}

:root {
  color-scheme: light;
  --bg: #f7f7f4;
  --surface: #ffffff;
  --surface-2: #eeeeea;
  --text: #0b0b0b;
  --muted: #5d5d58;
  --line: #d7d7d1;
  --ink: #000000;
  --reverse: #ffffff;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
  --radius: 8px;
  --content-max: 1180px;
  --page-gutter: 16px;
  --surface-padding-max: 76px;
  --surface-max: calc(var(--content-max) + (2 * var(--surface-padding-max)));
  --surface-inline: clamp(var(--page-gutter), calc((100% - var(--content-max)) / 2), var(--surface-padding-max));
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #080808;
  --surface: #111111;
  --surface-2: #1b1b1b;
  --text: #f3f3ef;
  --muted: #b7b7ad;
  --line: #2d2d2d;
  --ink: #ffffff;
  --reverse: #000000;
  --shadow: 0 24px 60px rgba(255, 255, 255, 0.04);
  --good: #79e2a8;
  --notice: #f0c56e;
  --risk: #ff8f82;
}

:root {
  --good: #087a43;
  --notice: #8a5b00;
  --risk: #b52d20;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  content: "INKED COMPANY";
  position: fixed;
  left: 50%;
  bottom: 2vh;
  z-index: 0;
  width: max-content;
  transform: translateX(-50%);
  color: color-mix(in srgb, var(--text) 4.5%, transparent);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(5rem, 17vw, 18rem);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: 0;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

body.no-scroll {
  overflow: hidden;
}

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

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

.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

body > header,
body > main,
body > footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(var(--content-max), calc(100% - (2 * var(--page-gutter))));
  margin: 0 auto;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(270px, 46vw);
  overflow: visible;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 46px;
  object-fit: contain;
  object-position: left center;
}

.brand img.logo-dark {
  display: none;
}

.logo-dark {
  display: none;
}

[data-theme="dark"] .logo-light {
  display: block;
  filter: invert(1);
}

[data-theme="dark"] .logo-dark {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 0.9rem;
  margin-left: auto;
}

.nav a:hover,
.footer-links a:hover {
  color: var(--text);
}

.nav a[aria-current="page"] {
  color: var(--text);
  box-shadow: inset 0 -1px currentColor;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-btn,
.menu-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  display: inline-grid;
  place-items: center;
}

.icon-btn svg,
.menu-btn svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.moon {
  display: none;
}

[data-theme="dark"] .sun {
  display: none;
}

[data-theme="dark"] .moon {
  display: block;
}

.menu-btn {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--reverse);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

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

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--text) 58%, transparent);
  outline-offset: 4px;
}

.section {
  width: min(var(--content-max), calc(100% - (2 * var(--page-gutter))));
  margin: 0 auto;
  padding: 96px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  gap: clamp(42px, 4.8vw, 78px);
  align-items: stretch;
  padding-top: 96px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(3rem, 7.8vw, 7.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(2.1rem, 4.4vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.35rem;
  line-height: 1.1;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-panel {
  position: relative;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.hero-visual {
  min-height: clamp(580px, 56vw, 800px);
  align-self: stretch;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--bg) 0%,
    color-mix(in srgb, var(--bg) 88%, transparent) 18%,
    color-mix(in srgb, var(--bg) 42%, transparent) 38%,
    transparent 68%
  );
  pointer-events: none;
}

.mono-image {
  min-height: 360px;
  background-position: center;
  background-size: cover;
  filter: grayscale(1) contrast(1.08);
  transition: filter 240ms ease, transform 240ms ease;
}

.image-card:hover .mono-image,
.hero-panel:hover .mono-image,
.case:hover .mono-image {
  filter: grayscale(0) contrast(1);
  transform: scale(1.015);
}

.hero-image {
  height: 100%;
  min-height: 100%;
  background-image: url("assets/hero-ai-actions.jpg");
  background-position: right center;
}

.panel-copy {
  padding: 24px;
  border-top: 1px solid var(--line);
}

.panel-copy strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.15rem;
}

.panel-copy span,
.muted {
  color: var(--muted);
}

.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.ticker-track {
  width: min(var(--content-max), calc(100% - (2 * var(--page-gutter))));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.section.check-section {
  --bg: #f7f7f4;
  --surface: #ffffff;
  --surface-2: #eeeeea;
  --text: #0b0b0b;
  --muted: #5d5d58;
  --line: #d7d7d1;
  --ink: #000000;
  --reverse: #ffffff;
  --good: #087a43;
  --notice: #8a5b00;
  --risk: #b52d20;
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(30px, 4vw, 52px);
  align-items: start;
  margin: 96px auto;
  border: 1px solid #d7d7d1;
  border-radius: var(--radius);
  background: #ffffff;
  color: #0b0b0b;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
  width: min(var(--surface-max), 100%);
  padding-block: clamp(34px, 6vw, 76px);
  padding-inline: var(--surface-inline);
  scroll-margin-top: 100px;
}

.section.check-page-section {
  margin-top: 54px;
}

.check-intro {
  position: static;
}

.check-workspace {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.check-form,
.check-placeholder,
.check-results {
  padding: clamp(24px, 4vw, 42px);
}

.check-form {
  border-bottom: 1px solid var(--line);
}

.check-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-top: 8px;
}

.check-input-row input {
  min-height: 50px;
}

.check-module-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 22px;
}

.check-module-list span {
  min-height: 84px;
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  padding: 14px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 700;
}

.check-placeholder > p:last-child {
  margin-bottom: 0;
}

.check-status {
  min-height: 1.5em;
  margin: 0;
  color: var(--muted);
}

.check-status[data-state="success"],
.form-note[data-state="success"] {
  color: var(--good);
}

.check-status[data-state="error"],
.form-note[data-state="error"] {
  color: var(--risk);
}

.check-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 30px;
}

.check-summary h2 {
  margin-bottom: 6px;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.check-public-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 28px;
}

.check-public-summary span {
  min-height: 58px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  padding: 13px 15px;
  font-size: 0.88rem;
  font-weight: 700;
}

.score-ring {
  --score: 0deg;
  position: relative;
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--text) var(--score), var(--line) 0);
  color: var(--text);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.score-ring::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: var(--surface);
}

.score-ring::after {
  content: "/100";
  position: absolute;
  bottom: 24px;
  font-family: Inter, sans-serif;
  font-size: 0.68rem;
  color: var(--muted);
}

.score-ring {
  padding-bottom: 17px;
}

.score-ring > * {
  position: relative;
}

.score-ring {
  isolation: isolate;
}

.score-ring::before {
  z-index: -1;
}

.check-result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.check-result-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  padding: 20px;
}

.check-result-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
}

.check-result-header h3 {
  margin: 0;
}

.score-badge {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.check-result-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-result-card li {
  position: relative;
  padding-left: 17px;
}

.check-result-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--good);
}

.check-result-card li[data-state="notice"]::before {
  background: var(--notice);
}

.check-result-card li[data-state="risk"]::before {
  background: var(--risk);
}

.check-result-card li[data-state="unknown"]::before {
  background: var(--muted);
}

.check-result-card li strong,
.check-result-card li span {
  display: block;
}

.ai-visibility-card {
  grid-column: 1 / -1;
  padding: clamp(22px, 4vw, 34px);
}

.ai-visibility-question {
  max-width: 780px;
  margin: 0 0 8px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.14;
}

.ai-visibility-summary {
  max-width: 820px;
  margin: 0;
}

.ai-visibility-measurement {
  display: inline-flex;
  margin: 18px 0 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.ai-visibility-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.ai-visibility-group {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.ai-visibility-group h4 {
  margin: 0 0 16px;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.ai-visibility-group[data-type="issues"] li::before {
  background: var(--risk);
}

.ai-visibility-group[data-type="levers"] li::before {
  background: var(--notice);
}

.ai-visibility-unknowns {
  margin-top: 22px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  color: var(--muted);
  font-size: 0.82rem;
}

.ai-visibility-unknowns summary {
  cursor: pointer;
  font-weight: 800;
}

.ai-visibility-unknowns ul {
  margin-top: 14px;
}

.ai-visibility-unknowns li::before {
  background: var(--muted);
}

.ai-visibility-crawlers {
  margin-top: 22px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.ai-visibility-crawlers summary {
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 800;
}

.ai-visibility-crawlers > p,
.ai-visibility-crawlers li p,
.ai-visibility-crawlers li small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.ai-visibility-crawlers > p {
  max-width: 820px;
  margin: 10px 0 0;
}

.ai-visibility-crawlers ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.ai-visibility-crawlers li {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px;
}

.ai-visibility-crawlers li::before {
  display: none;
}

.ai-visibility-crawlers li > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.ai-visibility-crawlers li p {
  margin: 8px 0 4px;
}

.ai-visibility-crawlers li small {
  display: block;
}

.crawler-state {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 7px;
  font-weight: 800;
}

.check-result-card li strong {
  font-size: 0.9rem;
}

.check-result-card li span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.82rem;
  overflow-wrap: anywhere;
}

.check-limitations {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.check-next-step {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  margin-top: 28px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.check-next-step h2,
.check-next-step p {
  margin-bottom: 6px;
}

.check-lead-panel {
  margin-top: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  padding: clamp(22px, 4vw, 34px);
}

.check-lead-panel > h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}

.check-lead-form {
  margin-top: 26px;
}

.check-lead-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-field {
  display: grid;
  align-content: start;
  gap: 8px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.check-lead-panel textarea {
  min-height: 112px;
}

.check-lead-panel input[readonly] {
  color: var(--muted);
  cursor: default;
}

.check-faq {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 6vw, 84px);
  margin-top: 14px;
  border-top: 1px solid var(--line);
  padding-top: 42px;
}

.check-faq h2 {
  font-size: clamp(1.8rem, 3.4vw, 3.4rem);
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 700;
}

.faq-list p {
  margin: 14px 0 0;
  color: var(--muted);
}

.metric {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}

.metric:first-child {
  border-left: 1px solid var(--line);
}

.metric b {
  display: block;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.metric span {
  color: var(--muted);
  font-size: 0.9rem;
}

.split {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 54px;
  align-items: start;
}

.section-intro {
  position: sticky;
  top: 110px;
}

.grid {
  display: grid;
  gap: 16px;
}

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

.service,
.process-step,
.legal-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 26px;
}

.service {
  min-height: 238px;
}

.service-number {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-number svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.tag {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--muted);
  font-size: 0.78rem;
}

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

.focus-card {
  min-height: 310px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow);
}

.focus-card.wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 0.62fr);
  gap: 36px;
}

.focus-icon {
  width: 84px;
  height: 84px;
  margin-bottom: 32px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--surface-2);
}

.focus-icon svg {
  width: 42px;
  height: 42px;
  stroke: var(--text);
  stroke-width: 1.7;
  fill: none;
}

.focus-card h3 {
  font-size: clamp(1.7rem, 2.1vw, 2.25rem);
  hyphens: none;
  overflow-wrap: normal;
}

.platform-list {
  border-left: 1px solid var(--line);
  padding-left: 36px;
}

.platform-list span {
  display: block;
  margin-bottom: 22px;
  color: var(--muted);
  font-weight: 700;
}

.platform-list p {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--text);
  font-weight: 700;
}

.platform-list b {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--surface-2);
  color: var(--text);
  font-size: 0.82rem;
}

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

.image-card,
.case {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.image-card .mono-image {
  min-height: 280px;
}

.image-automation {
  background-image: url("assets/stock/automation.jpg");
}

.image-workshop {
  background-image: url("assets/stock/workshop.jpg");
}

.image-operations {
  background-image: url("assets/stock/operations.jpg");
}

.caption {
  padding: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.about-teaser {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.74fr);
  gap: 56px;
  align-items: start;
}

.about-teaser-copy .btn {
  margin-top: 22px;
}

.teaser-cards {
  display: grid;
  gap: 16px;
}

.teaser-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 28px;
}

.teaser-card span {
  display: block;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.teaser-card h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.teaser-card p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.process-step b {
  display: inline-grid;
  width: 36px;
  height: 36px;
  margin-bottom: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: "Space Grotesk", Inter, sans-serif;
}

.cases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.case .mono-image {
  min-height: 260px;
}

.image-case-1 {
  background-image: url("assets/stock/case-service.jpg");
}

.image-case-2 {
  background-image: url("assets/stock/case-backoffice.jpg");
}

.image-case-3 {
  background-image: url("assets/stock/case-wissen.jpg");
}

.image-case-4 {
  background-image: url("assets/stock/case-sales.jpg");
}

.case-body {
  padding: 22px;
}

.case-body small {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

.cta-band {
  width: min(var(--surface-max), 100%);
  margin: 0 auto 96px;
  border: 1px solid #d7d7d1;
  border-radius: var(--radius);
  background: #ffffff;
  color: #000000;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
  padding-block: clamp(34px, 6vw, 76px);
  padding-inline: var(--surface-inline);
}

.cta-band .eyebrow {
  color: #85857f;
}

.cta-band .lead {
  color: #50504c;
}

.cta-band .btn {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.check-teaser {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

.check-teaser > div:last-child {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: clamp(26px, 4vw, 42px);
  box-shadow: var(--shadow);
}

.check-teaser-modules {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0;
}

.check-teaser-modules span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.newsletter-banner {
  position: relative;
  z-index: 1;
  width: 100%;
  background: #ffffff;
  color: #080808;
  border-top: 1px solid #d7d7d1;
}

.newsletter-banner-inner {
  width: min(var(--content-max), calc(100% - (2 * var(--page-gutter))));
  margin: 0 auto;
  padding: clamp(54px, 7vw, 88px) 0;
}

.newsletter-banner-copy {
  width: 100%;
  margin-bottom: 32px;
}

.newsletter-banner-copy .eyebrow {
  color: #71716c;
}

.newsletter-banner-copy h2 {
  margin-bottom: 14px;
  color: #080808;
}

.newsletter-banner-copy > p:last-child {
  margin: 0;
  color: #50504c;
}

.newsletter-form-row {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr) auto;
  gap: 12px;
  align-items: end;
}

.newsletter-field {
  display: grid;
  gap: 8px;
  color: #080808;
  font-size: 0.82rem;
  font-weight: 800;
}

.newsletter-field b {
  color: #b52d20;
}

.newsletter-form-row input,
.newsletter-form-row .btn {
  min-height: 52px;
}

.newsletter-form-row input {
  border-color: #c9c9c3;
  background: #ffffff;
  color: #080808;
}

.newsletter-form-row input::placeholder {
  color: #777772;
}

.newsletter-form-row .btn {
  border-color: #080808;
  background: #080808;
  color: #ffffff;
  white-space: nowrap;
}

.newsletter-banner .privacy-check {
  color: #50504c;
}

.newsletter-banner .privacy-check a {
  color: #080808;
}

.newsletter-banner .form-note {
  color: #666661;
}

.privacy-check.compact {
  margin-top: 4px;
  font-size: 0.82rem;
}

.newsletter-status-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: radial-gradient(circle at 70% 10%, #252525, transparent 33%), #080808;
}

.newsletter-status-card {
  width: min(800px, 100%);
  border: 1px solid #2d2d2d;
  border-radius: var(--radius);
  background: #111;
  color: #f4f4ef;
  padding: clamp(32px, 6vw, 68px);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
}

.newsletter-status-card .brand {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-bottom: 42px;
}

.newsletter-status-card .brand img {
  width: min(330px, 88%);
  height: auto;
  max-height: none;
  filter: invert(1);
}

.newsletter-status-card h1 {
  margin-bottom: 22px;
  max-width: 100%;
  font-size: clamp(2.35rem, 6vw, 4.75rem);
  line-height: 0.98;
  overflow-wrap: break-word;
  hyphens: auto;
}

.newsletter-status-card .lead {
  color: #a4a49c;
}

.newsletter-status-card .btn {
  margin-top: 12px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 28px;
}

.contact-card a {
  border-bottom: 1px solid currentColor;
}

.contact-page-hero {
  padding-top: clamp(76px, 10vw, 132px);
  padding-bottom: 34px;
}

.contact-page-form {
  padding-top: 34px;
}

.text-link {
  border-bottom: 1px solid currentColor;
  font-weight: 700;
}

.editorial-link {
  display: inline-block;
  margin-top: 20px;
}

.editorial-hero {
  padding-top: clamp(88px, 10vw, 144px);
  padding-bottom: clamp(72px, 9vw, 124px);
  border-bottom: 1px solid var(--line);
}

.editorial-hero h1 {
  margin-bottom: clamp(36px, 5vw, 72px);
}

.editorial-deck {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(260px, 0.58fr);
  gap: clamp(42px, 7vw, 104px);
  align-items: start;
}

.editorial-deck p {
  margin: 0;
}

.marketing-chapter {
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) minmax(0, 1fr);
  gap: clamp(48px, 8vw, 124px);
  border-top: 1px solid var(--line);
}

.chapter-marker span {
  display: block;
  margin-bottom: 26px;
  color: color-mix(in srgb, var(--text) 22%, transparent);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(4.8rem, 10vw, 9.4rem);
  font-weight: 700;
  line-height: 0.78;
}

.chapter-copy h2 {
  margin-bottom: 26px;
}

.chapter-copy > .lead {
  margin-bottom: 40px;
}

.chapter-offset .chapter-copy {
  margin-left: clamp(0px, 5vw, 76px);
}

.topic-lines,
.project-fields {
  list-style: none;
  margin: 0;
  padding: 0;
}

.topic-lines {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 34px;
  margin-bottom: 38px;
  border-bottom: 1px solid var(--line);
}

.topic-lines li {
  border-top: 1px solid var(--line);
  padding: 15px 0;
  font-weight: 700;
}

.marketing-example,
.human-note {
  margin: 42px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

.marketing-example p:last-child,
.human-note {
  color: var(--muted);
}

.home-projects {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-projects-header,
.projects-section-header {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
}

.home-projects-header {
  margin-bottom: 58px;
}

.home-project-list {
  width: min(860px, 78%);
  margin-left: auto;
  border-bottom: 1px solid var(--line);
}

.home-project-entry {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 26px;
  border-top: 1px solid var(--line);
  padding: 30px 0;
}

.home-project-entry > span,
.project-index {
  color: var(--muted);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 700;
}

.home-project-entry h3 {
  margin-bottom: 6px;
  font-size: clamp(2rem, 4vw, 4rem);
}

.home-project-entry p {
  margin: 0;
  color: var(--muted);
}

.home-projects > .btn {
  margin-top: 42px;
}

[data-theme="dark"] .home-projects > .btn.secondary {
  border-color: #ffffff;
  background: #ffffff;
  color: #000000;
}

[data-theme="dark"] .home-projects > .btn.secondary:hover {
  border-color: #e8e8e3;
  background: #e8e8e3;
  color: #000000;
}

[data-theme="dark"] .home-projects > .btn.secondary:focus-visible {
  outline-color: rgba(255, 255, 255, 0.78);
}

.projects-hero .lead {
  font-size: clamp(1.2rem, 2.3vw, 1.8rem);
}

.current-projects {
  padding-top: clamp(72px, 9vw, 124px);
}

.projects-section-header {
  display: block;
  margin-bottom: clamp(64px, 9vw, 126px);
}

.project-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(72px, 0.18fr) minmax(250px, 0.62fr) minmax(320px, 1fr);
  gap: clamp(30px, 5vw, 78px);
  align-items: start;
  border-top: 1px solid var(--line);
  padding: clamp(44px, 7vw, 92px) 0;
}

.project-feature:last-child {
  border-bottom: 1px solid var(--line);
}

.project-feature-secondary {
  width: 100%;
  margin-left: 0;
}

.project-index {
  color: color-mix(in srgb, var(--text) 28%, transparent);
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.82;
}

.project-title-block h3 {
  margin: 0;
  font-size: clamp(2.8rem, 4.5vw, 3.8rem);
  line-height: 0.82;
  overflow-wrap: normal;
}

.project-description > p:not(.lead) {
  color: var(--muted);
}

.project-market {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
  margin: 26px 0 0;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  color: var(--muted);
}

.project-market span {
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 32px;
}

.project-fields li {
  border-bottom: 1px solid var(--line);
  padding-bottom: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.selected-work-gallery {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 1fr;
  gap: 16px;
}

/* Visual finish: weniger gleichförmige Karten, mehr redaktionelle Linien und Rhythmus. */
#verbessern .services {
  gap: 0 30px;
  border-bottom: 1px solid var(--line);
}

#verbessern .service {
  min-height: 0;
  border-width: 1px 0 0;
  border-radius: 0;
  background: transparent;
  padding: 30px 0 34px;
}

.teaser-cards {
  gap: 0;
  border-top: 1px solid var(--line);
}

.teaser-card {
  border-width: 0 0 1px;
  border-radius: 0;
  background: transparent;
  padding: 28px 0;
}

.process {
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-step {
  border-width: 0 0 0 1px;
  border-radius: 0;
  background: transparent;
}

.process-step:first-child {
  border-left: 0;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(360px, 0.9fr);
  gap: clamp(84px, 8vw, 132px);
  align-items: stretch;
  padding-top: 96px;
}

.about-portrait {
  margin: 0;
  background: #000;
  align-self: stretch;
  min-height: clamp(560px, 56vw, 780px);
  overflow: hidden;
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.08);
  transition: filter 240ms ease, transform 240ms ease;
}

.about-portrait:hover img {
  filter: grayscale(0) contrast(1);
  transform: scale(1.015);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.52fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.about-sticky {
  position: sticky;
  top: 110px;
}

.about-text {
  display: grid;
  gap: 18px;
}

.about-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: clamp(24px, 4vw, 42px);
}

.about-block h2 {
  font-size: clamp(1.75rem, 3vw, 3rem);
}

.about-block p:last-child {
  margin-bottom: 0;
}

.about-block p,
.quote-band cite {
  color: var(--muted);
}

.quote-band {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #000;
  color: #fff;
  padding: clamp(38px, 7vw, 82px);
  text-align: center;
}

.quote-band p {
  margin-bottom: 8px;
  font-size: clamp(1.15rem, 2vw, 1.75rem);
  font-style: italic;
  font-weight: 700;
}

.quote-band cite {
  font-style: normal;
  color: rgba(255, 255, 255, 0.82);
}

.about-skills {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: clamp(24px, 4vw, 42px);
}

.about-skills h2 {
  font-size: clamp(1.75rem, 3vw, 3rem);
}

.skill-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.skill-card {
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  padding: 22px;
}

.skill-card span {
  display: block;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.skill-card h3 {
  font-size: 1.24rem;
}

.skill-card p {
  margin-bottom: 0;
  color: var(--muted);
}

form {
  display: grid;
  gap: 12px;
}

.required-note {
  justify-self: end;
  margin: 0 0 2px;
  color: var(--muted);
  font-size: 0.84rem;
}

.field-label {
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
}

.field-label span,
.privacy-check b,
.captcha-check span::after {
  color: var(--muted);
}

input:not([type="checkbox"]),
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  padding: 14px 15px;
  font: inherit;
  font-size: max(1rem, 16px);
}

input:required:invalid:not(:placeholder-shown),
textarea:required:invalid:not(:placeholder-shown) {
  border-color: color-mix(in srgb, var(--text) 46%, var(--line));
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.privacy-check,
.captcha-check {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.privacy-check {
  grid-template-columns: 22px 1fr;
  align-items: start;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--text);
}

.privacy-check a {
  color: var(--text);
  border-bottom: 1px solid currentColor;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.reveal-list {
  display: grid;
  gap: 14px;
  margin: 0 0 32px;
}

.reveal-row {
  display: grid;
  grid-template-columns: minmax(110px, 0.3fr) minmax(210px, 1fr);
  gap: 14px;
  align-items: center;
}

.reveal-row > span {
  color: var(--muted);
  font-weight: 700;
}

.reveal-button,
.inline-reveal-button {
  width: fit-content;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.reveal-button {
  padding: 11px 18px;
}

.inline-reveal-button {
  display: inline-flex;
  margin: 0 4px;
  padding: 5px 10px;
  vertical-align: baseline;
}

.reveal-button:hover,
.inline-reveal-button:hover {
  border-color: var(--text);
}

.reveal-output,
.inline-reveal-output {
  color: var(--text);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.42;
  transform: none;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 34px 0;
}

.footer-shell {
  width: min(var(--content-max), calc(100% - (2 * var(--page-gutter))));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.footer-button:hover {
  color: var(--text);
}

.cookie-banner {
  position: fixed;
  right: max(18px, calc((100vw - 1180px) / 2));
  bottom: 18px;
  z-index: 50;
  width: min(620px, calc(100vw - 36px));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  color: var(--text);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  padding: 24px;
}

.cookie-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 2.8vw, 2.3rem);
}

.cookie-copy p {
  color: var(--muted);
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: var(--bg);
  color: var(--muted);
}

.cookie-option input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--ink);
}

.cookie-option span {
  flex: 1;
}

.cookie-option strong {
  display: block;
  color: var(--text);
}

.cookie-option.fixed {
  opacity: 0.82;
}

.cookie-note {
  margin: 14px 0 0;
  font-size: 0.92rem;
}

.cookie-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 12px 0 0;
}

.cookie-links a {
  border-bottom: 1px solid currentColor;
  color: var(--text);
  font-weight: 700;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 20px;
}

.legal-hero {
  padding-top: 72px;
  padding-bottom: 52px;
}

.legal-content {
  width: min(var(--content-max), calc(100% - (2 * var(--page-gutter))));
  margin: 0 auto;
  padding-bottom: 96px;
}

.legal-content > * {
  max-width: 900px;
}

.transparency-hero {
  min-height: 420px;
}

.transparency-content {
  display: grid;
  gap: 16px;
  position: relative;
}

.legal-content h2 {
  font-size: clamp(1.55rem, 2.5vw, 2.4rem);
  margin-top: 42px;
}

.legal-box h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.notice {
  border-left: 3px solid var(--ink);
  padding: 16px 18px;
  background: var(--surface);
  color: var(--muted);
}

@media (max-width: 1100px) {
  .nav {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: var(--bg);
    padding: 14px 24px 24px;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .menu-btn {
    display: inline-grid;
  }

  .header-actions .btn {
    display: none;
  }

  .check-lead-grid {
    grid-template-columns: 1fr;
  }

  .check-lead-grid .form-field.full {
    grid-column: auto;
  }
}

@media (max-width: 900px) {
  .nav {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: var(--bg);
    padding: 14px 24px 24px;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .menu-btn {
    display: inline-grid;
  }

  .header-actions .btn {
    display: none;
  }

  .hero,
  .about-hero,
  .about-layout,
  .about-teaser,
  .check-teaser,
  .split,
  .contact-grid,
  .check-section,
  .check-faq {
    grid-template-columns: 1fr;
  }

  .section-intro,
  .about-sticky,
  .check-intro {
    position: static;
  }

  .hero-visual {
    margin-left: 0;
  }

  .check-module-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ticker-track,
  .process,
  .cases,
  .focus-grid,
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .focus-card.wide {
    grid-column: span 2;
  }

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

  .ai-visibility-groups,
  .ai-visibility-crawlers ul {
    grid-template-columns: 1fr;
  }

  .editorial-deck,
  .marketing-chapter,
  .home-projects-header,
  .projects-section-header,
  .project-feature {
    grid-template-columns: 1fr;
  }

  .chapter-offset .chapter-copy {
    margin-left: 0;
  }

  .home-project-list,
  .project-feature-secondary {
    width: 100%;
  }

  .project-feature {
    gap: 28px;
  }

  .project-title-block h3 {
    font-size: clamp(3.6rem, 12vw, 6rem);
  }

  .newsletter-form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .newsletter-form-row .btn {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 620px) {
  :root {
    --page-gutter: 11px;
  }

  .section {
    padding: 68px 0;
  }

  .editorial-hero {
    padding-top: 72px;
    padding-bottom: 68px;
  }

  .topic-lines {
    grid-template-columns: 1fr;
  }

  .chapter-marker span {
    margin-bottom: 18px;
    font-size: 4.6rem;
  }

  .home-projects-header,
  .projects-section-header {
    gap: 18px;
  }

  .home-project-entry {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
  }

  .project-feature-secondary {
    margin-left: 0;
  }

  .process {
    border-bottom: 0;
  }

  .process-step,
  .process-step:first-child {
    border-width: 0 0 1px;
  }

  .section.check-section {
    margin: 68px auto;
    padding-block: 32px;
  }

  .hero {
    padding-top: 58px;
  }

  h1 {
    font-size: clamp(2.7rem, 16vw, 4.4rem);
    hyphens: auto;
    overflow-wrap: anywhere;
  }

  .ticker-track,
  .process,
  .cases,
  .focus-grid,
  .skill-grid,
  .image-grid {
    grid-template-columns: 1fr;
  }

  .focus-card.wide {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .platform-list {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 24px;
  }

  .captcha-check {
    grid-template-columns: 1fr;
  }

  .reveal-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .metric,
  .metric:first-child {
    border-left: 1px solid var(--line);
  }

  .footer-shell {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-banner {
    right: 11px;
    bottom: 11px;
    width: calc(100vw - 22px);
    padding: 18px;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions .btn {
    width: 100%;
  }

  .check-input-row,
  .newsletter-form-row,
  .check-result-grid,
  .check-next-step,
  .check-public-summary,
  .check-lead-grid {
    grid-template-columns: 1fr;
  }

  .form-field.full {
    grid-column: auto;
  }

  .check-input-row .btn,
  .newsletter-form-row .btn,
  .check-next-step .btn {
    width: 100%;
  }

  .newsletter-form-row .btn {
    grid-column: auto;
  }

  .check-module-list {
    grid-template-columns: 1fr;
  }

  .check-summary {
    grid-template-columns: 1fr;
  }

  .newsletter-status-page {
    padding: 12px;
  }

  .newsletter-status-card {
    padding: 28px 24px;
  }

  .newsletter-status-card h1 {
    font-size: clamp(2.15rem, 11vw, 3.1rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
