:root {
  --bg: #ffffff;
  --ink: #070908;
  --muted: #596158;
  --soft: #f6f8f4;
  --line: #d9dfd5;
  --line-dark: #aab5a5;
  --accent: #91ed00;
  --accent-dark: #4c9200;
  --dark: #07100e;
  --dark-2: #0d1512;
  --max: 1280px;
  --shadow: 0 28px 82px rgba(7, 9, 8, 0.13);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body[data-page="ki"] {
  background: var(--dark);
  color: #fff;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

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

svg {
  display: block;
}

section[id] {
  scroll-margin-top: 92px;
}

.skip-link {
  position: absolute;
  left: 18px;
  top: 12px;
  z-index: 300;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-140%);
}

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

.site-grid {
  position: fixed;
  inset: 78px 0 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(7, 9, 8, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 9, 8, 0.052) 1px, transparent 1px);
  background-size: 154px 154px;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.72) 46%, transparent 84%);
}

body[data-page="ki"] .site-grid {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 0 max(28px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

body[data-page="ki"] .site-header {
  background: rgba(7, 16, 14, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.11);
  color: #fff;
}

.brand {
  justify-self: start;
  font-size: 34px;
  line-height: 1;
  font-weight: 880;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 790;
}

.nav-links a {
  position: relative;
  padding: 30px 0 26px;
}

.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 19px;
  height: 2px;
  background: currentColor;
}

body[data-page="ki"] .nav-links a.active::after,
body[data-page="ki"] .nav-links a:hover::after {
  background: var(--accent);
}

.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  background: var(--accent);
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.menu-button {
  display: none;
  justify-self: end;
  width: 46px;
  height: 46px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.mobile-nav {
  display: none;
}

.hero,
.services-section,
.method-section,
.promise-section,
.principle-section,
.faq-section,
.pain-section,
.system-section,
.website-problem,
.conversion-section,
.examples-section,
.contact-form-section,
.legal-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 80px), var(--max));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1fr);
  gap: 64px;
  align-items: center;
  padding: 58px 0 58px;
}

.home-hero {
  width: min(calc(100% - 64px), 1380px);
  grid-template-columns: minmax(360px, 0.72fr) minmax(620px, 1.28fr);
  gap: 54px;
}

.hero-copy h1,
.section-head h2,
.form-intro h2,
.legal-content h1 {
  margin: 0;
  font-size: 70px;
  line-height: 0.98;
  font-weight: 900;
}

.hero-copy p {
  max-width: 620px;
  margin: 28px 0 0;
  color: #283027;
  font-size: 20px;
  line-height: 1.5;
}

body[data-page="ki"] .hero-copy p,
body[data-page="ki"] .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 38px;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--ink);
  background: #fff;
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

.button.secondary {
  background: transparent;
}

body[data-page="ki"] .button.secondary {
  border-color: rgba(255, 255, 255, 0.38);
  color: #fff;
}

.quiet-proof,
.guarantee-line {
  max-width: 520px;
  padding-left: 18px;
  border-left: 3px solid var(--accent);
  color: var(--muted) !important;
  font-size: 15px !important;
  line-height: 1.55 !important;
}

.guarantee-line {
  color: rgba(255, 255, 255, 0.82) !important;
}

.home-system {
  position: relative;
  isolation: isolate;
  min-height: 500px;
}

.guarantee-system .signal-line,
.offer-system .signal-line {
  display: none;
}

.website-showcase-window {
  top: 8px;
  left: 0;
  width: 83%;
  z-index: 1;
}

.ai-flow-window {
  right: 0;
  bottom: 22px;
  width: 35%;
  z-index: 2;
  background: var(--dark);
  color: #fff;
}

.system-window,
.website-mockup,
.ai-console,
.audit-board,
.inquiry-preview,
.example-site {
  border: 1px solid var(--line-dark);
  background: #fff;
  box-shadow: var(--shadow);
}

.system-window {
  position: absolute;
  overflow: hidden;
}

.website-window {
  top: 16px;
  right: 0;
  width: 72%;
}

.automation-window {
  left: 0;
  bottom: 18px;
  width: 34%;
  background: var(--dark);
  color: #fff;
}

.offer-system .website-showcase-window {
  top: 58px;
  left: 0;
  right: auto;
  width: 73%;
}

.offer-system .dashboard-showcase-window {
  top: -78px;
  left: 27%;
  right: auto;
  width: 73%;
  z-index: 0;
  opacity: 0.96;
  pointer-events: none;
  box-shadow: 0 30px 80px rgba(7, 9, 8, 0.14);
}

.dashboard-showcase-window .template-preview img {
  filter: saturate(1.02) contrast(1.01);
}

.offer-system .ai-flow-window {
  left: auto;
  right: 0;
  top: 154px;
  bottom: auto;
  width: 37%;
  border-color: rgba(7, 9, 8, 0.34);
  box-shadow: 0 32px 88px rgba(7, 9, 8, 0.24);
}

.window-bar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
}

.window-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #e75d52;
}

.window-bar span:nth-child(2) {
  background: #f6c344;
}

.window-bar span:nth-child(3) {
  background: var(--accent-dark);
}

.window-bar i {
  flex: 1;
  height: 1px;
  margin-left: 16px;
  background: var(--line);
}

.offer-system .website-showcase-window .window-bar {
  display: flex;
}

.ai-window-bar {
  height: 34px;
  border-bottom-color: rgba(255, 255, 255, 0.09);
  background: #111412;
}

.ai-window-bar span {
  width: 8px;
  height: 8px;
}

.ai-window-bar i {
  background: rgba(255, 255, 255, 0.12);
}

.template-preview {
  position: relative;
  aspect-ratio: 16 / 9;
  height: auto;
  overflow: hidden;
  background: #07101a;
}

.template-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  filter: saturate(1.02) contrast(1.03);
}

.template-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(180deg, transparent 68%, rgba(7, 9, 8, 0.12));
  pointer-events: none;
}

.template-overlay {
  position: absolute;
  right: 24px;
  bottom: 22px;
  z-index: 1;
  width: min(260px, calc(100% - 48px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
}

.template-overlay span,
.automation-stream b {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
}

.template-overlay strong {
  display: block;
  margin-top: 8px;
  font-size: 20px;
  line-height: 1.08;
}

.agent-graph {
  position: relative;
  min-height: 344px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(145, 237, 0, 0.18), transparent 32%),
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.07), transparent 24%),
    linear-gradient(180deg, #151816, #080a09);
}

.agent-graph::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, #000 0 52%, transparent 82%);
  pointer-events: none;
}

.agent-graph::after {
  content: "";
  position: absolute;
  inset: 34px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(145, 237, 0, 0.45), transparent);
  opacity: 0.55;
}

.agent-diagram {
  position: relative;
  z-index: 2;
  display: block;
  width: calc(100% - 22px);
  height: 246px;
  margin: 14px auto 0;
  overflow: visible;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.agent-base-lines use,
.agent-live-lines use {
  fill: none;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.agent-base-lines use {
  stroke: rgba(255, 255, 255, 0.16);
  stroke-width: 1.15;
}

.agent-live-lines use {
  stroke: rgba(145, 237, 0, 0.82);
  stroke-width: 1.4;
  stroke-dasharray: 9 13;
  filter: drop-shadow(0 0 7px rgba(145, 237, 0, 0.38));
  animation: agentPathMarch 3.2s linear infinite;
}

.agent-live-lines use:nth-child(2) { animation-delay: -0.45s; }
.agent-live-lines use:nth-child(3) { animation-delay: -0.9s; }
.agent-live-lines use:nth-child(4) { animation-delay: -1.25s; }
.agent-live-lines use:nth-child(5) { animation-delay: -1.6s; }
.agent-live-lines use:nth-child(6) { animation-delay: -1.95s; }
.agent-live-lines use:nth-child(7) { animation-delay: -2.3s; }

.agent-svg-node circle,
.router-core {
  fill: rgba(12, 15, 13, 0.97);
  stroke: rgba(255, 255, 255, 0.27);
  stroke-width: 1.2;
}

.agent-svg-node,
.agent-svg-router,
.agent-output-node {
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.24));
}

.router-halo {
  fill: rgba(145, 237, 0, 0.08);
  stroke: rgba(145, 237, 0, 0.22);
  stroke-width: 1.1;
  transform-box: fill-box;
  transform-origin: center;
  animation: agentNodePulse 3.2s ease-in-out infinite;
}

.router-ring {
  fill: rgba(14, 23, 15, 0.84);
  stroke: rgba(145, 237, 0, 0.84);
  stroke-width: 1.5;
}

.router-core {
  stroke: rgba(145, 237, 0, 0.92);
  fill: #0e170f;
}

.node-code,
.router-code {
  fill: rgba(255, 255, 255, 0.86);
  font-size: 9px;
  font-weight: 900;
  text-anchor: middle;
}

.router-code {
  fill: var(--accent);
  font-size: 16px;
  letter-spacing: 0;
}

.node-label {
  fill: rgba(255, 255, 255, 0.58);
  font-size: 8px;
  font-weight: 650;
  text-anchor: middle;
}

.agent-output-node path {
  fill: none;
  stroke: rgba(145, 237, 0, 0.82);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.agent-dot {
  fill: var(--accent);
  filter: drop-shadow(0 0 8px rgba(145, 237, 0, 0.95));
}

.agent-terminal {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 8px;
  margin: 0 18px 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.agent-terminal span {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 8px;
  text-transform: uppercase;
}

.agent-terminal b {
  color: rgba(255, 255, 255, 0.64);
  font-size: inherit;
}

.agent-terminal i {
  position: relative;
  height: 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.agent-terminal i::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 72%;
  background: linear-gradient(90deg, rgba(145, 237, 0, 0.9), rgba(145, 237, 0, 0.18));
  transform-origin: left center;
  animation: agentLogFill 3.4s ease-in-out infinite;
}

.agent-terminal span:nth-child(2) i::before {
  width: 52%;
  animation-delay: -0.8s;
}

.agent-terminal span:nth-child(3) i::before {
  width: 86%;
  animation-delay: -1.6s;
}

.mini-site {
  min-height: 320px;
  padding: 38px;
  background:
    linear-gradient(90deg, rgba(145, 237, 0, 0.18) 0 36%, transparent 36%),
    linear-gradient(rgba(7, 9, 8, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 9, 8, 0.045) 1px, transparent 1px),
    #fff;
  background-size: auto, 42px 42px, 42px 42px;
}

.mini-site strong,
.guarantee-board span,
.run-log span,
.console-log span,
.section-head p,
.result-note,
.example-site figcaption,
.tiny {
  font-size: 13px;
  font-weight: 850;
}

.mini-site h2 {
  max-width: 360px;
  margin: 38px 0 14px;
  font-size: 32px;
  line-height: 1.02;
}

.mini-site p {
  max-width: 340px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.mini-site b {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 14px;
  background: var(--accent);
  font-size: 12px;
}

.guarantee-board {
  min-height: 350px;
  padding: 42px;
  background:
    linear-gradient(110deg, rgba(145, 237, 0, 0.22) 0 32%, transparent 32%),
    linear-gradient(rgba(7, 9, 8, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 9, 8, 0.045) 1px, transparent 1px),
    #fff;
  background-size: auto, 42px 42px, 42px 42px;
}

.guarantee-board span {
  color: var(--accent-dark);
}

.guarantee-board h2 {
  max-width: 430px;
  margin: 58px 0 18px;
  font-size: 44px;
  line-height: 0.98;
}

.guarantee-board p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.guarantee-meter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.guarantee-meter strong,
.guarantee-meter b {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid var(--line-dark);
  background: #fff;
  font-size: 13px;
  font-weight: 900;
}

.guarantee-meter b {
  border-color: var(--accent);
  background: var(--accent);
}

.run-log {
  padding: 22px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.run-log span {
  display: block;
  margin-bottom: 22px;
  color: var(--accent);
}

.run-log p {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  margin: 0;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.run-log b {
  color: #fff;
  font-weight: 800;
}

.signal-line {
  position: absolute;
  left: 29%;
  right: 17%;
  top: 49%;
  height: 1px;
  background: var(--accent);
  transform: rotate(-7deg);
}

.signal-line i,
.console-rail i,
.diagram-line i,
.path-line i {
  position: absolute;
  top: -5px;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(145, 237, 0, 0.16);
  animation: moveDot 3.8s ease-in-out infinite;
}

.services-section,
.method-section,
.promise-section,
.principle-section,
.faq-section,
.website-problem,
.conversion-section,
.examples-section,
.contact-form-section {
  padding: 82px 0;
}

.section-head {
  margin: 0 0 42px;
}

.section-head.simple {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.55fr);
  gap: 64px;
  align-items: end;
}

.section-head.simple.solo {
  display: block;
  max-width: 860px;
}

.section-head.simple h2 {
  font-size: 48px;
  line-height: 1.02;
}

.section-head.simple p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.section-head.invert h2 {
  color: #fff;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line-dark);
  background: #fff;
}

.promise-grid article {
  min-height: 360px;
  padding: 36px;
  border-right: 1px solid var(--line);
}

.promise-grid article:last-child {
  border-right: 0;
}

.promise-grid h3 {
  margin: 76px 0 18px;
  font-size: 30px;
  line-height: 1.04;
}

.promise-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.52;
}

.promise-highlight {
  background: var(--dark);
  color: #fff;
}

.promise-highlight p {
  color: rgba(255, 255, 255, 0.74);
}

.promise-highlight span {
  color: var(--accent);
}

.service-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.service-panel {
  min-height: 500px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 38px 44px 40px;
  border: 1px solid var(--line-dark);
  box-shadow: 0 18px 48px rgba(7, 9, 8, 0.08);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-panel:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
  box-shadow: 0 28px 70px rgba(7, 9, 8, 0.14);
}

.service-panel:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.service-panel.dark {
  background: var(--dark);
  color: #fff;
}

.service-panel.light {
  background:
    linear-gradient(135deg, transparent 0 66%, rgba(145, 237, 0, 0.1) 66% 100%),
    #fff;
  color: var(--ink);
}

.service-panel > span,
.method-line span,
.promise-grid span,
.console-flow span,
.pain-tabs span,
.system-diagram span,
.audit-note span,
.conversion-path span {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
}

.service-panel.dark > span {
  color: var(--accent);
}

.service-visual {
  position: relative;
  width: 154px;
  height: 112px;
  margin: 24px auto 48px;
}

.service-visual-ai {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #fff;
  box-shadow: 10px 10px 0 rgba(145, 237, 0, 0.12);
  overflow: hidden;
}

.service-visual-ai::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 22px;
  background: #101513;
}

.service-ai-mark {
  position: absolute;
  inset: 18px 0 0;
  width: 100%;
  height: 92px;
}

.service-ai-mark line {
  stroke: rgba(7, 9, 8, 0.2);
  stroke-width: 2;
  stroke-linecap: round;
}

.service-ai-mark circle {
  fill: var(--accent);
}

.service-ai-mark .main {
  filter: drop-shadow(0 0 14px rgba(145, 237, 0, 0.5));
}

.service-visual-web {
  border: 1px solid rgba(7, 9, 8, 0.22);
  background: #fff;
  box-shadow: 10px 10px 0 rgba(7, 9, 8, 0.08);
}

.service-visual-web::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 22px;
  background: #101513;
}

.service-visual-web i,
.service-visual-web b,
.service-visual-web em,
.service-visual-web strong {
  position: absolute;
  display: block;
}

.service-visual-web i {
  left: 16px;
  top: 39px;
  width: 58px;
  height: 45px;
  background: rgba(7, 9, 8, 0.1);
}

.service-visual-web b {
  right: 16px;
  top: 39px;
  width: 48px;
  height: 8px;
  background: var(--ink);
}

.service-visual-web em {
  right: 16px;
  top: 56px;
  width: 58px;
  height: 7px;
  background: rgba(7, 9, 8, 0.18);
}

.service-visual-web strong {
  right: 16px;
  top: 73px;
  width: 38px;
  height: 16px;
  background: var(--accent);
}

.service-panel h3 {
  margin: 0 0 16px;
  font-size: 46px;
  line-height: 1;
}

.service-panel p {
  max-width: 450px;
  margin: 0;
  color: inherit;
  font-size: 18px;
  line-height: 1.45;
  opacity: 0.82;
}

.service-panel ul,
.inquiry-preview ul {
  display: grid;
  gap: 12px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.service-panel li,
.inquiry-preview li {
  position: relative;
  padding-left: 24px;
  color: inherit;
  font-size: 15px;
  line-height: 1.45;
  opacity: 0.82;
}

.service-panel li::before,
.inquiry-preview li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.service-panel strong {
  margin-top: auto;
  padding-top: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: inherit;
  font-size: 15px;
  font-weight: 900;
}

.service-panel strong i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  background: var(--accent);
  color: var(--ink);
  font-style: normal;
  transition: transform 180ms ease;
}

.service-panel.dark strong i {
  border-color: var(--accent);
}

.service-panel:hover strong i {
  transform: translateX(5px);
}

.principle-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.82);
}

