:root {
  --navy: #0B1D33;
  --navy-2: #102B4B;
  --graphite: #1F2937;
  --muted: #5F6B7A;
  --light: #F3F4F6;
  --white: #FFFFFF;
  --cyan: #00B2E3;
  --cyan-soft: rgba(0, 178, 227, 0.12);
  --border: rgba(31, 41, 55, 0.12);
  --border-strong: rgba(31, 41, 55, 0.2);
  --shadow-sm: 0 12px 30px rgba(11, 29, 51, 0.08);
  --shadow-md: 0 24px 70px rgba(11, 29, 51, 0.14);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1220px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

body.nav-open {
  overflow: hidden;
}

img, svg {
  max-width: 100%;
}

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

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

button {
  cursor: pointer;
}

::selection {
  color: var(--navy);
  background: rgba(0, 178, 227, 0.28);
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 18px;
  z-index: 999;
  padding: 12px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 999px;
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 14px;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.section-pad-lg {
  padding: 148px 0 108px;
}

.section-pad {
  padding: 104px 0;
}

.section-pad-sm {
  padding: 76px 0;
}

.bg-light {
  background: var(--light);
}

.bg-navy {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 80% 0%, rgba(0, 178, 227, 0.2), transparent 32%), var(--navy);
}

.bg-navy::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

.bg-navy > .container {
  position: relative;
  z-index: 1;
}

.text-invert,
.text-invert h2,
.text-invert h3 {
  color: var(--white);
}

.text-invert p {
  color: rgba(255, 255, 255, 0.76);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.8rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 4.1rem);
}

h3 {
  font-size: clamp(1.15rem, 1.6vw, 1.42rem);
  letter-spacing: -0.025em;
}

p {
  margin: 0;
}

.lead {
  max-width: 640px;
  color: #415063;
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  line-height: 1.68;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--cyan);
}

.eyebrow.cyan {
  color: rgba(255, 255, 255, 0.88);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(31, 41, 55, 0.08);
  transition: box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(31, 41, 55, 0.14);
  box-shadow: 0 10px 30px rgba(11, 29, 51, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 11px;
  box-shadow: inset 0 0 0 1px rgba(0, 178, 227, 0.12), 0 10px 24px rgba(11, 29, 51, 0.16);
}

.brand-text {
  font-size: 1.24rem;
}

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

.site-nav > a:not(.btn) {
  position: relative;
  color: #465467;
  font-size: 0.96rem;
  font-weight: 650;
}

.site-nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background: var(--cyan);
  transition: width 180ms ease;
}

.site-nav > a:hover,
.site-nav > a.is-active {
  color: var(--navy);
}

.site-nav > a:hover::after,
.site-nav > a.is-active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
}

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

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

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

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

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(0, 178, 227, 0.55);
  outline-offset: 3px;
}

.btn-primary {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 14px 28px rgba(11, 29, 51, 0.18);
}

.btn-primary:hover {
  box-shadow: 0 18px 36px rgba(11, 29, 51, 0.22);
}

.btn-primary.light {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.btn-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(11, 29, 51, 0.14);
}

.btn-secondary:hover {
  border-color: rgba(0, 178, 227, 0.55);
  box-shadow: 0 16px 36px rgba(11, 29, 51, 0.09);
}

