:root {
  --ink: #0d2038;
  --black: #041224;
  --muted: #536982;
  --paper: #eef6ff;
  --panel: #f8fbff;
  --surface: #ffffff;
  --line: #c8d9ee;
  --blue: #1168ff;
  --blue-dark: #073d9a;
  --blue-soft: #dcecff;
  --cyan: #28c7ff;
  --green: #168c65;
  --danger: #bf2727;
  --shadow: 8px 8px 0 rgba(4, 18, 36, 0.95);
  --soft-shadow: 0 22px 60px rgba(13, 32, 56, 0.14);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12px 12px, rgba(17, 104, 255, 0.1) 1px, transparent 1.5px) 0 0 / 24px 24px,
    linear-gradient(180deg, #fbfdff 0%, var(--paper) 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  appearance: none;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 12px;
  left: 50%;
  display: flex;
  width: min(var(--max), calc(100% - 32px));
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 18px;
  border: 2px solid var(--blue);
  border-radius: 8px;
  background: rgba(248, 251, 255, 0.94);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
}

.brand,
nav,
.hero-actions,
.lead-magnet,
footer,
.footer-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-family: "Arial Narrow", Impact, Haettenschweiler, sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 2px solid rgba(17, 104, 255, 0.92);
  border-radius: 8px;
  color: var(--surface);
  background:
    radial-gradient(circle at 58% 42%, rgba(40, 199, 255, 0.34), transparent 32%),
    linear-gradient(135deg, rgba(17, 104, 255, 0.46), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent),
    var(--black);
  box-shadow:
    4px 4px 0 var(--blue),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    inset 0 0 24px rgba(40, 199, 255, 0.16);
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.brand-mark::before {
  position: absolute;
  inset: 6px;
  border: 0;
  border-radius: 7px;
  background:
    conic-gradient(from 90deg, transparent 0 16%, var(--cyan) 17% 28%, transparent 29% 48%, rgba(17, 104, 255, 0.95) 49% 64%, transparent 65% 82%, var(--cyan) 83% 92%, transparent 93% 100%);
  content: "";
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 3px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 3px));
  transform-origin: 50% 50%;
  animation: logo-orbit 7.5s linear infinite;
}

.brand-mark::after {
  content: "AI";
  position: relative;
  z-index: 1;
  color: white;
  font-family: Impact, "Arial Narrow", Haettenschweiler, sans-serif;
  font-size: 1.28rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-shadow:
    0 0 10px rgba(40, 199, 255, 0.58),
    0 1px 0 rgba(4, 18, 36, 0.9);
  animation: logo-core 3s ease-in-out infinite;
}

.brand-mark strong,
.logo-pulse,
.logo-ring,
.logo-play {
  display: none;
}

.brand:hover .brand-mark {
  transform: translate(-1px, -1px) scale(1.03);
  box-shadow:
    6px 6px 0 var(--blue),
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    0 0 30px rgba(40, 199, 255, 0.22);
}

@keyframes logo-orbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes logo-core {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.94;
  }

  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

nav a,
.header-cta {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--blue-dark);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

nav a:hover,
.header-cta:hover {
  background: rgba(17, 104, 255, 0.1);
  color: var(--black);
}

.header-cta {
  border: 2px solid var(--black);
  color: var(--surface);
  background: var(--blue);
  box-shadow: 4px 4px 0 var(--black);
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex: 0 0 auto;
  border: 2px solid var(--blue);
  border-radius: 8px;
  color: var(--blue);
  background: var(--surface);
  box-shadow: 4px 4px 0 var(--black);
  cursor: pointer;
}

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

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

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  z-index: 29;
  top: 92px;
  left: 50%;
  display: none;
  width: min(var(--max), calc(100% - 32px));
  padding: 10px;
  border: 2px solid var(--blue);
  border-radius: 8px;
  background: rgba(248, 251, 255, 0.98);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
}