.principle-line article {
  min-height: 260px;
  padding: 36px;
  border-right: 1px solid var(--line);
}

.principle-line article:last-child {
  border-right: 0;
}

.principle-line h3 {
  margin: 0 0 18px;
  font-size: 30px;
  line-height: 1.05;
}

.principle-line p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.52;
}

.method-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
}

.method-line article {
  min-height: 230px;
  padding: 28px 26px;
  border-right: 1px solid var(--line);
}

.method-line article:last-child {
  border-right: 0;
}

.method-line h3 {
  margin: 60px 0 12px;
  font-size: 24px;
}

.method-line p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

body[data-page="ki"] .ai-hero,
body[data-page="ki"] .pain-section,
body[data-page="ki"] .system-section,
body[data-page="ki"] .ai-deliverables,
body[data-page="ki"] .ai-request-flow,
body[data-page="ki"] .guarantee-section,
body[data-page="ki"] .contact-form-section,
body[data-page="ki"] .footer {
  width: min(calc(100% - 80px), var(--max));
}

.ai-hero {
  grid-template-columns: minmax(0, 0.95fr) minmax(440px, 0.92fr);
}

.ai-hero .hero-copy h1 {
  color: #fff;
  font-size: 66px;
}

.ai-console {
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 16%, rgba(145, 237, 0, 0.12), transparent 30%),
    #0b1110;
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.console-top {
  height: 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
}

.console-top span {
  color: var(--accent);
}

.console-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 260px;
}

.console-flow article {
  padding: 26px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.console-flow article:last-child {
  border-right: 0;
}

.console-flow article.active {
  background: rgba(145, 237, 0, 0.08);
}

.console-flow strong {
  display: block;
  margin: 72px 0 12px;
  font-size: 21px;
}

.console-flow p,
.console-log p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  line-height: 1.45;
}

.console-rail {
  position: relative;
  height: 1px;
  margin: 0 22px;
  background: rgba(255, 255, 255, 0.22);
}

.console-log {
  display: grid;
  gap: 12px;
  padding: 24px 22px 28px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.console-log p {
  display: grid;
  grid-template-columns: 72px 1fr;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.025);
}

.console-log span {
  color: var(--accent);
  font-size: 11px;
}

.pain-section,
.system-section {
  padding: 92px 0;
}

.pain-showcase {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 34px;
}

.pain-tabs {
  display: grid;
  align-content: start;
  gap: 12px;
}

.pain-tabs button {
  min-height: 126px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  text-align: left;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.pain-tabs button.active,
.pain-tabs button:hover {
  border-color: var(--accent);
  background: rgba(145, 237, 0, 0.09);
  transform: translateX(6px);
}

.pain-tabs strong {
  display: block;
  margin: 16px 0 8px;
  font-size: 26px;
}

.pain-tabs p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.pain-visual {
  display: none;
  min-height: 430px;
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    #0b1110;
  background-size: 54px 54px;
}

.pain-visual.active {
  display: grid;
  gap: 24px;
  align-content: center;
  animation: fadeIn 220ms ease both;
}

.mail-stack {
  display: grid;
  gap: 14px;
  max-width: 520px;
}

.mail-stack article {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.045);
}

.mail-stack span {
  color: var(--accent);
  font-size: 13px;
}

.result-note {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.sync-table {
  display: grid;
  max-width: 640px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.sync-table div {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.sync-table span,
.sync-table strong {
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.sync-table span:last-child,
.sync-table strong:last-child {
  border-right: 0;
}

.sync-table div:first-child span {
  color: var(--accent);
  font-weight: 850;
}

.document-scan {
  position: relative;
  width: min(360px, 100%);
  min-height: 420px;
  padding: 44px;
  background: #fff;
}

.document-scan span {
  display: block;
  height: 12px;
  margin-bottom: 18px;
  background: #dce2d9;
}

.document-scan span:nth-child(1) {
  width: 72%;
  height: 18px;
  background: #101510;
}

.document-scan span:nth-child(2) {
  width: 88%;
}

.document-scan span:nth-child(3) {
  width: 54%;
}

.document-scan mark {
  display: block;
  width: 68%;
  height: 34px;
  margin: 54px 0 0;
  background: rgba(145, 237, 0, 0.34);
}

.extract-list {
  position: absolute;
  right: 34px;
  top: 72px;
  width: min(330px, 44%);
  display: grid;
  gap: 12px;
}

.extract-list p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #111a17;
}

.extract-list span {
  color: var(--accent);
}

.system-diagram {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 310px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.system-diagram article {
  padding: 30px 24px 110px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.system-diagram article:last-of-type {
  border-right: 0;
}

.system-diagram strong {
  display: block;
  margin: 70px 0 12px;
  font-size: 25px;
}

.system-diagram p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  line-height: 1.48;
}

.diagram-line {
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 66px;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.guarantee-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.65fr);
  gap: 44px;
  align-items: center;
  margin: 0 auto;
  padding: 54px;
  border: 1px solid rgba(145, 237, 0, 0.45);
  background: rgba(145, 237, 0, 0.08);
}

.guarantee-section h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.04;
}

.guarantee-section p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 1.5;
}

.guarantee-section strong {
  display: block;
  padding: 30px;
  background: var(--accent);
  color: var(--ink);
  font-size: 28px;
  line-height: 1.08;
}

.ai-hero-refined {
  min-height: calc(100vh - 78px);
  grid-template-columns: minmax(0, 0.84fr) minmax(520px, 1fr);
  gap: 62px;
}

.ai-hero-refined .hero-copy {
  max-width: 720px;
}

.ai-hero-refined .hero-copy h1 {
  max-width: 700px;
  font-size: clamp(54px, 6vw, 78px);
  line-height: 0.96;
}

.ai-hero-refined .hero-copy p {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.74);
}

.ai-terms {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.ai-terms span {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.35;
}

.agent-workflow {
  position: relative;
  min-height: 620px;
  display: grid;
  grid-template-columns: 130px 1fr 130px;
  grid-template-rows: 1fr auto;
  gap: 22px;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 50% 38%, rgba(145, 237, 0, 0.16), transparent 34%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    #0b1110;
  background-size: auto, 44px 44px, 44px 44px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.22);
}

.workflow-stage {
  align-self: center;
  display: grid;
  gap: 12px;
}

.workflow-stage span,
.workflow-proof span,
.ai-tabs span,
.agent-roles span,
.deliverable-grid span,
.guarantee-card span,
.request-steps span,
.scene-before span,
.scene-after span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.workflow-stage strong {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  font-size: 14px;
  font-weight: 850;
}

.workflow-core {
  position: relative;
  min-height: 430px;
  align-self: center;
}

.workflow-core::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 168px;
  height: 168px;
  border: 1px solid rgba(145, 237, 0, 0.35);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(145, 237, 0, 0.2), transparent 58%),
    rgba(7, 16, 14, 0.76);
  transform: translate(-50%, -50%);
  animation: flowPulse 4.8s ease-in-out infinite;
}

.workflow-core::after {
  content: "Router";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border: 1px solid var(--accent);
  border-radius: 50%;
  background: #101815;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 34px rgba(145, 237, 0, 0.22);
}

.workflow-chip {
  position: absolute;
  z-index: 2;
  min-width: 106px;
  min-height: 46px;
  display: grid;
  place-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #121b18;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 850;
  animation: nodeFloat 5.6s ease-in-out infinite;
}

.chip-research { left: 7%; top: 12%; }
.chip-routing { right: 8%; top: 14%; animation-delay: -0.8s; }
.chip-data { left: 10%; bottom: 20%; animation-delay: -1.5s; }
.chip-draft { right: 10%; bottom: 20%; animation-delay: -2.1s; }
.chip-review { left: 50%; top: 3%; transform: translateX(-50%); animation-delay: -2.7s; }
.chip-output { left: 50%; bottom: 3%; transform: translateX(-50%); animation-delay: -3.3s; }

.workflow-line {
  position: absolute;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(145, 237, 0, 0.78), transparent);
  transform-origin: left center;
}

.line-one {
  left: 18%;
  top: 36%;
  width: 64%;
  transform: rotate(14deg);
}

.line-two {
  left: 18%;
  top: 63%;
  width: 64%;
  transform: rotate(-14deg);
}

.line-three {
  left: 50%;
  top: 15%;
  width: 1px;
  height: 70%;
  background: linear-gradient(180deg, transparent, rgba(145, 237, 0, 0.6), transparent);
}

.workflow-packet {
  position: absolute;
  z-index: 3;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(145, 237, 0, 0.14), 0 0 28px rgba(145, 237, 0, 0.46);
}

.packet-one {
  left: 12%;
  top: 34%;
  animation: agentPacketOne 4.8s ease-in-out infinite;
}

.packet-two {
  right: 12%;
  top: 62%;
  animation: agentPacketTwo 5.2s ease-in-out infinite;
}

.packet-three {
  left: 50%;
  top: 10%;
  animation: agentPacketThree 5.8s ease-in-out infinite;
}

.workflow-proof {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.workflow-proof p {
  margin: 0;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.5;
}

.workflow-proof span {
  display: block;
  margin-bottom: 7px;
}

.precise-workflow {
  display: block;
  min-height: 620px;
  padding: 0;
  overflow: hidden;
}

.workflow-window-bar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  background: #101513;
}

.workflow-window-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #e75d52;
}

.workflow-window-bar span:nth-child(2) {
  background: #f6c344;
}

.workflow-window-bar span:nth-child(3) {
  background: var(--accent);
}

.workflow-window-bar i {
  flex: 1;
  height: 1px;
  margin-left: 16px;
  background: rgba(255, 255, 255, 0.12);
}

.precise-flow-canvas {
  position: relative;
  min-height: 498px;
  overflow: hidden;
  background:
    radial-gradient(circle at 34% 50%, rgba(145, 237, 0, 0.18), transparent 30%),
    radial-gradient(circle at 78% 50%, rgba(255, 255, 255, 0.055), transparent 28%),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    #09100e;
  background-size: auto, auto, 44px 44px, 44px 44px;
}

.precise-flow-canvas::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 16, 14, 0.24), transparent 18%, transparent 82%, rgba(9, 16, 14, 0.32)),
    linear-gradient(180deg, transparent 65%, rgba(9, 16, 14, 0.52));
  pointer-events: none;
}

.precise-flow-svg {
  position: relative;
  z-index: 2;
  display: block;
  width: calc(100% - 28px);
  height: 498px;
  margin: 0 auto;
  overflow: visible;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.ki-flow-base use,
.ki-flow-live use {
  fill: none;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.ki-flow-base use {
  stroke: rgba(255, 255, 255, 0.16);
  stroke-width: 1.2;
}

.ki-flow-live use {
  stroke: rgba(145, 237, 0, 0.78);
  stroke-width: 1.35;
  stroke-dasharray: 8 13;
  filter: drop-shadow(0 0 8px rgba(145, 237, 0, 0.34));
  animation: preciseFlowMarch 3.4s linear infinite;
}

.ki-flow-live use:nth-child(2) { animation-delay: -0.4s; }
.ki-flow-live use:nth-child(3) { animation-delay: -0.8s; }
.ki-flow-live use:nth-child(4) { animation-delay: -1.2s; }
.ki-flow-live use:nth-child(5) { animation-delay: -1.6s; }
.ki-flow-live use:nth-child(6) { animation-delay: -2s; }
.ki-flow-live use:nth-child(7) { animation-delay: -2.4s; }
.ki-flow-live use:nth-child(8) { animation-delay: -2.8s; }
.ki-flow-live use:nth-child(9) { animation-delay: -3.2s; }
.ki-flow-live use:nth-child(10) { animation-delay: -3.6s; }

.ki-node rect,
.ki-output-node rect {
  fill: rgba(16, 24, 21, 0.96);
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 1.2;
}

.input-node rect {
  fill: rgba(255, 255, 255, 0.045);
}

.agent-node rect {
  fill: rgba(10, 15, 13, 0.98);
  stroke: rgba(145, 237, 0, 0.26);
}

.ki-router-halo {
  fill: rgba(145, 237, 0, 0.075);
  stroke: rgba(145, 237, 0, 0.2);
  stroke-width: 1.1;
  transform-box: fill-box;
  transform-origin: center;
  animation: agentNodePulse 3.8s ease-in-out infinite;
}

.ki-router-ring {
  fill: rgba(10, 19, 13, 0.9);
  stroke: rgba(145, 237, 0, 0.72);
  stroke-width: 1.55;
}

.ki-router-core {
  fill: #0b120f;
  stroke: rgba(145, 237, 0, 0.98);
  stroke-width: 1.4;
}

.ki-node,
.ki-router-node,
.ki-review-node,
.ki-output-node {
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.3));
}

