:root {
  --ink: #071211;
  --ink-soft: #18302e;
  --surface: #f7faf8;
  --surface-strong: #ffffff;
  --muted: #60706d;
  --line: #dbe4df;
  --teal: #007f78;
  --teal-dark: #005f5a;
  --mint: #9cf2c8;
  --lime: #d7ff6a;
  --amber: #f2b84b;
  --radius-sm: 6px;
  --radius-md: 8px;
  --shadow: 0 18px 60px rgba(7, 18, 17, 0.12);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

body.wizard-open {
  overflow: hidden;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: var(--radius-sm);
  background: var(--lime);
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 700;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px max(24px, calc((100vw - var(--max-width)) / 2));
  color: #ffffff;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    padding 180ms ease;
}

.site-header.is-scrolled {
  border-bottom: 1px solid rgba(219, 228, 223, 0.75);
  background: rgba(247, 250, 248, 0.93);
  color: var(--ink);
  backdrop-filter: blur(18px);
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  color: var(--mint);
}

.is-scrolled .brand-mark {
  border-color: rgba(0, 127, 120, 0.3);
  background: rgba(0, 127, 120, 0.08);
  color: var(--teal);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  color: currentColor;
  font-size: 0.93rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  outline: none;
  background: rgba(156, 242, 200, 0.16);
}

.site-nav .nav-contact {
  margin-left: 4px;
  background: var(--lime);
  color: var(--ink);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius-sm);
  padding: 2px;
}

.language-switcher button {
  min-width: 42px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: currentColor;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 850;
  padding: 7px 9px;
}

.language-switcher button:hover,
.language-switcher button:focus-visible {
  outline: none;
  background: rgba(156, 242, 200, 0.16);
}

.language-switcher button.is-active {
  background: var(--lime);
  color: var(--ink);
}

.is-scrolled .language-switcher,
.policy-nav .language-switcher {
  border-color: var(--line);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: 88svh;
  overflow: hidden;
  background: #071211;
  color: #ffffff;
}

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

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

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(7, 18, 17, 0.98) 0%, rgba(7, 18, 17, 0.82) 38%, rgba(7, 18, 17, 0.3) 100%),
    radial-gradient(circle at 72% 20%, rgba(215, 255, 106, 0.16), transparent 28%),
    radial-gradient(circle at 70% 78%, rgba(0, 127, 120, 0.26), transparent 34%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max-width), calc(100% - 48px));
  margin: auto;
  padding: 112px 0 70px;
}

.eyebrow,
.section-kicker {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--mint);
}

.hero h1 {
  max-width: 820px;
  margin-top: 18px;
  font-size: clamp(2.4rem, 6vw, 5.75rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  padding: 13px 18px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.button:hover,
.button:focus-visible {
  outline: none;
  transform: translateY(-1px);
}

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

.button-primary:hover,
.button-primary:focus-visible {
  background: #e4ff8e;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.14);
}

.hero-metrics {
  display: grid;
  max-width: 650px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 44px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.hero-metrics div {
  padding: 16px;
  background: rgba(7, 18, 17, 0.62);
}

.hero-metrics dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
  font-weight: 750;
  text-transform: uppercase;
}

.hero-metrics dd {
  margin: 5px 0 0;
  color: #ffffff;
  font-size: 1.12rem;
  font-weight: 850;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--surface-strong);
}

.strip-item {
  min-height: 78px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  color: var(--ink-soft);
  font-weight: 850;
  text-align: center;
}

.strip-item:last-child {
  border-right: 0;
}

.section {
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 96px 0;
}

.intro-grid,
.section-heading,
.ai-layout,
.process-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 72px;
  align-items: start;
}

