:root {
  --primary: #3ecf8e;
  --primary-hover: #30b97a;
  --background: #121212;
  --neutral: #171717;
  --surface: #1c1c1c;
  --surface-2: #222222;
  --text: #ededed;
  --muted: #a3a3a3;
  --quiet: #707070;
  --border: #2e2e2e;
  --warning: #f5c542;
  --error: #f56565;
  --line: rgba(62, 207, 142, 0.16);
  --max: 1100px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--background);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background:
    radial-gradient(ellipse at 18% 8%, rgba(62, 207, 142, 0.12), transparent 28%),
    linear-gradient(120deg, rgba(62, 207, 142, 0.06) 0 1px, transparent 1px 120px),
    linear-gradient(180deg, #121212 0%, #101010 42%, #141414 100%);
  background-color: var(--background);
  background-attachment: fixed;
  color: var(--text);
  font-family: Inter, sans-serif;
  line-height: 1.6;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, transparent 0 118px, rgba(62, 207, 142, 0.045) 118px 119px),
    repeating-linear-gradient(0deg, transparent 0 118px, rgba(62, 207, 142, 0.04) 118px 119px);
  mask-image: linear-gradient(180deg, black, transparent 82%);
  animation: backgroundDrift 26s linear infinite;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(calc(100% - 32px), var(--max));
  min-height: 64px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
  background: rgba(18, 18, 18, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 -1px 0 rgba(62, 207, 142, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.brand img {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.2))
    drop-shadow(0 0 10px rgba(62, 207, 142, 0.36));
}

.desktop-nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
}

.header-cta:hover {
  border-color: var(--primary);
}

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

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-width: 0;
  min-height: calc(100vh - 64px);
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 88px 0 56px;
  border-inline-color: rgba(62, 207, 142, 0.12);
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-inline: 1px solid rgba(46, 46, 46, 0.45);
  pointer-events: none;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(62, 207, 142, 0.1);
  background:
    linear-gradient(90deg, transparent 0 22%, rgba(62, 207, 142, 0.14) 22% 22.25%, transparent 22.25%),
    linear-gradient(transparent 0 64%, rgba(62, 207, 142, 0.12) 64% 64.25%, transparent 64.25%),
    repeating-linear-gradient(135deg, rgba(62, 207, 142, 0.04) 0 1px, transparent 1px 42px);
  opacity: 0.78;
  animation: blueprintPulse 7s ease-in-out infinite;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(62, 207, 142, 0.22), transparent);
  height: 1px;
  top: 24%;
  opacity: 0.75;
  animation: scanLine 8s ease-in-out infinite;
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 45%, black 0%, transparent 72%);
  opacity: 0.45;
  animation: gridPan 22s linear infinite;
}

.blueprint-panels,
.site-map,
.blueprint-lines,
.edge-trace {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.blueprint-panels {
  opacity: 0.72;
}

.blueprint-panel {
  --panel-tilt: 0deg;
  --panel-tilt-mid: 1deg;
  position: absolute;
  display: block;
  border: 1px solid rgba(62, 207, 142, 0.14);
  border-radius: 4px;
  background:
    linear-gradient(90deg, rgba(62, 207, 142, 0.12), transparent 34%),
    repeating-linear-gradient(0deg, transparent 0 17px, rgba(62, 207, 142, 0.1) 17px 18px),
    repeating-linear-gradient(90deg, transparent 0 36px, rgba(62, 207, 142, 0.08) 36px 37px);
  box-shadow: 0 0 34px rgba(62, 207, 142, 0.08);
  transform: rotate(var(--panel-tilt));
  animation: panelFloat 11s ease-in-out infinite;
}

.blueprint-panel::before,
.blueprint-panel::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(62, 207, 142, 0.2);
  border-radius: 3px;
}

.blueprint-panel::before {
  top: 12px;
  left: 12px;
  width: 34%;
  height: 9px;
  background: rgba(62, 207, 142, 0.08);
}

.blueprint-panel::after {
  right: 13px;
  bottom: 13px;
  width: 24px;
  height: 24px;
  box-shadow: inset 0 0 16px rgba(62, 207, 142, 0.08);
}

.blueprint-panel i {
  display: block;
  height: 1px;
  margin: 18px 14px 0;
  background: linear-gradient(90deg, rgba(62, 207, 142, 0.32), transparent);
}

.blueprint-panel i:nth-child(2) {
  width: 68%;
}