.ki-review-node path {
  fill: #111815;
  stroke: rgba(145, 237, 0, 0.78);
  stroke-width: 1.4;
}

.ki-output-node rect {
  stroke: rgba(145, 237, 0, 0.72);
}

.ki-node-code,
.ki-router-title,
.ki-router-label,
.ki-node-label {
  text-anchor: middle;
}

.ki-node-code,
.ki-router-label {
  fill: rgba(255, 255, 255, 0.84);
  font-size: 11px;
  font-weight: 900;
}

.ki-node-label {
  fill: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  font-weight: 760;
}

.ki-router-title {
  fill: var(--accent);
  font-size: 27px;
  font-weight: 950;
}

.ki-router-label {
  fill: rgba(255, 255, 255, 0.66);
  font-size: 10px;
}

.ki-flow-dot {
  fill: var(--accent);
  filter: drop-shadow(0 0 10px rgba(145, 237, 0, 0.9));
}

.precise-flow-proof {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.08);
}

.precise-flow-proof span {
  min-height: 78px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 820;
  line-height: 1.35;
}

.ai-problem-section,
.ai-system-section,
.ai-deliverables,
.ai-request-flow {
  padding: 94px 0;
}

.ai-problem-lab {
  grid-template-columns: 0.37fr 1fr;
}

.ai-tabs button {
  min-height: 138px;
  padding: 22px;
}

.ai-tabs strong {
  margin-top: 18px;
}

.ai-scene {
  min-height: 500px;
  grid-template-columns: minmax(0, 0.8fr) 82px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}

.scene-before,
.scene-after,
.data-grid,
.doc-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.045);
}

.scene-before,
.scene-after {
  min-height: 240px;
  display: grid;
  align-content: end;
  padding: 28px;
}

.scene-before strong,
.scene-after strong {
  margin-top: 38px;
  color: #fff;
  font-size: 30px;
  line-height: 1.05;
}

.scene-before p,
.scene-after p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.5;
}

.scene-transform {
  position: relative;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.scene-transform i {
  position: absolute;
  top: -6px;
  left: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 9px rgba(145, 237, 0, 0.14);
  animation: moveDot 3.4s ease-in-out infinite;
}

.data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  align-self: stretch;
}

.data-grid span,
.data-grid strong,
.data-grid b {
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 0 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 760;
}

.data-grid span {
  color: var(--accent);
  font-weight: 900;
}

.data-grid b {
  color: #fff;
}

.scene-after.compact {
  min-height: auto;
  align-self: stretch;
}

.doc-card {
  align-self: stretch;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 34px;
  background: #fff;
  color: var(--ink);
}

.doc-card i {
  display: block;
  height: 13px;
  background: #dfe5dc;
}

.doc-card i:first-child {
  width: 68%;
  height: 20px;
  background: var(--ink);
}

.doc-card i:nth-child(2) {
  width: 88%;
}

.doc-card i:nth-child(3) {
  width: 56%;
}

.doc-card mark {
  justify-self: start;
  margin-top: 10px;
  padding: 10px 12px;
  background: rgba(145, 237, 0, 0.34);
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.agent-roles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.agent-roles article {
  min-height: 246px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.agent-roles article:nth-child(3n) {
  border-right: 0;
}

.agent-roles article:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.agent-roles strong {
  display: block;
  margin: 58px 0 12px;
  color: #fff;
  font-size: 27px;
  line-height: 1.04;
}

.agent-roles p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.52;
}

.system-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(145, 237, 0, 0.34);
  background: rgba(145, 237, 0, 0.2);
}

.system-strip span {
  min-height: 70px;
  display: grid;
  place-items: center;
  background: #101815;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 850;
  text-align: center;
}

.system-strip i {
  position: absolute;
  left: -48px;
  top: 50%;
  width: 48px;
  height: 3px;
  background: var(--accent);
  box-shadow: 0 0 20px rgba(145, 237, 0, 0.55);
  transform: translateY(-50%);
  animation: packetMove 4s linear infinite;
}

.ai-deliverables,
.ai-request-flow {
  width: min(calc(100% - 80px), var(--max));
  margin: 0 auto;
}

.deliverable-grid,
.request-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.request-steps {
  grid-template-columns: repeat(3, 1fr);
}

.deliverable-grid article,
.request-steps article {
  min-height: 300px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.035);
}

.deliverable-grid article:last-child,
.request-steps article:last-child {
  border-right: 0;
}

.deliverable-grid strong,
.request-steps strong {
  display: block;
  margin: 72px 0 14px;
  color: #fff;
  font-size: 26px;
  line-height: 1.05;
}

.deliverable-grid p,
.request-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.52;
}

.ai-guarantee-section {
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.72fr);
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(145, 237, 0, 0.13), rgba(255, 255, 255, 0.025)),
    #0b1110;
}

.ai-guarantee-section > div:first-child {
  padding: 56px;
}

.ai-guarantee-section h2 {
  max-width: 680px;
}

.guarantee-card {
  align-self: stretch;
  display: grid;
  align-content: center;
  padding: 46px;
  background: var(--accent);
  color: var(--ink);
}

.ai-guarantee-section .guarantee-card span {
  color: rgba(7, 9, 8, 0.62);
}

.ai-guarantee-section .guarantee-card strong {
  margin: 34px 0 20px;
  padding: 0;
  background: transparent;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 0.98;
}

.ai-guarantee-section .guarantee-card p {
  max-width: 440px;
  margin: 0;
  color: rgba(7, 9, 8, 0.72);
  font-size: 16px;
  line-height: 1.5;
}

.website-hero {
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1fr);
}

.website-mockup {
  overflow: hidden;
}

.mock-nav {
  min-height: 58px;
  display: grid;
  grid-template-columns: 1fr repeat(3, auto) auto;
  gap: 24px;
  align-items: center;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 760;
}

.mock-nav b {
  padding: 10px 12px;
  background: var(--accent);
  color: var(--ink);
}

.mock-nav.small {
  grid-template-columns: 1fr repeat(3, auto);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
}

.mock-hero {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  min-height: 350px;
}

.mock-hero > div {
  padding: 44px;
}

.mock-hero h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.05;
}

.mock-hero p {
  margin: 18px 0 26px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.mock-hero b {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 14px;
  background: var(--accent);
  font-size: 12px;
}

.mock-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-left: 1px solid var(--line);
}

.mock-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.mock-proof span {
  min-height: 76px;
  padding: 18px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.mock-proof span:last-child {
  border-right: 0;
}

.mock-proof b {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.audit-board {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
  padding: 60px 40px;
  overflow: hidden;
  background:
    linear-gradient(rgba(7, 9, 8, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 9, 8, 0.045) 1px, transparent 1px),
    #fff;
  background-size: 56px 56px;
}

.audit-site {
  position: relative;
  width: min(620px, 68%);
  min-height: 360px;
  padding: 0 34px 34px;
  background: #12241d;
  color: #fff;
  box-shadow: 0 24px 70px rgba(7, 9, 8, 0.2);
  overflow: hidden;
}

.audit-site h3 {
  max-width: 340px;
  margin: 78px 0 18px;
  font-size: 38px;
  line-height: 1.04;
}

.audit-site p {
  max-width: 300px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.5;
}

.audit-site button {
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  background: var(--accent);
  color: var(--ink);
  font-size: 12px;
  font-weight: 820;
}

.audit-site img {
  position: absolute;
  right: 0;
  top: 58px;
  width: 43%;
  height: calc(100% - 58px);
  object-fit: cover;
  opacity: 0.55;
}

.audit-note {
  position: absolute;
  width: 250px;
  padding: 20px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 42px rgba(7, 9, 8, 0.08);
}

.audit-note strong {
  display: block;
  margin: 12px 0 8px;
  font-size: 18px;
  line-height: 1.14;
}

.audit-note p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.note-one {
  left: 36px;
  top: 96px;
}

.note-two {
  right: 42px;
  top: 134px;
}

.note-three {
  right: 80px;
  bottom: 88px;
}

.conversion-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 46px;
}

.conversion-path article {
  min-height: 180px;
  padding: 0 18px 0 0;
}

.conversion-path strong {
  display: block;
  margin: 58px 0 10px;
  font-size: 22px;
}

.conversion-path p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.path-line {
  position: absolute;
  left: 7%;
  right: 7%;
  top: 38px;
  height: 1px;
  background: var(--accent);
}

.inquiry-preview {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 44px;
  align-items: center;
  padding: 44px;
}

.inquiry-preview h3 {
  margin: 16px 0 0;
  font-size: 38px;
  line-height: 1.05;
}

.inquiry-preview > div > span {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 850;
}

.inquiry-preview form {
  display: grid;
  gap: 12px;
}

.inquiry-preview input,
.inquiry-preview textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 14px;
}

.inquiry-preview textarea {
  min-height: 110px;
  padding-top: 14px;
  resize: vertical;
}

.inquiry-preview button {
  min-height: 48px;
  border: 0;
  background: var(--accent);
  color: var(--ink);
  font-weight: 850;
}

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

.example-site {
  min-height: 440px;
  margin: 0;
  overflow: hidden;
}

.example-site figcaption {
  padding: 18px 22px 0;
  color: var(--muted);
}

.example-layout {
  min-height: 330px;
  margin: 20px 22px 22px;
  padding: 28px;
  display: grid;
  align-content: end;
  background: #f4f6f2;
}

.example-layout h3 {
  max-width: 290px;
  margin: 0;
  font-size: 30px;
  line-height: 1.04;
}

.example-layout p {
  margin: 14px 0 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.example-layout b {
  justify-self: start;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid currentColor;
  font-size: 12px;
}

.example-site.local .example-layout {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.88) 0 48%, rgba(255, 255, 255, 0.22) 48%),
    url("/assets/website-office-hero.webp") center / cover;
}

.example-site.consulting .example-layout {
  background:
    linear-gradient(90deg, #fff 0 54%, rgba(255, 255, 255, 0.2) 54%),
    url("/assets/website-office-hero.webp") center / cover;
}

.example-site.product {
  background: #07100e;
  color: #fff;
}

.example-site.product .window-bar {
  border-color: rgba(255, 255, 255, 0.12);
  background: #101715;
}

.example-site.product figcaption,
.example-site.product .example-layout p {
  color: rgba(255, 255, 255, 0.64);
}

.example-site.product .example-layout {
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    #0b1110;
  background-size: 34px 34px;
}

.contact-form-section {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 70px;
  border-top: 1px solid var(--line-dark);
}

.dark-contact {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.form-intro h2 {
  font-size: 48px;
  line-height: 1.04;
}

.form-intro p {
  max-width: 500px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.dark-contact .form-intro p {
  color: rgba(255, 255, 255, 0.68);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span,
.form-privacy,
.form-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.dark-contact .contact-form span,
.dark-contact .form-privacy,
.dark-contact .form-note {
  color: rgba(255, 255, 255, 0.64);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--line-dark);
  background: #fff;
  color: var(--ink);
  font-size: 16px;
}

.contact-form textarea {
  min-height: 136px;
  padding-top: 14px;
  resize: vertical;
}

.contact-form .button {
  width: 100%;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px !important;
  height: 1px !important;
  opacity: 0;
}

.form-note.success {
  color: var(--accent-dark);
}

.form-note.error {
  color: #b3322b;
}

.faq-section {
  padding: 0 0 96px;
}

.faq-list {
  border-top: 1px solid var(--line-dark);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.faq-list summary {
  min-height: 82px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  align-items: center;
  column-gap: 18px;
  padding: 0 4px;
  cursor: pointer;
  font-size: 22px;
  font-weight: 880;
  line-height: 1.18;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  justify-self: end;
  color: var(--accent-dark);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  max-width: 780px;
  margin: -10px 0 0;
  padding: 0 4px 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.not-found-main {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 80px), var(--max));
  min-height: calc(100vh - 176px);
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 60px;
  margin: 0 auto;
  padding: 96px 0;
}

.not-found-copy > span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line-dark);
  background: #fff;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
}

.not-found-copy h1 {
  max-width: 720px;
  margin: 24px 0 0;
  font-size: clamp(58px, 7vw, 108px);
  line-height: 0.94;
}

.not-found-copy p {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.5;
}

.not-found-panel {
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.not-found-panel article {
  min-height: 150px;
  padding: 30px;
  border-bottom: 1px solid var(--line);
}

.not-found-panel article:last-child {
  border-bottom: 0;
  background: var(--dark);
  color: #fff;
}

.not-found-panel span {
  display: block;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
}

.not-found-panel article:last-child span {
  color: var(--accent);
}

.not-found-panel strong {
  display: block;
  max-width: 360px;
  margin-top: 26px;
  font-size: 28px;
  line-height: 1.05;
}

.footer {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 80px), var(--max));
  min-height: 112px;
  display: grid;
  grid-template-columns: auto minmax(360px, 1fr) auto auto auto auto;
  gap: 24px;
  align-items: center;
  margin: 0 auto;
  border-top: 1px solid var(--line-dark);
  color: #2a312a;
  font-size: 13px;
}

.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  min-width: 0;
}

.trust-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
}

.trust-mark strong,
.trust-mark small {
  display: block;
}

.trust-mark strong {
  color: #07100e;
  font-size: 14px;
  line-height: 1.05;
}

.trust-mark small {
  margin-top: 4px;
  color: #697067;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.trust-icon {
  position: relative;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(7, 16, 14, 0.1), 0 8px 18px rgba(7, 16, 14, 0.1);
}

.trust-icon-de {
  background: linear-gradient(to bottom, #050505 0 33.33%, #dd0000 33.33% 66.66%, #ffce00 66.66% 100%);
}

.trust-icon-dsgvo {
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 34% 30%, #1f7af0 0, #034aa6 62%, #063778 100%);
  color: #fff;
  font-style: normal;
}

.trust-icon-dsgvo::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: inherit;
}

.trust-icon-dsgvo b {
  position: relative;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.dark-footer {
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.72);
}

.dark-footer .brand {
  color: #fff;
}

.dark-footer .trust-mark strong {
  color: #fff;
}

.dark-footer .trust-mark small {
  color: rgba(255, 255, 255, 0.58);
}