.mobile-nav.is-open {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.mobile-nav a {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 104, 255, 0.24);
  background: rgba(220, 236, 255, 0.58);
  text-align: center;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 440px);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  min-height: 86vh;
  padding: 118px max(16px, calc((100% - var(--max)) / 2)) 48px;
  overflow: hidden;
  border-bottom: 3px solid var(--blue);
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(248, 251, 255, 0.98) 0%, rgba(248, 251, 255, 0.92) 48%, rgba(248, 251, 255, 0.3) 100%),
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(17, 104, 255, 0.12) 38px 40px),
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(40, 199, 255, 0.1) 38px 40px);
  content: "";
}

.hero::after {
  position: absolute;
  top: 126px;
  right: max(18px, calc((100% - var(--max)) / 2));
  width: min(34vw, 420px);
  height: 42%;
  border-top: 3px solid var(--cyan);
  border-right: 3px solid var(--cyan);
  opacity: 0.9;
  content: "";
}

.hero-content,
.hero-side,
.hero-form {
  position: relative;
  z-index: 1;
}

.hero-side {
  display: grid;
  gap: 16px;
  align-self: end;
}

.studio-visual {
  position: relative;
  min-height: 250px;
  padding: 18px;
  border: 2px solid var(--blue);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(40, 199, 255, 0.18), transparent 42%),
    var(--black);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.studio-visual::before {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(40, 199, 255, 0.32);
  border-radius: 6px;
  content: "";
}

.studio-visual::after {
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 180px;
  height: 180px;
  border: 22px solid rgba(40, 199, 255, 0.16);
  border-radius: 50%;
  content: "";
}