.blueprint-panel i:nth-child(3) {
  width: 44%;
}

.blueprint-panel-a {
  top: 12%;
  left: 7%;
  width: 168px;
  height: 118px;
  --panel-tilt: -2deg;
  --panel-tilt-mid: -0.5deg;
}

.blueprint-panel-b {
  top: 38%;
  right: 5%;
  width: 210px;
  height: 136px;
  --panel-tilt: 2deg;
  --panel-tilt-mid: 0.5deg;
  animation-delay: 1.4s;
}

.blueprint-panel-c {
  bottom: 12%;
  left: 13%;
  width: 230px;
  height: 92px;
  --panel-tilt: 1deg;
  --panel-tilt-mid: -1deg;
  animation-delay: 2.6s;
}

.site-map {
  inset: 12% 8%;
  opacity: 0.8;
  animation: mapDrift 15s ease-in-out infinite;
}

.map-link,
.map-node {
  position: absolute;
  display: block;
}

.map-link {
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, transparent, rgba(62, 207, 142, 0.42), rgba(245, 197, 66, 0.25), transparent);
  filter: drop-shadow(0 0 10px rgba(62, 207, 142, 0.16));
  animation: routeGlow 5.6s ease-in-out infinite;
}

.map-link-a {
  top: 24%;
  left: 20%;
  width: 210px;
  transform: rotate(18deg);
}

.map-link-b {
  right: 18%;
  bottom: 30%;
  width: 180px;
  transform: rotate(-25deg);
  animation-delay: 1s;
}

.map-link-c {
  top: 57%;
  left: 16%;
  width: 320px;
  transform: rotate(-4deg);
  animation-delay: 2s;
}

.map-node {
  width: 12px;
  height: 12px;
  border: 1px solid rgba(62, 207, 142, 0.72);
  border-radius: 9999px;
  background: rgba(18, 18, 18, 0.82);
  box-shadow: 0 0 18px rgba(62, 207, 142, 0.26);
  animation: nodePulse 4.8s ease-in-out infinite;
}

.map-node-a {
  top: 22%;
  left: 18%;
}

.map-node-b {
  top: 28%;
  left: 39%;
  animation-delay: 0.8s;
}

.map-node-c {
  right: 18%;
  bottom: 28%;
  animation-delay: 1.6s;
}

.map-node-d {
  left: 48%;
  bottom: 39%;
  animation-delay: 2.4s;
}

.edge-trace {
  inset: 18px;
  border: 1px solid rgba(62, 207, 142, 0.11);
  border-radius: 4px;
  opacity: 0.9;
}

.edge-trace::before,
.edge-trace::after {
  content: "";
  position: absolute;
  display: block;
  background: linear-gradient(90deg, transparent, rgba(62, 207, 142, 0.78), rgba(245, 197, 66, 0.4), transparent);
  filter: drop-shadow(0 0 10px rgba(62, 207, 142, 0.28));
}

.edge-trace::before {
  top: -1px;
  left: -110px;
  width: 110px;
  height: 1px;
  animation: edgeRunX 7.8s linear infinite;
}

.edge-trace::after {
  right: -1px;
  top: -100px;
  width: 1px;
  height: 100px;
  background: linear-gradient(180deg, transparent, rgba(62, 207, 142, 0.76), rgba(245, 197, 66, 0.38), transparent);
  animation: edgeRunY 8.6s linear infinite 1.1s;
}

.blueprint-lines {
  position: absolute;
  inset: 0;
  opacity: 0.85;
}

.route {
  position: absolute;
  display: block;
  border-color: rgba(62, 207, 142, 0.22);
  border-style: solid;
  filter: drop-shadow(0 0 12px rgba(62, 207, 142, 0.12));
  animation: routeGlow 4.8s ease-in-out infinite;
}

.route::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border: 1px solid var(--primary);
  border-radius: 9999px;
  background: var(--background);
  box-shadow: 0 0 16px rgba(62, 207, 142, 0.35);
}

.route-a {
  left: 7%;
  top: 17%;
  width: 180px;
  height: 98px;
  border-width: 1px 0 0 1px;
}

.route-a::after {
  right: -4px;
  top: -4px;
}

.route-b {
  right: 9%;
  bottom: 18%;
  width: 230px;
  height: 120px;
  border-width: 0 1px 1px 0;
  animation-delay: 1.2s;
}