.legal-content {
  max-width: 880px;
  padding: 86px 0 96px;
}

.legal-content .tiny {
  margin: 0 0 18px;
  color: var(--accent-dark);
}

.legal-content h1 {
  margin-bottom: 46px;
}

.legal-content section {
  margin: 0 0 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

.legal-content p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.practice-hero,
.practice-problems,
.practice-levers,
.practice-analysis-section,
.practice-website-section,
.practice-pilot-section,
.ki-industry-teaser {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 80px), var(--max));
  margin: 0 auto;
}

.practice-hero {
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1fr);
  min-height: calc(100vh - 78px);
}

.practice-hero .hero-copy h1 {
  max-width: 760px;
  font-size: 74px;
}

.practice-hero .hero-copy p {
  max-width: 650px;
}

.practice-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.practice-hero-proof span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.practice-hero-system {
  position: relative;
  min-height: 620px;
}

.practice-window {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: #fff;
  box-shadow: var(--shadow);
}

.practice-dashboard-window {
  position: absolute;
  top: 58px;
  left: 0;
  width: 56%;
  min-width: 360px;
}

.practice-flow-window {
  position: absolute;
  right: 0;
  bottom: 54px;
  width: 68%;
  min-width: 470px;
  background:
    radial-gradient(circle at 50% 52%, rgba(145, 237, 0, 0.2), transparent 30%),
    linear-gradient(rgba(145, 237, 0, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(145, 237, 0, 0.05) 1px, transparent 1px),
    var(--dark);
  background-size: auto, 42px 42px, 42px 42px, auto;
}

.practice-dashboard {
  padding: 24px;
}

.practice-dashboard-head,
.practice-dashboard-grid,
.practice-request-list span {
  border-bottom: 1px solid var(--line);
}

.practice-dashboard-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
}

.practice-dashboard-head strong {
  font-size: 20px;
}

.practice-dashboard-head span,
.practice-dashboard-grid span,
.practice-dashboard-grid small,
.practice-request-list span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
}

.practice-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.practice-dashboard-grid article {
  min-height: 128px;
  padding: 20px 14px 18px 0;
  border-right: 1px solid var(--line);
}

.practice-dashboard-grid article + article {
  padding-left: 14px;
}

.practice-dashboard-grid article:last-child {
  border-right: 0;
}

.practice-dashboard-grid strong {
  display: block;
  margin: 22px 0 4px;
  font-size: 36px;
  line-height: 1;
}

.practice-request-list {
  display: grid;
}

.practice-request-list span {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.practice-request-list b {
  color: var(--accent-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.practice-flow-svg {
  width: 100%;
  height: auto;
  min-height: 340px;
}

.practice-flow-base use,
.practice-flow-live use {
  fill: none;
  stroke-linecap: round;
}

.practice-flow-base use {
  stroke: rgba(255, 255, 255, 0.13);
  stroke-width: 1.4;
}

.practice-flow-live use {
  stroke: rgba(145, 237, 0, 0.58);
  stroke-width: 1.8;
  stroke-dasharray: 10 12;
  animation: preciseFlowMarch 7s linear infinite;
}

.practice-node rect {
  fill: rgba(255, 255, 255, 0.04);
  stroke: rgba(255, 255, 255, 0.22);
}

.practice-node.output rect {
  fill: rgba(145, 237, 0, 0.08);
  stroke: rgba(145, 237, 0, 0.42);
}

.practice-node text,
.practice-router text {
  text-anchor: middle;
  fill: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 820;
}

.practice-router .router-halo {
  fill: rgba(145, 237, 0, 0.1);
  stroke: rgba(145, 237, 0, 0.12);
  transform-origin: center;
  animation: agentNodePulse 3.2s ease-in-out infinite;
}

.practice-router .router-ring {
  fill: rgba(7, 16, 14, 0.9);
  stroke: rgba(145, 237, 0, 0.64);
}

.practice-router .router-core {
  fill: #102013;
  stroke: var(--accent);
}

.practice-router .router-ai {
  fill: var(--accent);
  font-size: 24px;
  font-weight: 930;
}

.practice-router .router-label {
  fill: rgba(255, 255, 255, 0.62);
  font-size: 10px;
}

.practice-flow-dot {
  fill: var(--accent);
  filter: drop-shadow(0 0 8px rgba(145, 237, 0, 0.9));
}

.practice-problems,
.practice-levers,
.practice-analysis-section,
.practice-website-section,
.practice-pilot-section {
  padding: 90px 0;
}

.practice-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.92);
}

.practice-problem-grid article {
  min-height: 320px;
  padding: 32px;
  border-right: 1px solid var(--line);
}

.practice-problem-grid article:last-child {
  border-right: 0;
}

.practice-problem-grid span,
.lever-number,
.practice-pilot-section article span,
.industry-card span,
.ki-industry-teaser span {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
}

.practice-problem-grid h3 {
  margin: 86px 0 16px;
  font-size: 30px;
  line-height: 1.04;
}

.practice-problem-grid p,
.lever-card p,
.practice-analysis-section p,
.website-rules-list p,
.practice-pilot-section p,
.industry-entry p,
.ki-industry-teaser p {
  color: var(--muted);
  line-height: 1.55;
}

.lever-stack {
  display: grid;
  gap: 14px;
}

.lever-card {
  display: grid;
  grid-template-columns: 58px 140px minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.lever-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-dark);
  box-shadow: 0 18px 58px rgba(7, 9, 8, 0.09);
}

.lever-card.recommended {
  border-color: rgba(76, 146, 0, 0.72);
  box-shadow: 0 18px 58px rgba(145, 237, 0, 0.13);
}

.lever-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--dark);
  color: var(--accent);
}

.lever-icon {
  min-height: 132px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(7, 9, 8, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 9, 8, 0.04) 1px, transparent 1px),
    var(--soft);
  background-size: 24px 24px;
  border: 1px solid var(--line);
}

.lever-icon svg {
  width: 76px;
  height: 76px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lever-icon text {
  fill: var(--ink);
  stroke: none;
  font-size: 13px;
  font-weight: 900;
}

.lever-copy h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.08;
}

.lever-copy p {
  max-width: 860px;
  margin: 12px 0 0;
}

.lever-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.lever-title-row strong {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  background: var(--accent);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.lever-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.lever-meta span {
  min-height: 74px;
  padding: 14px;
  border-left: 3px solid var(--accent);
  background: var(--soft);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.lever-meta b {
  color: var(--ink);
}

.practice-analysis-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1fr);
  gap: 72px;
  align-items: center;
  border-top: 1px solid var(--line-dark);
}

.analysis-copy h2,
.practice-pilot-section h2,
.industry-entry h2,
.ki-industry-teaser h2 {
  margin: 0;
  font-size: 50px;
  line-height: 1.02;
}

.analysis-copy p {
  max-width: 560px;
  margin: 22px 0 28px;
  font-size: 17px;
}

.analysis-report {
  border: 1px solid var(--line-dark);
  background: #fff;
  box-shadow: var(--shadow);
}

.report-top {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
}

.report-top strong {
  font-size: 18px;
}

.report-top span {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
}

.report-focus {
  padding: 30px 24px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(145, 237, 0, 0.16), transparent 68%);
}

.report-focus span {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
}

.report-focus h3 {
  margin: 12px 0 10px;
  font-size: 30px;
  line-height: 1.05;
}

.report-focus p,
.report-next p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.report-table {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr;
  border-bottom: 1px solid var(--line);
}

.report-table span,
.report-table b,
.report-table i {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.report-table span:nth-child(3n),
.report-table b:nth-child(3n),
.report-table i:nth-child(3n) {
  border-right: 0;
}

.report-table span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.report-table b {
  font-size: 15px;
}

.report-table i {
  color: var(--accent-dark);
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
}

.report-next {
  padding: 24px;
}

.report-next b {
  display: block;
  margin-bottom: 8px;
}

.practice-website-section {
  border-top: 1px solid var(--line-dark);
}

.practice-website-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 28px;
  align-items: stretch;
}

.practice-site-window {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: #fff;
  box-shadow: var(--shadow);
}

.practice-site-mock {
  min-height: 520px;
  background: #f8faf9;
}

.practice-site-mock header {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 34px;
  border-bottom: 1px solid #dbe2dd;
  background: #fff;
}

.practice-site-mock header strong {
  color: #17342e;
  font-size: 22px;
}

.practice-site-mock nav {
  display: flex;
  gap: 20px;
  color: #53615c;
  font-size: 12px;
  font-weight: 800;
}

.practice-site-mock section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 30px;
  padding: 56px 34px 44px;
  background:
    radial-gradient(circle at 78% 26%, rgba(145, 237, 0, 0.18), transparent 22%),
    linear-gradient(135deg, #ffffff 0%, #edf3ef 100%);
}

.practice-site-mock h3 {
  max-width: 560px;
  margin: 0;
  color: #17342e;
  font-size: 44px;
  line-height: 1.03;
}

.practice-site-mock p {
  max-width: 480px;
  margin: 18px 0 22px;
  color: #53615c;
  line-height: 1.55;
}

.practice-site-mock button {
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  background: #17342e;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.practice-site-mock aside {
  align-self: start;
  padding: 22px;
  border: 1px solid #c8d2cb;
  background: #fff;
}

.practice-site-mock aside span,
.practice-site-mock aside small {
  display: block;
  color: #53615c;
  font-size: 12px;
  font-weight: 800;
}

.practice-site-mock aside strong {
  display: block;
  margin: 16px 0 8px;
  color: #17342e;
  font-size: 30px;
}

.practice-site-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 22px 34px 34px;
}

.practice-site-services article {
  min-height: 120px;
  padding: 18px;
  border: 1px solid #dbe2dd;
  background: #fff;
}

.practice-site-services b,
.practice-site-services span {
  display: block;
}

.practice-site-services b {
  color: #17342e;
}

.practice-site-services span {
  margin-top: 26px;
  color: #53615c;
  font-size: 13px;
  line-height: 1.45;
}

.website-rules-list {
  display: grid;
  border: 1px solid var(--line-dark);
  background: #fff;
}

.website-rules-list article {
  min-height: 170px;
  padding: 26px;
  border-bottom: 1px solid var(--line);
}

.website-rules-list article:last-child {
  border-bottom: 0;
  background: var(--dark);
  color: #fff;
}

.website-rules-list article:last-child p {
  color: rgba(255, 255, 255, 0.72);
}

.website-rules-list span {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
}

.website-rules-list article:last-child span {
  color: var(--accent);
}

.website-rules-list h3 {
  margin: 44px 0 10px;
  font-size: 24px;
  line-height: 1.08;
}

.practice-pilot-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1fr);
  gap: 64px;
  align-items: stretch;
  border-top: 1px solid var(--line-dark);
}

.pilot-statement {
  padding: 42px;
  background: var(--dark);
  color: #fff;
}

.pilot-statement p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.pilot-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line-dark);
  background: #fff;
}

.pilot-steps article {
  min-height: 300px;
  padding: 30px 24px;
  border-right: 1px solid var(--line);
}

.pilot-steps article:last-child {
  border-right: 0;
  background: var(--accent);
}

.pilot-steps h3 {
  margin: 84px 0 14px;
  font-size: 25px;
  line-height: 1.05;
}

.pilot-steps article:last-child span,
.pilot-steps article:last-child p {
  color: rgba(7, 9, 8, 0.72);
}

.practice-faq {
  padding-top: 0;
}

.industry-entry {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(540px, 0.92fr);
  gap: 56px;
  align-items: stretch;
  margin-bottom: 86px;
  padding: 36px 40px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.88);
}

.industry-entry > div {
  align-self: center;
}

.industry-entry p {
  max-width: 610px;
  margin: 20px 0 0;
  font-size: 17px;
}

.industry-card {
  display: block;
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line-dark);
  background: var(--dark);
  color: #fff;
}

.industry-card h3 {
  margin: 60px 0 12px;
  font-size: 34px;
}

.industry-card p {
  color: rgba(255, 255, 255, 0.72);
}

.industry-card strong {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  color: var(--accent);
  font-size: 14px;
}

.primary-industry {
  display: grid;
  grid-template-columns: minmax(230px, 1.05fr) minmax(0, 0.95fr);
  gap: 0;
  min-height: 306px;
  padding: 0;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
}

.primary-industry-image {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: #eef2ed;
}

.primary-industry-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 42%, rgba(255, 255, 255, 0.18));
}

.primary-industry-image img {
  width: 100%;
  height: 100%;
  min-height: 306px;
  object-fit: cover;
  object-position: 38% 50%;
  transform: scale(1.02);
}

.primary-industry-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 28px;
}

.primary-industry span {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
}

.primary-industry h3 {
  margin: 38px 0 12px;
  color: var(--ink);
  font-size: 32px;
  line-height: 1.03;
}

.primary-industry p {
  margin: 0;
  color: #5c645b;
}

.primary-industry strong {
  margin-top: auto;
  color: var(--accent-dark);
}

.ki-industry-teaser {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 44px;
  align-items: center;
  margin-top: 54px;
  padding: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(90deg, rgba(145, 237, 0, 0.13), transparent 70%),
    rgba(255, 255, 255, 0.04);
}

.ki-industry-teaser h2 {
  color: #fff;
}

.ki-industry-teaser p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.68);
}

@keyframes moveDot {
  0% { left: 0; opacity: 0; }
  12% { opacity: 1; }
  88% { opacity: 1; }
  100% { left: calc(100% - 10px); opacity: 0; }
}

@keyframes flowPulse {
  0%, 100% {
    opacity: 0.42;
    transform: translate(-50%, -50%) scale(0.86);
  }
  50% {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(1.12);
  }
}