.visual-topline,
.visual-routes {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.visual-topline span,
.visual-routes span {
  color: #d3e4f8;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-topline strong {
  color: white;
  font-family: "Arial Narrow", Impact, Haettenschweiler, sans-serif;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.visual-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.visual-grid span {
  min-height: 58px;
  border: 2px solid rgba(211, 228, 248, 0.78);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(40, 199, 255, 0.34), transparent 70%),
    rgba(248, 251, 255, 0.08);
}

.visual-grid span:nth-child(2),
.visual-grid span:nth-child(3) {
  background:
    linear-gradient(90deg, rgba(17, 104, 255, 0.72), transparent 70%),
    rgba(248, 251, 255, 0.08);
}

.visual-routes {
  align-items: stretch;
}

.visual-routes span {
  display: grid;
  min-height: 42px;
  place-items: center;
  flex: 1;
  border: 1px solid rgba(40, 199, 255, 0.5);
  border-radius: 8px;
  color: white;
  background: rgba(17, 104, 255, 0.22);
}

.eyebrow,
label span,
.section-heading span,
.article-card > span,
.article-header > span,
.article-cta span,
.admin-hero span,
.admin-toolbar span {
  margin: 0;
  color: var(--blue);
  font-family: "Arial Narrow", Impact, Haettenschweiler, sans-serif;
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1,
h2,
h3,
.stat strong,
.process-row strong,
.metric-card strong {
  margin: 0;
  font-family: "Arial Narrow", Impact, Haettenschweiler, sans-serif;
  font-weight: 900;
  letter-spacing: 0.005em;
  line-height: 0.96;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin-top: 12px;
  color: var(--black);
  font-size: clamp(3rem, 6.1vw, 5.7rem);
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

h3 {
  font-size: clamp(1.65rem, 2.2vw, 2.15rem);
}

p {
  overflow-wrap: anywhere;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: #263f5c;
  font-size: clamp(1.08rem, 1.55vw, 1.25rem);
  font-weight: 750;
}

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

.button,
.primary-link,
.secondary-link,
.lead-form button,
.admin-login button,
.admin-actions button,
.provider-card button,
.search-card button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 2px solid var(--black);
  border-radius: 8px;
  box-shadow: 5px 5px 0 var(--black);
  font-weight: 900;
  cursor: pointer;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button.primary,
.primary-link,
.lead-form button,
.admin-login button,
.admin-actions button,
.provider-card button,
.search-card button {
  color: var(--surface);
  background: var(--blue);
}

.button.secondary,
.secondary-link {
  color: var(--blue-dark);
  background: var(--panel);
}

.button:hover,
.primary-link:hover,
.secondary-link:hover,
.lead-form button:hover,
.admin-login button:hover,
.admin-actions button:hover,
.provider-card button:hover,
.search-card button:hover {
  transform: translate(-1px, -1px);
  box-shadow: 7px 7px 0 var(--black);
}

button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 720px;
  margin-top: 24px;
}

.hero-metrics span {
  min-height: 58px;
  padding: 10px 12px;
  border: 2px solid var(--blue);
  border-radius: 8px;
  background: rgba(248, 251, 255, 0.9);
  color: var(--blue-dark);
  font-family: "Arial Narrow", Impact, Haettenschweiler, sans-serif;
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.hero-metrics strong {
  display: block;
  color: var(--cyan);
}

.band {
  background: var(--panel);
}

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

.stat {
  min-height: 150px;
  padding: 34px clamp(20px, 5vw, 56px);
  border-right: 1px solid var(--line);
  background: var(--panel);
}

.stat strong {
  display: block;
  color: var(--blue);
  font-size: clamp(2.35rem, 4.2vw, 4.5rem);
}

.stat span {
  color: var(--muted);
  font-weight: 900;
}

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

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

.section-heading h2 {
  margin-top: 8px;
}

.muted,
.intro-grid p,
.service-card p,
.service-row p,
.service-row li,
.service-item p,
.process-row p,
.lead-magnet p,
.article-card p,
.contact-section p,
.blog-hero p,
.article-body p,
.article-cta p,
.admin-hero p,
.admin-toolbar p,
.empty-state {
  color: var(--muted);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 5vw, 64px);
  max-width: 1000px;
}

.intro-grid p {
  margin: 0;
  font-size: 1.13rem;
  font-weight: 750;
}

.intro-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
}

.intro-points span {
  min-height: 96px;
  display: grid;
  place-items: center;
  border: 2px solid var(--blue);
  border-radius: 8px;
  color: var(--blue-dark);
  background: var(--surface);
  box-shadow: 5px 5px 0 var(--black);
  font-family: "Arial Narrow", Impact, Haettenschweiler, sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
}

.showcase,
.process,
.contact {
  padding: 92px max(16px, calc((100% - var(--max)) / 2));
  border-top: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
}

.service-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  min-height: 250px;
  padding: 22px;
  border: 2px solid var(--blue);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 5px 5px 0 var(--black);
}

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px;
  grid-template-rows: auto 1fr;
  gap: 18px;
  align-items: end;
  min-height: 342px;
  padding: 22px;
  border: 2px solid var(--blue);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.98)),
    radial-gradient(circle at 84% 18%, rgba(40, 199, 255, 0.14), transparent 32%);
  box-shadow: 5px 5px 0 var(--black);
  overflow: hidden;
}

.service-row::before,
.service-card::before,
.service-item::before,
.process-row article::before,
.article-card::before {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 56px;
  height: 20px;
  border-top: 2px solid var(--cyan);
  border-right: 2px solid var(--cyan);
  content: "";
}

.service-art {
  position: relative;
  z-index: 1;
  display: grid;
  grid-column: 1 / -1;
  min-height: 178px;
  place-items: center;
  border: 2px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 24px 24px, rgba(17, 104, 255, 0.12) 1px, transparent 1.5px) 0 0 / 22px 22px,
    linear-gradient(135deg, rgba(220, 236, 255, 0.86), rgba(255, 255, 255, 0.96));
  overflow: hidden;
}