.route-b::after {
  left: -4px;
  bottom: -4px;
}

.route-c {
  left: 20%;
  bottom: 8%;
  width: 42%;
  height: 1px;
  border-width: 1px 0 0;
  animation-delay: 2.1s;
}

.route-c::after {
  right: 18%;
  top: -4px;
}

.hero-window {
  position: absolute;
  z-index: 1;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: rgba(28, 28, 28, 0.82);
  box-shadow: 0 0 30px rgba(62, 207, 142, 0.08);
  backdrop-filter: blur(6px);
}

.hero-window-a {
  right: 3%;
  top: 14%;
  width: clamp(230px, 28vw, 340px);
  padding: 0;
  transform: rotate(2deg);
  animation: windowFloat 8s ease-in-out infinite;
}

.hero-window-b {
  display: none;
  left: 0;
  bottom: 11%;
  width: clamp(240px, 25vw, 330px);
  padding: 16px;
  transform: rotate(-2deg);
  font-family: "Fira Code", monospace;
  font-size: 12px;
  color: var(--muted);
}

.window-bar {
  display: flex;
  gap: 6px;
  padding: 12px;
  border-bottom: 1px solid var(--border);
}

.window-bar span {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: var(--quiet);
}

.browser-frame {
  padding: 16px;
}

.mock-nav,
.mock-hero,
.mock-row span,
.mini-top,
.mini-title,
.mini-copy,
.mini-button,
.menu-lines span,
.photo-strip span,
.checklist span {
  border-radius: 3px;
  background: #2e2e2e;
}

.mock-nav {
  width: 58%;
  height: 10px;
  margin-bottom: 20px;
}

.mock-hero {
  height: 88px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(62, 207, 142, 0.28), #2e2e2e);
}

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

.mock-row span {
  height: 48px;
}

.terminal-line + .terminal-line {
  margin-top: 8px;
}

.terminal-line.ok {
  color: var(--primary);
}

.terminal-line.warn {
  color: var(--warning);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
  max-width: 760px;
  text-align: center;
}

.hero-logo {
  display: block;
  width: min(520px, 84vw);
  height: auto;
  max-height: 250px;
  margin: 0 auto 24px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.22))
    drop-shadow(0 20px 36px rgba(0, 0, 0, 0.48))
    drop-shadow(0 0 24px rgba(62, 207, 142, 0.22));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary);
  font-family: "Fira Code", monospace;
  font-size: 12px;
  font-weight: 500;
}

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

h1 {
  width: 100%;
  max-width: 880px;
  margin-bottom: 20px;
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.96;
  text-wrap: balance;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

h3 {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

.hero-copy {
  max-width: 650px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 9px 16px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button svg,
.service-card svg,
.check-list svg {
  width: 16px;
  height: 16px;
}

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

.button-primary {
  background: var(--primary);
  color: var(--background);
  box-shadow: 0 0 30px rgba(62, 207, 142, 0.1);
  position: relative;
  overflow: hidden;
}

.button-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 0 32%, rgba(255, 255, 255, 0.32) 48%, transparent 64%);
  transform: translateX(-120%);
  animation: buttonSheen 4.2s ease-in-out infinite;
}

.button-primary:hover {
  background: var(--primary-hover);
}

.button-secondary {
  border-color: var(--border);
  background: rgba(28, 28, 28, 0.72);
  color: var(--text);
}

.button-secondary:hover {
  border-color: var(--primary);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 0;
  color: var(--muted);
  font-size: 12px;
}

.trust-strip svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
}

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

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 650px;
  margin-bottom: 32px;
}

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

.service-card,
.example-panel,
.checkup-form {
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.service-card::before,
.example-panel::before,
.checkup-form::before,
.faq-group::before,
.process-list article::before,
.contact-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(62, 207, 142, 0.42), transparent 24% 52%, rgba(245, 197, 66, 0.22), transparent 76%, rgba(62, 207, 142, 0.28)) border-box;
  background-size: 220% 220%;
  mask:
    linear-gradient(#000 0 0) padding-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  border: 1px solid transparent;
  opacity: 0.18;
  animation: borderBreathe 5.5s ease-in-out infinite, borderFlow 11s linear infinite;
}