@keyframes nodeFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes packetMove {
  0% {
    left: -44px;
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  82% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

@keyframes agentPacketOne {
  0% { transform: translate(0, 0); opacity: 0; }
  16% { opacity: 1; }
  48% { transform: translate(180px, 58px); opacity: 1; }
  82% { transform: translate(365px, 16px); opacity: 1; }
  100% { transform: translate(420px, 16px); opacity: 0; }
}

@keyframes agentPacketTwo {
  0% { transform: translate(0, 0); opacity: 0; }
  14% { opacity: 1; }
  48% { transform: translate(-176px, -52px); opacity: 1; }
  82% { transform: translate(-348px, 18px); opacity: 1; }
  100% { transform: translate(-405px, 18px); opacity: 0; }
}

@keyframes agentPacketThree {
  0% { transform: translate(-50%, 0); opacity: 0; }
  18% { opacity: 1; }
  52% { transform: translate(-50%, 168px); opacity: 1; }
  84% { transform: translate(-50%, 332px); opacity: 1; }
  100% { transform: translate(-50%, 372px); opacity: 0; }
}

@keyframes preciseFlowMarch {
  to { stroke-dashoffset: -116; }
}

@keyframes agentPathMarch {
  to { stroke-dashoffset: -120; }
}

@keyframes agentNodePulse {
  0%, 100% {
    opacity: 0.42;
    transform: scale(0.94);
  }
  50% {
    opacity: 0.88;
    transform: scale(1.06);
  }
}

@keyframes agentLogFill {
  0%, 100% { transform: scaleX(0.38); opacity: 0.58; }
  52% { transform: scaleX(1); opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

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

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

  .header-actions {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .mobile-nav {
    position: fixed;
    inset: 78px 18px auto;
    z-index: 220;
    display: grid;
    gap: 2px;
    padding: 14px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: transform 160ms ease, visibility 160ms ease;
  }

  body[data-page="ki"] .mobile-nav {
    border-color: rgba(255, 255, 255, 0.16);
    background: var(--dark-2);
    color: #fff;
  }

  .mobile-nav.open {
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav a {
    padding: 16px;
    font-size: 24px;
    font-weight: 850;
  }

  .hero,
  .ai-hero,
  .website-hero,
  .contact-form-section,
  .section-head.simple,
  .pain-showcase,
  .guarantee-section,
  .inquiry-preview {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy h1,
  .ai-hero .hero-copy h1 {
    font-size: 58px;
  }

  .home-system {
    min-height: 500px;
  }

  .service-split,
  .method-line,
  .promise-grid,
  .principle-line,
  .system-diagram,
  .conversion-path,
  .example-grid {
    grid-template-columns: 1fr 1fr;
  }

  .method-line article:nth-child(2n),
  .promise-grid article:nth-child(2n),
  .principle-line article:nth-child(2n),
  .system-diagram article:nth-child(2n) {
    border-right: 0;
  }

  .method-line article,
  .promise-grid article,
  .principle-line article,
  .system-diagram article {
    border-bottom: 1px solid var(--line);
  }

  .system-diagram article {
    border-bottom-color: rgba(255, 255, 255, 0.12);
  }

  .diagram-line,
  .path-line {
    display: none;
  }

  .audit-board {
    place-items: start;
  }

  .audit-site {
    width: 100%;
  }

  .audit-note {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    margin-top: 14px;
  }

  .extract-list {
    position: static;
    width: 100%;
  }
}

@media (max-width: 760px) {
  section[id] {
    scroll-margin-top: 78px;
  }

  .site-header {
    min-height: 70px;
    padding: 0 18px;
  }

  .brand {
    font-size: 30px;
  }

  .mobile-nav {
    inset: 70px 12px auto;
  }

  .site-grid {
    inset: 70px 0 0;
    background-size: 92px 92px;
  }

  .hero,
  .services-section,
  .method-section,
  .promise-section,
  .principle-section,
  .faq-section,
  .pain-section,
  .system-section,
  .website-problem,
  .conversion-section,
  .examples-section,
  .contact-form-section,
  .legal-content,
  body[data-page="ki"] .ai-hero,
  body[data-page="ki"] .pain-section,
  body[data-page="ki"] .system-section,
  body[data-page="ki"] .guarantee-section,
  body[data-page="ki"] .contact-form-section,
  body[data-page="ki"] .footer,
  .footer {
    width: min(calc(100% - 32px), 560px);
  }

  .hero {
    padding: 46px 0 56px;
    gap: 40px;
  }

  .hero-copy h1,
  .ai-hero .hero-copy h1,
  .section-head.simple h2,
  .form-intro h2,
  .legal-content h1 {
    font-size: 42px;
    line-height: 1.04;
  }

  .hero-copy p {
    font-size: 17px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .home-system {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .system-window,
  .website-window,
  .automation-window {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .offer-system .website-showcase-window,
  .offer-system .ai-flow-window {
    inset: auto;
    width: 100%;
  }

  .offer-system .dashboard-showcase-window {
    display: none;
  }

  .template-preview {
    height: auto;
  }

  .agent-graph {
    min-height: 330px;
  }

  .mini-site {
    min-height: 300px;
    padding: 28px;
  }

  .mini-site h2 {
    margin-top: 42px;
    font-size: 28px;
  }

  .guarantee-board {
    min-height: 320px;
    padding: 28px;
  }

  .guarantee-board h2 {
    margin-top: 46px;
    font-size: 32px;
  }

  .signal-line {
    display: none;
  }

  .services-section,
  .method-section,
  .promise-section,
  .principle-section,
  .faq-section,
  .pain-section,
  .system-section,
  .website-problem,
  .conversion-section,
  .examples-section,
  .contact-form-section {
    padding: 58px 0;
  }

  .faq-list summary {
    min-height: 72px;
    align-items: start;
    column-gap: 14px;
    padding: 18px 4px;
    font-size: 18px;
  }

  .faq-list summary::after {
    padding-top: 1px;
    font-size: 22px;
  }

  .faq-list p {
    margin-top: 0;
    font-size: 15px;
  }

  .section-head.simple,
  .service-split,
  .method-line,
  .promise-grid,
  .principle-line,
  .console-flow,
  .system-diagram,
  .mock-hero,
  .mock-proof,
  .conversion-path,
  .example-grid {
    grid-template-columns: 1fr;
  }

  .service-panel,
  .promise-grid article,
  .principle-line article,
  .guarantee-section,
  .inquiry-preview {
    padding: 28px;
  }

  .service-panel {
    min-height: auto;
  }

  .service-panel h3 {
    font-size: 36px;
  }

  .service-visual {
    width: 128px;
    height: 94px;
    margin: 20px auto 34px;
  }

  .method-line article,
  .promise-grid article,
  .principle-line article,
  .system-diagram article {
    min-height: auto;
    border-right: 0;
  }

  .promise-grid h3 {
    margin-top: 48px;
    font-size: 26px;
  }

  .principle-line h3 {
    font-size: 25px;
  }

  .ai-console,
  .pain-visual,
  .audit-board {
    min-height: auto;
  }

  .console-flow article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .console-flow strong {
    margin-top: 30px;
  }

  .pain-tabs button {
    min-height: auto;
  }

  .pain-visual {
    padding: 22px;
  }

  .mail-stack article {
    display: grid;
  }

  .document-scan {
    width: 100%;
    min-height: 300px;
    padding: 30px;
  }

  .guarantee-section strong {
    font-size: 22px;
  }

  .mock-nav {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .mock-nav span {
    display: none;
  }

  .mock-hero > div {
    padding: 28px;
  }

  .mock-hero h2,
  .audit-site h3,
  .inquiry-preview h3 {
    font-size: 28px;
  }

  .mock-hero img {
    height: 210px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .audit-board {
    padding: 22px;
  }

  .audit-site {
    min-height: 320px;
    padding: 0 22px 28px;
  }

  .audit-site img {
    display: none;
  }

  .conversion-path article {
    min-height: auto;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
  }

  .conversion-path strong {
    margin-top: 18px;
  }

  .inquiry-preview {
    gap: 26px;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 26px 0;
  }

  .footer-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
  }

  .trust-mark {
    min-width: 0;
  }

  .trust-mark strong {
    font-size: 13px;
  }
}

body[data-page="websites"] {
  overflow-x: hidden;
}

.websites-hero {
  width: min(calc(100% - 64px), 1440px);
  grid-template-columns: minmax(360px, 0.62fr) minmax(680px, 1.38fr);
  gap: 46px;
  align-items: center;
  padding-top: 34px;
}

.websites-hero-copy {
  position: relative;
  z-index: 2;
}

.websites-hero-copy h1 {
  font-size: clamp(54px, 5.8vw, 88px);
  max-width: 720px;
}

.websites-hero-copy p {
  max-width: 560px;
}

.website-gallery-hero {
  position: relative;
  display: grid;
  gap: 22px;
  width: 100%;
  min-height: 770px;
  overflow: hidden;
  padding: 32px 0;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.website-gallery-hero::before,
.website-gallery-hero::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  width: 18%;
  pointer-events: none;
}

.website-gallery-hero::before {
  left: 0;
  background: linear-gradient(90deg, #fff, transparent);
}

.website-gallery-hero::after {
  right: 0;
  background: linear-gradient(270deg, #fff, transparent);
}

.gallery-track {
  display: flex;
  gap: 22px;
  width: max-content;
  will-change: transform;
}

.gallery-track-a {
  animation: websiteMarquee 38s linear infinite;
}

.gallery-track-b {
  margin-left: -260px;
  animation: websiteMarqueeReverse 42s linear infinite;
}

.shot-window {
  position: relative;
  flex: 0 0 clamp(430px, 38vw, 560px);
  height: 354px;
  overflow: hidden;
  border: 1px solid rgba(7, 9, 8, 0.18);
  background: #fff;
  box-shadow: 0 26px 72px rgba(7, 9, 8, 0.14);
  transform: translateZ(0);
}

.gallery-track-b .shot-window:nth-child(2n),
.gallery-track-a .shot-window:nth-child(3n) {
  transform: translateY(38px);
}

.shot-window > a,
.industry-card > a {
  position: absolute;
  inset: 0;
  z-index: 4;
}

.shot-window img,
.industry-preview img {
  display: block;
  width: 100%;
  height: calc(100% - 34px);
  border: 0;
  pointer-events: none;
  object-fit: cover;
  object-position: top center;
}

.shot-window .window-bar {
  position: relative;
  z-index: 2;
  height: 34px;
  padding: 0 13px;
}

.website-proof-strip {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 80px), var(--max));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: -34px auto 0;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(7, 9, 8, 0.08);
}

.website-proof-strip article {
  min-height: 184px;
  padding: 30px;
  border-right: 1px solid var(--line);
}

.website-proof-strip article:last-child {
  border-right: 0;
}

.website-proof-strip span,
.industry-copy span {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
}

.website-proof-strip strong {
  display: block;
  max-width: 340px;
  margin-top: 42px;
  font-size: 24px;
  line-height: 1.08;
}

.website-proof-strip .proof-strong {
  background: var(--dark);
  color: #fff;
}

.website-proof-strip .proof-strong span {
  color: var(--accent);
}

.website-examples {
  padding-top: 110px;
}

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

.industry-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: #fff;
  box-shadow: 0 20px 58px rgba(7, 9, 8, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.industry-card:hover {
  transform: translateY(-5px);
  border-color: var(--ink);
  box-shadow: 0 28px 76px rgba(7, 9, 8, 0.14);
}

.industry-preview {
  height: 310px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #edf0ec;
}

.industry-preview .window-bar {
  height: 34px;
  padding: 0 13px;
}

.industry-copy {
  min-height: 210px;
  padding: 28px 30px 32px;
}

.industry-copy h3 {
  max-width: 520px;
  margin: 28px 0 14px;
  font-size: 34px;
  line-height: 1.02;
}

.industry-copy p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.52;
}

.website-offer {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 80px), var(--max));
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.66fr);
  gap: 44px;
  align-items: stretch;
  margin: 0 auto;
  padding: 84px 0;
}

.website-offer h2 {
  max-width: 760px;
  margin: 0;
  font-size: 54px;
  line-height: 1.02;
}

.offer-card {
  display: grid;
  align-content: center;
  padding: 38px;
  border: 1px solid rgba(145, 237, 0, 0.62);
  background:
    linear-gradient(135deg, rgba(145, 237, 0, 0.2), transparent 46%),
    #fff;
  box-shadow: 0 22px 62px rgba(7, 9, 8, 0.08);
}

.offer-card strong {
  display: block;
  font-size: 30px;
  line-height: 1.08;
}

.offer-card p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.template-body {
  min-height: 100vh;
  margin: 0;
  background: #fff;
  color: #141414;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.template-site {
  overflow: hidden;
}

.template-nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 clamp(24px, 5vw, 76px);
  border-bottom: 1px solid currentColor;
}

.template-nav > a {
  font-size: 28px;
  font-weight: 900;
}

.template-nav nav {
  display: flex;
  gap: 26px;
  font-size: 14px;
  font-weight: 760;
}

.template-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: 54px;
  align-items: center;
  min-height: 690px;
  padding: clamp(42px, 6vw, 84px) clamp(24px, 5vw, 76px);
}

.template-copy h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(50px, 6vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
}

.template-copy > p:not(.template-kicker) {
  max-width: 550px;
  margin: 26px 0 0;
  color: color-mix(in srgb, currentColor 70%, transparent);
  font-size: 19px;
  line-height: 1.5;
}

.template-kicker {
  margin: 0 0 26px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.template-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.template-actions a,
.template-cta a {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid currentColor;
  font-size: 14px;
  font-weight: 900;
}

.template-actions a:first-child,
.template-cta a {
  border-color: var(--template-fill);
  background: var(--template-fill);
  color: var(--template-button-text);
}

.template-visual {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid currentColor;
}

.template-visual span,
.template-visual i {
  position: absolute;
  display: block;
}

.template-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}

.template-proof article {
  min-height: 150px;
  padding: 26px;
  border-right: 1px solid currentColor;
}

.template-proof article:last-child {
  border-right: 0;
}

.template-proof strong {
  display: block;
  font-size: 28px;
  line-height: 1;
}

.template-proof span {
  display: block;
  margin-top: 24px;
  color: color-mix(in srgb, currentColor 64%, transparent);
  font-size: 14px;
  line-height: 1.45;
}

.template-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.template-services article {
  min-height: 270px;
  padding: 34px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}

.template-services article:last-child {
  border-right: 0;
}

.template-services h2 {
  margin: 0 0 80px;
  font-size: 32px;
  line-height: 1.05;
}

.template-services p {
  max-width: 340px;
  margin: 0;
  color: color-mix(in srgb, currentColor 68%, transparent);
  font-size: 16px;
  line-height: 1.5;
}

.template-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 48px clamp(24px, 5vw, 76px);
}

.template-cta h2 {
  max-width: 680px;
  margin: 0;
  font-size: 42px;
  line-height: 1.06;
}

.template-handwerk {
  --template-fill: #2a2118;
  --template-button-text: #fff7ea;
  background: #fff7ea;
  color: #2a2118;
}

.template-handwerk .template-hero {
  background:
    linear-gradient(90deg, rgba(255, 247, 234, 0.96) 0 48%, rgba(255, 247, 234, 0.72) 48%),
    linear-gradient(135deg, #fff7ea, #d8a25d);
}

.visual-handwerk {
  background: #bc7c3d;
}

.visual-handwerk span:nth-child(1) {
  inset: 42px 42px auto;
  height: 62%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.28) 0 10%, transparent 10% 90%, rgba(255, 255, 255, 0.28) 90%),
    repeating-linear-gradient(90deg, #7d4c2b 0 22px, #986137 22px 44px);
}

.visual-handwerk span:nth-child(2) {
  left: 92px;
  right: 92px;
  bottom: 68px;
  height: 112px;
  background: #2a2118;
}

.visual-handwerk span:nth-child(3) {
  right: 60px;
  bottom: 60px;
  width: 120px;
  height: 180px;
  background: #edcf9f;
}

.visual-handwerk i {
  left: 0;
  right: 0;
  bottom: 0;
  height: 70px;
  background: repeating-linear-gradient(90deg, #8c5d35 0 28px, #9f7045 28px 56px);
}

.template-maschinenbau {
  --template-fill: #17242b;
  --template-button-text: #eff5f8;
  background: #eff5f8;
  color: #17242b;
}

.template-maschinenbau .template-hero {
  background:
    linear-gradient(rgba(23, 36, 43, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 36, 43, 0.055) 1px, transparent 1px),
    #eff5f8;
  background-size: 44px 44px;
}

.visual-maschinenbau {
  background: #17242b;
  color: #eff5f8;
}

.visual-maschinenbau span:nth-child(1) {
  left: 11%;
  right: 11%;
  top: 28%;
  height: 30%;
  border: 22px solid #7ea5b5;
}

.visual-maschinenbau span:nth-child(2) {
  left: 20%;
  top: 36%;
  width: 140px;
  height: 140px;
  border: 26px solid #d86f3f;
  border-radius: 50%;
}

.visual-maschinenbau span:nth-child(3) {
  right: 17%;
  bottom: 20%;
  width: 190px;
  height: 68px;
  background: #eff5f8;
}

.visual-maschinenbau i {
  left: 14%;
  right: 14%;
  bottom: 16%;
  height: 2px;
  background: #eff5f8;
}

.template-steuer {
  --template-fill: #183029;
  --template-button-text: #fbfaf7;
  background: #fbfaf7;
  color: #183029;
}

.template-steuer .template-hero {
  background: #fbfaf7;
}

.visual-steuer {
  background: #e9e2d4;
}

.visual-steuer span:nth-child(1) {
  left: 12%;
  top: 12%;
  width: 52%;
  height: 72%;
  background: #fbfaf7;
  box-shadow: 26px 26px 0 rgba(24, 48, 41, 0.12);
}

.visual-steuer span:nth-child(2) {
  left: 18%;
  top: 26%;
  width: 38%;
  height: 11px;
  background: #183029;
  box-shadow: 0 38px 0 rgba(24, 48, 41, 0.18), 0 76px 0 rgba(24, 48, 41, 0.18), 0 114px 0 rgba(24, 48, 41, 0.18);
}

.visual-steuer span:nth-child(3) {
  right: 10%;
  bottom: 12%;
  width: 38%;
  height: 46%;
  border: 1px solid #183029;
  background:
    linear-gradient(90deg, transparent 49%, #183029 49% 51%, transparent 51%),
    linear-gradient(180deg, transparent 49%, #183029 49% 51%, transparent 51%);
}

.visual-steuer i {
  right: 18%;
  top: 18%;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: #b78a58;
}

.template-hotel {
  --template-fill: #432717;
  --template-button-text: #fffaf3;
  background: #fffaf3;
  color: #432717;
}

.template-hotel .template-hero {
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.42), #fffaf3),
    #c47752;
}

.visual-hotel {
  background:
    linear-gradient(180deg, #e7a171 0 48%, #315345 48% 100%);
  color: #fffaf3;
}

.visual-hotel span:nth-child(1) {
  left: 8%;
  right: 8%;
  bottom: 10%;
  height: 46%;
  background: #fffaf3;
}

.visual-hotel span:nth-child(2) {
  left: 16%;
  top: 23%;
  width: 70%;
  height: 20%;
  background: #432717;
  transform: skewY(-8deg);
}

.visual-hotel span:nth-child(3) {
  left: 19%;
  bottom: 20%;
  width: 54%;
  height: 92px;
  background:
    repeating-linear-gradient(90deg, #315345 0 48px, #fffaf3 48px 54px);
}

.visual-hotel i {
  right: 16%;
  top: 14%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #f7d17b;
}

.template-praxis {
  --template-fill: #123737;
  --template-button-text: #f6fbfb;
  background: #f6fbfb;
  color: #123737;
}

.template-praxis .template-hero {
  background: #f6fbfb;
}

.visual-praxis {
  background: #d8eceb;
}

.visual-praxis span:nth-child(1) {
  left: 12%;
  top: 16%;
  width: 76%;
  height: 58%;
  border-radius: 44px 44px 12px 12px;
  background: #f6fbfb;
}

.visual-praxis span:nth-child(2) {
  left: 20%;
  top: 31%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #7bb7b3;
}

.visual-praxis span:nth-child(3) {
  right: 18%;
  top: 34%;
  width: 180px;
  height: 22px;
  background: #123737;
  box-shadow: 0 54px 0 rgba(18, 55, 55, 0.24), 0 108px 0 rgba(18, 55, 55, 0.24);
}

.visual-praxis i {
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: #7bb7b3;
}

.template-logistik {
  --template-fill: #171d26;
  --template-button-text: #f4f1ea;
  background: #f4f1ea;
  color: #171d26;
}

.template-logistik .template-hero {
  background: #f4f1ea;
}

.visual-logistik {
  background: #171d26;
  color: #f4f1ea;
}

.visual-logistik span:nth-child(1) {
  left: 10%;
  right: 10%;
  top: 28%;
  height: 150px;
  background: #d95f3d;
}

.visual-logistik span:nth-child(2) {
  left: 16%;
  right: 28%;
  top: 42%;
  height: 92px;
  background: #f4f1ea;
}

.visual-logistik span:nth-child(3) {
  right: 13%;
  top: 38%;
  width: 118px;
  height: 118px;
  border: 26px solid #f4f1ea;
  border-radius: 50%;
}

.visual-logistik i {
  left: 10%;
  right: 10%;
  bottom: 22%;
  height: 3px;
  background: #f4f1ea;
  box-shadow: 0 32px 0 rgba(244, 241, 234, 0.24);
}

@keyframes websiteMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 11px)); }
}

@keyframes websiteMarqueeReverse {
  from { transform: translateX(calc(-50% - 11px)); }
  to { transform: translateX(0); }
}

@media (max-width: 1120px) {
  .websites-hero,
  .website-offer {
    grid-template-columns: 1fr;
  }

  .not-found-main {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .website-gallery-hero {
    min-height: 660px;
  }

  .website-proof-strip,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .website-proof-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .website-proof-strip article:last-child {
    border-bottom: 0;
  }

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

@media (max-width: 760px) {
  .websites-hero,
  .website-proof-strip,
  .website-offer,
  .not-found-main {
    width: min(calc(100% - 32px), 560px);
  }

  .websites-hero-copy h1,
  .website-offer h2,
  .not-found-copy h1 {
    font-size: 42px;
    line-height: 1.04;
  }

  .website-gallery-hero {
    min-height: 540px;
    margin: 0 -16px;
    padding: 12px 0 28px;
  }

  .shot-window {
    flex-basis: 360px;
    height: 288px;
  }

  .gallery-track-b {
    margin-left: -180px;
  }

  .website-proof-strip {
    margin-top: -18px;
  }

  .website-proof-strip article,
  .industry-copy,
  .offer-card,
  .not-found-panel article {
    padding: 24px;
  }

  .website-proof-strip strong,
  .offer-card strong,
  .not-found-panel strong {
    margin-top: 26px;
    font-size: 22px;
  }

  .industry-preview {
    height: 250px;
  }

  .industry-copy h3 {
    margin-top: 24px;
    font-size: 28px;
  }

  .website-offer {
    padding: 58px 0;
  }

  .not-found-main {
    min-height: auto;
    padding: 58px 0;
  }

  .template-nav {
    display: grid;
    min-height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .template-nav nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .template-hero {
    min-height: auto;
    gap: 34px;
  }

  .template-copy h1 {
    font-size: 42px;
    line-height: 1.04;
  }

  .template-visual {
    min-height: 330px;
  }

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

  .template-proof article,
  .template-services article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid currentColor;
  }

  .template-services h2 {
    margin-bottom: 34px;
  }

  .template-cta {
    display: grid;
  }

  .template-cta h2 {
    font-size: 32px;
  }
}

@media (max-width: 1120px) {
  body[data-page="ki"] .ai-deliverables,
  body[data-page="ki"] .ai-request-flow {
    width: min(calc(100% - 80px), var(--max));
  }

  .agent-workflow {
    min-height: 560px;
  }

  .ai-terms,
  .workflow-proof,
  .agent-roles,
  .deliverable-grid,
  .request-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .agent-roles article:nth-child(3n),
  .agent-roles article {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .agent-roles article:nth-child(2n) {
    border-right: 0;
  }

  .agent-roles article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .deliverable-grid article:nth-child(2n),
  .request-steps article:nth-child(2n) {
    border-right: 0;
  }

  .deliverable-grid article,
  .request-steps article {
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  }

  .deliverable-grid article:nth-last-child(-n + 2),
  .request-steps article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .request-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .request-steps article {
    border-bottom: 0;
  }

  .request-steps article:nth-child(2n) {
    border-right: 1px solid rgba(255, 255, 255, 0.11);
  }

  .request-steps article:last-child {
    border-right: 0;
  }

  .ai-scene {
    grid-template-columns: 1fr;
  }

  .scene-transform {
    width: 1px;
    height: 58px;
    justify-self: center;
  }

  .scene-transform i {
    animation: none;
    left: -6px;
    top: 22px;
  }
}

@media (max-width: 760px) {
  body[data-page="ki"] .ai-deliverables,
  body[data-page="ki"] .ai-request-flow {
    width: min(calc(100% - 32px), 560px);
  }

  .ai-hero-refined {
    gap: 34px;
  }

  .ai-terms,
  .workflow-proof,
  .agent-roles,
  .deliverable-grid,
  .request-steps,
  .system-strip {
    grid-template-columns: 1fr;
  }

  .ai-terms span {
    min-height: 54px;
  }

  .agent-workflow {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 18px;
    padding: 20px;
  }

  .precise-workflow {
    display: block;
    padding: 0;
  }

  .precise-flow-canvas {
    min-height: 420px;
  }

  .precise-flow-svg {
    height: 420px;
  }

  .precise-flow-proof {
    grid-template-columns: 1fr;
  }

  .precise-flow-proof span {
    min-height: 58px;
    padding: 14px 18px;
  }

  .workflow-stage {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }

  .workflow-stage span {
    grid-column: 1 / -1;
  }

  .workflow-stage strong {
    justify-content: center;
    min-height: 42px;
    padding: 0 8px;
    font-size: 12px;
    text-align: center;
  }

  .workflow-core {
    min-height: 350px;
  }

  .workflow-packet {
    display: none;
  }

  .workflow-chip {
    min-width: 92px;
    min-height: 42px;
    font-size: 12px;
  }

  .chip-research { left: 2%; top: 16%; }
  .chip-routing { right: 2%; top: 16%; }
  .chip-data { left: 2%; bottom: 19%; }
  .chip-draft { right: 2%; bottom: 19%; }
  .chip-review { top: 1%; }
  .chip-output { bottom: 1%; }

  .workflow-proof p,
  .scene-before,
  .scene-after,
  .agent-roles article,
  .deliverable-grid article,
  .request-steps article {
    padding: 22px;
  }

  .ai-problem-section,
  .ai-system-section,
  .ai-deliverables,
  .ai-request-flow {
    padding: 58px 0;
  }

  .ai-tabs button {
    min-height: auto;
  }

  .ai-scene {
    min-height: auto;
    gap: 18px;
  }

  .scene-before,
  .scene-after {
    min-height: 210px;
  }

  .scene-before strong,
  .scene-after strong {
    margin-top: 32px;
    font-size: 25px;
  }

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

  .data-grid span,
  .data-grid strong,
  .data-grid b {
    min-height: 48px;
    border-right: 0;
  }

  .doc-card {
    padding: 24px;
  }

  .agent-roles article,
  .deliverable-grid article,
  .request-steps article {
    min-height: auto;
    border-right: 0;
  }

  .agent-roles article:nth-last-child(-n + 2),
  .deliverable-grid article:nth-last-child(-n + 2),
  .request-steps article:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  }

  .agent-roles article:last-child,
  .deliverable-grid article:last-child,
  .request-steps article:last-child {
    border-bottom: 0;
  }

  .agent-roles strong,
  .deliverable-grid strong,
  .request-steps strong {
    margin-top: 44px;
    font-size: 24px;
  }

  .system-strip i {
    display: none;
  }

  .ai-guarantee-section > div:first-child,
  .guarantee-card {
    padding: 28px;
  }
}

@media (max-width: 1120px) {
  .practice-hero,
  .practice-analysis-section,
  .practice-website-showcase,
  .practice-pilot-section,
  .industry-entry,
  .ki-industry-teaser {
    grid-template-columns: 1fr;
  }

  .practice-hero {
    padding-top: 82px;
  }

  .practice-hero-system {
    min-height: 640px;
  }

  .practice-dashboard-window {
    left: 0;
    width: 64%;
  }

  .practice-flow-window {
    right: 0;
    width: 72%;
  }

  .practice-problem-grid,
  .pilot-steps {
    grid-template-columns: 1fr;
  }

  .practice-problem-grid article,
  .pilot-steps article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .practice-problem-grid article:last-child,
  .pilot-steps article:last-child {
    border-bottom: 0;
  }

  .practice-problem-grid h3,
  .pilot-steps h3 {
    margin-top: 48px;
  }

  .lever-card {
    grid-template-columns: 50px 116px minmax(0, 1fr);
  }

  .ki-industry-teaser .button {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .practice-hero,
  .practice-problems,
  .practice-levers,
  .practice-analysis-section,
  .practice-website-section,
  .practice-pilot-section,
  .ki-industry-teaser {
    width: min(calc(100% - 28px), var(--max));
  }

  .practice-hero {
    min-height: auto;
    padding: 42px 0 28px;
  }

  .practice-hero .hero-copy h1 {
    font-size: 44px;
  }

  .practice-hero .hero-copy p {
    margin-top: 22px;
    font-size: 17px;
  }

  .practice-hero .hero-actions {
    margin-top: 28px;
  }

  .practice-hero-proof {
    gap: 8px;
    margin-top: 20px;
  }

  .practice-hero-proof span {
    min-height: 30px;
  }

  .practice-hero-system {
    min-height: auto;
    display: grid;
    gap: 14px;
    margin-top: 24px;
  }

  .practice-dashboard-window,
  .practice-flow-window {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    min-width: 0;
  }

  .practice-dashboard {
    padding: 18px;
  }

  .practice-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .practice-dashboard-grid article,
  .practice-dashboard-grid article + article {
    min-height: 90px;
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .practice-dashboard-grid article:last-child {
    border-bottom: 0;
  }

  .practice-flow-svg {
    min-height: 260px;
  }

  .practice-node text {
    font-size: 12px;
  }

  .practice-problems,
  .practice-levers,
  .practice-analysis-section,
  .practice-website-section,
  .practice-pilot-section {
    padding: 58px 0;
  }

  .practice-problem-grid article,
  .pilot-steps article,
  .industry-entry,
  .ki-industry-teaser {
    padding: 24px;
  }

  .practice-problem-grid h3,
  .pilot-steps h3 {
    font-size: 25px;
  }

  .lever-card {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 16px;
    padding: 18px;
  }

  .lever-icon {
    grid-column: 1 / -1;
    min-height: 118px;
    order: -1;
  }

  .lever-copy {
    grid-column: 1 / -1;
  }

  .lever-title-row {
    display: block;
  }

  .lever-title-row strong {
    margin-top: 12px;
  }

  .lever-copy h3 {
    font-size: 24px;
  }

  .lever-meta {
    grid-template-columns: 1fr;
  }

  .practice-analysis-section {
    gap: 30px;
  }

  .analysis-copy h2,
  .practice-pilot-section h2,
  .industry-entry h2,
  .ki-industry-teaser h2 {
    font-size: 34px;
  }

  .report-table {
    grid-template-columns: 1fr;
  }

  .report-table span,
  .report-table b,
  .report-table i {
    border-right: 0;
  }

  .practice-website-showcase {
    gap: 18px;
  }

  .practice-site-mock {
    min-height: auto;
  }

  .practice-site-mock header,
  .practice-site-mock section,
  .practice-site-services {
    padding-left: 18px;
    padding-right: 18px;
  }

  .practice-site-mock header {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .practice-site-mock nav {
    flex-wrap: wrap;
  }

  .practice-site-mock section {
    grid-template-columns: 1fr;
    padding-top: 34px;
  }

  .practice-site-mock h3 {
    font-size: 32px;
  }

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

  .website-rules-list article {
    min-height: auto;
  }

  .website-rules-list h3 {
    margin-top: 34px;
  }

  .pilot-statement {
    padding: 28px;
  }

  .industry-entry {
    margin-bottom: 58px;
  }

  .industry-card {
    min-height: auto;
  }

  .primary-industry {
    grid-template-columns: 1fr;
  }

  .primary-industry-image img {
    min-height: 190px;
  }

  .primary-industry h3 {
    margin-top: 30px;
  }
}

/* Ärzte page: image-led layout */
.practice-hero {
  grid-template-columns: minmax(340px, 0.68fr) minmax(680px, 1.32fr);
  gap: 34px;
  width: min(calc(100% - 64px), 1380px);
}

.practice-hero .hero-copy h1 {
  font-size: clamp(64px, 5.7vw, 84px);
}

.practice-hero-image {
  min-height: 0;
  margin: 0;
  align-self: center;
}

.practice-hero-image img {
  width: min(930px, 112%);
  max-width: none;
  margin-left: -18px;
  filter: drop-shadow(0 28px 72px rgba(7, 9, 8, 0.12));
}

.practice-costs,
.practice-levers,
.practice-analysis-section,
.practice-website-section,
.practice-pilot-section {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 80px), var(--max));
  margin: 0 auto;
  padding: 78px 0;
}

.practice-costs {
  border-top: 1px solid var(--line);
}

.practice-costs .section-head.simple.solo {
  max-width: none;
  text-align: center;
  margin-bottom: 38px;
}

.practice-costs .section-head.simple h2 {
  font-size: 36px;
}

.practice-cost-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.practice-cost-grid article {
  min-height: 218px;
  padding: 32px 28px;
  border-right: 1px solid var(--line);
}

.practice-cost-grid article:last-child {
  border-right: 0;
}

.practice-cost-grid svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.practice-cost-grid h3 {
  margin: 28px 0 12px;
  font-size: 18px;
  line-height: 1.16;
}

.practice-cost-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.48;
}

.lever-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.lever-tile {
  position: relative;
  min-height: 390px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 44px rgba(7, 9, 8, 0.05);
}

.lever-tile.recommended {
  border-color: var(--dark);
  background: linear-gradient(180deg, rgba(145, 237, 0, 0.08) 0, rgba(255, 255, 255, 0.96) 132px);
}

.lever-reco {
  position: absolute;
  top: -1px;
  right: -1px;
  z-index: 1;
  width: fit-content;
  height: 34px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0 11px;
  border: 1px solid var(--dark);
  background: rgba(237, 255, 215, 0.92);
  color: #315400;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.035em;
}

.lever-reco::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent);
}

.lever-badge {
  position: absolute;
  left: -1px;
  top: -1px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--dark);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.lever-tile-icon {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  margin: 20px auto 30px;
  border-radius: 50%;
  background: rgba(145, 237, 0, 0.18);
}

.lever-tile-icon svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lever-tile-icon text {
  fill: var(--ink);
  stroke: none;
  font-size: 13px;
  font-weight: 900;
}

.lever-tile h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.08;
}

.lever-tile p {
  margin: 12px 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.lever-tile ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 1121px) {
  .lever-tile {
    display: grid;
    grid-template-rows: 142px 48px 126px auto;
    align-content: start;
  }

  .lever-tile-icon {
    align-self: center;
  }

  .lever-tile h3,
  .lever-tile p,
  .lever-tile ul {
    align-self: start;
  }

  .lever-tile p {
    margin: 12px 0 0;
  }
}

.lever-tile li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.lever-tile li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  background: var(--accent);
}

.analysis-image-frame,
.practice-site-image-frame {
  margin: 0;
  overflow: hidden;
}

.practice-hero-image {
  overflow: hidden;
}

.analysis-image-frame img,
.practice-site-image-frame img {
  width: 100%;
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow);
}

.practice-analysis-section {
  grid-template-columns: minmax(0, 0.62fr) minmax(620px, 1fr);
  gap: 66px;
  border-top: 1px solid var(--line);
}

.analysis-image-frame img {
  background: #fff;
}

.practice-website-showcase {
  grid-template-columns: minmax(0, 1fr) 360px;
}

.practice-site-image-frame img {
  background: #fff;
}

.practice-pilot-section {
  border-top: 1px solid var(--line);
}

@media (max-width: 1120px) {
  .practice-hero {
    grid-template-columns: 1fr;
    width: min(calc(100% - 64px), var(--max));
  }

  .practice-hero-image img {
    width: 100%;
    margin-left: 0;
  }

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

  .practice-analysis-section,
  .practice-website-showcase {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .practice-hero,
  .practice-costs,
  .practice-levers,
  .practice-analysis-section,
  .practice-website-section,
  .practice-pilot-section {
    width: min(calc(100% - 28px), var(--max));
  }

  .practice-hero {
    padding-top: 40px;
  }

  .practice-hero .hero-copy h1 {
    font-size: 44px;
  }

  .practice-hero-image {
    margin-top: 22px;
    overflow: visible;
  }

  .practice-hero-image img {
    width: 130%;
    margin-left: -15%;
  }

  .practice-costs,
  .practice-levers,
  .practice-analysis-section,
  .practice-website-section,
  .practice-pilot-section {
    padding: 54px 0;
  }

  .practice-costs .section-head.simple h2 {
    font-size: 30px;
  }

  .practice-cost-grid,
  .lever-grid {
    grid-template-columns: 1fr;
  }

  .practice-cost-grid article {
    min-height: auto;
    padding: 24px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .practice-cost-grid article:last-child {
    border-bottom: 0;
  }

  .lever-tile {
    min-height: auto;
  }

  .lever-reco {
    right: -1px;
    top: -1px;
    font-size: 10px;
  }

  .lever-tile-icon {
    margin-top: 10px;
  }

  .analysis-image-frame img,
  .practice-site-image-frame img {
    width: 128%;
    max-width: none;
    margin-left: -14%;
  }
}

/* Ärzte page: native Mac windows with generated content only */
.practice-hero {
  grid-template-columns: minmax(360px, 0.62fr) minmax(720px, 1.38fr);
  gap: 48px;
  width: min(calc(100% - 72px), 1440px);
  min-height: calc(100vh - 78px);
  align-items: center;
}

.practice-hero .hero-copy h1 {
  max-width: 620px;
  font-size: clamp(58px, 5.3vw, 82px);
  line-height: 0.96;
}

.practice-hero .hero-copy p {
  max-width: 570px;
  font-size: 19px;
  line-height: 1.48;
}

.practice-hero-stack {
  position: relative;
  min-height: 610px;
  overflow: visible;
}

.practice-mock-window {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(7, 9, 8, 0.2);
  background: #fff;
  box-shadow: 0 30px 90px rgba(7, 9, 8, 0.14);
}

.practice-mock-window .window-bar {
  height: 42px;
  background: rgba(255, 255, 255, 0.94);
}

.practice-mock-window .window-bar i {
  opacity: 0.48;
}

.practice-window-content {
  overflow: hidden;
  background: #fff;
}

.practice-window-content img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.practice-calendar-window {
  position: absolute;
  left: 0;
  top: 172px;
  width: 64%;
  aspect-ratio: 1.52;
  z-index: 1;
}

.practice-ai-window {
  position: absolute;
  right: 0;
  top: 96px;
  width: 72%;
  aspect-ratio: 1.52;
  z-index: 2;
  border-color: rgba(145, 237, 0, 0.22);
  background: var(--dark);
  box-shadow: 0 34px 96px rgba(7, 9, 8, 0.2);
}

.practice-ai-window .window-bar {
  background: #0c1110;
  border-bottom-color: rgba(145, 237, 0, 0.18);
}

.practice-ai-window .window-bar i {
  background: rgba(145, 237, 0, 0.14);
}

.practice-ai-window .practice-window-content {
  background: #070b0a;
}

.practice-ai-window img {
  object-position: center;
}

.practice-site-browser {
  align-self: start;
  border-color: rgba(7, 9, 8, 0.18);
  box-shadow: 0 30px 90px rgba(7, 9, 8, 0.12);
}

.practice-site-browser .practice-window-content {
  aspect-ratio: 1.5;
}

.practice-site-browser img {
  border: 0;
  box-shadow: none;
  object-fit: cover;
  object-position: top center;
}

.analysis-image-frame {
  border: 1px solid rgba(7, 9, 8, 0.16);
  background: #fff;
  box-shadow: 0 28px 80px rgba(7, 9, 8, 0.1);
}

.analysis-image-frame img {
  border: 0;
  box-shadow: none;
}

@media (min-width: 1440px) {
  .practice-hero-stack {
    min-height: 650px;
  }

  .practice-calendar-window {
    width: 65%;
  }

  .practice-ai-window {
    width: 73%;
  }
}

@media (max-width: 1120px) {
  .practice-hero {
    grid-template-columns: 1fr;
    width: min(calc(100% - 64px), var(--max));
    min-height: auto;
    padding-bottom: 70px;
  }

  .practice-hero-stack {
    min-height: 560px;
  }

  .practice-calendar-window {
    width: 62%;
    top: 170px;
  }

  .practice-ai-window {
    width: 70%;
    top: 72px;
  }
}

@media (max-width: 760px) {
  .practice-hero {
    width: min(calc(100% - 28px), var(--max));
    gap: 26px;
    padding-top: 42px;
    padding-bottom: 46px;
  }

  .practice-hero .hero-copy h1 {
    font-size: 43px;
    line-height: 0.98;
  }

  .practice-hero .hero-copy p {
    font-size: 16px;
    line-height: 1.5;
  }

  .practice-hero-stack {
    min-height: 340px;
    overflow: hidden;
  }

  .practice-mock-window .window-bar {
    height: 28px;
  }

  .practice-mock-window .window-bar span {
    width: 7px;
    height: 7px;
  }

  .practice-calendar-window {
    left: -42px;
    top: 122px;
    width: 82%;
  }

  .practice-ai-window {
    right: -54px;
    top: 42px;
    width: 88%;
  }

  .practice-site-browser .practice-window-content {
    aspect-ratio: 1.48;
  }

  .practice-site-browser img {
    object-fit: contain;
    object-position: center top;
    background: #fff;
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .analysis-image-frame img {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }
}

/* Ärzte page: QA fixes after rendered screenshot review */
.practice-costs,
.practice-levers,
.practice-analysis-section,
.practice-website-section,
.practice-pilot-section,
.contact-form-section,
.practice-faq {
  scroll-margin-top: 116px;
}

.practice-hero {
  grid-template-columns: minmax(500px, 0.72fr) minmax(760px, 1.28fr);
  gap: 34px;
  padding: 46px 0 34px;
  align-items: start;
}

.practice-hero .hero-copy {
  padding-top: 84px;
}

.practice-hero .hero-copy h1 {
  max-width: 570px;
  font-size: clamp(50px, 3.75vw, 60px);
  line-height: 1;
}

.practice-hero .hero-copy p {
  max-width: 590px;
  margin-top: 24px;
}

.practice-hero .hero-actions {
  margin-top: 30px;
}

.practice-hero-stack {
  min-height: 570px;
  margin-top: 50px;
  transform: translateY(-8px);
}

.practice-calendar-window {
  left: 4px;
  top: 42px;
  width: 63%;
}

.practice-ai-window {
  right: 0;
  top: 196px;
  width: 68%;
  aspect-ratio: 1.6;
}

.practice-ai-window img {
  object-fit: contain;
  object-position: center;
}

.practice-reception-window {
  border-color: rgba(7, 9, 8, 0.18);
  background: #fff;
  box-shadow: 0 34px 96px rgba(7, 9, 8, 0.16);
}

.practice-reception-window .window-bar {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: rgba(7, 9, 8, 0.14);
}

.practice-reception-window .window-bar i {
  background: rgba(7, 9, 8, 0.12);
}

.practice-reception-window .practice-window-content {
  background: #fff;
}

.practice-reception-window img {
  object-fit: cover;
  object-position: center;
}

.practice-costs,
.practice-levers,
.practice-analysis-section,
.practice-website-section,
.practice-pilot-section {
  padding-top: 70px;
  padding-bottom: 70px;
}

@media (min-width: 1440px) {
  .practice-hero-stack {
    min-height: 585px;
  }

  .practice-calendar-window {
    left: 0;
    top: 42px;
    width: 63%;
  }

  .practice-ai-window {
    right: 0;
    top: 202px;
    width: 68%;
  }
}

@media (max-width: 1120px) {
  .practice-hero {
    grid-template-columns: 1fr;
    padding-bottom: 58px;
  }

  .practice-hero .hero-copy {
    padding-top: 0;
  }

  .practice-hero-stack {
    min-height: 530px;
    margin-top: 0;
    transform: none;
  }

  .practice-calendar-window {
    left: 0;
    top: 48px;
    width: 64%;
  }

  .practice-ai-window {
    right: 0;
    top: 188px;
    width: 70%;
  }
}

@media (max-width: 760px) {
  .practice-costs,
  .practice-levers,
  .practice-analysis-section,
  .practice-website-section,
  .practice-pilot-section,
  .contact-form-section,
  .practice-faq {
    scroll-margin-top: 86px;
  }

  .practice-hero {
    gap: 18px;
    padding-top: 34px;
    padding-bottom: 36px;
  }

  .practice-hero .hero-copy h1 {
    max-width: 360px;
    font-size: 38px;
    line-height: 1;
  }

  .practice-hero .hero-copy p {
    margin-top: 20px;
    font-size: 15.5px;
  }

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

  .practice-hero .hero-actions .button {
    width: 100%;
    min-height: 54px;
  }

  .practice-hero .hero-actions .button.secondary {
    display: none;
  }

  .practice-hero-proof {
    display: none;
  }

  .practice-hero-stack {
    min-height: 300px;
    margin-top: 4px;
    overflow: hidden;
  }

  .practice-calendar-window {
    left: 0;
    top: 36px;
    width: 74%;
  }

  .practice-ai-window {
    right: 0;
    top: 142px;
    width: 84%;
  }
}

/* Branch navigation and vertical pages */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 30px 0 26px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 14px;
  font-weight: 790;
  cursor: pointer;
  outline: none;
}

.nav-dropdown-trigger:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 8px;
}

.nav-dropdown-trigger::before {
  content: "";
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  order: 2;
}

.nav-dropdown-panel {
  position: absolute;
  top: 68px;
  right: -18px;
  width: min(660px, calc(100vw - 42px));
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 10px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-dropdown.open .nav-dropdown-panel,
.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown-trigger.active::after,
.nav-dropdown-trigger:hover::after,
.nav-dropdown.open .nav-dropdown-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 19px;
  height: 2px;
  background: currentColor;
}

body[data-page="ki"] .nav-dropdown-trigger.active::after,
body[data-page="ki"] .nav-dropdown-trigger:hover::after,
body[data-page="ki"] .nav-dropdown.open .nav-dropdown-trigger::after {
  background: var(--accent);
}

.nav-dropdown-panel a {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid transparent;
}

.nav-links .nav-dropdown-panel a::after,
.nav-links .nav-dropdown-panel a:hover::after {
  content: none;
  display: none;
}

.nav-dropdown-panel a:hover {
  border-color: var(--line-dark);
  background: var(--soft);
}

.nav-dropdown-panel span {
  font-size: 14px;
  font-weight: 860;
}

.nav-dropdown-panel small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 650;
}

body[data-page="ki"] .nav-dropdown-panel {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(7, 16, 14, 0.98);
}

body[data-page="ki"] .nav-dropdown-panel a:hover {
  border-color: rgba(145, 237, 0, 0.4);
  background: rgba(145, 237, 0, 0.07);
}

body[data-page="ki"] .nav-dropdown-panel small {
  color: rgba(255, 255, 255, 0.58);
}

.mobile-nav a.active {
  color: var(--accent-dark);
}

body[data-page="ki"] .mobile-nav a.active {
  color: var(--accent);
}

.mobile-nav-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  padding: 8px;
  border-top: 1px solid var(--line);
}