.nav-cta {
  min-height: 42px;
  padding: 12px 18px;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 16%, rgba(0, 178, 227, 0.14), transparent 27%),
    linear-gradient(180deg, #FFFFFF 0%, #F7F8FA 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: var(--header-height) 0 0;
  opacity: 0.55;
  background-image: linear-gradient(rgba(11, 29, 51, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 29, 51, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 72%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: 58px;
}

.hero-grid.compact {
  grid-template-columns: 1.05fr 0.95fr;
}

.hero-copy {
  display: grid;
  gap: 26px;
}

.hero-copy .eyebrow {
  margin-bottom: -3px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  color: #4B5B6D;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(31, 41, 55, 0.1);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-visual {
  min-width: 0;
}

.inspection-panel {
  position: relative;
  overflow: hidden;
  padding: 22px;
  color: var(--white);
  background: linear-gradient(145deg, #0B1D33, #122C4B 54%, #0C2139);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 32px;
  box-shadow: var(--shadow-md);
}

.inspection-panel::before,
.inspection-panel::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.inspection-panel::before {
  right: -80px;
  top: -88px;
  width: 230px;
  height: 230px;
  background: rgba(0, 178, 227, 0.19);
  filter: blur(10px);
}

.inspection-panel::after {
  left: 34px;
  bottom: -58px;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.08);
}

.panel-topline,
.panel-metrics,
.vision-stage {
  position: relative;
  z-index: 1;
}

.panel-topline {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  font-weight: 750;
}

.status-dot {
  width: 9px;
  height: 9px;
  background: var(--cyan);
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(0, 178, 227, 0.14);
}

.panel-code {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.56);
}

.vision-stage {
  display: grid;
  grid-template-columns: 116px 1fr 118px;
  align-items: center;
  gap: 18px;
  min-height: 352px;
  margin: 24px 0;
}

.camera-module,
.decision-module {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  min-height: 142px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
}

.camera-module span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.lens {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: radial-gradient(circle at 45% 40%, #6BE1FF 0 10%, #1C6C8D 11% 22%, #0D2944 23% 56%, #071426 57% 100%);
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: 0 0 0 10px rgba(0, 178, 227, 0.08);
}

.lens::after {
  content: "";
  position: absolute;
  inset: -15px -86px -15px 38px;
  background: linear-gradient(90deg, rgba(0, 178, 227, 0.18), transparent 72%);
  clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 70%);
}

.conveyor {
  position: relative;
  display: flex;
  min-height: 260px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.075) 1px, transparent 1px),
    rgba(255, 255, 255, 0.045);
  background-size: 30px 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
}

.conveyor::before,
.conveyor::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  height: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.conveyor::before { top: 34px; }
.conveyor::after { bottom: 34px; }

.part {
  position: relative;
  width: clamp(54px, 7vw, 82px);
  aspect-ratio: 1;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(210, 222, 232, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.26);
}

.part-one { transform: translateY(8px) rotate(-4deg); opacity: 0.75; }
.part-two { transform: translateY(-8px); }
.part-three { transform: translateY(10px) rotate(5deg); opacity: 0.72; }

.defect-ring {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 24px;
  height: 24px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(0, 178, 227, 0.14);
}

.scan-line {
  position: absolute;
  top: 26px;
  bottom: 26px;
  left: 50%;
  width: 2px;
  background: var(--cyan);
  box-shadow: 0 0 22px rgba(0, 178, 227, 0.78);
  transform: translateX(-50%);
  animation: scan 4.8s ease-in-out infinite;
}

@keyframes scan {
  0%, 100% { left: 38%; opacity: 0.55; }
  50% { left: 62%; opacity: 1; }
}

.decision-module {
  align-content: center;
}

.decision-tag {
  display: inline-flex;
  min-width: 78px;
  justify-content: center;
  padding: 9px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.decision-tag.ok {
  color: #DFF8FF;
  background: rgba(0, 178, 227, 0.14);
  border: 1px solid rgba(0, 178, 227, 0.32);
}

.decision-tag.review {
  color: var(--navy);
  background: var(--white);
}

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

.panel-metrics div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
}

.panel-metrics strong,
.panel-metrics span {
  display: block;
}

.panel-metrics strong {
  font-size: 0.9rem;
}

.panel-metrics span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
}

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

.section-heading.narrow {
  max-width: 720px;
}

.section-heading h2 {
  margin-bottom: 18px;
}

.section-heading p:not(.eyebrow) {
  color: #596879;
  font-size: 1.08rem;
}

.text-invert .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

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

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