.section h2 {
  margin-top: 12px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.intro-section h2,
.contact-section h2 {
  line-height: 1.12;
}

.contact-section p {
  line-height: 1.7;
}

.intro-copy,
.section-heading > p,
.section-lede,
.process-copy p,
.contact-section p {
  color: var(--muted);
  font-size: 1.05rem;
}

.intro-copy {
  display: grid;
  gap: 18px;
  padding-top: 38px;
}

.services-section {
  padding-top: 24px;
}

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

.section-heading > p {
  padding-top: 42px;
}

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

.service-card {
  min-height: 260px;
  padding: 26px;
  background: var(--surface-strong);
}

.card-number {
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 900;
}

.service-card h3 {
  margin-top: 58px;
  font-size: 1.38rem;
  line-height: 1.12;
}

.service-card p {
  margin-top: 14px;
  color: var(--muted);
}

.service-card-featured {
  background: var(--ink);
  color: #ffffff;
}

.service-card-featured .card-number,
.service-card-featured p {
  color: var(--mint);
}

.service-card-privacy {
  background: #edf7f1;
}

.ai-section {
  width: 100%;
  max-width: none;
  padding: 104px max(24px, calc((100vw - var(--max-width)) / 2));
  background: #eaf3ee;
}

.section-lede {
  margin-top: 22px;
}

.insight-panel {
  border: 1px solid rgba(7, 18, 17, 0.12);
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 16px 18px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.panel-header span:last-child {
  color: var(--teal);
}

.pipeline {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.pipeline-step {
  display: grid;
  grid-template-columns: 46px minmax(145px, 0.8fr) minmax(220px, 1.2fr);
  gap: 14px;
  align-items: center;
  padding: 18px;
  background: var(--surface-strong);
}

.pipeline-step span {
  color: var(--teal);
  font-weight: 900;
}

.pipeline-step strong {
  display: block;
  font-size: 1.02rem;
}

.pipeline-step small {
  display: block;
  margin-top: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

.results-section {
  padding-bottom: 56px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.result-item {
  padding: 28px 22px 28px 0;
  border-right: 1px solid var(--line);
}

.result-item + .result-item {
  padding-left: 22px;
}

.result-item:last-child {
  border-right: 0;
}

.result-item h3 {
  font-size: 1.15rem;
}

.result-item p {
  margin-top: 10px;
  color: var(--muted);
}

.cases-section {
  padding-top: 40px;
}

.case-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: 28px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(234, 243, 238, 0.96)),
    radial-gradient(circle at top right, rgba(215, 255, 106, 0.22), transparent 30%);
  box-shadow: var(--shadow);
}

.case-showcase-copy h3 {
  margin-top: 10px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.04;
}

.case-showcase-copy > p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.case-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid rgba(0, 127, 120, 0.16);
  border-radius: 999px;
  background: rgba(0, 127, 120, 0.08);
  color: var(--teal);
  padding: 0 12px;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-points {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.case-points div {
  display: flex;
  align-items: center;
  min-height: 52px;
  border: 1px solid rgba(7, 18, 17, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  padding: 0 16px;
  font-weight: 700;
  color: var(--ink-soft);
}

.case-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.case-button-secondary {
  border-color: rgba(7, 18, 17, 0.12);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
}

.case-button-secondary:hover,
.case-button-secondary:focus-visible {
  background: #ffffff;
  border-color: rgba(0, 127, 120, 0.25);
}

.case-preview {
  display: grid;
  align-items: center;
}

.case-preview-window {
  border: 1px solid rgba(7, 18, 17, 0.12);
  border-radius: 18px;
  overflow: hidden;
  background: #071211;
  box-shadow: 0 24px 48px rgba(7, 18, 17, 0.18);
}

.case-preview-topbar {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.case-preview-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
}

.case-preview-screen {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(7, 18, 17, 1) 0%, rgba(7, 18, 17, 0.9) 100%),
    radial-gradient(circle at 80% 0%, rgba(215, 255, 106, 0.16), transparent 28%);
}

.case-preview-screen-chat {
  display: grid;
  gap: 18px;
}

.case-preview-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.case-preview-header-copy {
  display: grid;
  gap: 8px;
}

.case-preview-badge {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  background: rgba(156, 242, 200, 0.16);
  color: var(--mint);
  padding: 0 10px;
  font-size: 0.76rem;
  font-weight: 850;
}

.case-preview-title {
  color: #f2fff9;
  font-size: 1rem;
  line-height: 1.2;
}

.case-preview-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(156, 242, 200, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(242, 255, 249, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
}

.case-preview-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d7ff6a;
  box-shadow: 0 0 0 6px rgba(215, 255, 106, 0.12);
  animation: case-status-pulse 1.6s ease-in-out infinite;
}

.case-preview-chat {
  position: relative;
  height: 236px;
  overflow: hidden;
}

.case-preview-chat-track {
  display: grid;
  gap: 10px;
  align-content: start;
  will-change: transform;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.case-chat-message {
  display: grid;
  gap: 6px;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.case-chat-message.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.case-chat-message-user {
  justify-items: end;
}

.case-chat-role {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(242, 255, 249, 0.44);
}

.case-chat-message-user .case-chat-role {
  color: rgba(215, 255, 106, 0.72);
}

.case-chat-bubble,
.case-preview-metrics div {
  border-radius: 16px;
}

.case-chat-bubble {
  max-width: min(100%, 280px);
  min-height: 52px;
  padding: 14px 16px;
  font-size: 0.88rem;
  line-height: 1.5;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  word-break: break-word;
}

.case-chat-message-user .case-chat-bubble {
  background: linear-gradient(135deg, rgba(215, 255, 106, 0.94), rgba(156, 242, 200, 0.88));
  color: #071211;
}

.case-chat-message-assistant .case-chat-bubble {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(156, 242, 200, 0.18);
  color: rgba(242, 255, 249, 0.88);
}

.case-preview-composer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(156, 242, 200, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(242, 255, 249, 0.66);
  font-size: 0.8rem;
}

.case-preview-typing {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.case-preview-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(215, 255, 106, 0.84);
  animation: case-typing 1s ease-in-out infinite;
}

.case-preview-typing span:nth-child(2) {
  animation-delay: 0.16s;
}

.case-preview-typing span:nth-child(3) {
  animation-delay: 0.32s;
}

.case-preview-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.case-preview-metrics div {
  display: grid;
  gap: 6px;
  min-height: 76px;
  padding: 14px 12px;
  background: rgba(255, 255, 255, 0.08);
}

.case-preview-metrics strong {
  color: #f2fff9;
  font-size: 1rem;
}

.case-preview-metrics span {
  color: rgba(242, 255, 249, 0.66);
  font-size: 0.74rem;
  line-height: 1.35;
}

@keyframes case-status-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(0.86);
    opacity: 0.72;
  }
}

@keyframes case-typing {
  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 0.35;
  }

  40% {
    transform: translateY(-3px);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .case-preview-status-dot,
  .case-preview-typing span {
    animation: none;
  }

  .case-chat-message {
    transition: none;
  }

  .case-preview-chat-track {
    transition: none;
  }
}

.process-section {
  align-items: center;
}

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

.process-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  padding: 18px;
}

.process-list span {
  color: var(--teal);
  font-weight: 900;
}

.process-list p {
  margin-top: 5px;
  color: var(--muted);
}

.trial-section {
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  border-radius: var(--radius-md);
  background: var(--ink);
  color: #ffffff;
  padding: 44px;
}

.trial-section .section-kicker {
  color: var(--mint);
}

.trial-section h2 {
  max-width: 760px;
  margin-top: 12px;
  font-size: clamp(1.8rem, 3.6vw, 3.4rem);
  line-height: 1.16;
}

.trial-section p {
  max-width: 760px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.74);
}

.trial-actions {
  display: grid;
  gap: 14px;
  justify-items: end;
}

.text-link {
  color: var(--mint);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-section {
  align-items: center;
}

.privacy-policy {
  border-top: 1px solid var(--line);
}

.policy-heading {
  max-width: 820px;
}

.policy-heading p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.05rem;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  border: 1px solid var(--line);
  background: var(--line);
}

.policy-grid article {
  min-height: 210px;
  background: var(--surface-strong);
  padding: 24px;
}

.policy-grid h3 {
  font-size: 1.05rem;
}

.policy-grid p {
  margin-top: 10px;
  color: var(--muted);
}

.policy-grid a,
.gdpr-banner a {
  color: var(--teal-dark);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--surface-strong);
}

.contact-card a {
  display: grid;
  gap: 8px;
  padding: 28px;
}

.contact-card a + a {
  border-left: 1px solid var(--line);
}

.contact-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-card strong {
  font-size: clamp(1.18rem, 2vw, 1.65rem);
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.contact-card a:hover,
.contact-card a:focus-visible {
  outline: none;
  background: #edf7f1;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding: 28px max(24px, calc((100vw - var(--max-width)) / 2));
  color: var(--muted);
}

.site-footer p:first-child {
  color: var(--ink);
  font-weight: 900;
}

.policy-page {
  background:
    linear-gradient(180deg, #eef7f2 0%, var(--surface) 340px),
    var(--surface);
}

.policy-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 22px 0;
}

.policy-header .brand {
  color: var(--ink);
}

.policy-header .brand-mark {
  border-color: rgba(0, 127, 120, 0.28);
  background: rgba(0, 127, 120, 0.08);
  color: var(--teal);
}

.policy-nav {
  display: flex;
  gap: 8px;
  align-items: center;
}

.policy-nav a {
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  color: var(--ink-soft);
  font-weight: 850;
}

.policy-nav a:hover,
.policy-nav a:focus-visible {
  outline: none;
  background: rgba(0, 127, 120, 0.1);
}

.policy-hero {
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 76px 0 34px;
}

.policy-hero h1 {
  max-width: 900px;
  margin-top: 14px;
  font-size: clamp(2.5rem, 6vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.policy-hero p:last-child {
  max-width: 760px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.1rem;
}

.policy-page .privacy-policy {
  padding-top: 34px;
}

.gdpr-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(640px, calc(100% - 36px));
  border: 1px solid rgba(219, 228, 223, 0.9);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  padding: 16px;
}

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

.gdpr-reject {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.gdpr-banner.is-hidden {
  display: none;
}

.gdpr-banner strong {
  display: block;
  font-size: 0.95rem;
}

.gdpr-banner p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.9rem;
}

.project-wizard {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  place-items: center;
  padding: 22px;
}

.project-wizard.is-open {
  display: grid;
}

.wizard-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 18, 17, 0.74);
  backdrop-filter: blur(10px);
}

.wizard-dialog {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: calc(100dvh - 44px);
  overflow-y: auto;
  border: 1px solid rgba(156, 242, 200, 0.28);
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  padding: 28px;
}

.wizard-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.wizard-close {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.wizard-dialog h2 {
  margin-top: 18px;
  font-size: clamp(1.18rem, 2.2vw, 1.75rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.wizard-help {
  margin-top: 14px;
  color: var(--muted);
}

.wizard-field {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.wizard-field span {
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 850;
}

.wizard-field textarea {
  width: 100%;
  min-height: 118px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 14px;
  color: var(--ink);
  font: inherit;
}

.wizard-field textarea:focus {
  outline: 3px solid rgba(0, 127, 120, 0.18);
  border-color: var(--teal);
}

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

.wizard-actions {
  position: sticky;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
  padding-top: 14px;
  background: var(--surface-strong);
}

.wizard-back {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.wizard-back:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

.wizard-actions .button:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.wizard-status {
  min-height: 1.35em;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.wizard-status[data-state="success"] {
  color: var(--teal);
}

.wizard-status[data-state="error"] {
  color: #9b2f2f;
}

@media (max-width: 920px) {
  .site-header {
    padding: 14px 20px;
  }

  body.nav-open .site-header {
    border-bottom-color: rgba(156, 242, 200, 0.18);
    background: rgba(7, 18, 17, 0.98);
    color: #ffffff;
    backdrop-filter: none;
  }

  body.nav-open .brand,
  body.nav-open .nav-toggle {
    position: relative;
    z-index: 70;
  }

  body.nav-open .brand-mark {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.1);
    color: var(--mint);
  }

  .nav-toggle {
    position: relative;
    z-index: 60;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
    color: currentColor;
  }

  .is-scrolled .nav-toggle {
    border-color: var(--line);
    background: var(--surface-strong);
  }

  body.nav-open .nav-toggle {
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.1);
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    transition: transform 160ms ease;
  }

  .nav-toggle span + span {
    margin-top: -14px;
  }

  body.nav-open .nav-toggle span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 55;
    inset: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    min-height: 100dvh;
    overflow-y: auto;
    background: var(--ink);
    color: #ffffff;
    padding: 96px 24px 32px;
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 15px 0;
    font-size: 1.35rem;
  }

  .site-nav .language-switcher {
    margin-top: 8px;
    border-color: rgba(255, 255, 255, 0.32);
  }

  .site-nav .language-switcher button {
    min-width: 58px;
    padding: 10px 14px;
  }

  .site-nav .nav-contact {
    width: auto;
    padding: 12px 16px;
  }

  .hero {
    min-height: 90svh;
  }

  .hero-inner {
    width: min(100% - 40px, var(--max-width));
    padding-top: 104px;
    padding-bottom: 46px;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 12vw, 4.6rem);
  }

  .hero-metrics,
  .service-strip,
  .intro-grid,
  .section-heading,
  .ai-layout,
  .process-section,
  .contact-section,
  .trial-section {
    grid-template-columns: 1fr;
  }

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

  .strip-item {
    min-height: 62px;
  }

  .section {
    width: min(100% - 40px, var(--max-width));
    padding: 72px 0;
  }

  .intro-grid,
  .section-heading,
  .ai-layout,
  .process-section,
  .contact-section {
    gap: 28px;
  }

  .intro-copy,
  .section-heading > p {
    padding-top: 0;
  }

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

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

  .service-card h3 {
    margin-top: 36px;
  }

  .ai-section {
    padding: 72px 20px;
  }

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

  .case-showcase {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .case-preview {
    order: -1;
  }

  .result-item,
  .result-item + .result-item {
    padding: 22px 18px 22px 0;
  }

  .result-item:nth-child(even) {
    border-right: 0;
  }

  .result-item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .trial-section {
    width: min(100% - 40px, var(--max-width));
    padding: 30px;
  }

  .trial-actions {
    justify-items: start;
  }

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

  .site-footer {
    flex-direction: column;
    padding: 28px 20px;
  }

  .policy-header,
  .policy-hero {
    width: min(100% - 40px, var(--max-width));
  }

  .policy-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .policy-hero {
    padding-top: 48px;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: auto;
    background: #071211;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(7, 18, 17, 0.98) 0%, rgba(7, 18, 17, 0.82) 58%, rgba(7, 18, 17, 0.98) 100%),
      radial-gradient(circle at 72% 20%, rgba(215, 255, 106, 0.14), transparent 28%),
      radial-gradient(circle at 74% 78%, rgba(0, 127, 120, 0.24), transparent 34%);
  }

  .hero-inner {
    padding-top: 88px;
    padding-bottom: 40px;
  }

  .hero h1 {
    font-size: clamp(2rem, 10.8vw, 3.5rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 24px;
  }

  .button {
    min-height: 44px;
    padding: 11px 14px;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 22px;
  }

  .hero-metrics div {
    padding: 10px;
  }

  .hero-metrics dt {
    font-size: 0.62rem;
  }

  .hero-metrics dd {
    font-size: 0.92rem;
  }

  .service-strip,
  .results-grid,
  .contact-card,
  .case-preview-metrics {
    grid-template-columns: 1fr;
  }

  .gdpr-banner,
  .wizard-actions {
    grid-template-columns: 1fr;
  }

  .gdpr-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }

  .project-wizard {
    padding: 14px;
  }

  .wizard-dialog {
    max-height: calc(100svh - 28px);
    overflow: auto;
    padding: 22px;
  }

  .wizard-actions {
    display: grid;
  }

  .gdpr-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .gdpr-actions .button {
    width: 100%;
  }

  .strip-item,
  .contact-card a + a {
    border-left: 0;
  }

  .contact-card a + a {
    border-top: 1px solid var(--line);
  }

  .result-item,
  .result-item + .result-item {
    border-right: 0;
    border-top: 1px solid var(--line);
    padding: 22px 0;
  }

  .result-item:first-child {
    border-top: 0;
  }

  .case-points div,
  .case-actions .button {
    width: 100%;
  }

  .pipeline-step,
  .process-list li {
    grid-template-columns: 1fr;
  }
}

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

  .hero-canvas {
    display: none;
  }
}