.mobile-nav-group a {
  padding: 10px 12px;
  background: var(--soft);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 780;
}

body[data-page="ki"] .mobile-nav-group {
  border-top-color: rgba(255, 255, 255, 0.14);
}

body[data-page="ki"] .mobile-nav-group a {
  background: rgba(255, 255, 255, 0.06);
}

.home-branches-entry {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(560px, 1fr);
  gap: 50px;
  align-items: stretch;
  margin-bottom: 86px;
  padding: 40px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.9);
}

.home-branches-copy {
  align-self: center;
}

.home-branches-copy > span,
.home-branch-card > span,
.industry-overview-card > span {
  display: inline-flex;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
}

.home-branches-copy h2 {
  max-width: 620px;
  margin: 18px 0 0;
  font-size: 54px;
  line-height: 1;
  font-weight: 900;
}

.home-branches-copy p {
  max-width: 660px;
  margin: 22px 0 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.home-branch-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line-dark);
  background: #fff;
}

.home-branch-card {
  min-height: 178px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.home-branch-card:nth-child(2n) {
  border-right: 0;
}

.home-branch-card:nth-last-child(-n + 1) {
  grid-column: span 2;
  border-bottom: 0;
}

.home-branch-card:first-child {
  background: var(--dark);
  color: #fff;
}

.home-branch-card:first-child p {
  color: rgba(255, 255, 255, 0.72);
}

.home-branch-card:hover {
  transform: translateY(-2px);
  background: var(--soft);
}

.home-branch-card:first-child:hover {
  background: #111b17;
}

.home-branch-card h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1.05;
}