.service-card::after,
.example-panel::after,
.checkup-form::after,
.faq-group::after,
.process-list article::after,
.contact-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 88px;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(62, 207, 142, 0.72), rgba(245, 197, 66, 0.35), transparent);
  filter: drop-shadow(0 0 8px rgba(62, 207, 142, 0.24));
  transform: translateX(0);
  animation: borderRunner 8.4s linear infinite;
}

.service-card {
  min-height: 250px;
  padding: 18px;
}

.service-card svg {
  margin-bottom: 28px;
  color: var(--primary);
}

.service-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.service-card li + li {
  margin-top: 8px;
}

.service-card p,
.example-panel p,
.about-section p,
.checkup-copy p,
.process-list p {
  color: var(--muted);
}

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

.example-panel {
  padding: 16px;
}

.example-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--quiet);
  font-size: 12px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 3px 8px;
  border-radius: 3px;
  background: rgba(62, 207, 142, 0.15);
  color: var(--primary);
  font-family: "Fira Code", monospace;
  font-size: 11px;
}

.mini-site {
  min-height: 240px;
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #171717;
}

.template-preview {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  margin: 0 0 18px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #171717;
}

.template-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 72%, rgba(18, 18, 18, 0.58)),
    linear-gradient(90deg, transparent, rgba(62, 207, 142, 0.14), transparent);
  opacity: 0.62;
  pointer-events: none;
}

.template-preview img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top center;
}

.mini-top {
  width: 48%;
  height: 10px;
  margin-bottom: 26px;
}

.mini-title {
  width: 72%;
  height: 24px;
  margin-bottom: 12px;
}

.mini-copy {
  width: 88%;
  height: 10px;
  margin-bottom: 8px;
}

.mini-copy.short {
  width: 55%;
}

.mini-button {
  width: 118px;
  height: 32px;
  margin-top: 18px;
  background: var(--primary);
}

.mini-tiles,
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.mini-tiles span {
  height: 44px;
}

.menu-lines {
  display: grid;
  gap: 13px;
  margin: 26px 0;
}

.menu-lines span {
  height: 14px;
}

.photo-strip {
  grid-template-columns: 1.2fr 0.8fr;
}

.photo-strip span {
  height: 62px;
  background: linear-gradient(135deg, rgba(245, 197, 66, 0.28), #2e2e2e);
}

.checklist {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.checklist span {
  height: 18px;
  background: linear-gradient(90deg, rgba(62, 207, 142, 0.3) 0 18px, #2e2e2e 18px 100%);
}

.profile-dots {
  display: flex;
  gap: 12px;
  margin: 28px 0;
}

.profile-dots span {
  width: 54px;
  height: 54px;
  border-radius: 9999px;
  background: linear-gradient(135deg, rgba(245, 101, 101, 0.28), #2e2e2e);
}

.split-section,
.about-section,
.checkup-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  padding-top: 96px;
}

.process-list {
  display: grid;
  gap: 12px;
}

.process-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.process-list ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.process-list li + li {
  margin-top: 8px;
}

.step-number {
  color: var(--primary);
  font-family: "Fira Code", monospace;
  font-size: 13px;
}

.about-section {
  align-items: start;
}

.about-section p {
  margin-bottom: 0;
  font-size: 18px;
}

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

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

.faq-group {
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.faq-group-header {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 16px;
  border-bottom: 1px solid var(--border);
}

.faq-group-header svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--primary);
}

.faq-group-header h3 {
  margin-bottom: 0;
}

.faq-group details {
  border-bottom: 1px solid var(--border);
}

.faq-group details:last-child {
  border-bottom: 0;
}

.faq-group summary {
  display: grid;
  grid-template-columns: 1fr 18px;
  gap: 12px;
  align-items: center;
  padding: 15px 16px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  cursor: pointer;
}

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

.faq-group summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--primary);
  font-family: "Fira Code", monospace;
  font-size: 13px;
  line-height: 1;
}

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

.faq-group p {
  margin: -4px 16px 16px;
  color: var(--muted);
  font-size: 14px;
}

.checkup-section {
  padding-bottom: 96px;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
  color: var(--muted);
}

.check-list li {
  display: flex;
  gap: 8px;
}

.check-list svg {
  flex: 0 0 auto;
  margin-top: 4px;
  color: var(--primary);
}

.contact-box {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

@keyframes backgroundDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 120px 0, 0 120px;
  }
}

@keyframes gridPan {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 44px 44px, 44px 44px;
  }
}