.service-art::before,
.service-art::after {
  position: absolute;
  width: 42px;
  height: 42px;
  content: "";
  pointer-events: none;
}

.service-art::before {
  top: 16px;
  left: 18px;
  border-top: 2px solid var(--blue);
  border-left: 2px solid var(--blue);
}

.service-art::after {
  right: 18px;
  bottom: 16px;
  border-right: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
}

.service-art svg {
  position: relative;
  z-index: 1;
  width: min(100%, 320px);
  height: 168px;
  overflow: visible;
}

.dark-art {
  background:
    radial-gradient(circle at 80% 28%, rgba(40, 199, 255, 0.26), transparent 30%),
    linear-gradient(135deg, #061a34, var(--black));
}

.art-window,
.art-panel,
.art-rail {
  fill: rgba(255, 255, 255, 0.88);
  stroke: var(--black);
  stroke-width: 4;
}

.dark-art .art-window {
  fill: rgba(255, 255, 255, 0.06);
  stroke: rgba(211, 228, 248, 0.88);
}

.art-line,
.art-dot,
.art-code,
.art-check,
.art-cap,
.art-prompt {
  fill: none;
  stroke: var(--blue-dark);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dark-art .art-line,
.dark-art .art-prompt {
  stroke: #d3e4f8;
}

.art-fill,
.art-play,
.art-dot-fill,
.art-spark {
  fill: var(--blue);
}

.art-play,
.art-spark {
  filter: drop-shadow(0 10px 18px rgba(17, 104, 255, 0.28));
}

.service-icon,
.service-item > span,
.process-row strong {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 2px solid var(--black);
  border-radius: 8px;
  color: var(--surface);
  background: var(--blue);
  box-shadow: 4px 4px 0 var(--black);
  font-family: "Arial Narrow", Impact, Haettenschweiler, sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
}

.service-copy {
  position: relative;
  z-index: 1;
}

.service-card h3,
.service-row h3 {
  margin-bottom: 9px;
  color: var(--black);
}

.service-card p,
.service-row p,
.service-row ul {
  margin: 0;
}

.service-card p {
  max-width: 320px;
  font-weight: 800;
}

.service-arrow {
  position: relative;
  z-index: 1;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  align-self: end;
  justify-self: end;
  border: 2px solid var(--blue);
  border-radius: 8px;
  color: var(--blue);
  background: var(--surface);
  transition: transform 160ms ease, color 160ms ease, background 160ms ease;
}

.service-arrow svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card:hover .service-arrow {
  color: var(--surface);
  background: var(--blue);
  transform: translateX(2px);
}

.service-row ul {
  display: grid;
  gap: 7px;
  padding-left: 18px;
  font-weight: 800;
}

.service-chip {
  grid-column: 1 / -1;
  align-self: end;
  width: fit-content;
  padding: 8px 10px;
  border: 2px solid var(--line);
  border-radius: 999px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 112px;
}

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

.partner-panel,
.supplier-grid {
  display: grid;
  gap: 14px;
}

.supplier-card {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 20px;
  border: 2px solid var(--blue);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 12%, rgba(40, 199, 255, 0.18), transparent 28%),
    var(--surface);
  box-shadow: 5px 5px 0 var(--black);
  overflow: hidden;
}

.supplier-card::before {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 58px;
  height: 22px;
  border-top: 2px solid var(--cyan);
  border-right: 2px solid var(--cyan);
  content: "";
}

.featured-supplier {
  border-color: var(--black);
  background:
    radial-gradient(circle at 92% 12%, rgba(40, 199, 255, 0.22), transparent 28%),
    var(--blue-soft);
}

.supplier-topline {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.supplier-mark {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 2px solid var(--blue);
  border-radius: 8px;
  color: white;
  background:
    radial-gradient(circle at 66% 34%, rgba(40, 199, 255, 0.4), transparent 34%),
    var(--black);
  box-shadow: 4px 4px 0 var(--blue);
  font-family: Impact, "Arial Narrow", Haettenschweiler, sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.supplier-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 6px;
  padding: 5px 8px;
  border: 1px solid rgba(17, 104, 255, 0.32);
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgba(220, 236, 255, 0.75);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.supplier-card h3 {
  color: var(--black);
}

.supplier-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.supplier-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.supplier-tags span {
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgba(248, 251, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 900;
}

.supplier-card .secondary-link {
  position: relative;
  z-index: 1;
  justify-self: start;
  min-height: 44px;
}

.service-item,
.process-row article,
.article-card,
.metric-card,
.admin-panel {
  position: relative;
  border: 2px solid var(--blue);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 5px 5px 0 var(--black);
}

.service-item {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 18px;
  padding: 20px;
}

.service-item.featured {
  border-color: var(--black);
  background: var(--blue-soft);
}

.service-item h3 {
  margin-bottom: 8px;
}

.service-item p {
  margin: 0;
  font-weight: 750;
}

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

.process-row article {
  min-height: 220px;
  padding: 22px;
}

.process-row strong {
  margin-bottom: 26px;
}

.process-row p {
  margin: 10px 0 0;
  font-weight: 750;
}

.lead-magnet {
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  border: 2px solid var(--blue);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.lead-magnet h2 {
  margin-top: 8px;
}

.lead-magnet p {
  max-width: 780px;
  margin: 14px 0 0;
  font-weight: 750;
}

.blog-preview {
  display: grid;
  gap: 20px;
}

.article-card {
  max-width: 920px;
  padding: 28px;
}

.article-card h2,
.article-card h3 {
  margin: 10px 0;
}

.article-card p {
  margin: 0 0 20px;
  font-weight: 750;
}

.article-card .button {
  width: fit-content;
}

.contact {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
}

.lead-form,
.admin-login {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 2px solid var(--blue);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-form {
  align-self: end;
}

.hero-form h2 {
  font-size: clamp(1.85rem, 3vw, 2.8rem);
}

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

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

label {
  display: grid;
  gap: 8px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  border: 2px solid var(--line);
  border-radius: 8px;
  outline: none;
  color: var(--ink);
  background: #ffffff;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(17, 104, 255, 0.14);
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
}

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

.form-status[data-state="error"] {
  color: var(--danger);
}

.form-status[data-state="info"] {
  color: var(--blue);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
  padding-top: 132px;
}

.blog-hero {
  display: grid;
  min-height: 470px;
  align-items: end;
  padding-top: 132px;
}

.blog-hero h1,
.article-header h1,
.admin-hero h1 {
  margin-top: 10px;
  font-size: clamp(3rem, 6vw, 5.5rem);
}

.blog-hero p,
.article-deck {
  max-width: 820px;
  margin: 18px 0 0;
  color: #263f5c;
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
  font-weight: 750;
}

.article-grid {
  display: grid;
  gap: 20px;
}

.article-page {
  background: transparent;
}

.article-header {
  padding: 132px max(20px, calc((100% - var(--max)) / 2)) 54px;
  border-bottom: 2px solid var(--blue);
  background:
    linear-gradient(90deg, rgba(248, 251, 255, 0.98), rgba(248, 251, 255, 0.84)),
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(17, 104, 255, 0.1) 38px 40px);
}

.back-link {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--blue-dark);
  font-weight: 900;
  text-transform: uppercase;
}

.article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 28px;
  color: var(--muted);
  font-weight: 800;
}

.article-byline strong {
  color: var(--ink);
}

.article-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 58px 20px 76px;
}

.article-body p {
  margin: 0 0 24px;
  color: #263f5c;
  font-size: 1.15rem;
  line-height: 1.75;
}

.article-body h2 {
  margin: 46px 0 16px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.article-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 84px;
  padding: 30px;
  border: 2px solid var(--black);
  border-radius: 8px;
  color: white;
  background: var(--black);
  box-shadow: var(--shadow);
}

.article-cta p {
  margin: 10px 0 0;
  color: #d3e4f8;
}

.admin-page {
  background:
    radial-gradient(circle at 12px 12px, rgba(17, 104, 255, 0.1) 1px, transparent 1.5px) 0 0 / 24px 24px,
    var(--paper);
}

.admin-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 32px;
  align-items: end;
  padding-top: 132px;
}

.admin-dashboard {
  display: grid;
  gap: 22px;
}

.admin-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.admin-toolbar h2 {
  margin-top: 8px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.metric-grid,
.admin-panels {
  display: grid;
  gap: 14px;
}

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

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

.metric-card,
.admin-panel {
  padding: 22px;
}

.metric-card span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metric-card strong {
  display: block;
  margin: 10px 0 4px;
  color: var(--blue);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.metric-card p,
.empty-state {
  margin: 0;
  line-height: 1.45;
}

.admin-panel h3 {
  margin-bottom: 16px;
}

.metric-bars {
  display: grid;
  gap: 14px;
}

.metric-bar {
  display: grid;
  gap: 8px;
}

.metric-bar div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
}

.metric-bar i {
  display: block;
  height: 10px;
  border: 2px solid var(--black);
  border-radius: 999px;
  background: var(--blue);
}

.lead-table-wrap {
  overflow-x: auto;
}

.lead-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.lead-table th,
.lead-table td {
  padding: 12px;
  border-bottom: 2px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.lead-table th {
  color: var(--blue-dark);
  background: var(--blue-soft);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-table a {
  color: var(--blue);
  font-weight: 850;
}

footer {
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 28px max(20px, calc((100% - var(--max)) / 2));
  color: #d3e4f8;
  background: var(--black);
  border-top: 3px solid var(--blue);
}

footer strong {
  color: white;
  font-family: "Arial Narrow", Impact, Haettenschweiler, sans-serif;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.footer-links {
  flex-wrap: wrap;
  gap: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: white;
}

@media (max-width: 1040px) {
  .site-header {
    position: fixed;
    top: 12px;
    left: 50%;
    width: calc(100% - 32px);
    margin: 0;
    transform: translateX(-50%);
  }

  .hero,
  .contact,
  .split,
  .contact-section,
  .admin-hero {
    grid-template-columns: 1fr;
  }

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

  .sticky-heading {
    position: static;
  }

  .process-row,
  .service-board,
  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 66px;
    align-items: center;
    gap: 12px;
    padding: 0 12px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
    font-size: clamp(1rem, 5vw, 1.22rem);
  }

  .brand span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
    box-shadow:
      3px 3px 0 var(--blue),
      inset 0 0 0 1px rgba(255, 255, 255, 0.12),
      inset 0 0 18px rgba(40, 199, 255, 0.14);
  }

  .mobile-nav {
    top: 84px;
    width: calc(100% - 32px);
  }

  .hero-metrics,
  .proof,
  .intro-grid,
  .intro-points,
  .service-board,
  .service-row,
  .process-row,
  .contact-form,
  .lead-magnet,
  .article-cta,
  .admin-panels,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .service-row {
    gap: 14px;
  }

  .lead-magnet,
  footer,
  .admin-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    top: 8px;
    width: calc(100% - 20px);
    min-height: 58px;
    padding: 0 10px;
  }

  .mobile-nav {
    top: 74px;
    width: calc(100% - 20px);
    grid-template-columns: 1fr;
  }

  .mobile-nav.is-open {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    width: 38px;
    height: 38px;
    box-shadow: 3px 3px 0 var(--black);
  }

  .section,
  .showcase,
  .process,
  .contact {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4rem);
  }

  h2 {
    font-size: clamp(2.1rem, 12vw, 3.2rem);
  }

  .brand {
    white-space: normal;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-mark::after {
    font-size: 1.05rem;
  }
}

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