.card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  min-height: 248px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 178, 227, 0.44);
  box-shadow: var(--shadow-sm);
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  color: var(--navy);
  background: var(--cyan-soft);
  border: 1px solid rgba(0, 178, 227, 0.18);
  border-radius: 14px;
  font-size: 0.78rem;
  font-weight: 900;
}

.card h3 {
  margin-bottom: 14px;
}

.card p {
  color: #5A6878;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: 58px;
}

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

.split-copy p:not(.eyebrow) {
  max-width: 660px;
  color: #536274;
  font-size: 1.08rem;
}

.split-copy h2 {
  margin-bottom: 20px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 26px;
  color: var(--navy);
  font-weight: 850;
}

.text-link:hover {
  color: #007EA2;
}

.technical-card {
  overflow: hidden;
  padding: 30px;
  background: linear-gradient(180deg, var(--white), #F8FAFC);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.mini-diagram {
  display: grid;
  grid-template-columns: 1fr 42px 1fr 42px 1fr;
  align-items: center;
  margin-bottom: 26px;
}

.mini-diagram span {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 14px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  font-size: 0.9rem;
  font-weight: 850;
  text-align: center;
}

.mini-diagram i {
  display: block;
  height: 2px;
  background: linear-gradient(90deg, rgba(0,178,227,0.18), var(--cyan));
}

.surface-map {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.surface-map span {
  min-height: 84px;
  background:
    linear-gradient(135deg, rgba(0, 178, 227, 0.13), transparent 42%),
    repeating-linear-gradient(45deg, rgba(11, 29, 51, 0.06), rgba(11, 29, 51, 0.06) 1px, transparent 1px, transparent 9px),
    var(--light);
  border: 1px solid rgba(31, 41, 55, 0.1);
  border-radius: 16px;
}

.technical-card p {
  color: #536274;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.benefit-card {
  min-height: 272px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(0, 178, 227, 0.35);
}

.icon-line {
  display: block;
  width: 52px;
  height: 52px;
  margin-bottom: 36px;
  background:
    linear-gradient(var(--cyan), var(--cyan)) center/2px 26px no-repeat,
    linear-gradient(90deg, var(--cyan), var(--cyan)) center/26px 2px no-repeat,
    rgba(0, 178, 227, 0.1);
  border: 1px solid rgba(0, 178, 227, 0.24);
  border-radius: 16px;
}

.benefit-card h3 {
  margin-bottom: 14px;
}

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

.process-step {
  position: relative;
  min-height: 220px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -18px;
  width: 18px;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 178, 227, 0.35), rgba(11, 29, 51, 0.08));
}

.process-step span,
.timeline-step span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--cyan);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.process-step h3 {
  margin-bottom: 12px;
}

.process-step p,
.timeline-step p {
  color: #5A6878;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.use-case {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-weight: 850;
  transition: transform 180ms ease, border-color 180ms ease;
}

.use-case::after {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--cyan);
  border-radius: 50%;
  opacity: 0.78;
}

.use-case:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 178, 227, 0.42);
}

.cta-band {
  color: var(--white);
  background:
    radial-gradient(circle at 84% 15%, rgba(0, 178, 227, 0.24), transparent 30%),
    linear-gradient(135deg, var(--navy), #122E50);
}

.cta-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
}

.cta-band h2 {
  max-width: 760px;
  margin-bottom: 16px;
  color: var(--white);
}

.cta-band p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.system-diagram {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 28px;
  background: linear-gradient(145deg, var(--navy), #123252);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 32px;
  box-shadow: var(--shadow-md);
}

.diagram-node {
  position: relative;
  min-height: 126px;
  padding: 22px 24px 22px 84px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
}

.diagram-node::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(0, 178, 227, 0.16);
  border-radius: 16px;
  pointer-events: none;
}

.node-label {
  position: absolute;
  top: 24px;
  left: 24px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--navy);
  background: var(--white);
  border-radius: 14px;
  font-size: 0.78rem;
  font-weight: 900;
}

.diagram-node strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.diagram-node p {
  color: rgba(255, 255, 255, 0.68);
}