@keyframes panelFloat {
  0%,
  100% {
    opacity: 0.42;
    transform: translate3d(0, 0, 0) rotate(var(--panel-tilt));
  }
  50% {
    opacity: 0.82;
    transform: translate3d(0, -9px, 0) rotate(var(--panel-tilt-mid));
  }
}

@keyframes mapDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(10px, -6px, 0);
  }
}

@keyframes nodePulse {
  0%,
  100% {
    opacity: 0.42;
    transform: scale(0.92);
  }
  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}

@keyframes blueprintPulse {
  0%,
  100% {
    opacity: 0.52;
  }
  50% {
    opacity: 0.86;
  }
}

@keyframes scanLine {
  0%,
  100% {
    top: 18%;
    opacity: 0;
  }
  45%,
  55% {
    opacity: 0.72;
  }
  70% {
    top: 78%;
    opacity: 0;
  }
}

@keyframes routeGlow {
  0%,
  100% {
    opacity: 0.24;
  }
  50% {
    opacity: 0.82;
  }
}

@keyframes windowFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(2deg);
  }
  50% {
    transform: translate3d(0, -10px, 0) rotate(1deg);
  }
}

@keyframes buttonSheen {
  0%,
  55% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}

@keyframes borderBreathe {
  0%,
  100% {
    opacity: 0.12;
  }
  50% {
    opacity: 0.34;
  }
}

@keyframes borderFlow {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 220% 50%;
  }
}

@keyframes borderRunner {
  0% {
    left: -88px;
    opacity: 0;
  }
  12%,
  78% {
    opacity: 0.82;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

@keyframes edgeRunX {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(100vw + 220px));
  }
}

@keyframes edgeRunY {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(calc(100vh + 200px));
  }
}

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

.contact-box svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.contact-box h3 {
  margin-bottom: 2px;
}

.contact-box a {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.contact-box a:hover {
  color: var(--primary-hover);
}

.checkup-form {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.checkup-form label,
fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
}

.checkup-form label span {
  color: var(--quiet);
  font-weight: 400;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--surface);
  color: var(--text);
  outline: none;
}

input {
  height: 38px;
  padding: 8px 12px;
}

textarea {
  min-height: 112px;
  resize: vertical;
  padding: 10px 12px;
}

input:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(62, 207, 142, 0.1);
}

::placeholder {
  color: var(--quiet);
}

fieldset {
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--neutral);
}

legend {
  padding: 0 6px;
  color: var(--text);
}

fieldset label {
  display: flex !important;
  align-items: center;
  gap: 9px;
  color: var(--muted) !important;
  font-weight: 400 !important;
}

input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
}

.form-submit {
  width: 100%;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--primary);
  font-size: 13px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(calc(100% - 32px), var(--max));
  min-height: 76px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  color: var(--quiet);
  font-size: 13px;
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

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

  .split-section,
  .about-section,
  .faq-section,
  .checkup-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 20px);
    margin-right: 10px;
    margin-left: 10px;
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .header-cta {
    min-height: 32px;
    padding-inline: 10px;
    font-size: 12px;
  }

  .section-shell {
    width: calc(100% - 24px);
    margin-right: 12px;
    margin-left: 12px;
  }

  .hero-content {
    justify-self: start;
    width: 100%;
    max-width: 100%;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
  }

  h1 {
    max-width: 100%;
    font-size: 28px;
    line-height: 1.08;
  }

  h2 {
    font-size: 26px;
  }

  .hero-copy,
  .about-section p {
    font-size: 16px;
  }

  .hero-window-a {
    right: -132px;
    top: 34px;
  }

  .blueprint-panel-b,
  .map-link-c,
  .map-node-d {
    display: none;
  }

  .blueprint-panel-a {
    top: 16%;
    left: -72px;
    width: 152px;
  }

  .blueprint-panel-c {
    bottom: 7%;
    left: 7%;
    width: 184px;
  }

  .site-map {
    inset: 10% -8%;
    opacity: 0.52;
  }

  .edge-trace {
    inset: 10px;
  }

  .hero-window-b {
    display: none;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-strip {
    align-items: center;
    flex-direction: column;
    width: 100%;
  }

  .trust-strip span {
    justify-content: center;
    min-width: 0;
  }

  .service-grid,
  .examples-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .section-block,
  .split-section,
  .about-section,
  .faq-section,
  .checkup-section {
    padding-top: 72px;
  }

  .checkup-section {
    padding-bottom: 72px;
  }

  .process-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}