.home-branch-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.industries-hero,
.vertical-hero,
.industries-overview,
.vertical-pain-section,
.vertical-lever-section,
.vertical-guarantee-section,
.vertical-faq {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 80px), var(--max));
  margin: 0 auto;
}

.industries-hero,
.vertical-hero {
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1fr);
}

.industries-hero .hero-copy h1 {
  max-width: 760px;
  font-size: 64px;
}

.vertical-hero .hero-copy h1 {
  max-width: 740px;
  font-size: 58px;
}

.industries-map {
  min-height: 500px;
  position: relative;
  align-self: center;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background:
    linear-gradient(rgba(7, 9, 8, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 9, 8, 0.04) 1px, transparent 1px),
    #fff;
  background-size: 70px 70px;
  box-shadow: var(--shadow);
}

.industries-map b {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 144px;
  height: 144px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--dark);
  color: var(--accent);
  font-size: 20px;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 18px rgba(145, 237, 0, 0.12), 0 22px 60px rgba(7, 9, 8, 0.18);
}

.industries-map span {
  position: absolute;
  min-width: 132px;
  padding: 14px 16px;
  border: 1px solid var(--line-dark);
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  text-align: center;
}

.industries-map span:nth-child(1) { left: 8%; top: 18%; }
.industries-map span:nth-child(2) { right: 9%; top: 18%; }
.industries-map span:nth-child(3) { left: 9%; bottom: 18%; }
.industries-map span:nth-child(4) { right: 8%; bottom: 18%; }
.industries-map span:nth-child(5) { left: 50%; bottom: 8%; transform: translateX(-50%); }