.diagram-link {
  width: 2px;
  height: 28px;
  margin-inline: auto;
  background: linear-gradient(var(--cyan), rgba(0, 178, 227, 0.08));
}

.defect-list,
.check-card,
.contact-summary {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.defect-list h3 {
  margin-bottom: 22px;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-grid span {
  padding: 10px 14px;
  color: var(--navy);
  background: var(--light);
  border: 1px solid rgba(31, 41, 55, 0.1);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 750;
}

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

.component-card {
  min-height: 306px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
}

.component-icon {
  display: block;
  width: 58px;
  height: 58px;
  margin-bottom: 38px;
  background:
    linear-gradient(90deg, transparent 46%, var(--cyan) 46% 54%, transparent 54%) center/100% 100% no-repeat,
    linear-gradient(transparent 46%, var(--cyan) 46% 54%, transparent 54%) center/100% 100% no-repeat,
    rgba(0, 178, 227, 0.1);
  border: 1px solid rgba(0, 178, 227, 0.26);
  border-radius: 18px;
}

.component-card h3 {
  margin-bottom: 14px;
}

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

.check-list li {
  position: relative;
  padding-left: 34px;
  color: #415063;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 20px;
  height: 20px;
  background: var(--cyan-soft);
  border: 1px solid rgba(0, 178, 227, 0.3);
  border-radius: 8px;
}

.check-list li::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 6px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
  transform: rotate(-45deg);
}

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

.timeline-step {
  min-height: 250px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.timeline-step h3 {
  margin-bottom: 12px;
}

.contact-hero {
  background:
    radial-gradient(circle at 90% 20%, rgba(0, 178, 227, 0.16), transparent 28%),
    linear-gradient(180deg, var(--navy) 0%, #102B4B 100%);
}

.contact-hero h1,
.contact-hero h2 {
  color: var(--white);
}

.contact-hero .lead,
.contact-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.contact-hero .eyebrow {
  color: rgba(255, 255, 255, 0.88);
}

.contact-summary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.contact-summary h2 {
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 28px;
  align-items: start;
}

.pilot-form,
.contact-aside .info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.pilot-form {
  display: grid;
  gap: 20px;
  padding: clamp(24px, 4vw, 42px);
}

.form-heading {
  margin-bottom: 10px;
}

.form-heading h2 {
  margin-bottom: 14px;
}

.form-heading p:not(.eyebrow) {
  color: #5A6878;
}

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

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

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

label > span {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  color: var(--graphite);
  background: #FAFBFC;
  border: 1px solid rgba(31, 41, 55, 0.14);
  border-radius: 16px;
  padding: 14px 15px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input:hover,
textarea:hover,
select:hover {
  border-color: rgba(0, 178, 227, 0.38);
}

input:focus,
textarea:focus,
select:focus {
  background: var(--white);
  border-color: rgba(0, 178, 227, 0.72);
  box-shadow: 0 0 0 4px rgba(0, 178, 227, 0.09);
  outline: none;
}

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

.field-error {
  border-color: #B42318 !important;
}

.error-text {
  color: #B42318;
  font-size: 0.86rem;
  font-weight: 700;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.form-note {
  max-width: 390px;
  color: #667587;
  font-size: 0.92rem;
}

.form-status {
  display: none;
  padding: 16px 18px;
  border-radius: 18px;
  font-weight: 700;
}

.form-status.is-success {
  display: block;
  color: var(--navy);
  background: rgba(0, 178, 227, 0.1);
  border: 1px solid rgba(0, 178, 227, 0.28);
}

.form-status.is-error {
  display: block;
  color: #7A271A;
  background: #FEF3F2;
  border: 1px solid #FECDCA;
}

.contact-aside {
  display: grid;
  gap: 18px;
}

.info-card {
  padding: 28px;
}

.info-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.4rem, 2.2vw, 2.1rem);
}

.info-card p {
  color: #5A6878;
}

.info-card.dark {
  color: var(--white);
  background: var(--navy);
}

.info-card.dark h2 {
  color: var(--white);
}

.info-card.dark p,
.info-card.dark .check-list li {
  color: rgba(255, 255, 255, 0.76);
}

.compact-list {
  gap: 12px;
}

.site-footer {
  padding: 58px 0 26px;
  color: rgba(255, 255, 255, 0.72);
  background: #071426;
}

.site-footer .brand,
.site-footer h2 {
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr;
  gap: 38px;
  padding-bottom: 44px;
}

.footer-brand {
  margin-bottom: 18px;
}

.site-footer p {
  max-width: 360px;
}

.site-footer h2 {
  margin-bottom: 16px;
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer a:not(.brand) {
  display: table;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.84rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 80ms; }
.delay-2 { transition-delay: 140ms; }
.delay-3 { transition-delay: 200ms; }
.delay-4 { transition-delay: 260ms; }

@media (max-width: 1080px) {
  :root {
    --header-height: 74px;
  }

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

  .hero-grid {
    gap: 42px;
  }

  h1 {
    max-width: 14ch;
  }

  .card-grid.four,
  .benefit-grid,
  .process-grid,
  .timeline,
  .use-case-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .component-grid,
  .card-grid.three {
    grid-template-columns: 1fr;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

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

  .contact-aside .info-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 780px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section-pad-lg {
    padding: 120px 0 76px;
  }

  .section-pad {
    padding: 76px 0;
  }

  .section-pad-sm {
    padding: 58px 0;
  }

  h1 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow-md);
  }

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

  .site-nav > a:not(.btn) {
    padding: 16px 14px;
    font-size: 1rem;
  }

  .site-nav > a:not(.btn)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 8px;
    width: 100%;
  }

  .cta-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cta-row .btn,
  .cta-band .btn {
    width: 100%;
  }

  .trust-strip {
    display: grid;
    grid-template-columns: 1fr;
  }

  .inspection-panel {
    padding: 16px;
    border-radius: 24px;
  }

  .vision-stage {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .camera-module,
  .decision-module,
  .conveyor {
    min-height: 134px;
  }

  .lens::after {
    display: none;
  }

  .conveyor {
    min-height: 210px;
  }

  .panel-metrics,
  .card-grid.four,
  .benefit-grid,
  .process-grid,
  .timeline,
  .use-case-grid,
  .form-grid.two,
  .contact-aside {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: auto;
  }

  .mini-diagram {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mini-diagram i {
    width: 2px;
    height: 28px;
    margin-inline: auto;
    background: linear-gradient(var(--cyan), rgba(0,178,227,0.2));
  }

  .component-card,
  .benefit-card,
  .timeline-step,
  .process-step {
    min-height: auto;
  }

  .cta-band-inner {
    grid-template-columns: 1fr;
  }

  .pilot-form {
    padding: 22px;
  }

  .form-actions {
    display: grid;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 440px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

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

  .brand-text {
    font-size: 1.12rem;
  }

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

  .card,
  .technical-card,
  .defect-list,
  .check-card,
  .info-card,
  .component-card,
  .benefit-card,
  .process-step,
  .timeline-step {
    border-radius: 22px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* === AKURIS asset update v4 === */

/* === AKURIS asset update v4 === */
.brand-logo-link {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: clamp(170px, 18vw, 245px);
  height: auto;
}

.logo-card {
  display: inline-flex;
  width: fit-content;
  padding: 10px 14px;
  background: var(--white);
  border-radius: 16px;
}

.logo-card .brand-logo {
  width: 220px;
}

.btn-secondary.inverse {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
}

.btn-secondary.inverse:hover {
  border-color: rgba(0, 178, 227, 0.62);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.image-card,
.media-card,
.workflow-card,
.team-card,
.contact-person-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.image-card,
.media-card,
.workflow-card,
.team-card {
  border-radius: var(--radius-lg);
}

.image-card img,
.media-card img,
.workflow-card img,
.team-card img,
.contact-person-photo img {
  display: block;
  width: 100%;
}

.hero-product-card {
  min-width: 0;
  margin: 0;
  padding: 12px;
  background: linear-gradient(180deg, #FFFFFF 0%, #EEF2F6 100%);
}

.hero-product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 8%, rgba(0, 178, 227, 0.14), transparent 32%);
  pointer-events: none;
}

.hero-product-card img {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 22px;
}

.hero-product-card.wide img {
  aspect-ratio: 4 / 5;
}

.hero-product-card figcaption,
.media-card figcaption {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: 20px 10px 8px;
}

.image-kicker {
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-product-card strong,
.media-card strong,
.workflow-card strong {
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.28;
}

.media-card {
  margin: 0;
  padding: 12px;
  box-shadow: var(--shadow-sm);
}

.media-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 22px;
}

.media-card p,
.workflow-card p,
.team-card p,
.contact-person-card p {
  color: #5A6878;
}

.workflow-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.workflow-card {
  margin: 0;
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.workflow-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 178, 227, 0.36);
  box-shadow: var(--shadow-md);
}

.workflow-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.workflow-card figcaption {
  display: grid;
  gap: 9px;
  padding: 24px;
}

.workflow-card figcaption span {
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.product-intro-grid {
  align-items: center;
}

.team-section {
  background:
    radial-gradient(circle at 92% 12%, rgba(0, 178, 227, 0.10), transparent 26%),
    var(--white);
}

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

.team-card {
  display: grid;
  grid-template-rows: auto auto;
  min-height: 100%;
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 178, 227, 0.36);
  box-shadow: var(--shadow-md);
}

.team-photo-wrap {
  overflow: hidden;
  background: linear-gradient(180deg, #EEF4F8 0%, #FFFFFF 100%);
}

.team-photo-wrap img {
  aspect-ratio: 3 / 3.35;
  object-fit: cover;
  object-position: center center;
}

.team-card > div:last-child {
  padding: 22px 24px 24px;
}

.team-card h3 {
  margin-bottom: 7px;
}

.contact-hero-grid {
  align-items: stretch;
}

.contact-person-card {
  display: grid;
  grid-template-columns: minmax(320px, 1.28fr) 0.82fr;
  gap: 0;
  min-height: 470px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.contact-person-photo {
  overflow: hidden;
  min-height: 100%;
  background: linear-gradient(180deg, #EEF4F8 0%, #FFFFFF 100%);
}

.contact-person-photo img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.contact-person-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
}

.contact-person-copy h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 3.05rem);
}

.contact-person-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.contact-card-with-logo {
  position: relative;
  overflow: hidden;
}

.contact-card-with-logo .aside-logo {
  width: 72px;
  height: auto;
  margin-bottom: 22px;
}

.info-card .text-link {
  display: table;
  margin-top: 8px;
}

.site-nav .btn,
.nav-cta {
  display: none;
}

@media (min-width: 1081px) {
  .hero-grid .hero-product-card {
    justify-self: end;
    width: min(100%, 535px);
  }
}

@media (max-width: 1080px) {
  .workflow-gallery,
  .team-grid,
  .contact-person-card {
    grid-template-columns: 1fr;
  }

  .contact-person-card {
    min-height: auto;
  }

  .contact-person-photo img {
    max-height: 640px;
  }
}

@media (max-width: 780px) {
  .brand-logo {
    width: 136px;
  }

  .hero-product-card,
  .media-card {
    padding: 10px;
    border-radius: 24px;
  }

  .hero-product-card img,
  .media-card img {
    border-radius: 18px;
  }

  .workflow-gallery,
  .team-grid {
    gap: 16px;
  }

  .workflow-card figcaption,
  .team-card > div:last-child {
    padding: 20px;
  }

  .contact-person-copy {
    padding: 24px;
  }
}

@media (max-width: 440px) {
  .brand-logo {
    width: 126px;
  }

  .logo-card .brand-logo {
    width: 156px;
  }
}