.industries-map i {
  position: absolute;
  inset: 25% 17%;
  border: 1px solid rgba(145, 237, 0, 0.34);
  border-radius: 50%;
}

.industries-map i:nth-of-type(2) {
  inset: 34% 27%;
  border-color: rgba(7, 9, 8, 0.12);
}

.industries-map i:nth-of-type(3) {
  inset: 17% 32%;
  border-color: rgba(145, 237, 0, 0.22);
  transform: rotate(28deg);
}

.industries-overview,
.vertical-pain-section,
.vertical-lever-section,
.vertical-guarantee-section,
.vertical-faq {
  padding: 92px 0;
}

.industry-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.industry-overview-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(7, 9, 8, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.industry-overview-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-dark);
  box-shadow: var(--shadow);
}

.industry-overview-card h3 {
  margin: 0;
  font-size: 31px;
  line-height: 1.02;
}

.industry-overview-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.industry-overview-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.industry-overview-card small {
  padding: 7px 9px;
  background: var(--soft);
  color: var(--muted);
  font-size: 11px;
  font-weight: 760;
}

.industry-overview-card strong {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent-dark);
  font-size: 14px;
}

.vertical-visual {
  min-height: 500px;
  align-self: center;
  overflow: hidden;
  border: 1px solid rgba(145, 237, 0, 0.28);
  background:
    linear-gradient(rgba(145, 237, 0, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(145, 237, 0, 0.06) 1px, transparent 1px),
    var(--dark);
  background-size: 64px 64px;
  color: #fff;
  box-shadow: var(--shadow);
}

.vertical-visual .window-bar {
  border-bottom-color: rgba(145, 237, 0, 0.24);
}

.vertical-visual .window-bar i {
  background: rgba(255, 255, 255, 0.14);
}

.vertical-flow-board {
  min-height: 345px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 154px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 42px 36px 26px;
}

.flow-column {
  display: grid;
  gap: 12px;
}

.flow-column small {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.flow-column span {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 760;
}

.flow-core {
  position: relative;
  width: 154px;
  height: 154px;
  display: grid;
  place-items: center;
  border: 1px solid var(--accent);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(145, 237, 0, 0.2), rgba(145, 237, 0, 0.04) 58%, transparent 60%);
  box-shadow: 0 0 48px rgba(145, 237, 0, 0.24);
}

.flow-core::before,
.flow-core::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent));
}

.flow-core::before {
  right: 100%;
}

.flow-core::after {
  left: 100%;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.flow-core b {
  position: relative;
  z-index: 2;
  font-size: 32px;
  color: var(--accent);
}

.flow-core i {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(145, 237, 0, 0.75);
}

.flow-core i:nth-child(2) { left: 26px; top: 46px; }
.flow-core i:nth-child(3) { right: 24px; top: 74px; }
.flow-core i:nth-child(4) { left: 50px; bottom: 28px; }

.vertical-flow-status {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 0 36px 32px;
}

.vertical-flow-status span {
  padding: 12px;
  border: 1px solid rgba(145, 237, 0, 0.18);
  background: rgba(145, 237, 0, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.vertical-pain-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 36px;
  border: 1px solid var(--line-dark);
  background: #fff;
}

.vertical-pain-grid article {
  min-height: 260px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}

.vertical-pain-grid article:last-child {
  border-right: 0;
}

.vertical-pain-grid span,
.vertical-number,
.pilot-steps article span {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
}

.vertical-pain-grid h3 {
  margin: 86px 0 12px;
  font-size: 28px;
  line-height: 1.02;
}

.vertical-pain-grid p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.48;
}

.vertical-lever-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.vertical-lever-grid article {
  min-height: 470px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.96);
}

.vertical-lever-grid article.recommended {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

.vertical-reco {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 20px;
  padding: 8px 10px;
  background: var(--accent);
  color: var(--ink);
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
}

.vertical-lever-grid h3 {
  margin: 72px 0 14px;
  font-size: 24px;
  line-height: 1.04;
}

.vertical-lever-grid article.recommended h3 {
  margin-top: 34px;
}

.vertical-lever-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.48;
}

.vertical-lever-grid article.recommended p {
  color: rgba(255, 255, 255, 0.72);
}

.vertical-lever-grid ul {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding: 22px 0 0;
  list-style: none;
}

.vertical-lever-grid li {
  position: relative;
  padding-left: 17px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.38;
}

.vertical-lever-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--accent);
}

.vertical-lever-grid article.recommended li {
  color: rgba(255, 255, 255, 0.74);
}

.vertical-guarantee-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1fr);
  gap: 64px;
  align-items: stretch;
  border-top: 1px solid var(--line-dark);
}

.vertical-guarantee-section .pilot-statement h2 {
  margin: 0;
  font-size: 48px;
  line-height: 1.02;
}

.vertical-faq {
  padding-top: 0;
}

@media (max-width: 1120px) {
  .nav-dropdown {
    display: none;
  }

  .mobile-nav-group a {
    font-size: 15px;
  }

  .home-branches-entry,
  .industries-hero,
  .vertical-hero,
  .vertical-guarantee-section {
    grid-template-columns: 1fr;
  }

  .home-branches-entry {
    padding: 32px;
  }

  .home-branch-grid,
  .industry-overview-grid,
  .vertical-pain-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .vertical-lever-grid article {
    min-height: 360px;
  }

  .vertical-pain-grid article:nth-child(2n) {
    border-right: 0;
  }

  .vertical-pain-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .mobile-nav {
    max-height: calc(100vh - 86px);
    overflow-y: auto;
  }

  .mobile-nav a {
    font-size: 20px;
  }

  .mobile-nav-group {
    grid-template-columns: 1fr;
  }

  .mobile-nav-group a {
    font-size: 14px;
  }

  .home-branches-entry,
  .industries-hero,
  .vertical-hero,
  .industries-overview,
  .vertical-pain-section,
  .vertical-lever-section,
  .vertical-guarantee-section,
  .vertical-faq {
    width: min(calc(100% - 32px), 560px);
  }

  .home-branches-entry {
    padding: 22px;
    gap: 28px;
  }

  .home-branches-copy h2,
  .industries-hero .hero-copy h1,
  .vertical-hero .hero-copy h1,
  .vertical-guarantee-section .pilot-statement h2 {
    font-size: 40px;
    line-height: 1.04;
  }

  .home-branch-grid,
  .industry-overview-grid,
  .vertical-pain-grid,
  .vertical-lever-grid,
  .pilot-steps {
    grid-template-columns: 1fr;
  }

  .home-branch-card,
  .home-branch-card:nth-child(2n),
  .home-branch-card:nth-last-child(-n + 1),
  .vertical-pain-grid article,
  .vertical-pain-grid article:nth-child(2n),
  .vertical-pain-grid article:last-child,
  .pilot-steps article {
    grid-column: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .home-branch-card:last-child,
  .vertical-pain-grid article:last-child,
  .pilot-steps article:last-child {
    border-bottom: 0;
  }

  .industries-map,
  .vertical-visual {
    min-height: 420px;
  }

  .industries-map span {
    min-width: 112px;
    padding: 11px 12px;
    font-size: 12px;
  }

  .industries-map b {
    width: 112px;
    height: 112px;
  }

  .vertical-flow-board {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 18px;
    padding: 26px 22px;
  }

  .flow-core {
    width: 118px;
    height: 118px;
    justify-self: center;
  }

  .flow-core::before,
  .flow-core::after {
    display: none;
  }

  .vertical-flow-status {
    grid-template-columns: 1fr;
    padding: 0 22px 24px;
  }

  .vertical-pain-grid article {
    min-height: 220px;
  }

  .vertical-pain-grid h3 {
    margin-top: 54px;
  }

  .vertical-lever-grid article {
    min-height: auto;
  }

  .vertical-lever-grid h3,
  .vertical-lever-grid article.recommended h3 {
    margin-top: 34px;
  }
}
